From 9a8ffdbd5d4010263ca00bafbc8649c6e1ce4c94 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Fri, 21 Feb 2025 07:35:52 -0500 Subject: [PATCH 1/9] adding ability to add different organizations to resource --- classes/OpenXdmod/Setup/AddResourceSetup.php | 18 +++++++++++++++- classes/OpenXdmod/Setup/ResourcesSetup.php | 12 ++++++++++- configuration/etl/etl.d/ingest_resources.json | 3 ++- configuration/etl/etl.d/staging.json | 3 ++- .../common/hpcdb/resources.json | 16 +++++++++++++- .../common/staging/resource-config.json | 3 ++- .../common/resources.schema.json | 5 +++++ .../common/staging/resource-config.json | 6 ++++++ configuration/roles.d/cloud.json | 8 +++++++ configuration/roles.d/gateways.json | 8 +++++++ configuration/roles.d/jobs.json | 4 ++++ configuration/roles.json | 4 ++++ tests/ci/scripts/xdmod-setup-cloud.tcl | 11 +++++----- tests/ci/scripts/xdmod-setup-jobs.tcl | 21 ++++++++++--------- tests/ci/scripts/xdmod-setup-storage.tcl | 11 +++++----- 15 files changed, 107 insertions(+), 26 deletions(-) diff --git a/classes/OpenXdmod/Setup/AddResourceSetup.php b/classes/OpenXdmod/Setup/AddResourceSetup.php index 7ec91f2e70..b6112b8130 100644 --- a/classes/OpenXdmod/Setup/AddResourceSetup.php +++ b/classes/OpenXdmod/Setup/AddResourceSetup.php @@ -42,6 +42,8 @@ public function handle() $resourceAllocationTypeOptions = array(); $resourceAllocationTypeDescriptionText = ""; $availableResourceAllocationTypes = XdmodConfiguration::assocArrayFactory('resource_allocation_types.json', CONFIG_DIR)['resource_allocation_types']; + $availableOrganizations = XdmodConfiguration::assocArrayFactory('organization.json', CONFIG_DIR); + $organizationDescriptionText = ""; $gpu_nodes = 0; $gpus = 0; $gpu_ppn = 0; @@ -64,6 +66,15 @@ public function handle() $resourceAllocationTypeDescriptionText .= sprintf("%-10s - %s", $abbrev, $type['description']) . PHP_EOL; } + foreach ( $availableOrganizations as $abbrev => $type ) { + if ( 'UNK' == $type['abbrev'] ) { + continue; + } + // Note that Console::prompt() expects lowercase values for options + $organizationOptions[] = strtolower($type['abbrev']); + $organizationDescriptionText .= sprintf("%-10s - %s", $type['abbrev'], $type['name']) . PHP_EOL; + } + $this->console->displaySectionHeader('Add A New Resource'); $this->console->displayMessage(<<<"EOT" @@ -77,6 +88,9 @@ public function handle() Available resource allocation types are: $resourceAllocationTypeDescriptionText + +Available organizations are: +$organizationDescriptionText EOT ); $this->console->displayBlankLine(); @@ -85,6 +99,7 @@ public function handle() $name = $this->console->prompt('Formal Name:'); $type = $this->console->prompt('Resource Type:', 'hpc', $typeOptions); $resource_allocation_type = $this->console->prompt('Resource Allocation Type:', 'cpu', $resourceAllocationTypeOptions); + $organization = $this->console->prompt('Organization: ', '', $organizationOptions); $resource_start_date = $this->getResourceStartDate(); $this->console->displayBlankLine(); @@ -132,7 +147,8 @@ public function handle() 'gpu_processor_count' => (int)$gpus, 'gpu_node_count' => (int)$gpu_nodes, 'gpu_ppn' => (int)$gpu_ppn, - 'start_date' => $resource_start_date + 'start_date' => $resource_start_date, + 'organization' => $organization ) ); } diff --git a/classes/OpenXdmod/Setup/ResourcesSetup.php b/classes/OpenXdmod/Setup/ResourcesSetup.php index d49d62082f..7f26969400 100644 --- a/classes/OpenXdmod/Setup/ResourcesSetup.php +++ b/classes/OpenXdmod/Setup/ResourcesSetup.php @@ -124,9 +124,11 @@ public function addResource(array $resource) $availableTypes = XdmodConfiguration::assocArrayFactory('resource_types.json', CONFIG_DIR)['resource_types']; $availableResourceAllocationTypes = XdmodConfiguration::assocArrayFactory('resource_allocation_types.json', CONFIG_DIR)['resource_allocation_types']; + $organizations = XdmodConfiguration::assocArrayFactory('organization.json', CONFIG_DIR); $typeAbbrev = 'UNK'; $resourceAllocationTypeAbbrev = 'UNK'; + $organizationAbbrev = 'UNK'; foreach($availableTypes as $abbrev => $type) { if (strtolower($abbrev) === $resource['type']) { @@ -142,11 +144,19 @@ public function addResource(array $resource) } } + foreach($organizations as $abbrev => $type) { + if (strtolower($type['abbrev']) === $resource['organization']) { + $organizationAbbrev = $type['abbrev']; + break; + } + } + $this->resources[] = array( 'resource' => $resource['resource'], 'resource_type' => $typeAbbrev, 'name' => $resource['name'], - 'resource_allocation_type' => $resourceAllocationTypeAbbrev + 'resource_allocation_type' => $resourceAllocationTypeAbbrev, + 'organization' => $organizationAbbrev ); $this->resourceSpecs[] = array( diff --git a/configuration/etl/etl.d/ingest_resources.json b/configuration/etl/etl.d/ingest_resources.json index 2b191ae21a..1f11751559 100644 --- a/configuration/etl/etl.d/ingest_resources.json +++ b/configuration/etl/etl.d/ingest_resources.json @@ -47,7 +47,8 @@ "pi_column", "shared_jobs", "timezone", - "resource_allocation_type" + "resource_allocation_type", + "organization" ] }, "destination": { diff --git a/configuration/etl/etl.d/staging.json b/configuration/etl/etl.d/staging.json index 8d1ea3934c..f8372de7f5 100644 --- a/configuration/etl/etl.d/staging.json +++ b/configuration/etl/etl.d/staging.json @@ -154,7 +154,8 @@ "shared_jobs", "timezone", "resource_type", - "resource_allocation_type" + "resource_allocation_type", + "organization" ] } } diff --git a/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json b/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json index 69973b31b1..0fac5c2f35 100644 --- a/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json +++ b/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json @@ -6,7 +6,7 @@ "records": { "resource_id": "r.resource_id", "resource_type_id": "COALESCE(srt.resource_type_id, 0)", - "organization_id": "1", + "organization_id": "COALESCE(org.organization_id, -1)", "resource_name": "rc.name", "resource_code": "rc.resource", "resource_description": "rc.description", @@ -40,6 +40,20 @@ "name": "staging_resource_allocation_type", "alias": "srat", "on": "rc.resource_allocation_type_abbrev = srat.resource_allocation_type_abbrev" + }, + { + "type": "LEFT", + "schema": "${SOURCE_SCHEMA}", + "name": "staging_organization_config", + "alias": "org_config", + "on": "rc.organization = org_config.organization_abbrev" + }, + { + "type": "LEFT", + "schema": "${SOURCE_SCHEMA}", + "name": "staging_organization", + "alias": "org", + "on": "org_config.organization_name = org.organization_name" } ] diff --git a/configuration/etl/etl_action_defs.d/common/staging/resource-config.json b/configuration/etl/etl_action_defs.d/common/staging/resource-config.json index 235e32f50b..c123c820a3 100644 --- a/configuration/etl/etl_action_defs.d/common/staging/resource-config.json +++ b/configuration/etl/etl_action_defs.d/common/staging/resource-config.json @@ -10,7 +10,8 @@ "shared_jobs": "shared_jobs", "timezone": "timezone", "type_abbrev": "resource_type", - "resource_allocation_type_abbrev": "resource_allocation_type" + "resource_allocation_type_abbrev": "resource_allocation_type", + "organization": "organization" } } } diff --git a/configuration/etl/etl_schemas.d/common/resources.schema.json b/configuration/etl/etl_schemas.d/common/resources.schema.json index 18fce72e1b..2f9998771b 100644 --- a/configuration/etl/etl_schemas.d/common/resources.schema.json +++ b/configuration/etl/etl_schemas.d/common/resources.schema.json @@ -40,6 +40,11 @@ "type": "string", "description": "Timezone where this resource is located", "maxLength": 30 + }, + "organization": { + "type": "string", + "description": "The organization the resource belongs to", + "maxLength": 100 } }, "required": [ diff --git a/configuration/etl/etl_tables.d/common/staging/resource-config.json b/configuration/etl/etl_tables.d/common/staging/resource-config.json index c822c0d6dd..265ca84294 100644 --- a/configuration/etl/etl_tables.d/common/staging/resource-config.json +++ b/configuration/etl/etl_tables.d/common/staging/resource-config.json @@ -51,6 +51,12 @@ "type": "varchar(30)", "nullable": true, "comment": "Allocation unit type such as CPU, GPU, or Node." + }, + { + "name": "organization", + "type": "varchar(30)", + "nullable": true, + "comment": "Organization for the resource" } ], "indexes": [ diff --git a/configuration/roles.d/cloud.json b/configuration/roles.d/cloud.json index e1bad046d4..d98b7d510d 100644 --- a/configuration/roles.d/cloud.json +++ b/configuration/roles.d/cloud.json @@ -17,6 +17,10 @@ "realm": "Cloud", "group_by": "resource" }, + { + "realm": "Cloud", + "group_by": "provider" + }, { "realm": "Cloud", "group_by": "vm_size" @@ -151,6 +155,10 @@ "realm": "Cloud", "group_by": "resource" }, + { + "realm": "Cloud", + "group_by": "provider" + }, { "realm": "Cloud", "group_by": "vm_size" diff --git a/configuration/roles.d/gateways.json b/configuration/roles.d/gateways.json index b95a1d8472..3c5af7f15d 100644 --- a/configuration/roles.d/gateways.json +++ b/configuration/roles.d/gateways.json @@ -54,6 +54,10 @@ "realm": "Gateways", "group_by": "resource" }, + { + "realm": "Gateways", + "group_by": "provider" + }, { "realm": "Gateways", "group_by": "resource_type" @@ -118,6 +122,10 @@ "realm": "Gateways", "group_by": "resource" }, + { + "realm": "Gateways", + "group_by": "provider" + }, { "realm": "Gateways", "group_by": "resource_type" diff --git a/configuration/roles.d/jobs.json b/configuration/roles.d/jobs.json index f312c01ab9..117dd086ef 100644 --- a/configuration/roles.d/jobs.json +++ b/configuration/roles.d/jobs.json @@ -54,6 +54,10 @@ "realm": "Jobs", "group_by": "resource" }, + { + "realm": "Jobs", + "group_by": "provider" + }, { "realm": "Jobs", "group_by": "resource_type" diff --git a/configuration/roles.json b/configuration/roles.json index 6076113dae..916aaa8798 100644 --- a/configuration/roles.json +++ b/configuration/roles.json @@ -163,6 +163,10 @@ "realm": "Jobs", "group_by": "resource" }, + { + "realm": "Jobs", + "group_by": "provider" + }, { "realm": "Jobs", "group_by": "resource_type" diff --git a/tests/ci/scripts/xdmod-setup-cloud.tcl b/tests/ci/scripts/xdmod-setup-cloud.tcl index 25dda02a83..9608fe23ea 100644 --- a/tests/ci/scripts/xdmod-setup-cloud.tcl +++ b/tests/ci/scripts/xdmod-setup-cloud.tcl @@ -9,8 +9,8 @@ set resources [list] # Cloud Resources -lappend resources [list openstack OpenStack cloud cpu 2018-04-18 123 234] -lappend resources [list nutsetters NutSetters cloud cpu 2019-06-26 123 234] +lappend resources [list openstack OpenStack cloud cpu screw 2018-04-18 123 234] +lappend resources [list nutsetters NutSetters cloud cpu screw 2019-06-26 123 234] #------------------------------------------------------------------------------- @@ -33,9 +33,10 @@ foreach resource $resources { provideInput {Formal Name:} [lindex $resource 1] provideInput {Resource Type*} [lindex $resource 2] provideInput {Resource Allocation Type*} [lindex $resource 3] - provideInput {Resource Start Date, in YYYY-mm-dd format*} [lindex $resource 4] - provideInput {How many CPU nodes does this resource have?} [lindex $resource 5] - provideInput {How many total CPU processors (cpu cores) does this resource have?} [lindex $resource 6] + provideInput {Organization*} [lindex $resource 4] + provideInput {Resource Start Date, in YYYY-mm-dd format*} [lindex $resource 5] + provideInput {How many CPU nodes does this resource have?} [lindex $resource 6] + provideInput {How many total CPU processors (cpu cores) does this resource have?} [lindex $resource 7] } selectMenuOption s diff --git a/tests/ci/scripts/xdmod-setup-jobs.tcl b/tests/ci/scripts/xdmod-setup-jobs.tcl index b4524e1987..f209aa9d46 100644 --- a/tests/ci/scripts/xdmod-setup-jobs.tcl +++ b/tests/ci/scripts/xdmod-setup-jobs.tcl @@ -9,11 +9,11 @@ set resources [list] # Job Resources -lappend resources [list frearson Frearson hpc cpu 2016-12-27 400 4000] -lappend resources [list mortorq Mortorq hpc gpu 2016-12-26 400 4000 400 4000] -lappend resources [list phillips Phillips hpc cpunode 2016-12-22 400 4000] -lappend resources [list pozidriv Posidriv hpc cpu 2016-12-21 400 4000] -lappend resources [list robertson Robertson hpc gpunode 2016-12-12 400 4000 400 4000] +lappend resources [list frearson Frearson hpc cpu screw 2016-12-27 400 4000] +lappend resources [list mortorq Mortorq hpc gpu screw 2016-12-26 400 4000 400 4000] +lappend resources [list phillips Phillips hpc cpunode wrench 2016-12-22 400 4000] +lappend resources [list pozidriv Posidriv hpc cpu screw 2016-12-21 400 4000] +lappend resources [list robertson Robertson hpc gpunode screw 2016-12-12 400 4000 400 4000] # ------------- #------------------------------------------------------------------------------- @@ -37,12 +37,13 @@ foreach resource $resources { provideInput {Formal Name:} [lindex $resource 1] provideInput {Resource Type*} [lindex $resource 2] provideInput {Resource Allocation Type*} [lindex $resource 3] - provideInput {Resource Start Date, in YYYY-mm-dd format*} [lindex $resource 4] - provideInput {How many CPU nodes does this resource have?} [lindex $resource 5] - provideInput {How many total CPU processors (cpu cores) does this resource have?} [lindex $resource 6] + provideInput {Organization*} [lindex $resource 4] + provideInput {Resource Start Date, in YYYY-mm-dd format*} [lindex $resource 5] + provideInput {How many CPU nodes does this resource have?} [lindex $resource 6] + provideInput {How many total CPU processors (cpu cores) does this resource have?} [lindex $resource 7] if { [lindex $resource 3] == "gpu" || [lindex $resource 3] == "gpunode" } { - provideInput {How many GPU nodes does this resource have?} [lindex $resource 7] - provideInput {How many total GPUs does this resource have?} [lindex $resource 8] + provideInput {How many GPU nodes does this resource have?} [lindex $resource 8] + provideInput {How many total GPUs does this resource have?} [lindex $resource 9] } } diff --git a/tests/ci/scripts/xdmod-setup-storage.tcl b/tests/ci/scripts/xdmod-setup-storage.tcl index 5558822af7..2fe54eb97c 100644 --- a/tests/ci/scripts/xdmod-setup-storage.tcl +++ b/tests/ci/scripts/xdmod-setup-storage.tcl @@ -9,8 +9,8 @@ set resources [list] # Storage Resources -lappend resources [list recex Recex tape cpu 2020-01-01 0 0] -lappend resources [list torx Torx stgrid cpu 2020-01-01 0 0] +lappend resources [list recex Recex tape cpu screw 2020-01-01 0 0] +lappend resources [list torx Torx stgrid cpu screw 2020-01-01 0 0] # ----------------- #------------------------------------------------------------------------------- @@ -34,9 +34,10 @@ foreach resource $resources { provideInput {Formal Name:} [lindex $resource 1] provideInput {Resource Type*} [lindex $resource 2] provideInput {Resource Allocation Type*} [lindex $resource 3] - provideInput {Resource Start Date, in YYYY-mm-dd format*} [lindex $resource 4] - provideInput {How many CPU nodes does this resource have?} [lindex $resource 5] - provideInput {How many total CPU processors (cpu cores) does this resource have?} [lindex $resource 6] + provideInput {Organization*} [lindex $resource 4] + provideInput {Resource Start Date, in YYYY-mm-dd format*} [lindex $resource 5] + provideInput {How many CPU nodes does this resource have?} [lindex $resource 6] + provideInput {How many total CPU processors (cpu cores) does this resource have?} [lindex $resource 7] } selectMenuOption s From f6c97df3f46acc78aaa73251028f343e53af62a0 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 24 Feb 2025 11:09:22 -0500 Subject: [PATCH 2/9] adding config file migration and remove second organization --- .../Version1100To1150/ConfigFilesMigration.php | 18 ++++++++++++++++++ .../Version1100To1150/DatabasesMigration.php | 2 +- .../etl.d/xdmod-migration_11_0_0-11_5_0.json | 7 ++++--- .../common/hpcdb/resources.json | 9 +-------- tests/ci/scripts/xdmod-setup-jobs.tcl | 2 +- 5 files changed, 25 insertions(+), 13 deletions(-) diff --git a/classes/OpenXdmod/Migration/Version1100To1150/ConfigFilesMigration.php b/classes/OpenXdmod/Migration/Version1100To1150/ConfigFilesMigration.php index 657383ae8e..3b571cff96 100644 --- a/classes/OpenXdmod/Migration/Version1100To1150/ConfigFilesMigration.php +++ b/classes/OpenXdmod/Migration/Version1100To1150/ConfigFilesMigration.php @@ -18,9 +18,27 @@ public function execute() $this->assertPortalSettingsIsWritable(); $this->assertModulePortalSettingsAreWritable(); $this->assertJsonConfigIsWritable('organization'); + $this->assertJsonConfigIsWritable('resources'); + $organization_config = Json::loadFile(CONFIG_DIR . '/organization.json'); + $resources_config = Json::loadFile(CONFIG_DIR . '/resources.json'); + + $organization_abbrev = $organization_config['abbrev']; $organization_config = [$organization_config]; $this->writeJsonConfigFile('organization', $organization_config); + + $resource_config_with_organization = []; + + // Add the organization field to the resource.json file and use + // the organization listed in organization.json. + foreach($resources_config as $resource) + { + $resource['organization'] = $organization_abbrev; + $resource_config_with_organization[] = $resource; + } + + $this->writeJsonConfigFile('resources', $resource_config_with_organization); + $this->writePortalSettingsFile(); $this->writeModulePortalSettingsFiles(); } diff --git a/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php b/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php index f162577181..dbd68fa4ca 100644 --- a/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php +++ b/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php @@ -17,6 +17,6 @@ public function execute() { parent::execute(); - Utilities::runEtlPipeline(['ingest-organizations'], $this->logger); + Utilities::runEtlPipeline(['ingest-organizations', 'ingest-resources'], $this->logger); } } diff --git a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json index f8a9eccaae..3bb9e26190 100644 --- a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json +++ b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json @@ -23,11 +23,12 @@ }, "migration-11_0_0-11_5_0": [ { - "name": "manageOrganizationStagingTables", - "description": "Changes to organization tables", + "name": "manageStagingTables", + "description": "Changes to staging tables", "definition_file_list": [ "common/staging/organization-config.json", - "common/staging/organization.json" + "common/staging/organization.json", + "common/staging/resource-config.json" ] } ] diff --git a/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json b/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json index 0fac5c2f35..1ddb31f1df 100644 --- a/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json +++ b/configuration/etl/etl_action_defs.d/common/hpcdb/resources.json @@ -41,19 +41,12 @@ "alias": "srat", "on": "rc.resource_allocation_type_abbrev = srat.resource_allocation_type_abbrev" }, - { - "type": "LEFT", - "schema": "${SOURCE_SCHEMA}", - "name": "staging_organization_config", - "alias": "org_config", - "on": "rc.organization = org_config.organization_abbrev" - }, { "type": "LEFT", "schema": "${SOURCE_SCHEMA}", "name": "staging_organization", "alias": "org", - "on": "org_config.organization_name = org.organization_name" + "on": "rc.organization = org.organization_abbrev" } ] diff --git a/tests/ci/scripts/xdmod-setup-jobs.tcl b/tests/ci/scripts/xdmod-setup-jobs.tcl index f209aa9d46..9845c2f9b7 100644 --- a/tests/ci/scripts/xdmod-setup-jobs.tcl +++ b/tests/ci/scripts/xdmod-setup-jobs.tcl @@ -11,7 +11,7 @@ set resources [list] # Job Resources lappend resources [list frearson Frearson hpc cpu screw 2016-12-27 400 4000] lappend resources [list mortorq Mortorq hpc gpu screw 2016-12-26 400 4000 400 4000] -lappend resources [list phillips Phillips hpc cpunode wrench 2016-12-22 400 4000] +lappend resources [list phillips Phillips hpc cpunode screw 2016-12-22 400 4000] lappend resources [list pozidriv Posidriv hpc cpu screw 2016-12-21 400 4000] lappend resources [list robertson Robertson hpc gpunode screw 2016-12-12 400 4000 400 4000] # ------------- From 5a33407df1cd352a20d2395ac3421ff6eadb4df9 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 3 Mar 2025 11:48:14 -0500 Subject: [PATCH 3/9] adding changes to test artifacts, adding service provider to storage realm, adding resource organization to raw statistics and updating migration --- .../Version1100To1150/DatabasesMigration.php | 15 +- .../ref/Storage-group-bys.json | 3 + .../datawarehouse.d/ref/group-by-common.json | 2 +- .../etl.d/xdmod-migration_11_0_0-11_5_0.json | 37 + .../storage/xdw/storagefact.aggregation.json | 2 + .../storage/xdw/storagefact.json | 1 + .../update_storage_resource_organization.sql | 1 + .../storage/xdw/storagefact.aggregation.json | 6 + .../etl_tables.d/storage/xdw/storagefact.json | 6 + configuration/rawstatistics.d/20_jobs.json | 18 + configuration/rawstatistics.d/60_cloud.json | 18 + .../rawstatistics.d/80_gateways.json | 18 + configuration/roles.d/storage.json | 8 + .../output/get_query_descripters-jobs.json | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 15 + .../aggregate-Month-reference.csv | 15 + .../aggregate-Quarter-reference.csv | 15 + .../aggregate-Year-reference.csv | 15 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../cloud_core_time/aggregate-Day-cd.csv | 12 + .../cloud_core_time/aggregate-Day-cs.csv | 12 + .../cloud_core_time/aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../cloud_core_time/aggregate-Day-usr.csv | 10 + .../cloud_core_time/aggregate-Month-cd.csv | 12 + .../cloud_core_time/aggregate-Month-cs.csv | 12 + .../cloud_core_time/aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../cloud_core_time/aggregate-Month-usr.csv | 10 + .../cloud_core_time/aggregate-Quarter-cd.csv | 12 + .../cloud_core_time/aggregate-Quarter-cs.csv | 12 + .../cloud_core_time/aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../cloud_core_time/aggregate-Quarter-usr.csv | 10 + .../cloud_core_time/aggregate-Year-cd.csv | 12 + .../cloud_core_time/aggregate-Year-cs.csv | 12 + .../cloud_core_time/aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../cloud_core_time/aggregate-Year-usr.csv | 10 + .../cloud_core_time/timeseries-Day-cd.csv | 22 + .../cloud_core_time/timeseries-Day-cs.csv | 22 + .../cloud_core_time/timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../cloud_core_time/timeseries-Day-usr.csv | 10 + .../cloud_core_time/timeseries-Month-cd.csv | 10 + .../cloud_core_time/timeseries-Month-cs.csv | 10 + .../cloud_core_time/timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../cloud_core_time/timeseries-Month-usr.csv | 10 + .../cloud_core_time/timeseries-Quarter-cd.csv | 10 + .../cloud_core_time/timeseries-Quarter-cs.csv | 10 + .../cloud_core_time/timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../cloud_core_time/timeseries-Year-cd.csv | 10 + .../cloud_core_time/timeseries-Year-cs.csv | 10 + .../cloud_core_time/timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../cloud_core_time/timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 12 + .../aggregate-Day-cs.csv | 12 + .../aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 12 + .../aggregate-Month-cs.csv | 12 + .../aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 12 + .../aggregate-Quarter-cs.csv | 12 + .../aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 12 + .../aggregate-Year-cs.csv | 12 + .../aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 22 + .../timeseries-Day-cs.csv | 22 + .../timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 10 + .../timeseries-Month-cs.csv | 10 + .../timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 10 + .../timeseries-Quarter-cs.csv | 10 + .../timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 10 + .../timeseries-Year-cs.csv | 10 + .../timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../cloud_wall_time/aggregate-Day-cd.csv | 12 + .../cloud_wall_time/aggregate-Day-cs.csv | 12 + .../cloud_wall_time/aggregate-Day-pi.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../cloud_wall_time/aggregate-Day-usr.csv | 10 + .../cloud_wall_time/aggregate-Month-cd.csv | 12 + .../cloud_wall_time/aggregate-Month-cs.csv | 12 + .../cloud_wall_time/aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../cloud_wall_time/aggregate-Month-usr.csv | 10 + .../cloud_wall_time/aggregate-Quarter-cd.csv | 12 + .../cloud_wall_time/aggregate-Quarter-cs.csv | 12 + .../cloud_wall_time/aggregate-Quarter-pi.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../cloud_wall_time/aggregate-Quarter-usr.csv | 10 + .../cloud_wall_time/aggregate-Year-cd.csv | 12 + .../cloud_wall_time/aggregate-Year-cs.csv | 12 + .../cloud_wall_time/aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../cloud_wall_time/aggregate-Year-usr.csv | 10 + .../cloud_wall_time/timeseries-Day-cd.csv | 22 + .../cloud_wall_time/timeseries-Day-cs.csv | 22 + .../cloud_wall_time/timeseries-Day-pi.csv | 10 + .../timeseries-Day-reference.csv | 10 + .../cloud_wall_time/timeseries-Day-usr.csv | 10 + .../cloud_wall_time/timeseries-Month-cd.csv | 10 + .../cloud_wall_time/timeseries-Month-cs.csv | 10 + .../cloud_wall_time/timeseries-Month-pi.csv | 10 + .../timeseries-Month-reference.csv | 10 + .../cloud_wall_time/timeseries-Month-usr.csv | 10 + .../cloud_wall_time/timeseries-Quarter-cd.csv | 10 + .../cloud_wall_time/timeseries-Quarter-cs.csv | 10 + .../cloud_wall_time/timeseries-Quarter-pi.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../cloud_wall_time/timeseries-Year-cd.csv | 10 + .../cloud_wall_time/timeseries-Year-cs.csv | 10 + .../cloud_wall_time/timeseries-Year-pi.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../cloud_wall_time/timeseries-Year-usr.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 22 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Year-reference.csv | 10 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 49 + .../avg_gpus/aggregate-Month-reference.csv | 49 + .../avg_gpus/aggregate-Quarter-reference.csv | 49 + .../avg_gpus/aggregate-Year-reference.csv | 49 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 49 + .../job_count/aggregate-Month-reference.csv | 49 + .../job_count/aggregate-Quarter-reference.csv | 49 + .../job_count/aggregate-Year-reference.csv | 49 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 49 + .../aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../aggregate-Year-reference.csv | 49 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 49 + .../utilization/aggregate-Month-reference.csv | 49 + .../aggregate-Quarter-reference.csv | 49 + .../utilization/aggregate-Year-reference.csv | 49 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 11 + .../avg_gpus/aggregate-Month-reference.csv | 11 + .../avg_gpus/aggregate-Quarter-reference.csv | 11 + .../avg_gpus/aggregate-Year-reference.csv | 11 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 11 + .../job_count/aggregate-Month-reference.csv | 11 + .../job_count/aggregate-Quarter-reference.csv | 11 + .../job_count/aggregate-Year-reference.csv | 11 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 11 + .../utilization/aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../utilization/aggregate-Year-reference.csv | 11 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 19 + .../avg_gpus/aggregate-Month-reference.csv | 19 + .../avg_gpus/aggregate-Quarter-reference.csv | 19 + .../avg_gpus/aggregate-Year-reference.csv | 19 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 19 + .../job_count/aggregate-Month-reference.csv | 19 + .../job_count/aggregate-Quarter-reference.csv | 19 + .../job_count/aggregate-Year-reference.csv | 19 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-cd.csv | 19 + .../aggregate-Day-cs.csv | 19 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 19 + .../aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../aggregate-Year-reference.csv | 19 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 19 + .../utilization/aggregate-Month-reference.csv | 19 + .../aggregate-Quarter-reference.csv | 19 + .../utilization/aggregate-Year-reference.csv | 19 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 17 + .../avg_gpus/aggregate-Month-reference.csv | 17 + .../avg_gpus/aggregate-Quarter-reference.csv | 17 + .../avg_gpus/aggregate-Year-reference.csv | 17 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 17 + .../job_count/aggregate-Month-reference.csv | 17 + .../job_count/aggregate-Quarter-reference.csv | 17 + .../job_count/aggregate-Year-reference.csv | 17 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 17 + .../utilization/aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../utilization/aggregate-Year-reference.csv | 17 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 17 + .../avg_gpus/aggregate-Month-reference.csv | 17 + .../avg_gpus/aggregate-Quarter-reference.csv | 17 + .../avg_gpus/aggregate-Year-reference.csv | 17 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 17 + .../job_count/aggregate-Month-reference.csv | 17 + .../job_count/aggregate-Quarter-reference.csv | 17 + .../job_count/aggregate-Year-reference.csv | 17 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 17 + .../utilization/aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../utilization/aggregate-Year-reference.csv | 17 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 24 + .../avg_gpus/aggregate-Month-reference.csv | 24 + .../avg_gpus/aggregate-Quarter-reference.csv | 24 + .../avg_gpus/aggregate-Year-reference.csv | 24 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 24 + .../job_count/aggregate-Month-reference.csv | 24 + .../job_count/aggregate-Quarter-reference.csv | 24 + .../job_count/aggregate-Year-reference.csv | 24 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 24 + .../aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../aggregate-Year-reference.csv | 24 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 24 + .../utilization/aggregate-Month-reference.csv | 24 + .../aggregate-Quarter-reference.csv | 24 + .../utilization/aggregate-Year-reference.csv | 24 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../none/avg_gpus/aggregate-Day-reference.csv | 10 + .../avg_gpus/aggregate-Month-reference.csv | 10 + .../avg_gpus/aggregate-Quarter-reference.csv | 10 + .../avg_gpus/aggregate-Year-reference.csv | 10 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 10 + .../job_count/aggregate-Month-reference.csv | 10 + .../job_count/aggregate-Quarter-reference.csv | 10 + .../job_count/aggregate-Year-reference.csv | 10 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 10 + .../utilization/aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../utilization/aggregate-Year-reference.csv | 10 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 16 + .../avg_gpus/aggregate-Month-reference.csv | 16 + .../avg_gpus/aggregate-Quarter-reference.csv | 16 + .../avg_gpus/aggregate-Year-reference.csv | 16 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 16 + .../job_count/aggregate-Month-reference.csv | 16 + .../job_count/aggregate-Quarter-reference.csv | 16 + .../job_count/aggregate-Year-reference.csv | 16 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-cd.csv | 16 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 16 + .../aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../aggregate-Year-reference.csv | 16 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 16 + .../utilization/aggregate-Month-reference.csv | 16 + .../aggregate-Quarter-reference.csv | 16 + .../utilization/aggregate-Year-reference.csv | 16 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 27 + .../avg_gpus/aggregate-Month-reference.csv | 27 + .../avg_gpus/aggregate-Quarter-reference.csv | 27 + .../avg_gpus/aggregate-Year-reference.csv | 27 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 27 + .../job_count/aggregate-Month-reference.csv | 27 + .../job_count/aggregate-Quarter-reference.csv | 27 + .../job_count/aggregate-Year-reference.csv | 27 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 27 + .../utilization/aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../utilization/aggregate-Year-reference.csv | 27 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 75 + .../avg_gpus/aggregate-Month-reference.csv | 75 + .../avg_gpus/aggregate-Quarter-reference.csv | 75 + .../avg_gpus/aggregate-Year-reference.csv | 75 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 75 + .../job_count/aggregate-Month-reference.csv | 75 + .../job_count/aggregate-Quarter-reference.csv | 75 + .../job_count/aggregate-Year-reference.csv | 75 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 75 + .../aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../aggregate-Year-reference.csv | 75 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 75 + .../utilization/aggregate-Month-reference.csv | 75 + .../aggregate-Quarter-reference.csv | 75 + .../utilization/aggregate-Year-reference.csv | 75 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../pi/avg_gpus/aggregate-Day-reference.csv | 50 + .../pi/avg_gpus/aggregate-Month-reference.csv | 50 + .../avg_gpus/aggregate-Quarter-reference.csv | 50 + .../pi/avg_gpus/aggregate-Year-reference.csv | 50 + .../pi/avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../pi/avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../pi/job_count/aggregate-Day-reference.csv | 50 + .../job_count/aggregate-Month-reference.csv | 50 + .../job_count/aggregate-Quarter-reference.csv | 50 + .../pi/job_count/aggregate-Year-reference.csv | 50 + .../pi/job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-cd.csv | 50 + .../aggregate-Day-pi.csv | 50 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Day-usr.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 50 + .../aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../aggregate-Year-reference.csv | 50 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 50 + .../utilization/aggregate-Month-reference.csv | 50 + .../aggregate-Quarter-reference.csv | 50 + .../utilization/aggregate-Year-reference.csv | 50 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 11 + .../avg_gpus/aggregate-Month-reference.csv | 11 + .../avg_gpus/aggregate-Quarter-reference.csv | 11 + .../avg_gpus/aggregate-Year-reference.csv | 11 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 11 + .../job_count/aggregate-Month-reference.csv | 11 + .../job_count/aggregate-Quarter-reference.csv | 11 + .../job_count/aggregate-Year-reference.csv | 11 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 11 + .../utilization/aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../utilization/aggregate-Year-reference.csv | 11 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../qos/avg_gpus/aggregate-Day-reference.csv | 28 + .../avg_gpus/aggregate-Month-reference.csv | 28 + .../avg_gpus/aggregate-Quarter-reference.csv | 28 + .../qos/avg_gpus/aggregate-Year-reference.csv | 28 + .../qos/avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../qos/job_count/aggregate-Day-reference.csv | 28 + .../job_count/aggregate-Month-reference.csv | 28 + .../job_count/aggregate-Quarter-reference.csv | 28 + .../job_count/aggregate-Year-reference.csv | 28 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-cd.csv | 28 + .../aggregate-Day-cs.csv | 28 + .../aggregate-Day-pi.csv | 28 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Day-usr.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 28 + .../aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../aggregate-Year-reference.csv | 28 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 28 + .../utilization/aggregate-Month-reference.csv | 28 + .../aggregate-Quarter-reference.csv | 28 + .../utilization/aggregate-Year-reference.csv | 28 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 27 + .../avg_gpus/aggregate-Month-reference.csv | 27 + .../avg_gpus/aggregate-Quarter-reference.csv | 27 + .../avg_gpus/aggregate-Year-reference.csv | 27 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 27 + .../job_count/aggregate-Month-reference.csv | 27 + .../job_count/aggregate-Quarter-reference.csv | 27 + .../job_count/aggregate-Year-reference.csv | 27 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 27 + .../aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../aggregate-Year-reference.csv | 27 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 27 + .../utilization/aggregate-Month-reference.csv | 27 + .../aggregate-Quarter-reference.csv | 27 + .../utilization/aggregate-Year-reference.csv | 27 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 14 + .../avg_gpus/aggregate-Month-reference.csv | 14 + .../avg_gpus/aggregate-Quarter-reference.csv | 14 + .../avg_gpus/aggregate-Year-reference.csv | 14 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 14 + .../job_count/aggregate-Month-reference.csv | 14 + .../job_count/aggregate-Quarter-reference.csv | 14 + .../job_count/aggregate-Year-reference.csv | 14 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 14 + .../utilization/aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../utilization/aggregate-Year-reference.csv | 14 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 10 + .../avg_gpus/aggregate-Month-reference.csv | 10 + .../avg_gpus/aggregate-Quarter-reference.csv | 10 + .../avg_gpus/aggregate-Year-reference.csv | 10 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 10 + .../job_count/aggregate-Month-reference.csv | 10 + .../job_count/aggregate-Quarter-reference.csv | 10 + .../job_count/aggregate-Year-reference.csv | 10 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 10 + .../utilization/aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../utilization/aggregate-Year-reference.csv | 10 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../active_person_count/aggregate-Day-cd.csv | 75 + .../active_person_count/aggregate-Day-cs.csv | 75 + .../active_person_count/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../active_person_count/aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../active_person_count/aggregate-Year-cd.csv | 75 + .../active_person_count/aggregate-Year-cs.csv | 75 + .../active_person_count/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../active_person_count/timeseries-Day-cd.csv | 20 + .../active_person_count/timeseries-Day-cs.csv | 20 + .../active_person_count/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../active_pi_count/aggregate-Day-cd.csv | 75 + .../active_pi_count/aggregate-Day-cs.csv | 75 + .../active_pi_count/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../active_pi_count/aggregate-Day-usr.csv | 11 + .../active_pi_count/aggregate-Month-cd.csv | 75 + .../active_pi_count/aggregate-Month-cs.csv | 75 + .../active_pi_count/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../active_pi_count/aggregate-Month-usr.csv | 11 + .../active_pi_count/aggregate-Quarter-cd.csv | 75 + .../active_pi_count/aggregate-Quarter-cs.csv | 75 + .../active_pi_count/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../active_pi_count/aggregate-Quarter-usr.csv | 11 + .../active_pi_count/aggregate-Year-cd.csv | 75 + .../active_pi_count/aggregate-Year-cs.csv | 75 + .../active_pi_count/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../active_pi_count/aggregate-Year-usr.csv | 11 + .../active_pi_count/timeseries-Day-cd.csv | 20 + .../active_pi_count/timeseries-Day-cs.csv | 20 + .../active_pi_count/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../active_pi_count/timeseries-Day-usr.csv | 13 + .../active_pi_count/timeseries-Month-cd.csv | 11 + .../active_pi_count/timeseries-Month-cs.csv | 11 + .../active_pi_count/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../active_pi_count/timeseries-Month-usr.csv | 12 + .../active_pi_count/timeseries-Quarter-cd.csv | 11 + .../active_pi_count/timeseries-Quarter-cs.csv | 11 + .../active_pi_count/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../active_pi_count/timeseries-Year-cd.csv | 11 + .../active_pi_count/timeseries-Year-cs.csv | 11 + .../active_pi_count/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../active_pi_count/timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../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 | 10 + .../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 | 10 + .../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 | 10 + .../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 | 10 + .../avg_cpu_hours/aggregate-Year-usr.csv | 11 + .../avg_cpu_hours/timeseries-Day-cd.csv | 20 + .../avg_cpu_hours/timeseries-Day-cs.csv | 20 + .../avg_cpu_hours/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_cpu_hours/timeseries-Day-usr.csv | 13 + .../avg_cpu_hours/timeseries-Month-cd.csv | 11 + .../avg_cpu_hours/timeseries-Month-cs.csv | 11 + .../avg_cpu_hours/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../avg_cpu_hours/timeseries-Month-usr.csv | 12 + .../avg_cpu_hours/timeseries-Quarter-cd.csv | 11 + .../avg_cpu_hours/timeseries-Quarter-cs.csv | 11 + .../avg_cpu_hours/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../avg_cpu_hours/timeseries-Quarter-usr.csv | 12 + .../avg_cpu_hours/timeseries-Year-cd.csv | 11 + .../avg_cpu_hours/timeseries-Year-cs.csv | 11 + .../avg_cpu_hours/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../avg_cpu_hours/timeseries-Year-usr.csv | 12 + .../avg_gpu_hours/aggregate-Day-cd.csv | 75 + .../avg_gpu_hours/aggregate-Day-cs.csv | 75 + .../avg_gpu_hours/aggregate-Day-pi.csv | 16 + .../avg_gpu_hours/aggregate-Day-reference.csv | 10 + .../avg_gpu_hours/aggregate-Day-usr.csv | 11 + .../avg_gpu_hours/aggregate-Month-cd.csv | 75 + .../avg_gpu_hours/aggregate-Month-cs.csv | 75 + .../avg_gpu_hours/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../avg_gpu_hours/aggregate-Month-usr.csv | 11 + .../avg_gpu_hours/aggregate-Quarter-cd.csv | 75 + .../avg_gpu_hours/aggregate-Quarter-cs.csv | 75 + .../avg_gpu_hours/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../avg_gpu_hours/aggregate-Quarter-usr.csv | 11 + .../avg_gpu_hours/aggregate-Year-cd.csv | 75 + .../avg_gpu_hours/aggregate-Year-cs.csv | 75 + .../avg_gpu_hours/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../avg_gpu_hours/aggregate-Year-usr.csv | 11 + .../avg_gpu_hours/timeseries-Day-cd.csv | 20 + .../avg_gpu_hours/timeseries-Day-cs.csv | 20 + .../avg_gpu_hours/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_gpu_hours/timeseries-Day-usr.csv | 13 + .../avg_gpu_hours/timeseries-Month-cd.csv | 11 + .../avg_gpu_hours/timeseries-Month-cs.csv | 11 + .../avg_gpu_hours/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../avg_gpu_hours/timeseries-Month-usr.csv | 12 + .../avg_gpu_hours/timeseries-Quarter-cd.csv | 11 + .../avg_gpu_hours/timeseries-Quarter-cs.csv | 11 + .../avg_gpu_hours/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../avg_gpu_hours/timeseries-Quarter-usr.csv | 12 + .../avg_gpu_hours/timeseries-Year-cd.csv | 11 + .../avg_gpu_hours/timeseries-Year-cs.csv | 11 + .../avg_gpu_hours/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../avg_gpu_hours/timeseries-Year-usr.csv | 12 + .../username/avg_gpus/aggregate-Day-cd.csv | 75 + .../username/avg_gpus/aggregate-Day-cs.csv | 75 + .../username/avg_gpus/aggregate-Day-pi.csv | 16 + .../avg_gpus/aggregate-Day-reference.csv | 10 + .../username/avg_gpus/aggregate-Day-usr.csv | 11 + .../username/avg_gpus/aggregate-Month-cd.csv | 75 + .../username/avg_gpus/aggregate-Month-cs.csv | 75 + .../username/avg_gpus/aggregate-Month-pi.csv | 16 + .../avg_gpus/aggregate-Month-reference.csv | 10 + .../username/avg_gpus/aggregate-Month-usr.csv | 11 + .../avg_gpus/aggregate-Quarter-cd.csv | 75 + .../avg_gpus/aggregate-Quarter-cs.csv | 75 + .../avg_gpus/aggregate-Quarter-pi.csv | 16 + .../avg_gpus/aggregate-Quarter-reference.csv | 10 + .../avg_gpus/aggregate-Quarter-usr.csv | 11 + .../username/avg_gpus/aggregate-Year-cd.csv | 75 + .../username/avg_gpus/aggregate-Year-cs.csv | 75 + .../username/avg_gpus/aggregate-Year-pi.csv | 16 + .../avg_gpus/aggregate-Year-reference.csv | 10 + .../username/avg_gpus/aggregate-Year-usr.csv | 11 + .../username/avg_gpus/timeseries-Day-cd.csv | 20 + .../username/avg_gpus/timeseries-Day-cs.csv | 20 + .../username/avg_gpus/timeseries-Day-pi.csv | 20 + .../avg_gpus/timeseries-Day-reference.csv | 10 + .../username/avg_gpus/timeseries-Day-usr.csv | 13 + .../username/avg_gpus/timeseries-Month-cd.csv | 11 + .../username/avg_gpus/timeseries-Month-cs.csv | 11 + .../username/avg_gpus/timeseries-Month-pi.csv | 12 + .../avg_gpus/timeseries-Month-reference.csv | 10 + .../avg_gpus/timeseries-Month-usr.csv | 12 + .../avg_gpus/timeseries-Quarter-cd.csv | 11 + .../avg_gpus/timeseries-Quarter-cs.csv | 11 + .../avg_gpus/timeseries-Quarter-pi.csv | 12 + .../avg_gpus/timeseries-Quarter-reference.csv | 10 + .../avg_gpus/timeseries-Quarter-usr.csv | 12 + .../username/avg_gpus/timeseries-Year-cd.csv | 11 + .../username/avg_gpus/timeseries-Year-cs.csv | 11 + .../username/avg_gpus/timeseries-Year-pi.csv | 12 + .../avg_gpus/timeseries-Year-reference.csv | 10 + .../username/avg_gpus/timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../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 | 10 + .../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 | 10 + .../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 | 10 + .../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 | 10 + .../avg_node_hours/aggregate-Year-usr.csv | 11 + .../avg_node_hours/timeseries-Day-cd.csv | 20 + .../avg_node_hours/timeseries-Day-cs.csv | 20 + .../avg_node_hours/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_node_hours/timeseries-Day-usr.csv | 13 + .../avg_node_hours/timeseries-Month-cd.csv | 11 + .../avg_node_hours/timeseries-Month-cs.csv | 11 + .../avg_node_hours/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../avg_node_hours/timeseries-Month-usr.csv | 12 + .../avg_node_hours/timeseries-Quarter-cd.csv | 11 + .../avg_node_hours/timeseries-Quarter-cs.csv | 11 + .../avg_node_hours/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../avg_node_hours/timeseries-Quarter-usr.csv | 12 + .../avg_node_hours/timeseries-Year-cd.csv | 11 + .../avg_node_hours/timeseries-Year-cs.csv | 11 + .../avg_node_hours/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../avg_node_hours/timeseries-Year-usr.csv | 12 + .../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 | 10 + .../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 | 10 + .../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 | 10 + .../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 | 10 + .../avg_processors/aggregate-Year-usr.csv | 11 + .../avg_processors/timeseries-Day-cd.csv | 20 + .../avg_processors/timeseries-Day-cs.csv | 20 + .../avg_processors/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_processors/timeseries-Day-usr.csv | 13 + .../avg_processors/timeseries-Month-cd.csv | 11 + .../avg_processors/timeseries-Month-cs.csv | 11 + .../avg_processors/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../avg_processors/timeseries-Month-usr.csv | 12 + .../avg_processors/timeseries-Quarter-cd.csv | 11 + .../avg_processors/timeseries-Quarter-cs.csv | 11 + .../avg_processors/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../avg_processors/timeseries-Quarter-usr.csv | 12 + .../avg_processors/timeseries-Year-cd.csv | 11 + .../avg_processors/timeseries-Year-cs.csv | 11 + .../avg_processors/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../avg_processors/timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../expansion_factor/aggregate-Day-cd.csv | 75 + .../expansion_factor/aggregate-Day-cs.csv | 75 + .../expansion_factor/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../expansion_factor/aggregate-Day-usr.csv | 11 + .../expansion_factor/aggregate-Month-cd.csv | 75 + .../expansion_factor/aggregate-Month-cs.csv | 75 + .../expansion_factor/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../expansion_factor/aggregate-Month-usr.csv | 11 + .../expansion_factor/aggregate-Quarter-cd.csv | 75 + .../expansion_factor/aggregate-Quarter-cs.csv | 75 + .../expansion_factor/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../expansion_factor/aggregate-Year-cd.csv | 75 + .../expansion_factor/aggregate-Year-cs.csv | 75 + .../expansion_factor/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../expansion_factor/aggregate-Year-usr.csv | 11 + .../expansion_factor/timeseries-Day-cd.csv | 20 + .../expansion_factor/timeseries-Day-cs.csv | 20 + .../expansion_factor/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../expansion_factor/timeseries-Day-usr.csv | 13 + .../expansion_factor/timeseries-Month-cd.csv | 11 + .../expansion_factor/timeseries-Month-cs.csv | 11 + .../expansion_factor/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../expansion_factor/timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../expansion_factor/timeseries-Year-cd.csv | 11 + .../expansion_factor/timeseries-Year-cs.csv | 11 + .../expansion_factor/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../expansion_factor/timeseries-Year-usr.csv | 12 + .../username/job_count/aggregate-Day-cd.csv | 75 + .../username/job_count/aggregate-Day-cs.csv | 75 + .../username/job_count/aggregate-Day-pi.csv | 16 + .../job_count/aggregate-Day-reference.csv | 10 + .../username/job_count/aggregate-Day-usr.csv | 11 + .../username/job_count/aggregate-Month-cd.csv | 75 + .../username/job_count/aggregate-Month-cs.csv | 75 + .../username/job_count/aggregate-Month-pi.csv | 16 + .../job_count/aggregate-Month-reference.csv | 10 + .../job_count/aggregate-Month-usr.csv | 11 + .../job_count/aggregate-Quarter-cd.csv | 75 + .../job_count/aggregate-Quarter-cs.csv | 75 + .../job_count/aggregate-Quarter-pi.csv | 16 + .../job_count/aggregate-Quarter-reference.csv | 10 + .../job_count/aggregate-Quarter-usr.csv | 11 + .../username/job_count/aggregate-Year-cd.csv | 75 + .../username/job_count/aggregate-Year-cs.csv | 75 + .../username/job_count/aggregate-Year-pi.csv | 16 + .../job_count/aggregate-Year-reference.csv | 10 + .../username/job_count/aggregate-Year-usr.csv | 11 + .../username/job_count/timeseries-Day-cd.csv | 20 + .../username/job_count/timeseries-Day-cs.csv | 20 + .../username/job_count/timeseries-Day-pi.csv | 20 + .../job_count/timeseries-Day-reference.csv | 10 + .../username/job_count/timeseries-Day-usr.csv | 13 + .../job_count/timeseries-Month-cd.csv | 11 + .../job_count/timeseries-Month-cs.csv | 11 + .../job_count/timeseries-Month-pi.csv | 12 + .../job_count/timeseries-Month-reference.csv | 10 + .../job_count/timeseries-Month-usr.csv | 12 + .../job_count/timeseries-Quarter-cd.csv | 11 + .../job_count/timeseries-Quarter-cs.csv | 11 + .../job_count/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../job_count/timeseries-Quarter-usr.csv | 12 + .../username/job_count/timeseries-Year-cd.csv | 11 + .../username/job_count/timeseries-Year-cs.csv | 11 + .../username/job_count/timeseries-Year-pi.csv | 12 + .../job_count/timeseries-Year-reference.csv | 10 + .../job_count/timeseries-Year-usr.csv | 12 + .../max_processors/aggregate-Day-cd.csv | 75 + .../max_processors/aggregate-Day-cs.csv | 75 + .../max_processors/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../max_processors/aggregate-Day-usr.csv | 11 + .../max_processors/aggregate-Month-cd.csv | 75 + .../max_processors/aggregate-Month-cs.csv | 75 + .../max_processors/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../max_processors/aggregate-Month-usr.csv | 11 + .../max_processors/aggregate-Quarter-cd.csv | 75 + .../max_processors/aggregate-Quarter-cs.csv | 75 + .../max_processors/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../max_processors/aggregate-Quarter-usr.csv | 11 + .../max_processors/aggregate-Year-cd.csv | 75 + .../max_processors/aggregate-Year-cs.csv | 75 + .../max_processors/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../max_processors/aggregate-Year-usr.csv | 11 + .../max_processors/timeseries-Day-cd.csv | 20 + .../max_processors/timeseries-Day-cs.csv | 20 + .../max_processors/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../max_processors/timeseries-Day-usr.csv | 13 + .../max_processors/timeseries-Month-cd.csv | 11 + .../max_processors/timeseries-Month-cs.csv | 11 + .../max_processors/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../max_processors/timeseries-Month-usr.csv | 12 + .../max_processors/timeseries-Quarter-cd.csv | 11 + .../max_processors/timeseries-Quarter-cs.csv | 11 + .../max_processors/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../max_processors/timeseries-Quarter-usr.csv | 12 + .../max_processors/timeseries-Year-cd.csv | 11 + .../max_processors/timeseries-Year-cs.csv | 11 + .../max_processors/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../max_processors/timeseries-Year-usr.csv | 12 + .../min_processors/aggregate-Day-cd.csv | 75 + .../min_processors/aggregate-Day-cs.csv | 75 + .../min_processors/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../min_processors/aggregate-Day-usr.csv | 11 + .../min_processors/aggregate-Month-cd.csv | 75 + .../min_processors/aggregate-Month-cs.csv | 75 + .../min_processors/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../min_processors/aggregate-Month-usr.csv | 11 + .../min_processors/aggregate-Quarter-cd.csv | 75 + .../min_processors/aggregate-Quarter-cs.csv | 75 + .../min_processors/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../min_processors/aggregate-Quarter-usr.csv | 11 + .../min_processors/aggregate-Year-cd.csv | 75 + .../min_processors/aggregate-Year-cs.csv | 75 + .../min_processors/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../min_processors/aggregate-Year-usr.csv | 11 + .../min_processors/timeseries-Day-cd.csv | 20 + .../min_processors/timeseries-Day-cs.csv | 20 + .../min_processors/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../min_processors/timeseries-Day-usr.csv | 13 + .../min_processors/timeseries-Month-cd.csv | 11 + .../min_processors/timeseries-Month-cs.csv | 11 + .../min_processors/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../min_processors/timeseries-Month-usr.csv | 12 + .../min_processors/timeseries-Quarter-cd.csv | 11 + .../min_processors/timeseries-Quarter-cs.csv | 11 + .../min_processors/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../min_processors/timeseries-Quarter-usr.csv | 12 + .../min_processors/timeseries-Year-cd.csv | 11 + .../min_processors/timeseries-Year-cs.csv | 11 + .../min_processors/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../min_processors/timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../running_job_count/aggregate-Day-cd.csv | 75 + .../running_job_count/aggregate-Day-cs.csv | 75 + .../running_job_count/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../running_job_count/aggregate-Day-usr.csv | 11 + .../running_job_count/aggregate-Month-cd.csv | 75 + .../running_job_count/aggregate-Month-cs.csv | 75 + .../running_job_count/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../running_job_count/aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../running_job_count/aggregate-Year-cd.csv | 75 + .../running_job_count/aggregate-Year-cs.csv | 75 + .../running_job_count/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../running_job_count/aggregate-Year-usr.csv | 11 + .../running_job_count/timeseries-Day-cd.csv | 20 + .../running_job_count/timeseries-Day-cs.csv | 20 + .../running_job_count/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../running_job_count/timeseries-Day-usr.csv | 13 + .../running_job_count/timeseries-Month-cd.csv | 11 + .../running_job_count/timeseries-Month-cs.csv | 11 + .../running_job_count/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../running_job_count/timeseries-Year-cd.csv | 11 + .../running_job_count/timeseries-Year-cs.csv | 11 + .../running_job_count/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../running_job_count/timeseries-Year-usr.csv | 12 + .../started_job_count/aggregate-Day-cd.csv | 75 + .../started_job_count/aggregate-Day-cs.csv | 75 + .../started_job_count/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../started_job_count/aggregate-Day-usr.csv | 11 + .../started_job_count/aggregate-Month-cd.csv | 75 + .../started_job_count/aggregate-Month-cs.csv | 75 + .../started_job_count/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../started_job_count/aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../started_job_count/aggregate-Year-cd.csv | 75 + .../started_job_count/aggregate-Year-cs.csv | 75 + .../started_job_count/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../started_job_count/aggregate-Year-usr.csv | 11 + .../started_job_count/timeseries-Day-cd.csv | 20 + .../started_job_count/timeseries-Day-cs.csv | 20 + .../started_job_count/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../started_job_count/timeseries-Day-usr.csv | 13 + .../started_job_count/timeseries-Month-cd.csv | 11 + .../started_job_count/timeseries-Month-cs.csv | 11 + .../started_job_count/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../started_job_count/timeseries-Year-cd.csv | 11 + .../started_job_count/timeseries-Year-cs.csv | 11 + .../started_job_count/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../started_job_count/timeseries-Year-usr.csv | 12 + .../submitted_job_count/aggregate-Day-cd.csv | 75 + .../submitted_job_count/aggregate-Day-cs.csv | 75 + .../submitted_job_count/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../submitted_job_count/aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../submitted_job_count/aggregate-Year-cd.csv | 75 + .../submitted_job_count/aggregate-Year-cs.csv | 75 + .../submitted_job_count/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../submitted_job_count/timeseries-Day-cd.csv | 20 + .../submitted_job_count/timeseries-Day-cs.csv | 20 + .../submitted_job_count/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../total_cpu_hours/aggregate-Day-cd.csv | 75 + .../total_cpu_hours/aggregate-Day-cs.csv | 75 + .../total_cpu_hours/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../total_cpu_hours/aggregate-Day-usr.csv | 11 + .../total_cpu_hours/aggregate-Month-cd.csv | 75 + .../total_cpu_hours/aggregate-Month-cs.csv | 75 + .../total_cpu_hours/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../total_cpu_hours/aggregate-Month-usr.csv | 11 + .../total_cpu_hours/aggregate-Quarter-cd.csv | 75 + .../total_cpu_hours/aggregate-Quarter-cs.csv | 75 + .../total_cpu_hours/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../total_cpu_hours/aggregate-Quarter-usr.csv | 11 + .../total_cpu_hours/aggregate-Year-cd.csv | 75 + .../total_cpu_hours/aggregate-Year-cs.csv | 75 + .../total_cpu_hours/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../total_cpu_hours/aggregate-Year-usr.csv | 11 + .../total_cpu_hours/timeseries-Day-cd.csv | 20 + .../total_cpu_hours/timeseries-Day-cs.csv | 20 + .../total_cpu_hours/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../total_cpu_hours/timeseries-Day-usr.csv | 13 + .../total_cpu_hours/timeseries-Month-cd.csv | 11 + .../total_cpu_hours/timeseries-Month-cs.csv | 11 + .../total_cpu_hours/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../total_cpu_hours/timeseries-Month-usr.csv | 12 + .../total_cpu_hours/timeseries-Quarter-cd.csv | 11 + .../total_cpu_hours/timeseries-Quarter-cs.csv | 11 + .../total_cpu_hours/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../total_cpu_hours/timeseries-Year-cd.csv | 11 + .../total_cpu_hours/timeseries-Year-cs.csv | 11 + .../total_cpu_hours/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../total_cpu_hours/timeseries-Year-usr.csv | 12 + .../total_gpu_hours/aggregate-Day-cd.csv | 75 + .../total_gpu_hours/aggregate-Day-cs.csv | 75 + .../total_gpu_hours/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../total_gpu_hours/aggregate-Day-usr.csv | 11 + .../total_gpu_hours/aggregate-Month-cd.csv | 75 + .../total_gpu_hours/aggregate-Month-cs.csv | 75 + .../total_gpu_hours/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../total_gpu_hours/aggregate-Month-usr.csv | 11 + .../total_gpu_hours/aggregate-Quarter-cd.csv | 75 + .../total_gpu_hours/aggregate-Quarter-cs.csv | 75 + .../total_gpu_hours/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../total_gpu_hours/aggregate-Quarter-usr.csv | 11 + .../total_gpu_hours/aggregate-Year-cd.csv | 75 + .../total_gpu_hours/aggregate-Year-cs.csv | 75 + .../total_gpu_hours/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../total_gpu_hours/aggregate-Year-usr.csv | 11 + .../total_gpu_hours/timeseries-Day-cd.csv | 20 + .../total_gpu_hours/timeseries-Day-cs.csv | 20 + .../total_gpu_hours/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../total_gpu_hours/timeseries-Day-usr.csv | 13 + .../total_gpu_hours/timeseries-Month-cd.csv | 11 + .../total_gpu_hours/timeseries-Month-cs.csv | 11 + .../total_gpu_hours/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../total_gpu_hours/timeseries-Month-usr.csv | 12 + .../total_gpu_hours/timeseries-Quarter-cd.csv | 11 + .../total_gpu_hours/timeseries-Quarter-cs.csv | 11 + .../total_gpu_hours/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../total_gpu_hours/timeseries-Year-cd.csv | 11 + .../total_gpu_hours/timeseries-Year-cs.csv | 11 + .../total_gpu_hours/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../total_gpu_hours/timeseries-Year-usr.csv | 12 + .../total_node_hours/aggregate-Day-cd.csv | 75 + .../total_node_hours/aggregate-Day-cs.csv | 75 + .../total_node_hours/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../total_node_hours/aggregate-Day-usr.csv | 11 + .../total_node_hours/aggregate-Month-cd.csv | 75 + .../total_node_hours/aggregate-Month-cs.csv | 75 + .../total_node_hours/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../total_node_hours/aggregate-Month-usr.csv | 11 + .../total_node_hours/aggregate-Quarter-cd.csv | 75 + .../total_node_hours/aggregate-Quarter-cs.csv | 75 + .../total_node_hours/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../total_node_hours/aggregate-Year-cd.csv | 75 + .../total_node_hours/aggregate-Year-cs.csv | 75 + .../total_node_hours/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../total_node_hours/aggregate-Year-usr.csv | 11 + .../total_node_hours/timeseries-Day-cd.csv | 20 + .../total_node_hours/timeseries-Day-cs.csv | 20 + .../total_node_hours/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../total_node_hours/timeseries-Day-usr.csv | 13 + .../total_node_hours/timeseries-Month-cd.csv | 11 + .../total_node_hours/timeseries-Month-cs.csv | 11 + .../total_node_hours/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../total_node_hours/timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../total_node_hours/timeseries-Year-cd.csv | 11 + .../total_node_hours/timeseries-Year-cs.csv | 11 + .../total_node_hours/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../total_node_hours/timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../aggregate-Day-cd.csv | 75 + .../aggregate-Day-cs.csv | 75 + .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 + .../aggregate-Month-cs.csv | 75 + .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 + .../aggregate-Quarter-cs.csv | 75 + .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 + .../aggregate-Year-cs.csv | 75 + .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 20 + .../timeseries-Day-cs.csv | 20 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 13 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 12 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 12 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 12 + .../username/utilization/aggregate-Day-cd.csv | 75 + .../username/utilization/aggregate-Day-cs.csv | 75 + .../username/utilization/aggregate-Day-pi.csv | 16 + .../utilization/aggregate-Day-reference.csv | 10 + .../utilization/aggregate-Day-usr.csv | 11 + .../utilization/aggregate-Month-cd.csv | 75 + .../utilization/aggregate-Month-cs.csv | 75 + .../utilization/aggregate-Month-pi.csv | 16 + .../utilization/aggregate-Month-reference.csv | 10 + .../utilization/aggregate-Month-usr.csv | 11 + .../utilization/aggregate-Quarter-cd.csv | 75 + .../utilization/aggregate-Quarter-cs.csv | 75 + .../utilization/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 10 + .../utilization/aggregate-Quarter-usr.csv | 11 + .../utilization/aggregate-Year-cd.csv | 75 + .../utilization/aggregate-Year-cs.csv | 75 + .../utilization/aggregate-Year-pi.csv | 16 + .../utilization/aggregate-Year-reference.csv | 10 + .../utilization/aggregate-Year-usr.csv | 11 + .../utilization/timeseries-Day-cd.csv | 20 + .../utilization/timeseries-Day-cs.csv | 20 + .../utilization/timeseries-Day-pi.csv | 20 + .../utilization/timeseries-Day-reference.csv | 10 + .../utilization/timeseries-Day-usr.csv | 13 + .../utilization/timeseries-Month-cd.csv | 11 + .../utilization/timeseries-Month-cs.csv | 11 + .../utilization/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../utilization/timeseries-Month-usr.csv | 12 + .../utilization/timeseries-Quarter-cd.csv | 11 + .../utilization/timeseries-Quarter-cs.csv | 11 + .../utilization/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../utilization/timeseries-Quarter-usr.csv | 12 + .../utilization/timeseries-Year-cd.csv | 11 + .../utilization/timeseries-Year-cs.csv | 11 + .../utilization/timeseries-Year-pi.csv | 12 + .../utilization/timeseries-Year-reference.csv | 10 + .../utilization/timeseries-Year-usr.csv | 12 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 14 + .../aggregate-Month-reference.csv | 14 + .../aggregate-Quarter-reference.csv | 14 + .../aggregate-Year-reference.csv | 14 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 13 + .../aggregate-Month-reference.csv | 13 + .../aggregate-Quarter-reference.csv | 13 + .../aggregate-Year-reference.csv | 13 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 26 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 41 + .../aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../aggregate-Year-reference.csv | 41 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 41 + .../aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../aggregate-Year-reference.csv | 41 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 41 + .../aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../aggregate-Year-reference.csv | 41 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 41 + .../aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../aggregate-Year-reference.csv | 41 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 41 + .../aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../aggregate-Year-reference.csv | 41 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 41 + .../aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../aggregate-Year-reference.csv | 41 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 41 + .../user_count/aggregate-Month-reference.csv | 41 + .../aggregate-Quarter-reference.csv | 41 + .../user_count/aggregate-Year-reference.csv | 41 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 12 + .../aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../aggregate-Year-reference.csv | 12 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 12 + .../user_count/aggregate-Month-reference.csv | 12 + .../aggregate-Quarter-reference.csv | 12 + .../user_count/aggregate-Year-reference.csv | 12 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 10 + .../user_count/aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../user_count/aggregate-Year-reference.csv | 10 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 17 + .../aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../aggregate-Year-reference.csv | 17 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 17 + .../user_count/aggregate-Month-reference.csv | 17 + .../aggregate-Quarter-reference.csv | 17 + .../user_count/aggregate-Year-reference.csv | 17 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 26 + .../aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../aggregate-Year-reference.csv | 26 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 26 + .../aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../aggregate-Year-reference.csv | 26 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 26 + .../aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../aggregate-Year-reference.csv | 26 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 26 + .../aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../aggregate-Year-reference.csv | 26 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 26 + .../aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../aggregate-Year-reference.csv | 26 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 26 + .../aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../aggregate-Year-reference.csv | 26 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 26 + .../user_count/aggregate-Month-reference.csv | 26 + .../aggregate-Quarter-reference.csv | 26 + .../user_count/aggregate-Year-reference.csv | 26 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 353 +++ .../aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../aggregate-Year-reference.csv | 353 +++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 353 +++ .../aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../aggregate-Year-reference.csv | 353 +++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 353 +++ .../aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../aggregate-Year-reference.csv | 353 +++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 353 +++ .../aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../aggregate-Year-reference.csv | 353 +++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 353 +++ .../aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../aggregate-Year-reference.csv | 353 +++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 353 +++ .../aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../aggregate-Year-reference.csv | 353 +++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 353 +++ .../user_count/aggregate-Month-reference.csv | 353 +++ .../aggregate-Quarter-reference.csv | 353 +++ .../user_count/aggregate-Year-reference.csv | 353 +++ .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 165 ++ .../aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../aggregate-Year-reference.csv | 165 ++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 165 ++ .../aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../aggregate-Year-reference.csv | 165 ++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 165 ++ .../aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../aggregate-Year-reference.csv | 165 ++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 165 ++ .../aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../aggregate-Year-reference.csv | 165 ++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 165 ++ .../aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../aggregate-Year-reference.csv | 165 ++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 165 ++ .../aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../aggregate-Year-reference.csv | 165 ++ .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../pi/user_count/aggregate-Day-reference.csv | 165 ++ .../user_count/aggregate-Month-reference.csv | 165 ++ .../aggregate-Quarter-reference.csv | 165 ++ .../user_count/aggregate-Year-reference.csv | 165 ++ .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 10 + .../user_count/aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../user_count/aggregate-Year-reference.csv | 10 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 11 + .../user_count/aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../user_count/aggregate-Year-reference.csv | 11 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../user_count/aggregate-Day-reference.csv | 11 + .../user_count/aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../user_count/aggregate-Year-reference.csv | 11 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../avg_file_count/aggregate-Day-cd.csv | 353 +++ .../avg_file_count/aggregate-Day-cs.csv | 353 +++ .../avg_file_count/aggregate-Day-pi.csv | 25 + .../aggregate-Day-reference.csv | 10 + .../avg_file_count/aggregate-Day-usr.csv | 10 + .../avg_file_count/aggregate-Month-cd.csv | 353 +++ .../avg_file_count/aggregate-Month-cs.csv | 353 +++ .../avg_file_count/aggregate-Month-pi.csv | 25 + .../aggregate-Month-reference.csv | 10 + .../avg_file_count/aggregate-Month-usr.csv | 10 + .../avg_file_count/aggregate-Quarter-cd.csv | 353 +++ .../avg_file_count/aggregate-Quarter-cs.csv | 353 +++ .../avg_file_count/aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../avg_file_count/aggregate-Quarter-usr.csv | 10 + .../avg_file_count/aggregate-Year-cd.csv | 353 +++ .../avg_file_count/aggregate-Year-cs.csv | 353 +++ .../avg_file_count/aggregate-Year-pi.csv | 25 + .../aggregate-Year-reference.csv | 10 + .../avg_file_count/aggregate-Year-usr.csv | 10 + .../avg_file_count/timeseries-Day-cd.csv | 19 + .../avg_file_count/timeseries-Day-cs.csv | 19 + .../avg_file_count/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_file_count/timeseries-Day-usr.csv | 10 + .../avg_file_count/timeseries-Month-cd.csv | 11 + .../avg_file_count/timeseries-Month-cs.csv | 11 + .../avg_file_count/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../avg_file_count/timeseries-Month-usr.csv | 10 + .../avg_file_count/timeseries-Quarter-cd.csv | 11 + .../avg_file_count/timeseries-Quarter-cs.csv | 11 + .../avg_file_count/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../avg_file_count/timeseries-Quarter-usr.csv | 10 + .../avg_file_count/timeseries-Year-cd.csv | 11 + .../avg_file_count/timeseries-Year-cs.csv | 11 + .../avg_file_count/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../avg_file_count/timeseries-Year-usr.csv | 10 + .../avg_hard_threshold/aggregate-Day-cd.csv | 353 +++ .../avg_hard_threshold/aggregate-Day-cs.csv | 353 +++ .../avg_hard_threshold/aggregate-Day-pi.csv | 25 + .../aggregate-Day-reference.csv | 10 + .../avg_hard_threshold/aggregate-Day-usr.csv | 10 + .../avg_hard_threshold/aggregate-Month-cd.csv | 353 +++ .../avg_hard_threshold/aggregate-Month-cs.csv | 353 +++ .../avg_hard_threshold/aggregate-Month-pi.csv | 25 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 353 +++ .../aggregate-Quarter-cs.csv | 353 +++ .../aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../avg_hard_threshold/aggregate-Year-cd.csv | 353 +++ .../avg_hard_threshold/aggregate-Year-cs.csv | 353 +++ .../avg_hard_threshold/aggregate-Year-pi.csv | 25 + .../aggregate-Year-reference.csv | 10 + .../avg_hard_threshold/aggregate-Year-usr.csv | 10 + .../avg_hard_threshold/timeseries-Day-cd.csv | 19 + .../avg_hard_threshold/timeseries-Day-cs.csv | 19 + .../avg_hard_threshold/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_hard_threshold/timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../avg_hard_threshold/timeseries-Year-cd.csv | 11 + .../avg_hard_threshold/timeseries-Year-cs.csv | 11 + .../avg_hard_threshold/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../avg_logical_usage/aggregate-Day-cd.csv | 353 +++ .../avg_logical_usage/aggregate-Day-cs.csv | 353 +++ .../avg_logical_usage/aggregate-Day-pi.csv | 25 + .../aggregate-Day-reference.csv | 10 + .../avg_logical_usage/aggregate-Day-usr.csv | 10 + .../avg_logical_usage/aggregate-Month-cd.csv | 353 +++ .../avg_logical_usage/aggregate-Month-cs.csv | 353 +++ .../avg_logical_usage/aggregate-Month-pi.csv | 25 + .../aggregate-Month-reference.csv | 10 + .../avg_logical_usage/aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 353 +++ .../aggregate-Quarter-cs.csv | 353 +++ .../aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../avg_logical_usage/aggregate-Year-cd.csv | 353 +++ .../avg_logical_usage/aggregate-Year-cs.csv | 353 +++ .../avg_logical_usage/aggregate-Year-pi.csv | 25 + .../aggregate-Year-reference.csv | 10 + .../avg_logical_usage/aggregate-Year-usr.csv | 10 + .../avg_logical_usage/timeseries-Day-cd.csv | 19 + .../avg_logical_usage/timeseries-Day-cs.csv | 19 + .../avg_logical_usage/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_logical_usage/timeseries-Day-usr.csv | 10 + .../avg_logical_usage/timeseries-Month-cd.csv | 11 + .../avg_logical_usage/timeseries-Month-cs.csv | 11 + .../avg_logical_usage/timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../avg_logical_usage/timeseries-Year-cd.csv | 11 + .../avg_logical_usage/timeseries-Year-cs.csv | 11 + .../avg_logical_usage/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../avg_logical_usage/timeseries-Year-usr.csv | 10 + .../aggregate-Day-cd.csv | 353 +++ .../aggregate-Day-cs.csv | 353 +++ .../aggregate-Day-pi.csv | 25 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 353 +++ .../aggregate-Month-cs.csv | 353 +++ .../aggregate-Month-pi.csv | 25 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 353 +++ .../aggregate-Quarter-cs.csv | 353 +++ .../aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 353 +++ .../aggregate-Year-cs.csv | 353 +++ .../aggregate-Year-pi.csv | 25 + .../aggregate-Year-reference.csv | 10 + .../aggregate-Year-usr.csv | 10 + .../timeseries-Day-cd.csv | 19 + .../timeseries-Day-cs.csv | 19 + .../timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../timeseries-Year-cd.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../avg_physical_usage/aggregate-Day-cd.csv | 353 +++ .../avg_physical_usage/aggregate-Day-cs.csv | 353 +++ .../avg_physical_usage/aggregate-Day-pi.csv | 25 + .../aggregate-Day-reference.csv | 10 + .../avg_physical_usage/aggregate-Day-usr.csv | 10 + .../avg_physical_usage/aggregate-Month-cd.csv | 353 +++ .../avg_physical_usage/aggregate-Month-cs.csv | 353 +++ .../avg_physical_usage/aggregate-Month-pi.csv | 25 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 353 +++ .../aggregate-Quarter-cs.csv | 353 +++ .../aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../avg_physical_usage/aggregate-Year-cd.csv | 353 +++ .../avg_physical_usage/aggregate-Year-cs.csv | 353 +++ .../avg_physical_usage/aggregate-Year-pi.csv | 25 + .../aggregate-Year-reference.csv | 10 + .../avg_physical_usage/aggregate-Year-usr.csv | 10 + .../avg_physical_usage/timeseries-Day-cd.csv | 19 + .../avg_physical_usage/timeseries-Day-cs.csv | 19 + .../avg_physical_usage/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_physical_usage/timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../avg_physical_usage/timeseries-Year-cd.csv | 11 + .../avg_physical_usage/timeseries-Year-cs.csv | 11 + .../avg_physical_usage/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../avg_soft_threshold/aggregate-Day-cd.csv | 353 +++ .../avg_soft_threshold/aggregate-Day-cs.csv | 353 +++ .../avg_soft_threshold/aggregate-Day-pi.csv | 25 + .../aggregate-Day-reference.csv | 10 + .../avg_soft_threshold/aggregate-Day-usr.csv | 10 + .../avg_soft_threshold/aggregate-Month-cd.csv | 353 +++ .../avg_soft_threshold/aggregate-Month-cs.csv | 353 +++ .../avg_soft_threshold/aggregate-Month-pi.csv | 25 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 353 +++ .../aggregate-Quarter-cs.csv | 353 +++ .../aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../avg_soft_threshold/aggregate-Year-cd.csv | 353 +++ .../avg_soft_threshold/aggregate-Year-cs.csv | 353 +++ .../avg_soft_threshold/aggregate-Year-pi.csv | 25 + .../aggregate-Year-reference.csv | 10 + .../avg_soft_threshold/aggregate-Year-usr.csv | 10 + .../avg_soft_threshold/timeseries-Day-cd.csv | 19 + .../avg_soft_threshold/timeseries-Day-cs.csv | 19 + .../avg_soft_threshold/timeseries-Day-pi.csv | 20 + .../timeseries-Day-reference.csv | 10 + .../avg_soft_threshold/timeseries-Day-usr.csv | 10 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-cs.csv | 11 + .../timeseries-Month-pi.csv | 12 + .../timeseries-Month-reference.csv | 10 + .../timeseries-Month-usr.csv | 10 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../timeseries-Quarter-usr.csv | 10 + .../avg_soft_threshold/timeseries-Year-cd.csv | 11 + .../avg_soft_threshold/timeseries-Year-cs.csv | 11 + .../avg_soft_threshold/timeseries-Year-pi.csv | 12 + .../timeseries-Year-reference.csv | 10 + .../timeseries-Year-usr.csv | 10 + .../username/user_count/aggregate-Day-cd.csv | 353 +++ .../username/user_count/aggregate-Day-cs.csv | 353 +++ .../username/user_count/aggregate-Day-pi.csv | 25 + .../user_count/aggregate-Day-reference.csv | 10 + .../username/user_count/aggregate-Day-usr.csv | 10 + .../user_count/aggregate-Month-cd.csv | 353 +++ .../user_count/aggregate-Month-cs.csv | 353 +++ .../user_count/aggregate-Month-pi.csv | 25 + .../user_count/aggregate-Month-reference.csv | 10 + .../user_count/aggregate-Month-usr.csv | 10 + .../user_count/aggregate-Quarter-cd.csv | 353 +++ .../user_count/aggregate-Quarter-cs.csv | 353 +++ .../user_count/aggregate-Quarter-pi.csv | 25 + .../aggregate-Quarter-reference.csv | 10 + .../user_count/aggregate-Quarter-usr.csv | 10 + .../username/user_count/aggregate-Year-cd.csv | 353 +++ .../username/user_count/aggregate-Year-cs.csv | 353 +++ .../username/user_count/aggregate-Year-pi.csv | 25 + .../user_count/aggregate-Year-reference.csv | 10 + .../user_count/aggregate-Year-usr.csv | 10 + .../username/user_count/timeseries-Day-cd.csv | 19 + .../username/user_count/timeseries-Day-cs.csv | 19 + .../username/user_count/timeseries-Day-pi.csv | 20 + .../user_count/timeseries-Day-reference.csv | 10 + .../user_count/timeseries-Day-usr.csv | 10 + .../user_count/timeseries-Month-cd.csv | 11 + .../user_count/timeseries-Month-cs.csv | 11 + .../user_count/timeseries-Month-pi.csv | 12 + .../user_count/timeseries-Month-reference.csv | 10 + .../user_count/timeseries-Month-usr.csv | 10 + .../user_count/timeseries-Quarter-cd.csv | 11 + .../user_count/timeseries-Quarter-cs.csv | 11 + .../user_count/timeseries-Quarter-pi.csv | 12 + .../timeseries-Quarter-reference.csv | 10 + .../user_count/timeseries-Quarter-usr.csv | 10 + .../user_count/timeseries-Year-cd.csv | 11 + .../user_count/timeseries-Year-cs.csv | 11 + .../user_count/timeseries-Year-pi.csv | 12 + .../user_count/timeseries-Year-reference.csv | 10 + .../user_count/timeseries-Year-usr.csv | 10 + .../raw-data/cloud-fields-and-filters.json | 5 + .../expected/localhost/raw-data/cloud.json | 853 ++++++ .../raw-data/jobs-fields-and-filters.json | 89 + .../raw-data/jobs-fresh_install.json | 1312 +++++++++ ...urcespecifications-fields-and-filters.json | 3 + .../raw-data/resourcespecifications.json | 6 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_cpu_hours/aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpu_hours/aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_gpus/aggregate-Day-reference.csv | 11 + .../avg_gpus/aggregate-Month-reference.csv | 11 + .../avg_gpus/aggregate-Quarter-reference.csv | 11 + .../avg_gpus/aggregate-Year-reference.csv | 11 + .../avg_gpus/timeseries-Day-reference.csv | 20 + .../avg_gpus/timeseries-Month-reference.csv | 11 + .../avg_gpus/timeseries-Quarter-reference.csv | 11 + .../avg_gpus/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../job_count/aggregate-Day-reference.csv | 11 + .../job_count/aggregate-Month-reference.csv | 11 + .../job_count/aggregate-Quarter-reference.csv | 11 + .../job_count/aggregate-Year-reference.csv | 11 + .../job_count/timeseries-Day-reference.csv | 20 + .../job_count/timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../job_count/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 11 + .../aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../aggregate-Year-reference.csv | 11 + .../timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../utilization/aggregate-Day-reference.csv | 11 + .../utilization/aggregate-Month-reference.csv | 11 + .../aggregate-Quarter-reference.csv | 11 + .../utilization/aggregate-Year-reference.csv | 11 + .../utilization/timeseries-Day-reference.csv | 20 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../utilization/timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 3 +- .../aggregate-Month-reference.csv | 3 +- .../aggregate-Quarter-reference.csv | 3 +- .../aggregate-Year-reference.csv | 3 +- .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 1 + .../aggregate-Month-reference.csv | 1 + .../aggregate-Quarter-reference.csv | 1 + .../aggregate-Year-reference.csv | 1 + .../timeseries-Day-reference.csv | 36 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../avg_file_count/aggregate-Day-cs.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../avg_file_count/aggregate-Month-cd.csv | 10 + .../avg_file_count/aggregate-Month-cs.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../avg_file_count/aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../avg_file_count/aggregate-Year-cd.csv | 10 + .../avg_file_count/aggregate-Year-cs.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../avg_file_count/aggregate-Year-usr.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../avg_file_count/timeseries-Month-cd.csv | 11 + .../avg_file_count/timeseries-Month-cs.csv | 11 + .../timeseries-Month-reference.csv | 11 + .../avg_file_count/timeseries-Month-usr.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../avg_file_count/timeseries-Quarter-usr.csv | 11 + .../avg_file_count/timeseries-Year-pi.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_hard_threshold/aggregate-Day-cd.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../avg_hard_threshold/aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cd.csv | 10 + .../aggregate-Quarter-cs.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../avg_hard_threshold/aggregate-Year-cd.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../avg_hard_threshold/aggregate-Year-usr.csv | 10 + .../avg_hard_threshold/timeseries-Day-pi.csv | 19 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-pi.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Quarter-usr.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_logical_usage/aggregate-Day-cd.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../avg_logical_usage/aggregate-Day-usr.csv | 10 + .../avg_logical_usage/aggregate-Month-cd.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-cd.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../avg_logical_usage/timeseries-Month-cd.csv | 11 + .../avg_logical_usage/timeseries-Month-cs.csv | 11 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Month-usr.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../avg_logical_usage/timeseries-Year-cs.csv | 11 + .../avg_logical_usage/timeseries-Year-pi.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../aggregate-Day-usr.csv | 10 + .../aggregate-Month-cd.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../aggregate-Year-cd.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-cs.csv | 19 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Day-usr.csv | 19 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Quarter-usr.csv | 11 + .../timeseries-Year-cs.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../avg_physical_usage/aggregate-Day-cd.csv | 10 + .../aggregate-Day-reference.csv | 10 + .../avg_physical_usage/aggregate-Month-pi.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../avg_physical_usage/timeseries-Day-pi.csv | 19 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Quarter-usr.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../timeseries-Year-usr.csv | 11 + .../aggregate-Day-reference.csv | 10 + .../avg_soft_threshold/aggregate-Month-cs.csv | 10 + .../aggregate-Month-reference.csv | 10 + .../aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-cs.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../aggregate-Quarter-usr.csv | 10 + .../avg_soft_threshold/aggregate-Year-pi.csv | 10 + .../aggregate-Year-reference.csv | 10 + .../timeseries-Day-reference.csv | 19 + .../timeseries-Month-cd.csv | 11 + .../timeseries-Month-reference.csv | 11 + .../timeseries-Month-usr.csv | 11 + .../timeseries-Quarter-cd.csv | 11 + .../timeseries-Quarter-pi.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../timeseries-Quarter-usr.csv | 11 + .../avg_soft_threshold/timeseries-Year-cd.csv | 11 + .../avg_soft_threshold/timeseries-Year-pi.csv | 11 + .../timeseries-Year-reference.csv | 11 + .../provider/user_count/aggregate-Day-cs.csv | 10 + .../provider/user_count/aggregate-Day-pi.csv | 10 + .../user_count/aggregate-Day-reference.csv | 10 + .../user_count/aggregate-Month-cd.csv | 10 + .../user_count/aggregate-Month-reference.csv | 10 + .../user_count/aggregate-Month-usr.csv | 10 + .../aggregate-Quarter-reference.csv | 10 + .../provider/user_count/aggregate-Year-cd.csv | 10 + .../provider/user_count/aggregate-Year-pi.csv | 10 + .../user_count/aggregate-Year-reference.csv | 10 + .../user_count/timeseries-Day-reference.csv | 19 + .../user_count/timeseries-Month-cd.csv | 11 + .../user_count/timeseries-Month-pi.csv | 11 + .../user_count/timeseries-Month-reference.csv | 11 + .../user_count/timeseries-Quarter-cd.csv | 11 + .../user_count/timeseries-Quarter-cs.csv | 11 + .../timeseries-Quarter-reference.csv | 11 + .../user_count/timeseries-Year-cs.csv | 11 + .../user_count/timeseries-Year-reference.csv | 11 + .../expected/reference/raw-data/cloud.json | 1706 +++++------ .../raw-data/jobs-fresh_install.json | 2624 ++++++++--------- .../reference/raw-data/jobs-upgrade.json | 2624 ++++++++--------- .../raw-data/resourcespecifications.json | 2 +- .../output/cloud/get_menus-Public User-1.json | 14 + .../output/cloud/get_menus-admin-1.json | 14 + .../cloud/get_menus-centerdirector-1.json | 14 + .../output/cloud/get_menus-centerstaff-1.json | 14 + .../output/cloud/get_menus-normaluser-1.json | 14 + .../output/cloud/get_menus-principal-1.json | 14 + .../cloud/get_menus-test.cd.one-center-1.json | 14 + .../cloud/get_menus-test.cs.one-center-1.json | 14 + .../cloud/get_menus-test.normal-user-1.json | 14 + .../output/cloud/get_menus-test.pi-1.json | 14 + .../cloud/get_menus-test.usr_dev-1.json | 14 + .../cloud/get_menus-test.usr_mgr-1.json | 14 + .../cloud/get_menus-test.usr_mgr_dev-1.json | 14 + .../gateways/get_menus-Public User-1.json | 220 -- .../output/gateways/get_menus-admin-1.json | 220 -- .../gateways/get_menus-centerdirector-1.json | 220 -- .../gateways/get_menus-centerstaff-1.json | 220 -- .../gateways/get_menus-normaluser-1.json | 220 -- .../gateways/get_menus-principal-1.json | 220 -- .../get_menus-test.cd.one-center-1.json | 220 -- .../get_menus-test.cs.one-center-1.json | 220 -- .../get_menus-test.normal-user-1.json | 220 -- .../output/gateways/get_menus-test.pi-1.json | 220 -- .../gateways/get_menus-test.usr_dev-1.json | 220 -- .../gateways/get_menus-test.usr_mgr-1.json | 220 -- .../get_menus-test.usr_mgr_dev-1.json | 220 -- .../output/jobs/get_menus-Public User-1.json | 14 + .../output/jobs/get_menus-admin-1.json | 14 + .../jobs/get_menus-centerdirector-1.json | 14 + .../output/jobs/get_menus-centerstaff-1.json | 14 + .../output/jobs/get_menus-normaluser-1.json | 14 + .../output/jobs/get_menus-principal-1.json | 14 + .../jobs/get_menus-test.cd.one-center-1.json | 14 + .../jobs/get_menus-test.cs.one-center-1.json | 14 + .../jobs/get_menus-test.normal-user-1.json | 14 + .../output/jobs/get_menus-test.pi-1.json | 14 + .../output/jobs/get_menus-test.usr_dev-1.json | 14 + .../output/jobs/get_menus-test.usr_mgr-1.json | 14 + .../jobs/get_menus-test.usr_mgr_dev-1.json | 14 + .../output/jobs/get_tabs-admin.json | 2 +- .../output/jobs/get_tabs-centerdirector.json | 2 +- .../output/jobs/get_tabs-centerstaff.json | 2 +- .../output/jobs/get_tabs-normaluser.json | 2 +- .../output/jobs/get_tabs-principal.json | 2 +- .../output/jobs/get_tabs-public_user.json | 2 +- .../jobs/get_tabs-test.cd.one-center.json | 2 +- .../jobs/get_tabs-test.cs.one-center.json | 2 +- .../jobs/get_tabs-test.normal-user.json | 2 +- .../output/jobs/get_tabs-test.pi.json | 2 +- .../output/jobs/get_tabs-test.usr_dev.json | 2 +- .../output/jobs/get_tabs-test.usr_mgr.json | 2 +- .../jobs/get_tabs-test.usr_mgr_dev.json | 2 +- .../storage/get_menus-Public User-1.json | 14 + .../output/storage/get_menus-admin-1.json | 14 + .../storage/get_menus-centerdirector-1.json | 14 + .../storage/get_menus-centerstaff-1.json | 14 + .../storage/get_menus-normaluser-1.json | 14 + .../output/storage/get_menus-principal-1.json | 14 + .../get_menus-test.cd.one-center-1.json | 14 + .../get_menus-test.cs.one-center-1.json | 14 + .../storage/get_menus-test.normal-user-1.json | 14 + .../output/storage/get_menus-test.pi-1.json | 14 + .../storage/get_menus-test.usr_dev-1.json | 14 + .../storage/get_menus-test.usr_mgr-1.json | 14 + .../storage/get_menus-test.usr_mgr_dev-1.json | 14 + .../output/cloud/cd-get_menus.json | 14 + .../output/cloud/cs-get_menus.json | 14 + .../output/cloud/pi-get_menus.json | 14 + .../output/cloud/pub-get_menus.json | 14 + .../output/cloud/usr-get_menus.json | 14 + .../output/gateways/cd-get_menus.json | 220 -- .../output/gateways/cs-get_menus.json | 220 -- .../output/gateways/pi-get_menus.json | 220 -- .../output/gateways/pub-get_menus.json | 220 -- .../output/gateways/usr-get_menus.json | 220 -- .../output/jobs/cd-get_menus.json | 14 + .../output/jobs/cs-get_menus.json | 14 + .../output/jobs/pi-get_menus.json | 14 + .../output/jobs/pub-get_menus.json | 14 + .../output/jobs/usr-get_menus.json | 14 + .../output/storage/cd-get_menus.json | 14 + .../output/storage/cs-get_menus.json | 14 + .../output/storage/pi-get_menus.json | 14 + .../output/storage/pub-get_menus.json | 14 + .../output/storage/usr-get_menus.json | 14 + tests/ci/bootstrap.sh | 18 +- tests/ci/scripts/xdmod-setup-jobs.tcl | 2 +- tests/component/lib/AclsTest.php | 1 + .../lib/Controllers/UsageExplorerTest.php | 5 + tests/integration/lib/Rest/JobViewerTest.php | 1 + .../WarehouseExportControllerProviderTest.php | 2 +- .../lib/Controllers/UsageExplorerJobsTest.php | 1 + .../Controllers/UsageExplorerStorageTest.php | 1 + .../lib/TestHarness/RegressionTestHelper.php | 1 + 8043 files changed, 173583 insertions(+), 7921 deletions(-) create mode 100644 configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json create mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Day-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-reference.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json delete mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json delete mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json delete mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json delete mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json delete mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json delete mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json diff --git a/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php b/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php index dbd68fa4ca..95d7181083 100644 --- a/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php +++ b/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php @@ -7,6 +7,8 @@ use OpenXdmod\Migration\DatabasesMigration as AbstractDatabasesMigration; use ETL\Utilities; +use CCR\DB; +use CCR\DB\MySQLHelper; /** * Migrate databases from version 11.0.0 to 11.5.0 @@ -17,6 +19,17 @@ public function execute() { parent::execute(); - Utilities::runEtlPipeline(['ingest-organizations', 'ingest-resources'], $this->logger); + Utilities::runEtlPipeline(['ingest-resources'], $this->logger); + + $dbh = DB::factory('datawarehouse'); + $mysql_helper = MySQLHelper::factory($dbh); + + if ($mysql_helper->tableExists('modw.storagefact')) { + Utilities::runEtlPipeline( + ['storage-migration-11-0-0_11-5-0', 'xdw-aggregate-storage'], + $this->logger, + ['last-modified-start-date' => '2017-01-01 00:00:00'] + ); + } } } diff --git a/configuration/datawarehouse.d/ref/Storage-group-bys.json b/configuration/datawarehouse.d/ref/Storage-group-bys.json index d21978b708..5420c7d294 100644 --- a/configuration/datawarehouse.d/ref/Storage-group-bys.json +++ b/configuration/datawarehouse.d/ref/Storage-group-bys.json @@ -17,6 +17,9 @@ "parentscience": { "$ref": "datawarehouse.d/ref/group-by-hierarchy.json#/parentscience" }, + "provider": { + "$ref": "datawarehouse.d/ref/group-by-common.json#/provider" + }, "mountpoint": { "attribute_table_schema": "modw", "attribute_to_aggregate_table_key_map": [ diff --git a/configuration/datawarehouse.d/ref/group-by-common.json b/configuration/datawarehouse.d/ref/group-by-common.json index a78116169a..58806cb37c 100644 --- a/configuration/datawarehouse.d/ref/group-by-common.json +++ b/configuration/datawarehouse.d/ref/group-by-common.json @@ -196,7 +196,7 @@ } ], "orderby": [ - "order_id" + "long_name" ], "records": { "id": "organization_id", diff --git a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json index 3bb9e26190..38a47e65e2 100644 --- a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json +++ b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json @@ -19,6 +19,25 @@ "schema": "mod_shredder" } } + }, + "storage-migration-11-0-0_11-5-0": { + "namespace": "ETL\\Maintenance", + "options_class": "MaintenanceOptions", + "class": "ExecuteSql", + "endpoints": { + "source": { + "type": "mysql", + "name": "Datawarehouse", + "config": "datawarehouse", + "schema": "modw" + }, + "destination": { + "type": "mysql", + "name": "Datawarehouse", + "config": "datawarehouse", + "schema": "modw" + } + } } }, "migration-11_0_0-11_5_0": [ @@ -31,5 +50,23 @@ "common/staging/resource-config.json" ] } + ], + "storage-migration-11-0-0_11-5-0": [ + { + "name": "manageStorageTables", + "description": "Changes to storage tables", + "class": "ManageTables", + "definition_file_list": [ + "storage/xdw/storagefact.json", + "storage/xdw/storagefact.aggregation.json" + ] + }, + { + "name": "updateStorageResourceOrganizationId", + "description": "Update resource organization for storage usage to be 1", + "sql_file_list": [ + "migration/update_storage_resource_organization.sql" + ] + } ] } diff --git a/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.aggregation.json b/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.aggregation.json index 755d20237f..2939562c65 100644 --- a/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.aggregation.json +++ b/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.aggregation.json @@ -19,6 +19,7 @@ "${AGGREGATION_UNIT}": "${:PERIOD_VALUE}", "resource_id": "sf.resource_id", "resourcetype_id": "sf.resourcetype_id", + "resource_organization_id": "sf.resource_organization_id", "mountpoint_id": "sf.mountpoint_id", "person_id": "sf.person_id", "principalinvestigator_person_id": "sf.principalinvestigator_person_id", @@ -45,6 +46,7 @@ "${AGGREGATION_UNIT}", "resource_id", "resourcetype_id", + "resource_organization_id", "mountpoint_id", "person_id", "principalinvestigator_person_id", diff --git a/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.json b/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.json index be11593b98..dcee1347df 100644 --- a/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.json +++ b/configuration/etl/etl_action_defs.d/storage/xdw/storagefact.json @@ -7,6 +7,7 @@ "id": "su.storage_usage_id", "resource_id": "su.resource_id", "resourcetype_id": "res.resource_type_id", + "resource_organization_id": "res.organization_id", "mountpoint_id": "su.mountpoint_id", "person_id": "su.person_id", "principalinvestigator_person_id": "pi.person_id", diff --git a/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql b/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql new file mode 100644 index 0000000000..bfeddca769 --- /dev/null +++ b/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql @@ -0,0 +1 @@ +UPDATE modw.storagefact SET resource_organization_id = 1; \ No newline at end of file diff --git a/configuration/etl/etl_tables.d/storage/xdw/storagefact.aggregation.json b/configuration/etl/etl_tables.d/storage/xdw/storagefact.aggregation.json index 4329fe199e..bf6edb1b59 100644 --- a/configuration/etl/etl_tables.d/storage/xdw/storagefact.aggregation.json +++ b/configuration/etl/etl_tables.d/storage/xdw/storagefact.aggregation.json @@ -35,6 +35,12 @@ "nullable": false, "comment": "The ID of the resource type." }, + { + "name": "resource_organization_id", + "type": "int(11)", + "nullable": false, + "comment": "The organization ID of the resource." + }, { "name": "mountpoint_id", "type": "int(11)", diff --git a/configuration/etl/etl_tables.d/storage/xdw/storagefact.json b/configuration/etl/etl_tables.d/storage/xdw/storagefact.json index e18363320f..abf1e4c04a 100644 --- a/configuration/etl/etl_tables.d/storage/xdw/storagefact.json +++ b/configuration/etl/etl_tables.d/storage/xdw/storagefact.json @@ -23,6 +23,12 @@ "nullable": false, "comment": "Resource ID" }, + { + "name": "resource_organization_id", + "type": "int(11)", + "nullable": false, + "comment": "Resource Organization ID" + }, { "name": "resourcetype_id", "type": "int(11)", diff --git a/configuration/rawstatistics.d/20_jobs.json b/configuration/rawstatistics.d/20_jobs.json index 3f016d8244..b17120fd04 100644 --- a/configuration/rawstatistics.d/20_jobs.json +++ b/configuration/rawstatistics.d/20_jobs.json @@ -77,6 +77,16 @@ "foreignKey": "person_organization_id" } }, + { + "schema": "modw", + "name": "serviceprovider", + "alias": "sp", + "join": { + "primaryKey": "organization_id", + "foreignTableAlias": "jr", + "foreignKey": "resource_organization_id" + } + }, { "schema": "modw", "name": "nodecount", @@ -124,6 +134,14 @@ "documentation": "The resource that ran the job.", "batchExport": true }, + { + "name": "Service Provider", + "tableAlias": "sp", + "column": "long_name", + "group": "Administration", + "documentation": "The organization of the resource that ran the job.", + "batchExport": true + }, { "name": "Timezone", "tableAlias": "rf", diff --git a/configuration/rawstatistics.d/60_cloud.json b/configuration/rawstatistics.d/60_cloud.json index 15bdffe60e..eab4ef5457 100644 --- a/configuration/rawstatistics.d/60_cloud.json +++ b/configuration/rawstatistics.d/60_cloud.json @@ -47,6 +47,16 @@ "foreignKey": "resource_id" } }, + { + "schema": "modw", + "name": "serviceprovider", + "alias": "sp", + "join": { + "primaryKey": "organization_id", + "foreignTableAlias": "sr", + "foreignKey": "service_provider" + } + }, { "schema": "modw", @@ -136,6 +146,14 @@ "documentation": "The resource that ran the job.", "batchExport": true }, + { + "name": "Service Provider", + "tableAlias": "sp", + "column": "long_name", + "group": "Administration", + "documentation": "The organization of the resource that ran the job.", + "batchExport": true + }, { "name": "System Username", "tableAlias": "sa", diff --git a/configuration/rawstatistics.d/80_gateways.json b/configuration/rawstatistics.d/80_gateways.json index 722429881b..0611e551b3 100644 --- a/configuration/rawstatistics.d/80_gateways.json +++ b/configuration/rawstatistics.d/80_gateways.json @@ -77,6 +77,16 @@ "foreignKey": "person_organization_id" } }, + { + "schema": "modw", + "name": "serviceprovider", + "alias": "sp", + "join": { + "primaryKey": "organization_id", + "foreignTableAlias": "jt", + "foreignKey": "resource_organization_id" + } + }, { "schema": "modw", "name": "nodecount", @@ -114,6 +124,14 @@ "documentation": "The resource that ran the job.", "batchExport": true }, + { + "name": "Service Provider", + "tableAlias": "sp", + "column": "long_name", + "group": "Administration", + "documentation": "The organization of the resource that ran the job.", + "batchExport": true + }, { "name": "Timezone", "tableAlias": "rf", diff --git a/configuration/roles.d/storage.json b/configuration/roles.d/storage.json index c9d8459747..bdee544172 100644 --- a/configuration/roles.d/storage.json +++ b/configuration/roles.d/storage.json @@ -10,6 +10,10 @@ "realm": "Storage", "group_by": "resource" }, + { + "realm": "Storage", + "group_by": "provider" + }, { "realm": "Storage", "group_by": "resource_type" @@ -54,6 +58,10 @@ "realm": "Storage", "group_by": "resource" }, + { + "realm": "Storage", + "group_by": "provider" + }, { "realm": "Storage", "group_by": "resource_type" diff --git a/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json b/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json index 6dd74263d9..5f1273e982 100644 --- a/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json +++ b/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json @@ -139,6 +139,16 @@ "_disable_menu": false } ], + [ + { + "_realm_name": "Jobs", + "_group_by_name": "provider", + "_default_statisticname": "all", + "_order_id": 0, + "_show_menu": true, + "_disable_menu": false + } + ], [ { "_realm_name": "Jobs", diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bd81a1b3fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Cores Reserved Weighted By Wall Hours" +c4.m16,4.0000 +c2.m4,2.0000 +c2.m8,2.0000 +m1.small,2.0000 +c1.m1,1.0000 +c1.m4,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bd81a1b3fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Cores Reserved Weighted By Wall Hours" +c4.m16,4.0000 +c2.m4,2.0000 +c2.m8,2.0000 +m1.small,2.0000 +c1.m1,1.0000 +c1.m4,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bd81a1b3fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Cores Reserved Weighted By Wall Hours" +c4.m16,4.0000 +c2.m4,2.0000 +c2.m8,2.0000 +m1.small,2.0000 +c1.m1,1.0000 +c1.m4,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bd81a1b3fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Cores Reserved Weighted By Wall Hours" +c4.m16,4.0000 +c2.m4,2.0000 +c2.m8,2.0000 +m1.small,2.0000 +c1.m1,1.0000 +c1.m4,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f402a99849 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 +2018-04-19,0,2.0000,0,0,1.0000,1.0000 +2018-04-20,0,2.0000,0,0,0,1.0000 +2018-04-21,0,2.0000,0,0,0,1.0000 +2018-04-22,0,2.0000,0,0,0,1.0000 +2018-04-23,0,2.0000,0,0,0,1.0000 +2018-04-24,0,2.0000,0,0,0,1.0000 +2018-04-25,0,2.0000,0,0,0,1.0000 +2018-04-26,4.0000,2.0000,0,0,0,1.0000 +2018-04-27,4.0000,2.0000,0,0,1.0000,1.0000 +2018-04-28,4.0000,0,0,0,0,1.0000 +2018-04-29,4.0000,0,0,0,0,1.0000 +2018-04-30,4.0000,2.0000,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bb0fe60f79 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" +2018-04,4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..149c70f788 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3809d52700 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" +2018,4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..15fe55aba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" +c4.m16,17179869184.0000 +c2.m8,8589934592.0000 +c1.m4,4299974822.5086 +c2.m4,4294967296.0000 +m1.small,4294967296.0000 +c1.m1,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..15fe55aba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" +c4.m16,17179869184.0000 +c2.m8,8589934592.0000 +c1.m4,4299974822.5086 +c2.m4,4294967296.0000 +m1.small,4294967296.0000 +c1.m1,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..15fe55aba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" +c4.m16,17179869184.0000 +c2.m8,8589934592.0000 +c1.m4,4299974822.5086 +c2.m4,4294967296.0000 +m1.small,4294967296.0000 +c1.m1,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..15fe55aba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" +c4.m16,17179869184.0000 +c2.m8,8589934592.0000 +c1.m4,4299974822.5086 +c2.m4,4294967296.0000 +m1.small,4294967296.0000 +c1.m1,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..31bd32e3a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,17179869184.0000,8589934592.0000,4434564236.9765,4294967296.0000,4294967296.0000,1073741824.0000 +2018-04-19,0,0,4294967296.0000,4294967296.0000,0,1073741824.0000 +2018-04-20,0,0,4294967296.0000,4294967296.0000,0,0 +2018-04-21,0,0,4294967296.0000,4294967296.0000,0,0 +2018-04-22,0,0,4294967296.0000,4294967296.0000,0,0 +2018-04-23,0,0,4294967296.0000,4294967296.0000,0,0 +2018-04-24,0,0,4294967296.0000,4294967296.0000,0,0 +2018-04-25,0,0,4294967296.0000,4294967296.0000,0,0 +2018-04-26,17179869184.0000,0,4294967296.0000,4294967296.0000,0,0 +2018-04-27,17179869184.0000,0,4294967296.0000,4294967296.0000,0,1073741824.0000 +2018-04-28,17179869184.0000,0,4294967296.0000,0,0,0 +2018-04-29,17179869184.0000,0,4294967296.0000,0,0,0 +2018-04-30,17179869184.0000,0,4294967296.0000,4294967296.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..656d181633 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,17179869184.0000,8589934592.0000,4299974822.5086,4294967296.0000,4294967296.0000,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ed0ac05554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",17179869184.0000,8589934592.0000,4299974822.5086,4294967296.0000,4294967296.0000,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..435ea896f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,17179869184.0000,8589934592.0000,4299974822.5086,4294967296.0000,4294967296.0000,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..81ec236a01 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +c1.m1,21474836480.0000 +c1.m4,21474836480.0000 +c2.m4,21474836480.0000 +c2.m8,21474836480.0000 +c4.m16,21474836480.0000 +m1.small,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..81ec236a01 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +c1.m1,21474836480.0000 +c1.m4,21474836480.0000 +c2.m4,21474836480.0000 +c2.m8,21474836480.0000 +c4.m16,21474836480.0000 +m1.small,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..81ec236a01 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +c1.m1,21474836480.0000 +c1.m4,21474836480.0000 +c2.m4,21474836480.0000 +c2.m8,21474836480.0000 +c4.m16,21474836480.0000 +m1.small,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..81ec236a01 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +c1.m1,21474836480.0000 +c1.m4,21474836480.0000 +c2.m4,21474836480.0000 +c2.m8,21474836480.0000 +c4.m16,21474836480.0000 +m1.small,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cb5a5a8f46 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000,0,0,0 +2018-04-20,0,21474836480.0000,21474836480.0000,0,0,0 +2018-04-21,0,21474836480.0000,21474836480.0000,0,0,0 +2018-04-22,0,21474836480.0000,21474836480.0000,0,0,0 +2018-04-23,0,21474836480.0000,21474836480.0000,0,0,0 +2018-04-24,0,21474836480.0000,21474836480.0000,0,0,0 +2018-04-25,0,21474836480.0000,21474836480.0000,0,0,0 +2018-04-26,0,21474836480.0000,21474836480.0000,0,21474836480.0000,0 +2018-04-27,21474836480.0000,21474836480.0000,21474836480.0000,0,21474836480.0000,0 +2018-04-28,0,21474836480.0000,0,0,21474836480.0000,0 +2018-04-29,0,21474836480.0000,0,0,21474836480.0000,0 +2018-04-30,0,21474836480.0000,21474836480.0000,0,21474836480.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..89c01acd1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d0edd65513 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d14b81d754 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ef93a4665f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Per Session" +c2.m4,52.40437500 +c4.m16,35.26453704 +c1.m4,23.19602564 +c1.m1,1.10305556 +c2.m8,0.23527778 +m1.small,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ef93a4665f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Per Session" +c2.m4,52.40437500 +c4.m16,35.26453704 +c1.m4,23.19602564 +c1.m1,1.10305556 +c2.m8,0.23527778 +m1.small,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ef93a4665f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Per Session" +c2.m4,52.40437500 +c4.m16,35.26453704 +c1.m4,23.19602564 +c1.m1,1.10305556 +c2.m8,0.23527778 +m1.small,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ef93a4665f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Per Session" +c2.m4,52.40437500 +c4.m16,35.26453704 +c1.m4,23.19602564 +c1.m1,1.10305556 +c2.m8,0.23527778 +m1.small,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..13d7161912 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" +2018-04-18,0.70805556,2.21305556,1.91251634,0.01527778,0.23527778,0.00000000 +2018-04-19,7.89680556,0,5.64845029,0.23722222,0,0 +2018-04-20,24.00000000,0,4.90663889,0,0,0 +2018-04-21,24.00000000,0,24.00000000,0,0,0 +2018-04-22,24.00000000,0,24.00000000,0,0,0 +2018-04-23,24.00000000,0,24.00000000,0,0,0 +2018-04-24,24.00000000,0,24.00000000,0,0,0 +2018-04-25,24.00000000,0,24.00000000,0,0,0 +2018-04-26,24.00000000,6.35250000,18.11465278,0,0,0 +2018-04-27,19.82805556,24.00000000,24.00000000,5.67055556,0,0 +2018-04-28,0,24.00000000,24.00000000,0,0,0 +2018-04-29,0,24.00000000,24.00000000,0,0,0 +2018-04-30,5.28861111,23.01500000,23.00472222,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a3355a4a1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" +2018-04,52.40458333,35.26453704,23.24032051,1.10578704,0.23527778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ab9ef2f353 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" +"2018 Q2",52.40458333,35.26453704,23.24032051,1.10578704,0.23527778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e1f5dcc3e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" +2018,52.40458333,35.26453704,23.24032051,1.10578704,0.23527778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a5dfc90b97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","CPU Hours: Total" +c1.m4,906.3725 +c4.m16,423.1744 +c2.m4,419.2367 +c1.m1,6.6347 +c2.m8,0.4706 +m1.small,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a5dfc90b97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","CPU Hours: Total" +c1.m4,906.3725 +c4.m16,423.1744 +c2.m4,419.2367 +c1.m1,6.6347 +c2.m8,0.4706 +m1.small,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a5dfc90b97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","CPU Hours: Total" +c1.m4,906.3725 +c4.m16,423.1744 +c2.m4,419.2367 +c1.m1,6.6347 +c2.m8,0.4706 +m1.small,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a5dfc90b97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","CPU Hours: Total" +c1.m4,906.3725 +c4.m16,423.1744 +c2.m4,419.2367 +c1.m1,6.6347 +c2.m8,0.4706 +m1.small,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f90af43a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" +2018-04-18,32.5128,17.7044,1.4161,0.0153,0.4706,0.0006 +2018-04-19,107.3206,0,31.5872,0.9489,0,0 +2018-04-20,49.0664,0,48.0000,0,0,0 +2018-04-21,72.0000,0,48.0000,0,0,0 +2018-04-22,72.0000,0,48.0000,0,0,0 +2018-04-23,72.0000,0,48.0000,0,0,0 +2018-04-24,72.0000,0,48.0000,0,0,0 +2018-04-25,72.0000,0,48.0000,0,0,0 +2018-04-26,72.4586,25.4100,48.0000,0,0,0 +2018-04-27,72.0000,96.0000,39.6561,5.6706,0,0 +2018-04-28,72.0000,96.0000,0,0,0,0 +2018-04-29,72.0000,96.0000,0,0,0,0 +2018-04-30,69.0142,92.0600,10.5772,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c150998690 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" +2018-04,906.3725,423.1744,419.2367,6.6347,0.4706,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f27a09a224 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" +"2018 Q2",906.3725,423.1744,419.2367,6.6347,0.4706,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e8c4eb40fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" +2018,906.3725,423.1744,419.2367,6.6347,0.4706,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3457dcd3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Core Hour Utilization (%)" +c1.m4,1.2415 +c4.m16,0.5796 +c2.m4,0.5742 +c1.m1,0.0091 +c2.m8,0.0006 +m1.small,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3457dcd3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Core Hour Utilization (%)" +c1.m4,1.2415 +c4.m16,0.5796 +c2.m4,0.5742 +c1.m1,0.0091 +c2.m8,0.0006 +m1.small,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bfde071c1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Core Hour Utilization (%)" +c1.m4,0.2181 +c4.m16,0.1018 +c2.m4,0.1009 +c1.m1,0.0016 +c2.m8,0.0001 +m1.small,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1ebbb0aba8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Core Hour Utilization (%)" +c1.m4,0.0626 +c4.m16,0.0292 +c2.m4,0.0289 +c1.m1,0.0005 +c2.m8,0.0000 +m1.small,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..77710f49e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" +2018-04-18,0.5789,0.3153,0.0252,0.0003,0.0084,0.0000 +2018-04-19,1.9110,0,0.5625,0.0169,0,0 +2018-04-20,0.8737,0,0.8547,0,0,0 +2018-04-21,1.2821,0,0.8547,0,0,0 +2018-04-22,1.2821,0,0.8547,0,0,0 +2018-04-23,1.2821,0,0.8547,0,0,0 +2018-04-24,1.2821,0,0.8547,0,0,0 +2018-04-25,1.2821,0,0.8547,0,0,0 +2018-04-26,1.2902,0.4525,0.8547,0,0,0 +2018-04-27,1.2821,1.7094,0.7061,0.1010,0,0 +2018-04-28,1.2821,1.7094,0,0,0,0 +2018-04-29,1.2821,1.7094,0,0,0,0 +2018-04-30,1.2289,1.6392,0.1883,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..980670a5ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" +2018-04,1.2415,0.5796,0.5742,0.0091,0.0006,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..172be10608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" +"2018 Q2",0.2181,0.1018,0.1009,0.0016,0.0001,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0e173ebcd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" +2018,0.0626,0.0292,0.0289,0.0005,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d7ad7dee53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Ended" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d7ad7dee53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Ended" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d7ad7dee53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Ended" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d7ad7dee53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Ended" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d04a0fccd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" +2018-04-18,10,1,1,2,1,0 +2018-04-19,18,4,1,0,0,0 +2018-04-20,7,0,0,0,0,0 +2018-04-21,0,0,0,0,0,0 +2018-04-22,0,0,0,0,0,0 +2018-04-23,0,0,0,0,0,0 +2018-04-24,0,0,0,0,0,0 +2018-04-25,0,0,0,0,0,0 +2018-04-26,1,0,0,0,0,0 +2018-04-27,0,1,1,0,0,0 +2018-04-28,0,0,0,0,0,0 +2018-04-29,0,0,0,0,0,0 +2018-04-30,3,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5e0626e2e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" +2018-04,39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2044e986d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" +"2018 Q2",39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..72086f5f94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" +2018,39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fafdc7826b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Active" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fafdc7826b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Active" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fafdc7826b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Active" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fafdc7826b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Active" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0b1cbaa8be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" +2018-04-18,17,1,1,2,1,0 +2018-04-19,19,4,2,0,0,0 +2018-04-20,10,0,1,0,0,0 +2018-04-21,3,0,1,0,0,0 +2018-04-22,3,0,1,0,0,0 +2018-04-23,3,0,1,0,0,0 +2018-04-24,3,0,1,0,0,0 +2018-04-25,3,0,1,0,0,0 +2018-04-26,4,0,1,1,0,0 +2018-04-27,3,1,1,1,0,0 +2018-04-28,3,0,0,1,0,0 +2018-04-29,3,0,0,1,0,0 +2018-04-30,3,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c66293965c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" +2018-04,39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0255df39ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" +"2018 Q2",39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ebe4e37ed3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" +2018,39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3d2928ca7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Started" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3d2928ca7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Started" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3d2928ca7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Started" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3d2928ca7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Number of Sessions Started" +c1.m4,39 +c1.m1,6 +c2.m4,4 +c4.m16,3 +c2.m8,1 +m1.small,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..793642e8ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" +2018-04-18,17,1,1,2,1,0 +2018-04-19,12,4,2,0,0,0 +2018-04-20,9,0,0,0,0,0 +2018-04-21,0,0,0,0,0,0 +2018-04-22,0,0,0,0,0,0 +2018-04-23,0,0,0,0,0,0 +2018-04-24,0,0,0,0,0,0 +2018-04-25,0,0,0,0,0,0 +2018-04-26,1,0,0,1,0,0 +2018-04-27,0,1,0,0,0,0 +2018-04-28,0,0,0,0,0,0 +2018-04-29,0,0,0,0,0,0 +2018-04-30,0,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9eabe00da5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" +2018-04,39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e48d097a52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" +"2018 Q2",39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0b5fc153dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" +2018,39,6,4,3,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..537b7490d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Total" +c1.m4,906.3725 +c2.m4,209.6183 +c4.m16,105.7936 +c1.m1,6.6347 +c2.m8,0.2353 +m1.small,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..537b7490d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Total" +c1.m4,906.3725 +c2.m4,209.6183 +c4.m16,105.7936 +c1.m1,6.6347 +c2.m8,0.2353 +m1.small,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..537b7490d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Total" +c1.m4,906.3725 +c2.m4,209.6183 +c4.m16,105.7936 +c1.m1,6.6347 +c2.m8,0.2353 +m1.small,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..537b7490d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,15 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Instance Type","Wall Hours: Total" +c1.m4,906.3725 +c2.m4,209.6183 +c4.m16,105.7936 +c1.m1,6.6347 +c2.m8,0.2353 +m1.small,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e3c46cde17 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" +2018-04-18,32.5128,0.7081,4.4261,0.0153,0.2353,0.0003 +2018-04-19,107.3206,15.7936,0,0.9489,0,0 +2018-04-20,49.0664,24.0000,0,0,0,0 +2018-04-21,72.0000,24.0000,0,0,0,0 +2018-04-22,72.0000,24.0000,0,0,0,0 +2018-04-23,72.0000,24.0000,0,0,0,0 +2018-04-24,72.0000,24.0000,0,0,0,0 +2018-04-25,72.0000,24.0000,0,0,0,0 +2018-04-26,72.4586,24.0000,6.3525,0,0,0 +2018-04-27,72.0000,19.8281,24.0000,5.6706,0,0 +2018-04-28,72.0000,0,24.0000,0,0,0 +2018-04-29,72.0000,0,24.0000,0,0,0 +2018-04-30,69.0142,5.2886,23.0150,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d6071ec8c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" +2018-04,906.3725,209.6183,105.7936,6.6347,0.2353,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7fc9f5aa6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" +"2018 Q2",906.3725,209.6183,105.7936,6.6347,0.2353,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..71b9c64685 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Instance Type" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" +2018,906.3725,209.6183,105.7936,6.6347,0.2353,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..87e2f60950 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Cores Reserved Weighted By Wall Hours" +Default,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..87e2f60950 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Cores Reserved Weighted By Wall Hours" +Default,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..87e2f60950 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Cores Reserved Weighted By Wall Hours" +Default,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..87e2f60950 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Cores Reserved Weighted By Wall Hours" +Default,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6391179ab2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d25e3d3e0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dffea7ce55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cbdb2eb2cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..01fa6ec919 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Default,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..01fa6ec919 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Default,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..01fa6ec919 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Default,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..01fa6ec919 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Default,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f726a58be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..28573f41cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e692fdd5f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e85db3fc07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3cc7deee23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Default,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3cc7deee23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Default,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3cc7deee23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Default,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3cc7deee23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Default,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..056cd008d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..87b309d290 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..09b18048e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1598a3f682 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d3b7ccb785 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Per Session" +Default,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d3b7ccb785 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Per Session" +Default,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d3b7ccb785 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Per Session" +Default,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d3b7ccb785 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Per Session" +Default,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cf4c339def --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7d8ca194f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d452c98c7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b5121ae6b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f24d3e010f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"CPU Hours: Total" +Default,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f24d3e010f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"CPU Hours: Total" +Default,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f24d3e010f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"CPU Hours: Total" +Default,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f24d3e010f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"CPU Hours: Total" +Default,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..12c450cd70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e37eebdcc2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f498c4c4b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ae55bfbb7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ebd64cf360 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Core Hour Utilization (%)" +Default,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ebd64cf360 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Core Hour Utilization (%)" +Default,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3dafd52527 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Core Hour Utilization (%)" +Default,0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bdc56ccd1f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Core Hour Utilization (%)" +Default,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f70d2f2642 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7bbce1eae5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4f2f2d0c85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..994005311f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9cb0a758d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Ended" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9cb0a758d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Ended" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9cb0a758d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Ended" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9cb0a758d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Ended" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d3ca231678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8df786df56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1b2148d8c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..85e8faf645 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7e8189e48c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Active" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7e8189e48c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Active" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7e8189e48c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Active" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7e8189e48c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Active" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..767b84ac6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f42f89d6df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e450598813 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..67ee2c6f1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..38d5716d41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Started" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..38d5716d41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Started" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..38d5716d41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Started" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..38d5716d41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Number of Sessions Started" +Default,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e97133d7f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5509c6aa32 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..47d18a57b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3dca008133 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e619df4ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Total" +Default,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e619df4ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Total" +Default,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e619df4ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Total" +Default,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e619df4ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Domain,"Wall Hours: Total" +Default,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6eee99942c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Default] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ed7d1ce067 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Default] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6fdfff8ed6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Default] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bcf74b68f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Domain" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Default] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..127c5e9594 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Cores Reserved Weighted By Wall Hours" +"Mechanics and Materials",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..127c5e9594 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Cores Reserved Weighted By Wall Hours" +"Mechanics and Materials",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..127c5e9594 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Cores Reserved Weighted By Wall Hours" +"Mechanics and Materials",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..127c5e9594 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Cores Reserved Weighted By Wall Hours" +"Mechanics and Materials",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3b187e33e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8f17e5cdae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..782c75c761 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e036cbde6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..570dfab8fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..570dfab8fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..570dfab8fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..570dfab8fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..13c44ac4a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bd6a543595 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9d03709501 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fe731342bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..104446dd05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..104446dd05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..104446dd05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..104446dd05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanics and Materials",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4c3c33056e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7d95ac4eaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..41b806c57d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5d7e1b9e0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4ee14b867b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Per Session" +"Mechanics and Materials",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4ee14b867b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Per Session" +"Mechanics and Materials",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4ee14b867b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Per Session" +"Mechanics and Materials",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4ee14b867b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Per Session" +"Mechanics and Materials",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8b72438110 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5483d454c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..549e3479d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c95d468350 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..16baddc1f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","CPU Hours: Total" +"Mechanics and Materials",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..16baddc1f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","CPU Hours: Total" +"Mechanics and Materials",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..16baddc1f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","CPU Hours: Total" +"Mechanics and Materials",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..16baddc1f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","CPU Hours: Total" +"Mechanics and Materials",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3434f31b0c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7bb8cca21b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8fab4572dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6c0c8564d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..310aa74686 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Core Hour Utilization (%)" +"Mechanics and Materials",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..310aa74686 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Core Hour Utilization (%)" +"Mechanics and Materials",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f961ef2f18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Core Hour Utilization (%)" +"Mechanics and Materials",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eaba7fedaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Core Hour Utilization (%)" +"Mechanics and Materials",0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ea6e9dd7cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b83fa08726 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b102731d70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f7c26149ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7a465edcf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Ended" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7a465edcf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Ended" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7a465edcf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Ended" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7a465edcf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Ended" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..80819d8e55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f8a503847c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8809614330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ed0c4051ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cab1dc5a66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Active" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cab1dc5a66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Active" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cab1dc5a66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Active" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..cab1dc5a66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Active" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8cf7ddd98f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e884acf60e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5e18ed191d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..68934def1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..83082391b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Started" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..83082391b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Started" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..83082391b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Started" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..83082391b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Number of Sessions Started" +"Mechanics and Materials",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ffb9dc55d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..966118a7b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..50062330b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a231cb0135 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3e55a14aff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Total" +"Mechanics and Materials",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3e55a14aff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Total" +"Mechanics and Materials",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3e55a14aff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Total" +"Mechanics and Materials",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3e55a14aff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"PI Group","Wall Hours: Total" +"Mechanics and Materials",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3404c797b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanics and Materials] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e90baa8fac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanics and Materials] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2764985d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanics and Materials] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..13d2879334 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanics and Materials] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a65a2d8755 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Cores Reserved Weighted By Wall Hours" +Active,1.4297 +Inactive,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a65a2d8755 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Cores Reserved Weighted By Wall Hours" +Active,1.4297 +Inactive,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a65a2d8755 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Cores Reserved Weighted By Wall Hours" +Active,1.4297 +Inactive,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a65a2d8755 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Cores Reserved Weighted By Wall Hours" +Active,1.4297 +Inactive,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d7fabf3e4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753,1.2857 +2018-04-19,1.1291,1.0000 +2018-04-20,1.3285,0.0000 +2018-04-21,1.2500,0 +2018-04-22,1.2500,0 +2018-04-23,1.2500,0 +2018-04-24,1.2500,0 +2018-04-25,1.2500,0 +2018-04-26,1.4188,0.0000 +2018-04-27,1.7558,2.0000 +2018-04-28,1.7500,0 +2018-04-29,1.7500,0 +2018-04-30,1.7638,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3ae0dca0b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4297,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cf83b8431a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4297,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5f4c2471ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" +2018,1.4297,1.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ca685e1026 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Active,5393140917.1785 +Inactive,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ca685e1026 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Active,5393140917.1785 +Inactive,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ca685e1026 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Active,5393140917.1785 +Inactive,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ca685e1026 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Active,5393140917.1785 +Inactive,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..31bea5a10b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944764131.5393,9213088329.1429 +2018-04-19,4270403251.7652,4265183926.4199 +2018-04-20,4294967296.0000,0.0000 +2018-04-21,4294967296.0000,0 +2018-04-22,4294967296.0000,0 +2018-04-23,4294967296.0000,0 +2018-04-24,4294967296.0000,0 +2018-04-25,4294967296.0000,0 +2018-04-26,5091100499.4926,0.0000 +2018-04-27,6689827368.0124,4294967296.0000 +2018-04-28,7516192768.0000,0 +2018-04-29,7516192768.0000,0 +2018-04-30,7342168641.6194,4294967296.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..96bcbe1583 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5393140917.1785,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..97d7215bf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5393140917.1785,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5549a8dabf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5393140917.1785,4270706832.7488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c2508fde20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Active,21474836480.0000 +Inactive,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c2508fde20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Active,21474836480.0000 +Inactive,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c2508fde20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Active,21474836480.0000 +Inactive,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c2508fde20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Active,21474836480.0000 +Inactive,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..310c06b674 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000 +2018-04-20,21474836480.0000,0.0000 +2018-04-21,21474836480.0000,0 +2018-04-22,21474836480.0000,0 +2018-04-23,21474836480.0000,0 +2018-04-24,21474836480.0000,0 +2018-04-25,21474836480.0000,0 +2018-04-26,21474836480.0000,0.0000 +2018-04-27,21474836480.0000,21474836480.0000 +2018-04-28,21474836480.0000,0 +2018-04-29,21474836480.0000,0 +2018-04-30,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..15a119e057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7bc0d2160a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..95ec61c83f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..114b7c52c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Per Session" +Active,23.14924004 +Inactive,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..114b7c52c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Per Session" +Active,23.14924004 +Inactive,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..114b7c52c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Per Session" +Active,23.14924004 +Inactive,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..114b7c52c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Per Session" +Active,23.14924004 +Inactive,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dc0c020fa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" +2018-04-18,1.72253788,0.00000000 +2018-04-19,4.89282222,0.00000000 +2018-04-20,6.64239899,0.00000000 +2018-04-21,24.00000000,0 +2018-04-22,24.00000000,0 +2018-04-23,24.00000000,0 +2018-04-24,24.00000000,0 +2018-04-25,24.00000000,0 +2018-04-26,17.13518519,0.00000000 +2018-04-27,20.24972222,0.00000000 +2018-04-28,24.00000000,0 +2018-04-29,24.00000000,0 +2018-04-30,19.46350000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..618ccd916a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" +2018-04,23.14924004,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3a07a01e86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" +"2018 Q2",23.14924004,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6676b25d48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" +2018,23.14924004,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..637f0a1c37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","CPU Hours: Total" +Active,1754.1433 +Inactive,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..637f0a1c37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","CPU Hours: Total" +Active,1754.1433 +Inactive,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..637f0a1c37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","CPU Hours: Total" +Active,1754.1433 +Inactive,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..637f0a1c37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","CPU Hours: Total" +Active,1754.1433 +Inactive,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4264954127 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" +2018-04-18,52.1172,0.0025 +2018-04-19,138.1142,1.7425 +2018-04-20,97.0664,0.0000 +2018-04-21,120.0000,0 +2018-04-22,120.0000,0 +2018-04-23,120.0000,0 +2018-04-24,120.0000,0 +2018-04-25,120.0000,0 +2018-04-26,145.8686,0.0000 +2018-04-27,213.3261,0.0006 +2018-04-28,168.0000,0 +2018-04-29,168.0000,0 +2018-04-30,171.6508,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76b2a5e8c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" +2018-04,1754.1433,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..88b8985d88 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" +"2018 Q2",1754.1433,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8e8e6a2923 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" +2018,1754.1433,1.7461 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4135533aea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Core Hour Utilization (%)" +Active,2.4027 +Inactive,0.0024 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4135533aea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Core Hour Utilization (%)" +Active,2.4027 +Inactive,0.0024 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f354c63b3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Core Hour Utilization (%)" +Active,0.4221 +Inactive,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..be4b47c7e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Core Hour Utilization (%)" +Active,0.1211 +Inactive,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dc01e7fc46 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" +2018-04-18,0.9280,0.0000 +2018-04-19,2.4593,0.0310 +2018-04-20,1.7284,0.0000 +2018-04-21,2.1368,0 +2018-04-22,2.1368,0 +2018-04-23,2.1368,0 +2018-04-24,2.1368,0 +2018-04-25,2.1368,0 +2018-04-26,2.5974,0.0000 +2018-04-27,3.7985,0.0000 +2018-04-28,2.9915,0 +2018-04-29,2.9915,0 +2018-04-30,3.0565,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dc956aa37e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" +2018-04,2.4027,0.0024 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c67865f95a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" +"2018 Q2",0.4221,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..18ec29189a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" +2018,0.1211,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..020640cedd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Ended" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..020640cedd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Ended" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..020640cedd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Ended" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..020640cedd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Ended" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..452b33c4e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" +2018-04-18,15,0 +2018-04-19,23,0 +2018-04-20,7,0 +2018-04-21,0,0 +2018-04-22,0,0 +2018-04-23,0,0 +2018-04-24,0,0 +2018-04-25,0,0 +2018-04-26,1,0 +2018-04-27,2,0 +2018-04-28,0,0 +2018-04-29,0,0 +2018-04-30,5,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4fc945e99e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" +2018-04,53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..84fe39f4e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" +"2018 Q2",53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6e43b0e43d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" +2018,53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..92f60a263f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Active" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..92f60a263f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Active" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..92f60a263f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Active" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..92f60a263f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Active" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..30f2cbff26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" +2018-04-18,22,0 +2018-04-19,25,0 +2018-04-20,11,0 +2018-04-21,4,0 +2018-04-22,4,0 +2018-04-23,4,0 +2018-04-24,4,0 +2018-04-25,4,0 +2018-04-26,6,0 +2018-04-27,6,0 +2018-04-28,4,0 +2018-04-29,4,0 +2018-04-30,5,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9b7ab770bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" +2018-04,53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e2d0ea36d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" +"2018 Q2",53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..233dd99a90 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" +2018,53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7e0629f574 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Started" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7e0629f574 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Started" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7e0629f574 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Started" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7e0629f574 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Number of Sessions Started" +Active,53 +Inactive,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ad2d2661ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" +2018-04-18,22,0 +2018-04-19,18,0 +2018-04-20,9,0 +2018-04-21,0,0 +2018-04-22,0,0 +2018-04-23,0,0 +2018-04-24,0,0 +2018-04-25,0,0 +2018-04-26,2,0 +2018-04-27,1,0 +2018-04-28,0,0 +2018-04-29,0,0 +2018-04-30,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6ee75cad41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" +2018-04,53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9139f6bda2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" +"2018 Q2",53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..39a857378c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" +2018,53,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dc2d339266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Total" +Active,1226.9097 +Inactive,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dc2d339266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Total" +Active,1226.9097 +Inactive,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dc2d339266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Total" +Active,1226.9097 +Inactive,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dc2d339266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM State","Wall Hours: Total" +Active,1226.9097 +Inactive,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b8f1b7810d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" +2018-04-18,37.8958,0.0019 +2018-04-19,122.3206,1.7425 +2018-04-20,73.0664,0.0000 +2018-04-21,96.0000,0 +2018-04-22,96.0000,0 +2018-04-23,96.0000,0 +2018-04-24,96.0000,0 +2018-04-25,96.0000,0 +2018-04-26,102.8111,0.0000 +2018-04-27,121.4983,0.0003 +2018-04-28,96.0000,0 +2018-04-29,96.0000,0 +2018-04-30,97.3175,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dfb603e94a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" +2018-04,1226.9097,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1cf939ef30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" +"2018 Q2",1226.9097,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e190f285a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM State" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" +2018,1226.9097,1.7450 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8d91b13ca6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Cores Reserved Weighted By Wall Hours" +Screwdriver,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8d91b13ca6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Cores Reserved Weighted By Wall Hours" +Screwdriver,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8d91b13ca6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Cores Reserved Weighted By Wall Hours" +Screwdriver,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8d91b13ca6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Cores Reserved Weighted By Wall Hours" +Screwdriver,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ad58e909e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6816a3999a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0255312e24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..afdee35951 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eefe5613e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eefe5613e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eefe5613e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eefe5613e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b269ef1adc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fdbc971d69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..30dceddd3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..69f20432b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3cf79a7fa8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3cf79a7fa8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3cf79a7fa8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3cf79a7fa8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Screwdriver,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1971c89fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ddbef51730 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..48c3db5ab2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..78c741a157 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9a47d68627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Per Session" +Screwdriver,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9a47d68627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Per Session" +Screwdriver,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9a47d68627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Per Session" +Screwdriver,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9a47d68627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Per Session" +Screwdriver,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a0306725d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a89dd99043 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d8d8ed36b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..29c2c761a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..688eb32f63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"CPU Hours: Total" +Screwdriver,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..688eb32f63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"CPU Hours: Total" +Screwdriver,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..688eb32f63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"CPU Hours: Total" +Screwdriver,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..688eb32f63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"CPU Hours: Total" +Screwdriver,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4785446a98 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dbb7828e5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7b91183017 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..566f7a2c16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8254c2d1d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Core Hour Utilization (%)" +Screwdriver,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8254c2d1d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Core Hour Utilization (%)" +Screwdriver,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..77b75ba563 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Core Hour Utilization (%)" +Screwdriver,0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c19d743f0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Core Hour Utilization (%)" +Screwdriver,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c38c7d99b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dfe63cc209 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fd0788b55d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ca492705ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%)" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..505cbfe473 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Ended" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..505cbfe473 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Ended" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..505cbfe473 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Ended" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..505cbfe473 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Ended" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1bbc8947f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..04e819cf7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3f10522b80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..78078bee64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..df07ac502f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Active" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..df07ac502f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Active" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..df07ac502f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Active" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..df07ac502f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Active" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a342a1824e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cd087dcee0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..54c11f9de4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f7d0ed180b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4629de7b6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Started" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4629de7b6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Started" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4629de7b6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Started" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4629de7b6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Number of Sessions Started" +Screwdriver,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..673d902b14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4e67bd5f1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5ff870b2a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c1417d8bf3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cbd94480b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Total" +Screwdriver,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cbd94480b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Total" +Screwdriver,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cbd94480b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Total" +Screwdriver,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..cbd94480b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Summary,"Wall Hours: Total" +Screwdriver,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..33de98cca4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Screwdriver] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..62b33d3b4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Screwdriver] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dbbe780c00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Screwdriver] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2e3f7d0e07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Screwdriver] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ef00b04ccb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" +Engineering,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ef00b04ccb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" +Engineering,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ef00b04ccb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" +Engineering,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ef00b04ccb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" +Engineering,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b52ffc7dad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..51dff6a354 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..23052ba9d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..156f0a1788 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6895678901 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Engineering,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6895678901 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Engineering,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6895678901 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Engineering,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6895678901 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" +Engineering,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..01ce6c35ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..324cc3a8e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c34f70b45a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..efbc494712 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a978a405e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Engineering,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a978a405e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Engineering,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a978a405e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Engineering,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a978a405e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +Engineering,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3b455a700b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5a652325c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e9ffdb60a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b564dd9929 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e9ca30ceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Per Session" +Engineering,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e9ca30ceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Per Session" +Engineering,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e9ca30ceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Per Session" +Engineering,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e9ca30ceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Per Session" +Engineering,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..353a687b2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9df43ce2e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3265fcfab8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..64919a32d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7a6177f0d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","CPU Hours: Total" +Engineering,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7a6177f0d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","CPU Hours: Total" +Engineering,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7a6177f0d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","CPU Hours: Total" +Engineering,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7a6177f0d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","CPU Hours: Total" +Engineering,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6194e8eab8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6bb15a2a27 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a9c42e6f51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..752ef10c56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..55a6145667 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Core Hour Utilization (%)" +Engineering,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..55a6145667 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Core Hour Utilization (%)" +Engineering,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9c00bb0517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Core Hour Utilization (%)" +Engineering,0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..22b526eec1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Core Hour Utilization (%)" +Engineering,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cbaeb86e85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dca40b7b15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1df264253c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ac7ae2f337 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1ce4c65cd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Ended" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1ce4c65cd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Ended" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1ce4c65cd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Ended" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1ce4c65cd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Ended" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fcc3a608da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..da89af6369 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..036baf7f09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d95140ad7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..03534d0b23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Active" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..03534d0b23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Active" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..03534d0b23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Active" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..03534d0b23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Active" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9431aae706 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1095371f13 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5c43352425 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..803f71c3bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5cceb34bb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Started" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5cceb34bb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Started" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5cceb34bb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Started" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5cceb34bb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Number of Sessions Started" +Engineering,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..44292901ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cde4515406 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..304f8f9192 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0cd0de3a0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e8bc793dcf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Total" +Engineering,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e8bc793dcf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Total" +Engineering,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e8bc793dcf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Total" +Engineering,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e8bc793dcf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Decanal Unit","Wall Hours: Total" +Engineering,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f5e25e758 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Engineering] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3ab0cb28b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Engineering] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dbb60f8147 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Engineering] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..edeef8895b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Engineering] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b26decd21e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Cores Reserved Weighted By Wall Hours" +"Mechanical and Structural Systems",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b26decd21e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Cores Reserved Weighted By Wall Hours" +"Mechanical and Structural Systems",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b26decd21e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Cores Reserved Weighted By Wall Hours" +"Mechanical and Structural Systems",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b26decd21e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Cores Reserved Weighted By Wall Hours" +"Mechanical and Structural Systems",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cb2ad6c693 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5c028ed84c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b3a5c7e9a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b83dd41a2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ed69f98698 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ed69f98698 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ed69f98698 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ed69f98698 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bb536e6958 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b6a5adfe34 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d482bd133a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7258442838 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..29a500d79c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..29a500d79c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..29a500d79c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..29a500d79c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Mechanical and Structural Systems",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..24b67cd53f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8db3d700c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6026c018e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ac94ea5d4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f1a7bdffb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Per Session" +"Mechanical and Structural Systems",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f1a7bdffb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Per Session" +"Mechanical and Structural Systems",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f1a7bdffb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Per Session" +"Mechanical and Structural Systems",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f1a7bdffb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Per Session" +"Mechanical and Structural Systems",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0031b9a0df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d15b383410 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..735cf2674c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..99a37ff999 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bb6eb5a39f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"CPU Hours: Total" +"Mechanical and Structural Systems",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bb6eb5a39f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"CPU Hours: Total" +"Mechanical and Structural Systems",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bb6eb5a39f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"CPU Hours: Total" +"Mechanical and Structural Systems",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bb6eb5a39f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"CPU Hours: Total" +"Mechanical and Structural Systems",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3f1b9818ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..02aa8538aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d35ff22351 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f6b74bdd95 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c294982292 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Core Hour Utilization (%)" +"Mechanical and Structural Systems",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c294982292 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Core Hour Utilization (%)" +"Mechanical and Structural Systems",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..88de98bd00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Core Hour Utilization (%)" +"Mechanical and Structural Systems",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..57f9bf972d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Core Hour Utilization (%)" +"Mechanical and Structural Systems",0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1da7167554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8c61c6b18e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5d0e62b4e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..88ea4fb6c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..af6178a61b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Ended" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..af6178a61b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Ended" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..af6178a61b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Ended" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..af6178a61b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Ended" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..948643d118 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b96f3365a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4d22ff7824 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f8eadc0690 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..055432fba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Active" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..055432fba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Active" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..055432fba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Active" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..055432fba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Active" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..72b5793aec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..316e0de5b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d381928eff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2dec624df9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..227ac8e6d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Started" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..227ac8e6d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Started" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..227ac8e6d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Started" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..227ac8e6d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Number of Sessions Started" +"Mechanical and Structural Systems",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dec1300a22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5d1b236ff8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad2caa239c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..36716f225f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8b2a882e52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Total" +"Mechanical and Structural Systems",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8b2a882e52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Total" +"Mechanical and Structural Systems",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8b2a882e52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Total" +"Mechanical and Structural Systems",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8b2a882e52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Department,"Wall Hours: Total" +"Mechanical and Structural Systems",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..07da17cfd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Mechanical and Structural Systems] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8508a8ffbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Mechanical and Structural Systems] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..da9302f809 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Mechanical and Structural Systems] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..899804ac51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Mechanical and Structural Systems] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64eabfa8a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Cores Reserved Weighted By Wall Hours" +"Warbler, Yellow",2.0145 +"Warbler, Yellow-rumped",1.3040 +"Warbler, Blackburnian",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..64eabfa8a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Cores Reserved Weighted By Wall Hours" +"Warbler, Yellow",2.0145 +"Warbler, Yellow-rumped",1.3040 +"Warbler, Blackburnian",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..64eabfa8a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Cores Reserved Weighted By Wall Hours" +"Warbler, Yellow",2.0145 +"Warbler, Yellow-rumped",1.3040 +"Warbler, Blackburnian",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..64eabfa8a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Cores Reserved Weighted By Wall Hours" +"Warbler, Yellow",2.0145 +"Warbler, Yellow-rumped",1.3040 +"Warbler, Blackburnian",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b5e6579795 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,3.9999,1.0282,0 +2018-04-19,2.0000,1.0000,1.0000 +2018-04-20,2.0000,1.0000,0 +2018-04-21,2.0000,1.0000,0 +2018-04-22,2.0000,1.0000,0 +2018-04-23,2.0000,1.0000,0 +2018-04-24,2.0000,1.0000,0 +2018-04-25,2.0000,1.0000,0 +2018-04-26,2.0000,1.2418,0 +2018-04-27,1.7776,1.7500,0 +2018-04-28,0,1.7500,0 +2018-04-29,0,1.7500,0 +2018-04-30,2.0000,1.7503,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5718f350ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" +2018-04,2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d5e2d7aae1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8905b069b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" +2018,2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8947a3c7dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Yellow-rumped",5602121263.9108 +"Warbler, Yellow",4471965428.8596 +"Warbler, Blackburnian",3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8947a3c7dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Yellow-rumped",5602121263.9108 +"Warbler, Yellow",4471965428.8596 +"Warbler, Blackburnian",3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8947a3c7dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Yellow-rumped",5602121263.9108 +"Warbler, Yellow",4471965428.8596 +"Warbler, Blackburnian",3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8947a3c7dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Yellow-rumped",5602121263.9108 +"Warbler, Yellow",4471965428.8596 +"Warbler, Blackburnian",3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d3625453c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,4459286187.3607,17179060592.7300,0 +2018-04-19,4294967296.0000,4294967296.0000,3804999079.2242 +2018-04-20,4294967296.0000,4294967296.0000,0 +2018-04-21,4294967296.0000,4294967296.0000,0 +2018-04-22,4294967296.0000,4294967296.0000,0 +2018-04-23,4294967296.0000,4294967296.0000,0 +2018-04-24,4294967296.0000,4294967296.0000,0 +2018-04-25,4294967296.0000,4294967296.0000,0 +2018-04-26,5333543431.8969,4294967296.0000,0 +2018-04-27,7516192768.0000,3578609141.5754,0 +2018-04-28,7516192768.0000,0,0 +2018-04-29,7516192768.0000,0,0 +2018-04-30,7517272003.2285,4294967296.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..11f0a0cc79 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0331ee41e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d0ed2bec20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..10cba484a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Blackburnian",21474836480.0000 +"Warbler, Yellow",21474836480.0000 +"Warbler, Yellow-rumped",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..10cba484a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Blackburnian",21474836480.0000 +"Warbler, Yellow",21474836480.0000 +"Warbler, Yellow-rumped",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..10cba484a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Blackburnian",21474836480.0000 +"Warbler, Yellow",21474836480.0000 +"Warbler, Yellow-rumped",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..10cba484a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Warbler, Blackburnian",21474836480.0000 +"Warbler, Yellow",21474836480.0000 +"Warbler, Yellow-rumped",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a928beec22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,0,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-20,0,21474836480.0000,21474836480.0000 +2018-04-21,0,21474836480.0000,21474836480.0000 +2018-04-22,0,21474836480.0000,21474836480.0000 +2018-04-23,0,21474836480.0000,21474836480.0000 +2018-04-24,0,21474836480.0000,21474836480.0000 +2018-04-25,0,21474836480.0000,21474836480.0000 +2018-04-26,0,21474836480.0000,21474836480.0000 +2018-04-27,0,21474836480.0000,21474836480.0000 +2018-04-28,0,0,21474836480.0000 +2018-04-29,0,0,21474836480.0000 +2018-04-30,0,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1b74dac386 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60a35ce01b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b8de8efb4f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e8f38d3468 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Per Session" +"Warbler, Yellow",36.50106481 +"Warbler, Yellow-rumped",27.87240741 +"Warbler, Blackburnian",0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e8f38d3468 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Per Session" +"Warbler, Yellow",36.50106481 +"Warbler, Yellow-rumped",27.87240741 +"Warbler, Blackburnian",0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e8f38d3468 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Per Session" +"Warbler, Yellow",36.50106481 +"Warbler, Yellow-rumped",27.87240741 +"Warbler, Blackburnian",0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e8f38d3468 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Per Session" +"Warbler, Yellow",36.50106481 +"Warbler, Yellow-rumped",27.87240741 +"Warbler, Blackburnian",0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9a83fbdef4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" +2018-04-18,0.00000000,1.67356944,0 +2018-04-19,7.89680556,8.50259259,0.56712121 +2018-04-20,24.00000000,4.90663889,0 +2018-04-21,24.00000000,24.00000000,0 +2018-04-22,24.00000000,24.00000000,0 +2018-04-23,24.00000000,24.00000000,0 +2018-04-24,24.00000000,24.00000000,0 +2018-04-25,24.00000000,24.00000000,0 +2018-04-26,24.00000000,15.76222222,0 +2018-04-27,12.74930556,24.00000000,0 +2018-04-28,0,24.00000000,0 +2018-04-29,0,24.00000000,0 +2018-04-30,5.28861111,23.00729167,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d6d1f47e62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" +2018-04,36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f1248b438f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" +"2018 Q2",36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..172a39462a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" +2018,36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3efc0e36d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"CPU Hours: Total" +"Warbler, Yellow-rumped",1308.4550 +"Warbler, Yellow",441.1961 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3efc0e36d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"CPU Hours: Total" +"Warbler, Yellow-rumped",1308.4550 +"Warbler, Yellow",441.1961 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3efc0e36d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"CPU Hours: Total" +"Warbler, Yellow-rumped",1308.4550 +"Warbler, Yellow",441.1961 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3efc0e36d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"CPU Hours: Total" +"Warbler, Yellow-rumped",1308.4550 +"Warbler, Yellow",441.1961 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4ffcdcd8ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" +2018-04-18,34.4147,17.7050,0 +2018-04-19,102.0311,31.5872,6.2383 +2018-04-20,49.0664,48.0000,0 +2018-04-21,72.0000,48.0000,0 +2018-04-22,72.0000,48.0000,0 +2018-04-23,72.0000,48.0000,0 +2018-04-24,72.0000,48.0000,0 +2018-04-25,72.0000,48.0000,0 +2018-04-26,97.8686,48.0000,0 +2018-04-27,168.0000,45.3267,0 +2018-04-28,168.0000,0,0 +2018-04-29,168.0000,0,0 +2018-04-30,161.0742,10.5772,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c0ba86aea4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" +2018-04,1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e094723b87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" +"2018 Q2",1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e5148829ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" +2018,1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7ebab57dc7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Core Hour Utilization (%)" +"Warbler, Yellow-rumped",1.7922 +"Warbler, Yellow",0.6043 +"Warbler, Blackburnian",0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7ebab57dc7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Core Hour Utilization (%)" +"Warbler, Yellow-rumped",1.7922 +"Warbler, Yellow",0.6043 +"Warbler, Blackburnian",0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b125e194f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Core Hour Utilization (%)" +"Warbler, Yellow-rumped",0.3148 +"Warbler, Yellow",0.1062 +"Warbler, Blackburnian",0.0015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..88a0c7c1f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Core Hour Utilization (%)" +"Warbler, Yellow-rumped",0.0903 +"Warbler, Yellow",0.0304 +"Warbler, Blackburnian",0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8737d4d3e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" +2018-04-18,0.6128,0.3153,0 +2018-04-19,1.8168,0.5625,0.1111 +2018-04-20,0.8737,0.8547,0 +2018-04-21,1.2821,0.8547,0 +2018-04-22,1.2821,0.8547,0 +2018-04-23,1.2821,0.8547,0 +2018-04-24,1.2821,0.8547,0 +2018-04-25,1.2821,0.8547,0 +2018-04-26,1.7427,0.8547,0 +2018-04-27,2.9915,0.8071,0 +2018-04-28,2.9915,0,0 +2018-04-29,2.9915,0,0 +2018-04-30,2.8681,0.1883,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5c90713d13 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" +2018-04,1.7922,0.6043,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1362268b8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" +"2018 Q2",0.3148,0.1062,0.0015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4c30344adc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" +2018,0.0903,0.0304,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5d02779466 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Ended" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5d02779466 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Ended" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5d02779466 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Ended" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5d02779466 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Ended" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..407f4ab0cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" +2018-04-18,13,0,2 +2018-04-19,11,11,1 +2018-04-20,7,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,1,0,0 +2018-04-27,0,0,2 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,4,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b724855ffe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..754f7a5117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9fd831af69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4b6c17b8dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Active" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4b6c17b8dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Active" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4b6c17b8dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Active" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4b6c17b8dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Active" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e7a5faf779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" +2018-04-18,20,0,2 +2018-04-19,12,11,2 +2018-04-20,10,0,1 +2018-04-21,3,0,1 +2018-04-22,3,0,1 +2018-04-23,3,0,1 +2018-04-24,3,0,1 +2018-04-25,3,0,1 +2018-04-26,5,0,1 +2018-04-27,4,0,2 +2018-04-28,4,0,0 +2018-04-29,4,0,0 +2018-04-30,4,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e37ec97f27 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a229c6276d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..722adaac85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8fa0057781 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Started" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8fa0057781 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Started" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8fa0057781 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Started" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8fa0057781 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Number of Sessions Started" +"Warbler, Yellow-rumped",36 +"Warbler, Blackburnian",11 +"Warbler, Yellow",6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fbea6d23c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" +2018-04-18,20,0,2 +2018-04-19,5,11,2 +2018-04-20,9,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,2,0,0 +2018-04-27,0,0,1 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ce5aecc21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..33b8e8a223 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..37201e6729 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2c9e12911f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Total" +"Warbler, Yellow-rumped",1003.4092 +"Warbler, Yellow",219.0072 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2c9e12911f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Total" +"Warbler, Yellow-rumped",1003.4092 +"Warbler, Yellow",219.0072 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2c9e12911f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Total" +"Warbler, Yellow-rumped",1003.4092 +"Warbler, Yellow",219.0072 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2c9e12911f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +User,"Wall Hours: Total" +"Warbler, Yellow-rumped",1003.4092 +"Warbler, Yellow",219.0072 +"Warbler, Blackburnian",6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c77da7d960 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" +2018-04-18,33.4714,4.4264,0 +2018-04-19,102.0311,15.7936,6.2383 +2018-04-20,49.0664,24.0000,0 +2018-04-21,72.0000,24.0000,0 +2018-04-22,72.0000,24.0000,0 +2018-04-23,72.0000,24.0000,0 +2018-04-24,72.0000,24.0000,0 +2018-04-25,72.0000,24.0000,0 +2018-04-26,78.8111,24.0000,0 +2018-04-27,96.0000,25.4986,0 +2018-04-28,96.0000,0,0 +2018-04-29,96.0000,0,0 +2018-04-30,92.0292,5.2886,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e752468c60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" +2018-04,1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2ab1631779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" +"2018 Q2",1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1ad5f9cca1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" +2018,1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e2c5e10b1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Cores Reserved Weighted By Wall Hours" +"Tern, Sandwich",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e2c5e10b1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Cores Reserved Weighted By Wall Hours" +"Tern, Sandwich",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e2c5e10b1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Cores Reserved Weighted By Wall Hours" +"Tern, Sandwich",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e2c5e10b1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Cores Reserved Weighted By Wall Hours" +"Tern, Sandwich",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..75ac63c8ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..75334a01a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9d35329ebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e03748d6fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..54d3e68a7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..54d3e68a7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..54d3e68a7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..54d3e68a7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bad5c50797 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..10acf5591b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ce269a1719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a7b57821f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..88c6386c20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..88c6386c20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..88c6386c20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..88c6386c20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"Tern, Sandwich",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2a1965d006 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bfc3d2d9b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e3685d5ed1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c31e5ac715 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c00f112bac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Per Session" +"Tern, Sandwich",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c00f112bac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Per Session" +"Tern, Sandwich",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c00f112bac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Per Session" +"Tern, Sandwich",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c00f112bac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Per Session" +"Tern, Sandwich",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1b3274be5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..afc53f9b07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e1fe7d44d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..85897aa742 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..30444a776b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"CPU Hours: Total" +"Tern, Sandwich",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..30444a776b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"CPU Hours: Total" +"Tern, Sandwich",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..30444a776b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"CPU Hours: Total" +"Tern, Sandwich",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..30444a776b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"CPU Hours: Total" +"Tern, Sandwich",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cb2449f1dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..39a8b6a2e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..197926b1f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8f56888c0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b50a871589 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Core Hour Utilization (%)" +"Tern, Sandwich",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b50a871589 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Core Hour Utilization (%)" +"Tern, Sandwich",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2f6562e35a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Core Hour Utilization (%)" +"Tern, Sandwich",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4a23e4d2d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Core Hour Utilization (%)" +"Tern, Sandwich",0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f6a235b012 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8e456e27e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e9c602d474 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ec488b6fa4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c44d0dd655 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Ended" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c44d0dd655 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Ended" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c44d0dd655 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Ended" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c44d0dd655 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Ended" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f1cc4d24d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7969b6a49c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..93466b565d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b379780f68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d512d68130 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Active" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d512d68130 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Active" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d512d68130 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Active" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d512d68130 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Active" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..750ea6e1e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2889645319 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fa3e46d076 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bcf9e62c31 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..62e5ed14c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Started" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..62e5ed14c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Started" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..62e5ed14c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Started" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..62e5ed14c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Number of Sessions Started" +"Tern, Sandwich",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..688c7d457b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5e76bd066e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c05d6b6c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2036bac36e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64a8a45d68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Total" +"Tern, Sandwich",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..64a8a45d68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Total" +"Tern, Sandwich",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..64a8a45d68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Total" +"Tern, Sandwich",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..64a8a45d68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +PI,"Wall Hours: Total" +"Tern, Sandwich",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6b20466f32 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[Tern, Sandwich] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6c825a078d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[Tern, Sandwich] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d91bbda416 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[Tern, Sandwich] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6c2b8a46ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[Tern, Sandwich] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..df69cb2eed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Cores Reserved Weighted By Wall Hours" +zealous,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..df69cb2eed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Cores Reserved Weighted By Wall Hours" +zealous,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..df69cb2eed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Cores Reserved Weighted By Wall Hours" +zealous,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..df69cb2eed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Cores Reserved Weighted By Wall Hours" +zealous,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5d23617c0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9300508965 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9664336342 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..63014232bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a93e45912c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +zealous,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a93e45912c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +zealous,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a93e45912c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +zealous,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a93e45912c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +zealous,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..df0ff09937 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..628c6871de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0b5b7f6d09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f90a6375fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5b6b7e17f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +zealous,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5b6b7e17f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +zealous,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5b6b7e17f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +zealous,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5b6b7e17f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +zealous,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..df168220a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..30ba1b4954 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..11a75093a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..923343fa17 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fcf37e5ea9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Per Session" +zealous,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fcf37e5ea9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Per Session" +zealous,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fcf37e5ea9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Per Session" +zealous,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fcf37e5ea9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Per Session" +zealous,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6c49887aea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8f8c6a3d29 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2517b5553f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a5321033ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..23dde743dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"CPU Hours: Total" +zealous,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..23dde743dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"CPU Hours: Total" +zealous,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..23dde743dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"CPU Hours: Total" +zealous,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..23dde743dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"CPU Hours: Total" +zealous,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b548ffac6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..33154564d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5eb38730c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b1a5844faa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8c7ba13517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Core Hour Utilization (%)" +zealous,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8c7ba13517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Core Hour Utilization (%)" +zealous,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..04038b410b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Core Hour Utilization (%)" +zealous,0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0a32bf3b7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Core Hour Utilization (%)" +zealous,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fd1d7becca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..46851b80af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a40489639a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4f825ea11c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9bed979a7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Ended" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9bed979a7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Ended" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9bed979a7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Ended" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9bed979a7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Ended" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ec0cc80afa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ce01842432 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..564b67d05b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5644e8eb6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..68f3748e9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Active" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..68f3748e9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Active" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..68f3748e9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Active" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..68f3748e9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Active" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d13529facc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..35b51da1b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..10b7fd0770 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bddc35ce43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..848431fa3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Started" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..848431fa3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Started" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..848431fa3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Started" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..848431fa3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Number of Sessions Started" +zealous,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9ce92f3e71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..01027968cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ffe6cb2fd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5137186e4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bc806d3c4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Total" +zealous,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bc806d3c4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Total" +zealous,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bc806d3c4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Total" +zealous,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bc806d3c4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Project,"Wall Hours: Total" +zealous,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8b00b64396 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[zealous] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..41f37aa8c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[zealous] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ea8908c5f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[zealous] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..30d211a4df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Project" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[zealous] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ce2cc9406 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Cores Reserved Weighted By Wall Hours" +"screw - Screwdriver",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ce2cc9406 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Cores Reserved Weighted By Wall Hours" +"screw - Screwdriver",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ce2cc9406 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Cores Reserved Weighted By Wall Hours" +"screw - Screwdriver",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ce2cc9406 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Cores Reserved Weighted By Wall Hours" +"screw - Screwdriver",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e77d9086ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7fbe9dbaa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a2d12ee55c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7bbd354c61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2f13f995b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2f13f995b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2f13f995b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2f13f995b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d310501226 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4d28087a2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..717dce8236 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b979ab21c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3e931f2561 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3e931f2561 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3e931f2561 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3e931f2561 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"screw - Screwdriver",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..965b9a6983 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..979ce91bed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..93f9349a3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a7562ed66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7c131a0951 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Per Session" +"screw - Screwdriver",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7c131a0951 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Per Session" +"screw - Screwdriver",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7c131a0951 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Per Session" +"screw - Screwdriver",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7c131a0951 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Per Session" +"screw - Screwdriver",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6f8bd7c3ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d44c8eb754 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..314441cd82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4e310a16a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..14c26d2c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"CPU Hours: Total" +"screw - Screwdriver",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..14c26d2c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"CPU Hours: Total" +"screw - Screwdriver",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..14c26d2c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"CPU Hours: Total" +"screw - Screwdriver",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..14c26d2c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"CPU Hours: Total" +"screw - Screwdriver",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..64b733c30c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8ef6073eb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..528fe6e0b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..beb5f95662 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6ecea90d1a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Core Hour Utilization (%)" +"screw - Screwdriver",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6ecea90d1a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Core Hour Utilization (%)" +"screw - Screwdriver",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ac0a34dad9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Core Hour Utilization (%)" +"screw - Screwdriver",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..01116015bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Core Hour Utilization (%)" +"screw - Screwdriver",0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8a35c87509 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..24a9f285ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d4a78e0e46 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e31d0a81b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3cc88026d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Ended" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3cc88026d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Ended" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3cc88026d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Ended" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3cc88026d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Ended" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..69879ecfd9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ecaaf14417 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f5becb61fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..01361e2861 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a333280d94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Active" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a333280d94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Active" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a333280d94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Active" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a333280d94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Active" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..24bf522178 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e48af8fe21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f35c83e900 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..49112e2372 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..999af8511d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Started" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..999af8511d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Started" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..999af8511d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Started" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..999af8511d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Number of Sessions Started" +"screw - Screwdriver",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e971b62308 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ab3a336928 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..eb0564f6d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6b0882f42a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8b7ad15f99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Total" +"screw - Screwdriver",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8b7ad15f99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Total" +"screw - Screwdriver",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8b7ad15f99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Total" +"screw - Screwdriver",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8b7ad15f99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Provider,"Wall Hours: Total" +"screw - Screwdriver",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9824d82fe6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[screw - Screwdriver] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c9b20a53c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[screw - Screwdriver] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2d4ed066e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[screw - Screwdriver] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..af46af2cab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Provider" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[screw - Screwdriver] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..db4d9db2e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Cores Reserved Weighted By Wall Hours" +openstack,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..db4d9db2e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Cores Reserved Weighted By Wall Hours" +openstack,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..db4d9db2e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Cores Reserved Weighted By Wall Hours" +openstack,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..db4d9db2e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Cores Reserved Weighted By Wall Hours" +openstack,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5087ad9a70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9291a07418 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0f4b094718 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dc3ca0cb91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..642dfb0949 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +openstack,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..642dfb0949 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +openstack,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..642dfb0949 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +openstack,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..642dfb0949 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" +openstack,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d444bd7147 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9e8a8b7b01 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d35d08efc2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2ba9a2c47e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..535c238bb6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +openstack,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..535c238bb6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +openstack,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..535c238bb6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +openstack,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..535c238bb6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +openstack,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..37b6eee9a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ef12af600f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f75611dcfe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..131aded05e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5f4723a2f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Per Session" +openstack,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5f4723a2f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Per Session" +openstack,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5f4723a2f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Per Session" +openstack,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5f4723a2f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Per Session" +openstack,23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..00955f6dab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..565f35be8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4376bdafe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ebfcd5c07f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..52ff3a6881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"CPU Hours: Total" +openstack,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..52ff3a6881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"CPU Hours: Total" +openstack,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..52ff3a6881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"CPU Hours: Total" +openstack,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..52ff3a6881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"CPU Hours: Total" +openstack,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..803b53d60e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9a2702a892 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ceeeffc25b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..822ab3c566 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d7b0ef05b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Core Hour Utilization (%)" +openstack,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4d7b0ef05b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Core Hour Utilization (%)" +openstack,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..75cdb96326 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Core Hour Utilization (%)" +openstack,0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3ee4f4e5aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Core Hour Utilization (%)" +openstack,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..92e21f7b7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cfdd0d4c9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e55d6a4b74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d12b4d5a52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c28f04bd0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Ended" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c28f04bd0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Ended" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c28f04bd0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Ended" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c28f04bd0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Ended" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ddeeb8d272 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a15e4cacb1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..677631fe1a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6070fba798 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..343d32827b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Active" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..343d32827b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Active" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..343d32827b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Active" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..343d32827b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Active" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0d4310f180 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8cb5b11a27 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..07ae9dffc9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..690a1076db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..86660be25b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Started" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..86660be25b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Started" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..86660be25b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Started" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..86660be25b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Number of Sessions Started" +openstack,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0dc78031ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4fecd74b94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ac1603b741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cb8f8df4ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..01d2a93256 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Total" +openstack,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..01d2a93256 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Total" +openstack,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..01d2a93256 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Total" +openstack,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..01d2a93256 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Resource,"Wall Hours: Total" +openstack,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7ace7e5a0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[openstack] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..05282ff1d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[openstack] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f20a54769d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[openstack] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cede06a87e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[openstack] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fa35e68910 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Cores Reserved Weighted By Wall Hours" +"OpenStack API",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fa35e68910 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Cores Reserved Weighted By Wall Hours" +"OpenStack API",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fa35e68910 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Cores Reserved Weighted By Wall Hours" +"OpenStack API",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fa35e68910 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Cores Reserved Weighted By Wall Hours" +"OpenStack API",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a0ee5cb230 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.3753 +2018-04-19,1.1273 +2018-04-20,1.3285 +2018-04-21,1.2500 +2018-04-22,1.2500 +2018-04-23,1.2500 +2018-04-24,1.2500 +2018-04-25,1.2500 +2018-04-26,1.4188 +2018-04-27,1.7558 +2018-04-28,1.7500 +2018-04-29,1.7500 +2018-04-30,1.7638 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5a36ec9abb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6cb99e5551 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..45388dd3c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" +2018,1.4291 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8cc27e6b61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8cc27e6b61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8cc27e6b61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8cc27e6b61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c390cef2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,5944931821.4462 +2018-04-19,4270329944.8942 +2018-04-20,4294967296.0000 +2018-04-21,4294967296.0000 +2018-04-22,4294967296.0000 +2018-04-23,4294967296.0000 +2018-04-24,4294967296.0000 +2018-04-25,4294967296.0000 +2018-04-26,5091100499.4926 +2018-04-27,6689821892.7325 +2018-04-28,7516192768.0000 +2018-04-29,7516192768.0000 +2018-04-30,7342159943.8785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e4caa6efff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fb78b4a4b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..746345b04d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5391546777.3100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a5eb3091d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a5eb3091d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a5eb3091d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a5eb3091d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"OpenStack API",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..97836e91ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000 +2018-04-19,21474836480.0000 +2018-04-20,21474836480.0000 +2018-04-21,21474836480.0000 +2018-04-22,21474836480.0000 +2018-04-23,21474836480.0000 +2018-04-24,21474836480.0000 +2018-04-25,21474836480.0000 +2018-04-26,21474836480.0000 +2018-04-27,21474836480.0000 +2018-04-28,21474836480.0000 +2018-04-29,21474836480.0000 +2018-04-30,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9fe00c1b44 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8e5f38bd57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f8f3232ba2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c8f7b83637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Per Session" +"OpenStack API",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c8f7b83637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Per Session" +"OpenStack API",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c8f7b83637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Per Session" +"OpenStack API",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c8f7b83637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Per Session" +"OpenStack API",23.14924004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f277d0fa65 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Wall Hours: Per Session" +2018-04-18,1.72262626 +2018-04-19,4.96252222 +2018-04-20,6.64239899 +2018-04-21,24.00000000 +2018-04-22,24.00000000 +2018-04-23,24.00000000 +2018-04-24,24.00000000 +2018-04-25,24.00000000 +2018-04-26,17.13518519 +2018-04-27,20.24976852 +2018-04-28,24.00000000 +2018-04-29,24.00000000 +2018-04-30,19.46355556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0f739a8950 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Wall Hours: Per Session" +2018-04,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ed744dc398 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Wall Hours: Per Session" +"2018 Q2",23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8f70eeb0a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Wall Hours: Per Session" +2018,23.18216457 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5b8a2d80fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","CPU Hours: Total" +"OpenStack API",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5b8a2d80fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","CPU Hours: Total" +"OpenStack API",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5b8a2d80fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","CPU Hours: Total" +"OpenStack API",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5b8a2d80fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","CPU Hours: Total" +"OpenStack API",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9388e47bc3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] CPU Hours: Total" +2018-04-18,52.1197 +2018-04-19,139.8567 +2018-04-20,97.0664 +2018-04-21,120.0000 +2018-04-22,120.0000 +2018-04-23,120.0000 +2018-04-24,120.0000 +2018-04-25,120.0000 +2018-04-26,145.8686 +2018-04-27,213.3267 +2018-04-28,168.0000 +2018-04-29,168.0000 +2018-04-30,171.6514 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8cd625d0c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] CPU Hours: Total" +2018-04,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..89286e756e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] CPU Hours: Total" +"2018 Q2",1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5ab4386f2c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] CPU Hours: Total" +2018,1755.8894 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..17beb83d2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Core Hour Utilization (%)" +"OpenStack API",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..17beb83d2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Core Hour Utilization (%)" +"OpenStack API",2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8bb7bf4a7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Core Hour Utilization (%)" +"OpenStack API",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..76fbf8bbfa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Core Hour Utilization (%)" +"OpenStack API",0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f89d6b7df2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Core Hour Utilization (%)" +2018-04-18,0.9281 +2018-04-19,2.4903 +2018-04-20,1.7284 +2018-04-21,2.1368 +2018-04-22,2.1368 +2018-04-23,2.1368 +2018-04-24,2.1368 +2018-04-25,2.1368 +2018-04-26,2.5974 +2018-04-27,3.7986 +2018-04-28,2.9915 +2018-04-29,2.9915 +2018-04-30,3.0565 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..19b5ba2804 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Core Hour Utilization (%)" +2018-04,2.4051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..446d4c4d3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Core Hour Utilization (%)" +"2018 Q2",0.4225 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9281ec7ff5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Core Hour Utilization (%)" +2018,0.1212 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1944ee23c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Ended" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1944ee23c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Ended" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1944ee23c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Ended" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1944ee23c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Ended" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..32c85fae14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Number of Sessions Ended" +2018-04-18,15 +2018-04-19,23 +2018-04-20,7 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,1 +2018-04-27,2 +2018-04-28,0 +2018-04-29,0 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..172ab89b52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Number of Sessions Ended" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ebaadb5bc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Number of Sessions Ended" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0294f3a0d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Number of Sessions Ended" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..41c70d1e7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Active" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..41c70d1e7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Active" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..41c70d1e7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Active" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..41c70d1e7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Active" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c19bad5828 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Number of Sessions Active" +2018-04-18,22 +2018-04-19,25 +2018-04-20,11 +2018-04-21,4 +2018-04-22,4 +2018-04-23,4 +2018-04-24,4 +2018-04-25,4 +2018-04-26,6 +2018-04-27,6 +2018-04-28,4 +2018-04-29,4 +2018-04-30,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..82acd2a9ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Number of Sessions Active" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..37db5260bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Number of Sessions Active" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fd9c56d58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Number of Sessions Active" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6d1a356c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Started" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6d1a356c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Started" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6d1a356c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Started" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6d1a356c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Number of Sessions Started" +"OpenStack API",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f59bf67e5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Number of Sessions Started" +2018-04-18,22 +2018-04-19,18 +2018-04-20,9 +2018-04-21,0 +2018-04-22,0 +2018-04-23,0 +2018-04-24,0 +2018-04-25,0 +2018-04-26,2 +2018-04-27,1 +2018-04-28,0 +2018-04-29,0 +2018-04-30,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6ad802d3e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Number of Sessions Started" +2018-04,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..547d0ca149 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Number of Sessions Started" +"2018 Q2",53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1ac5fc59f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Number of Sessions Started" +2018,53 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fb11550960 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Total" +"OpenStack API",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fb11550960 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Total" +"OpenStack API",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fb11550960 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Total" +"OpenStack API",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fb11550960 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"Submission Venue","Wall Hours: Total" +"OpenStack API",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..05fb48d00b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[OpenStack API] Wall Hours: Total" +2018-04-18,37.8978 +2018-04-19,124.0631 +2018-04-20,73.0664 +2018-04-21,96.0000 +2018-04-22,96.0000 +2018-04-23,96.0000 +2018-04-24,96.0000 +2018-04-25,96.0000 +2018-04-26,102.8111 +2018-04-27,121.4986 +2018-04-28,96.0000 +2018-04-29,96.0000 +2018-04-30,97.3178 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..842e5f3db8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[OpenStack API] Wall Hours: Total" +2018-04,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..903865cda1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[OpenStack API] Wall Hours: Total" +"2018 Q2",1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1ecccbdc24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Submission Venue" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[OpenStack API] Wall Hours: Total" +2018,1228.6547 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv new file mode 100644 index 0000000000..f497718fef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv new file mode 100644 index 0000000000..2dd3e7e5f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv new file mode 100644 index 0000000000..f497718fef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv new file mode 100644 index 0000000000..2dd3e7e5f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..f497718fef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..2dd3e7e5f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv new file mode 100644 index 0000000000..278e325441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +ylwwa,2.0145 +yerwa,1.3040 +setusca,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv new file mode 100644 index 0000000000..f497718fef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv new file mode 100644 index 0000000000..2dd3e7e5f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Cores Reserved Weighted By Wall Hours" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv new file mode 100644 index 0000000000..69696dbe1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,3.9999,1.0282,0 +2018-04-19,2.0000,1.0000,1.0000 +2018-04-20,2.0000,1.0000,0 +2018-04-21,2.0000,1.0000,0 +2018-04-22,2.0000,1.0000,0 +2018-04-23,2.0000,1.0000,0 +2018-04-24,2.0000,1.0000,0 +2018-04-25,2.0000,1.0000,0 +2018-04-26,2.0000,1.2418,0 +2018-04-27,1.7776,1.7500,0 +2018-04-28,0,1.7500,0 +2018-04-29,0,1.7500,0 +2018-04-30,2.0000,1.7503,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv new file mode 100644 index 0000000000..69696dbe1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,3.9999,1.0282,0 +2018-04-19,2.0000,1.0000,1.0000 +2018-04-20,2.0000,1.0000,0 +2018-04-21,2.0000,1.0000,0 +2018-04-22,2.0000,1.0000,0 +2018-04-23,2.0000,1.0000,0 +2018-04-24,2.0000,1.0000,0 +2018-04-25,2.0000,1.0000,0 +2018-04-26,2.0000,1.2418,0 +2018-04-27,1.7776,1.7500,0 +2018-04-28,0,1.7500,0 +2018-04-29,0,1.7500,0 +2018-04-30,2.0000,1.7503,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv new file mode 100644 index 0000000000..c61d640a76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv new file mode 100644 index 0000000000..2c62d3f0f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv new file mode 100644 index 0000000000..c04f4c8cad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +2018-04,2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv new file mode 100644 index 0000000000..c04f4c8cad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +2018-04,2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv new file mode 100644 index 0000000000..7339d96a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv new file mode 100644 index 0000000000..aa1b35e665 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..15500c212e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..15500c212e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..e0a5e64b10 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..e0f0a480e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv new file mode 100644 index 0000000000..ac4d744143 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +2018,2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv new file mode 100644 index 0000000000..ac4d744143 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" +2018,2.0145,1.3040,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv new file mode 100644 index 0000000000..2f2ef116b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv new file mode 100644 index 0000000000..ef8efb3429 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv new file mode 100644 index 0000000000..043bc7cf97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv new file mode 100644 index 0000000000..233e545f70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv new file mode 100644 index 0000000000..043bc7cf97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv new file mode 100644 index 0000000000..233e545f70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..043bc7cf97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..233e545f70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv new file mode 100644 index 0000000000..edf6a054cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +yerwa,5602121263.9108 +ylwwa,4471965428.8596 +setusca,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv new file mode 100644 index 0000000000..043bc7cf97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv new file mode 100644 index 0000000000..233e545f70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv new file mode 100644 index 0000000000..25c1a1eb94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,4459286187.3607,17179060592.7300,0 +2018-04-19,4294967296.0000,4294967296.0000,3804999079.2242 +2018-04-20,4294967296.0000,4294967296.0000,0 +2018-04-21,4294967296.0000,4294967296.0000,0 +2018-04-22,4294967296.0000,4294967296.0000,0 +2018-04-23,4294967296.0000,4294967296.0000,0 +2018-04-24,4294967296.0000,4294967296.0000,0 +2018-04-25,4294967296.0000,4294967296.0000,0 +2018-04-26,5333543431.8969,4294967296.0000,0 +2018-04-27,7516192768.0000,3578609141.5754,0 +2018-04-28,7516192768.0000,0,0 +2018-04-29,7516192768.0000,0,0 +2018-04-30,7517272003.2285,4294967296.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv new file mode 100644 index 0000000000..25c1a1eb94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,4459286187.3607,17179060592.7300,0 +2018-04-19,4294967296.0000,4294967296.0000,3804999079.2242 +2018-04-20,4294967296.0000,4294967296.0000,0 +2018-04-21,4294967296.0000,4294967296.0000,0 +2018-04-22,4294967296.0000,4294967296.0000,0 +2018-04-23,4294967296.0000,4294967296.0000,0 +2018-04-24,4294967296.0000,4294967296.0000,0 +2018-04-25,4294967296.0000,4294967296.0000,0 +2018-04-26,5333543431.8969,4294967296.0000,0 +2018-04-27,7516192768.0000,3578609141.5754,0 +2018-04-28,7516192768.0000,0,0 +2018-04-29,7516192768.0000,0,0 +2018-04-30,7517272003.2285,4294967296.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv new file mode 100644 index 0000000000..701ffd09a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv new file mode 100644 index 0000000000..4ec91117be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv new file mode 100644 index 0000000000..a0939b6534 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv new file mode 100644 index 0000000000..a0939b6534 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv new file mode 100644 index 0000000000..2e3de6d022 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv new file mode 100644 index 0000000000..8d717ca006 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..ebdf0412f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..ebdf0412f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..7b153f0b7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..316e206254 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv new file mode 100644 index 0000000000..90367f0726 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv new file mode 100644 index 0000000000..90367f0726 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,5602121263.9108,4471965428.8596,3804999079.2242 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv new file mode 100644 index 0000000000..58db961411 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv new file mode 100644 index 0000000000..66614e5249 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv new file mode 100644 index 0000000000..0c4bdd4d62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv new file mode 100644 index 0000000000..3aaeba13bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv new file mode 100644 index 0000000000..0c4bdd4d62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv new file mode 100644 index 0000000000..3aaeba13bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..0c4bdd4d62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..3aaeba13bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv new file mode 100644 index 0000000000..2088a487e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +setusca,21474836480.0000 +yerwa,21474836480.0000 +ylwwa,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv new file mode 100644 index 0000000000..0c4bdd4d62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv new file mode 100644 index 0000000000..3aaeba13bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv new file mode 100644 index 0000000000..cffe17237c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,0,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-20,0,21474836480.0000,21474836480.0000 +2018-04-21,0,21474836480.0000,21474836480.0000 +2018-04-22,0,21474836480.0000,21474836480.0000 +2018-04-23,0,21474836480.0000,21474836480.0000 +2018-04-24,0,21474836480.0000,21474836480.0000 +2018-04-25,0,21474836480.0000,21474836480.0000 +2018-04-26,0,21474836480.0000,21474836480.0000 +2018-04-27,0,21474836480.0000,21474836480.0000 +2018-04-28,0,21474836480.0000,0 +2018-04-29,0,21474836480.0000,0 +2018-04-30,0,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv new file mode 100644 index 0000000000..cffe17237c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,0,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-20,0,21474836480.0000,21474836480.0000 +2018-04-21,0,21474836480.0000,21474836480.0000 +2018-04-22,0,21474836480.0000,21474836480.0000 +2018-04-23,0,21474836480.0000,21474836480.0000 +2018-04-24,0,21474836480.0000,21474836480.0000 +2018-04-25,0,21474836480.0000,21474836480.0000 +2018-04-26,0,21474836480.0000,21474836480.0000 +2018-04-27,0,21474836480.0000,21474836480.0000 +2018-04-28,0,21474836480.0000,0 +2018-04-29,0,21474836480.0000,0 +2018-04-30,0,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv new file mode 100644 index 0000000000..4fec585b0d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv new file mode 100644 index 0000000000..2f639719ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv new file mode 100644 index 0000000000..23015d66f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv new file mode 100644 index 0000000000..23015d66f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv new file mode 100644 index 0000000000..347d0f568f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv new file mode 100644 index 0000000000..b1d4ab7569 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..4c0e1d9f75 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..4c0e1d9f75 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..33c39370e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..ed91cd9e44 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv new file mode 100644 index 0000000000..bc2ab190ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv new file mode 100644 index 0000000000..bc2ab190ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv new file mode 100644 index 0000000000..da1c86a6d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv new file mode 100644 index 0000000000..2a29b43c93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..5f9d0320c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..75cba497c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..5f9d0320c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..75cba497c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..5f9d0320c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..75cba497c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..3f36e2cb57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +ylwwa,36.50106481 +yerwa,27.87240741 +setusca,0.40878788 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..5f9d0320c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..75cba497c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Per Session" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..f6dee46627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +2018-04-18,0.00000000,1.67356944,0 +2018-04-19,7.89680556,8.50259259,0.56712121 +2018-04-20,24.00000000,4.90663889,0 +2018-04-21,24.00000000,24.00000000,0 +2018-04-22,24.00000000,24.00000000,0 +2018-04-23,24.00000000,24.00000000,0 +2018-04-24,24.00000000,24.00000000,0 +2018-04-25,24.00000000,24.00000000,0 +2018-04-26,24.00000000,15.76222222,0 +2018-04-27,12.74930556,24.00000000,0 +2018-04-28,0,24.00000000,0 +2018-04-29,0,24.00000000,0 +2018-04-30,5.28861111,23.00729167,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..f6dee46627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +2018-04-18,0.00000000,1.67356944,0 +2018-04-19,7.89680556,8.50259259,0.56712121 +2018-04-20,24.00000000,4.90663889,0 +2018-04-21,24.00000000,24.00000000,0 +2018-04-22,24.00000000,24.00000000,0 +2018-04-23,24.00000000,24.00000000,0 +2018-04-24,24.00000000,24.00000000,0 +2018-04-25,24.00000000,24.00000000,0 +2018-04-26,24.00000000,15.76222222,0 +2018-04-27,12.74930556,24.00000000,0 +2018-04-28,0,24.00000000,0 +2018-04-29,0,24.00000000,0 +2018-04-30,5.28861111,23.00729167,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..025a686b60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..d0155c8b3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..cdd881cf9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +2018-04,36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..cdd881cf9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +2018-04,36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..6ee20ab3c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..30bbc55538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..d170a3e5ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +"2018 Q2",36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..d170a3e5ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +"2018 Q2",36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..f30e8d03b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..3b24fe0830 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..377f7b706a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +2018,36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..377f7b706a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" +2018,36.50120370,27.87247685,0.56712121 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..e377cd353f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..c2522eff82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv new file mode 100644 index 0000000000..930a5d36bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv new file mode 100644 index 0000000000..e88ad7bf70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv new file mode 100644 index 0000000000..930a5d36bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv new file mode 100644 index 0000000000..e88ad7bf70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..930a5d36bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..e88ad7bf70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv new file mode 100644 index 0000000000..a21753294d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +yerwa,1308.4550 +ylwwa,441.1961 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv new file mode 100644 index 0000000000..930a5d36bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv new file mode 100644 index 0000000000..e88ad7bf70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","CPU Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv new file mode 100644 index 0000000000..c2c3915975 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +2018-04-18,34.4147,17.7050,0 +2018-04-19,102.0311,31.5872,6.2383 +2018-04-20,49.0664,48.0000,0 +2018-04-21,72.0000,48.0000,0 +2018-04-22,72.0000,48.0000,0 +2018-04-23,72.0000,48.0000,0 +2018-04-24,72.0000,48.0000,0 +2018-04-25,72.0000,48.0000,0 +2018-04-26,97.8686,48.0000,0 +2018-04-27,168.0000,45.3267,0 +2018-04-28,168.0000,0,0 +2018-04-29,168.0000,0,0 +2018-04-30,161.0742,10.5772,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv new file mode 100644 index 0000000000..c2c3915975 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +2018-04-18,34.4147,17.7050,0 +2018-04-19,102.0311,31.5872,6.2383 +2018-04-20,49.0664,48.0000,0 +2018-04-21,72.0000,48.0000,0 +2018-04-22,72.0000,48.0000,0 +2018-04-23,72.0000,48.0000,0 +2018-04-24,72.0000,48.0000,0 +2018-04-25,72.0000,48.0000,0 +2018-04-26,97.8686,48.0000,0 +2018-04-27,168.0000,45.3267,0 +2018-04-28,168.0000,0,0 +2018-04-29,168.0000,0,0 +2018-04-30,161.0742,10.5772,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv new file mode 100644 index 0000000000..05d3613317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv new file mode 100644 index 0000000000..1b7772f7dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv new file mode 100644 index 0000000000..91f2034ecb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +2018-04,1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv new file mode 100644 index 0000000000..91f2034ecb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +2018-04,1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv new file mode 100644 index 0000000000..17f1d2d384 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv new file mode 100644 index 0000000000..f028d5dd9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..42e4335b40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +"2018 Q2",1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..42e4335b40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +"2018 Q2",1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..7e3fa5bf24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..782faea2dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv new file mode 100644 index 0000000000..674db6097f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +2018,1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv new file mode 100644 index 0000000000..674db6097f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" +2018,1308.4550,441.1961,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv new file mode 100644 index 0000000000..7df87b6fa4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv new file mode 100644 index 0000000000..97830ebc60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv new file mode 100644 index 0000000000..cc97cde410 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,1.7922 +ylwwa,0.6043 +setusca,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv new file mode 100644 index 0000000000..cc97cde410 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,1.7922 +ylwwa,0.6043 +setusca,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv new file mode 100644 index 0000000000..b013fbbb5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv new file mode 100644 index 0000000000..a8822a48d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv new file mode 100644 index 0000000000..cc97cde410 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,1.7922 +ylwwa,0.6043 +setusca,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv new file mode 100644 index 0000000000..cc97cde410 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,1.7922 +ylwwa,0.6043 +setusca,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv new file mode 100644 index 0000000000..b013fbbb5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv new file mode 100644 index 0000000000..a8822a48d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..c635fb5b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,0.3148 +ylwwa,0.1062 +setusca,0.0015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..c635fb5b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,0.3148 +ylwwa,0.1062 +setusca,0.0015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..b013fbbb5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..a8822a48d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv new file mode 100644 index 0000000000..8693083cef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,0.0903 +ylwwa,0.0304 +setusca,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv new file mode 100644 index 0000000000..8693083cef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +yerwa,0.0903 +ylwwa,0.0304 +setusca,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv new file mode 100644 index 0000000000..b013fbbb5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv new file mode 100644 index 0000000000..a8822a48d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Core Hour Utilization (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv new file mode 100644 index 0000000000..22fdff6c26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +2018-04-18,0.6128,0.3153,0 +2018-04-19,1.8168,0.5625,0.1111 +2018-04-20,0.8737,0.8547,0 +2018-04-21,1.2821,0.8547,0 +2018-04-22,1.2821,0.8547,0 +2018-04-23,1.2821,0.8547,0 +2018-04-24,1.2821,0.8547,0 +2018-04-25,1.2821,0.8547,0 +2018-04-26,1.7427,0.8547,0 +2018-04-27,2.9915,0.8071,0 +2018-04-28,2.9915,0,0 +2018-04-29,2.9915,0,0 +2018-04-30,2.8681,0.1883,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv new file mode 100644 index 0000000000..22fdff6c26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +2018-04-18,0.6128,0.3153,0 +2018-04-19,1.8168,0.5625,0.1111 +2018-04-20,0.8737,0.8547,0 +2018-04-21,1.2821,0.8547,0 +2018-04-22,1.2821,0.8547,0 +2018-04-23,1.2821,0.8547,0 +2018-04-24,1.2821,0.8547,0 +2018-04-25,1.2821,0.8547,0 +2018-04-26,1.7427,0.8547,0 +2018-04-27,2.9915,0.8071,0 +2018-04-28,2.9915,0,0 +2018-04-29,2.9915,0,0 +2018-04-30,2.8681,0.1883,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv new file mode 100644 index 0000000000..3b4d32082c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv new file mode 100644 index 0000000000..20298d78c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv new file mode 100644 index 0000000000..50269fd330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +2018-04,1.7922,0.6043,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv new file mode 100644 index 0000000000..50269fd330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +2018-04,1.7922,0.6043,0.0085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv new file mode 100644 index 0000000000..96ffee1437 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv new file mode 100644 index 0000000000..5636f4e11d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..ca18d69102 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +"2018 Q2",0.3148,0.1062,0.0015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..ca18d69102 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +"2018 Q2",0.3148,0.1062,0.0015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..7c551d2efc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..6ee98d8769 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv new file mode 100644 index 0000000000..77a489e028 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +2018,0.0903,0.0304,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv new file mode 100644 index 0000000000..77a489e028 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" +2018,0.0903,0.0304,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv new file mode 100644 index 0000000000..5b44339347 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv new file mode 100644 index 0000000000..6696aceed6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv new file mode 100644 index 0000000000..6bf3123556 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv new file mode 100644 index 0000000000..23abff8c5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv new file mode 100644 index 0000000000..6bf3123556 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv new file mode 100644 index 0000000000..23abff8c5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..6bf3123556 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..23abff8c5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv new file mode 100644 index 0000000000..596a5d1117 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv new file mode 100644 index 0000000000..6bf3123556 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv new file mode 100644 index 0000000000..23abff8c5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Ended" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv new file mode 100644 index 0000000000..a629245934 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +2018-04-18,13,0,2 +2018-04-19,11,11,1 +2018-04-20,7,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,1,0,0 +2018-04-27,0,0,2 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,4,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv new file mode 100644 index 0000000000..a629245934 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +2018-04-18,13,0,2 +2018-04-19,11,11,1 +2018-04-20,7,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,1,0,0 +2018-04-27,0,0,2 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,4,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv new file mode 100644 index 0000000000..795dfbb894 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv new file mode 100644 index 0000000000..6879c2b997 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv new file mode 100644 index 0000000000..599d2863be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv new file mode 100644 index 0000000000..599d2863be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv new file mode 100644 index 0000000000..58976a2579 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv new file mode 100644 index 0000000000..c7c9ea6b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..2de6275770 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..2de6275770 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..a1e1fb5dc6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..1c07dc9d36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv new file mode 100644 index 0000000000..3bd73a4505 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv new file mode 100644 index 0000000000..3bd73a4505 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv new file mode 100644 index 0000000000..6c2e2b28a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv new file mode 100644 index 0000000000..e81cc6141a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv new file mode 100644 index 0000000000..6b10f5c6a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv new file mode 100644 index 0000000000..bee10c2453 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv new file mode 100644 index 0000000000..6b10f5c6a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv new file mode 100644 index 0000000000..bee10c2453 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..6b10f5c6a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..bee10c2453 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv new file mode 100644 index 0000000000..79903646e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv new file mode 100644 index 0000000000..6b10f5c6a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv new file mode 100644 index 0000000000..bee10c2453 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Active" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv new file mode 100644 index 0000000000..18d6426e2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +2018-04-18,20,0,2 +2018-04-19,12,11,2 +2018-04-20,10,0,1 +2018-04-21,3,0,1 +2018-04-22,3,0,1 +2018-04-23,3,0,1 +2018-04-24,3,0,1 +2018-04-25,3,0,1 +2018-04-26,5,0,1 +2018-04-27,4,0,2 +2018-04-28,4,0,0 +2018-04-29,4,0,0 +2018-04-30,4,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv new file mode 100644 index 0000000000..18d6426e2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +2018-04-18,20,0,2 +2018-04-19,12,11,2 +2018-04-20,10,0,1 +2018-04-21,3,0,1 +2018-04-22,3,0,1 +2018-04-23,3,0,1 +2018-04-24,3,0,1 +2018-04-25,3,0,1 +2018-04-26,5,0,1 +2018-04-27,4,0,2 +2018-04-28,4,0,0 +2018-04-29,4,0,0 +2018-04-30,4,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv new file mode 100644 index 0000000000..c4d973aa45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv new file mode 100644 index 0000000000..91f81b1f12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv new file mode 100644 index 0000000000..d18768541b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv new file mode 100644 index 0000000000..d18768541b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv new file mode 100644 index 0000000000..dd641c00a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv new file mode 100644 index 0000000000..0da08a03f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..c487b5b806 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..c487b5b806 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..e0e07e69e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..77246b9365 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv new file mode 100644 index 0000000000..80aaba1b22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv new file mode 100644 index 0000000000..80aaba1b22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv new file mode 100644 index 0000000000..fdcfafb4b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv new file mode 100644 index 0000000000..80f55b838b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv new file mode 100644 index 0000000000..d531b4ddf4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv new file mode 100644 index 0000000000..a3083289ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv new file mode 100644 index 0000000000..d531b4ddf4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv new file mode 100644 index 0000000000..a3083289ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..d531b4ddf4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..a3083289ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv new file mode 100644 index 0000000000..c6fcb3fd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +yerwa,36 +setusca,11 +ylwwa,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv new file mode 100644 index 0000000000..d531b4ddf4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv new file mode 100644 index 0000000000..a3083289ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Number of Sessions Started" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv new file mode 100644 index 0000000000..85cba78eca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +2018-04-18,20,0,2 +2018-04-19,5,11,2 +2018-04-20,9,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,2,0,0 +2018-04-27,0,0,1 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv new file mode 100644 index 0000000000..85cba78eca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +2018-04-18,20,0,2 +2018-04-19,5,11,2 +2018-04-20,9,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,2,0,0 +2018-04-27,0,0,1 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv new file mode 100644 index 0000000000..6e5db3090b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv new file mode 100644 index 0000000000..0aa3047c00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv new file mode 100644 index 0000000000..976fc9937f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv new file mode 100644 index 0000000000..976fc9937f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +2018-04,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv new file mode 100644 index 0000000000..3287a1da18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv new file mode 100644 index 0000000000..7930eb3a24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..f2d7d32182 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..f2d7d32182 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +"2018 Q2",36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..6d391ca8ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..ea3973c861 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv new file mode 100644 index 0000000000..287dc3b94d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv new file mode 100644 index 0000000000..287dc3b94d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" +2018,36,11,6 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv new file mode 100644 index 0000000000..767e82b9d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv new file mode 100644 index 0000000000..4a3badfafc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv new file mode 100644 index 0000000000..453ca507df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv new file mode 100644 index 0000000000..78201faabf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv new file mode 100644 index 0000000000..453ca507df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv new file mode 100644 index 0000000000..78201faabf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..453ca507df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..78201faabf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv new file mode 100644 index 0000000000..0f12bacc91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +yerwa,1003.4092 +ylwwa,219.0072 +setusca,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv new file mode 100644 index 0000000000..453ca507df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv new file mode 100644 index 0000000000..78201faabf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +"System Username","Wall Hours: Total" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv new file mode 100644 index 0000000000..7347ff3934 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +2018-04-18,33.4714,4.4264,0 +2018-04-19,102.0311,15.7936,6.2383 +2018-04-20,49.0664,24.0000,0 +2018-04-21,72.0000,24.0000,0 +2018-04-22,72.0000,24.0000,0 +2018-04-23,72.0000,24.0000,0 +2018-04-24,72.0000,24.0000,0 +2018-04-25,72.0000,24.0000,0 +2018-04-26,78.8111,24.0000,0 +2018-04-27,96.0000,25.4986,0 +2018-04-28,96.0000,0,0 +2018-04-29,96.0000,0,0 +2018-04-30,92.0292,5.2886,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv new file mode 100644 index 0000000000..7347ff3934 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +2018-04-18,33.4714,4.4264,0 +2018-04-19,102.0311,15.7936,6.2383 +2018-04-20,49.0664,24.0000,0 +2018-04-21,72.0000,24.0000,0 +2018-04-22,72.0000,24.0000,0 +2018-04-23,72.0000,24.0000,0 +2018-04-24,72.0000,24.0000,0 +2018-04-25,72.0000,24.0000,0 +2018-04-26,78.8111,24.0000,0 +2018-04-27,96.0000,25.4986,0 +2018-04-28,96.0000,0,0 +2018-04-29,96.0000,0,0 +2018-04-30,92.0292,5.2886,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv new file mode 100644 index 0000000000..321216c1f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv new file mode 100644 index 0000000000..a52d6cb6fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv new file mode 100644 index 0000000000..e82bac711d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +2018-04,1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv new file mode 100644 index 0000000000..e82bac711d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +2018-04,1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv new file mode 100644 index 0000000000..e00c3a9ff8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv new file mode 100644 index 0000000000..82c3b637bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..66fda2f71b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +"2018 Q2",1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..66fda2f71b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +"2018 Q2",1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..44ebe9baee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..c4a13510ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv new file mode 100644 index 0000000000..3910906740 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +2018,1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv new file mode 100644 index 0000000000..3910906740 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" +2018,1003.4092,219.0072,6.2383 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv new file mode 100644 index 0000000000..06545f9588 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv new file mode 100644 index 0000000000..6afe151aff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-04-18,2018-04-30 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f81d1205ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" +1,1.0000 +"2 - 3",2.0000 +"4 - 7",4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f81d1205ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" +1,1.0000 +"2 - 3",2.0000 +"4 - 7",4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f81d1205ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" +1,1.0000 +"2 - 3",2.0000 +"4 - 7",4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f81d1205ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" +1,1.0000 +"2 - 3",2.0000 +"4 - 7",4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4e7cfc99d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,1.0000,2.0000,4.0000 +2018-04-19,1.0000,2.0000,0 +2018-04-20,1.0000,2.0000,0 +2018-04-21,1.0000,2.0000,0 +2018-04-22,1.0000,2.0000,0 +2018-04-23,1.0000,2.0000,0 +2018-04-24,1.0000,2.0000,0 +2018-04-25,1.0000,2.0000,0 +2018-04-26,1.0000,2.0000,4.0000 +2018-04-27,1.0000,2.0000,4.0000 +2018-04-28,1.0000,0,4.0000 +2018-04-29,1.0000,0,4.0000 +2018-04-30,1.0000,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1a65671e03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" +2018-04,1.0000,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..78875dc183 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",1.0000,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d179f4f811 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" +2018,1.0000,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..785b13ee73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" +1,4276530145.1301 +"2 - 3",4299782600.4310 +"4 - 7",17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..785b13ee73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" +1,4276530145.1301 +"2 - 3",4299782600.4310 +"4 - 7",17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..785b13ee73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" +1,4276530145.1301 +"2 - 3",4299782600.4310 +"4 - 7",17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..785b13ee73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" +1,4276530145.1301 +"2 - 3",4299782600.4310 +"4 - 7",17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..abd6408fbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,4432985725.8390,5365864352.1413,17179869184.0000 +2018-04-19,4266736015.4696,4294967296.0000,0 +2018-04-20,4294967296.0000,4294967296.0000,0 +2018-04-21,4294967296.0000,4294967296.0000,0 +2018-04-22,4294967296.0000,4294967296.0000,0 +2018-04-23,4294967296.0000,4294967296.0000,0 +2018-04-24,4294967296.0000,4294967296.0000,0 +2018-04-25,4294967296.0000,4294967296.0000,0 +2018-04-26,4294967296.0000,4294967296.0000,17179869184.0000 +2018-04-27,4059792745.4217,4294967296.0000,17179869184.0000 +2018-04-28,4294967296.0000,0,17179869184.0000 +2018-04-29,4294967296.0000,0,17179869184.0000 +2018-04-30,4294967296.0000,4294967296.0000,17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e6c0e2a378 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,4276530145.1301,4299782600.4310,17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8f7fc25cef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",4276530145.1301,4299782600.4310,17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d3768d7387 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,4276530145.1301,4299782600.4310,17179869184.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c65bf7caea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +1,21474836480.0000 +"2 - 3",21474836480.0000 +"4 - 7",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c65bf7caea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +1,21474836480.0000 +"2 - 3",21474836480.0000 +"4 - 7",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c65bf7caea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +1,21474836480.0000 +"2 - 3",21474836480.0000 +"4 - 7",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c65bf7caea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +1,21474836480.0000 +"2 - 3",21474836480.0000 +"4 - 7",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6bc5f7caf4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000,0 +2018-04-20,21474836480.0000,21474836480.0000,0 +2018-04-21,21474836480.0000,21474836480.0000,0 +2018-04-22,21474836480.0000,21474836480.0000,0 +2018-04-23,21474836480.0000,21474836480.0000,0 +2018-04-24,21474836480.0000,21474836480.0000,0 +2018-04-25,21474836480.0000,21474836480.0000,0 +2018-04-26,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-27,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-28,21474836480.0000,0,21474836480.0000 +2018-04-29,21474836480.0000,0,21474836480.0000 +2018-04-30,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..229f7d1fa7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..eea864280d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..775f1a4e5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8f9f487352 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Per Session" +1,20.25029630 +"2 - 3",41.97055556 +"4 - 7",35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8f9f487352 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Per Session" +1,20.25029630 +"2 - 3",41.97055556 +"4 - 7",35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8f9f487352 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Per Session" +1,20.25029630 +"2 - 3",41.97055556 +"4 - 7",35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8f9f487352 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Per Session" +1,20.25029630 +"2 - 3",41.97055556 +"4 - 7",35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6a6529c870 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" +2018-04-18,1.80711420,0.47180556,2.21305556 +2018-04-19,4.70736715,7.89680556,0 +2018-04-20,4.90663889,24.00000000,0 +2018-04-21,24.00000000,24.00000000,0 +2018-04-22,24.00000000,24.00000000,0 +2018-04-23,24.00000000,24.00000000,0 +2018-04-24,24.00000000,24.00000000,0 +2018-04-25,24.00000000,24.00000000,0 +2018-04-26,18.11465278,24.00000000,6.35250000 +2018-04-27,19.41763889,19.82805556,24.00000000 +2018-04-28,24.00000000,0,24.00000000 +2018-04-29,24.00000000,0,24.00000000 +2018-04-30,23.00472222,5.28861111,23.01500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9cc55cfb12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" +2018-04,20.28904938,41.97077778,35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..db83f4db5f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" +"2018 Q2",20.28904938,41.97077778,35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b16517f55b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" +2018,20.28904938,41.97077778,35.26453704 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3b937683a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","CPU Hours: Total" +1,913.0072 +"2 - 3",419.7078 +"4 - 7",423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3b937683a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","CPU Hours: Total" +1,913.0072 +"2 - 3",419.7078 +"4 - 7",423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3b937683a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","CPU Hours: Total" +1,913.0072 +"2 - 3",419.7078 +"4 - 7",423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3b937683a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","CPU Hours: Total" +1,913.0072 +"2 - 3",419.7078 +"4 - 7",423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4ea99ffda3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" +2018-04-18,32.5281,1.8872,17.7044 +2018-04-19,108.2694,31.5872,0 +2018-04-20,49.0664,48.0000,0 +2018-04-21,72.0000,48.0000,0 +2018-04-22,72.0000,48.0000,0 +2018-04-23,72.0000,48.0000,0 +2018-04-24,72.0000,48.0000,0 +2018-04-25,72.0000,48.0000,0 +2018-04-26,72.4586,48.0000,25.4100 +2018-04-27,77.6706,39.6561,96.0000 +2018-04-28,72.0000,0,96.0000 +2018-04-29,72.0000,0,96.0000 +2018-04-30,69.0142,10.5772,92.0600 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f76d64f3c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" +2018-04,913.0072,419.7078,423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..37c3e411da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" +"2018 Q2",913.0072,419.7078,423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fe5bdcc844 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" +2018,913.0072,419.7078,423.1744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f9f65cbdf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Core Hour Utilization (%)" +1,1.2506 +"2 - 3",0.5749 +"4 - 7",0.5796 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f9f65cbdf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Core Hour Utilization (%)" +1,1.2506 +"2 - 3",0.5749 +"4 - 7",0.5796 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..13549ffd7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Core Hour Utilization (%)" +1,0.2197 +"2 - 3",0.1010 +"4 - 7",0.1018 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8e91b2b535 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Core Hour Utilization (%)" +1,0.0630 +"2 - 3",0.0290 +"4 - 7",0.0292 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ce5d569b92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" +2018-04-18,0.5792,0.0336,0.3153 +2018-04-19,1.9279,0.5625,0 +2018-04-20,0.8737,0.8547,0 +2018-04-21,1.2821,0.8547,0 +2018-04-22,1.2821,0.8547,0 +2018-04-23,1.2821,0.8547,0 +2018-04-24,1.2821,0.8547,0 +2018-04-25,1.2821,0.8547,0 +2018-04-26,1.2902,0.8547,0.4525 +2018-04-27,1.3830,0.7061,1.7094 +2018-04-28,1.2821,0,1.7094 +2018-04-29,1.2821,0,1.7094 +2018-04-30,1.2289,0.1883,1.6392 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9b5d8d2077 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" +2018-04,1.2506,0.5749,0.5796 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1c084c5c7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" +"2018 Q2",0.2197,0.1010,0.1018 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3b456475ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" +2018,0.0630,0.0290,0.0292 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5aaa59aa12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Ended" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5aaa59aa12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Ended" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5aaa59aa12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Ended" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5aaa59aa12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Ended" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7b647ed0e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" +2018-04-18,11,2,2 +2018-04-19,22,1,0 +2018-04-20,7,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,1,0,0 +2018-04-27,1,1,0 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1e51e74f67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" +2018-04,45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1c1a09715f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" +"2018 Q2",45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d1c40c402 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" +2018,45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2d11e10963 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Active" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2d11e10963 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Active" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2d11e10963 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Active" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2d11e10963 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Active" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d76108f34c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" +2018-04-18,18,2,2 +2018-04-19,23,2,0 +2018-04-20,10,1,0 +2018-04-21,3,1,0 +2018-04-22,3,1,0 +2018-04-23,3,1,0 +2018-04-24,3,1,0 +2018-04-25,3,1,0 +2018-04-26,4,1,1 +2018-04-27,4,1,1 +2018-04-28,3,0,1 +2018-04-29,3,0,1 +2018-04-30,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..20cc5cc394 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" +2018-04,45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..052ba481a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" +"2018 Q2",45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..392b050128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" +2018,45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..be912a9ba6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Started" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..be912a9ba6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Started" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..be912a9ba6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Started" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..be912a9ba6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Number of Sessions Started" +1,45 +"2 - 3",5 +"4 - 7",3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c33eb90fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" +2018-04-18,18,2,2 +2018-04-19,16,2,0 +2018-04-20,9,0,0 +2018-04-21,0,0,0 +2018-04-22,0,0,0 +2018-04-23,0,0,0 +2018-04-24,0,0,0 +2018-04-25,0,0,0 +2018-04-26,1,0,1 +2018-04-27,1,0,0 +2018-04-28,0,0,0 +2018-04-29,0,0,0 +2018-04-30,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..087bb6e46b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" +2018-04,45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..23464cb5c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" +"2018 Q2",45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..51a8204c3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" +2018,45,5,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4c7894258c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Total" +1,913.0072 +"2 - 3",209.8539 +"4 - 7",105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4c7894258c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Total" +1,913.0072 +"2 - 3",209.8539 +"4 - 7",105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4c7894258c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Total" +1,913.0072 +"2 - 3",209.8539 +"4 - 7",105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4c7894258c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Cores","Wall Hours: Total" +1,913.0072 +"2 - 3",209.8539 +"4 - 7",105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b96d30a6e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" +2018-04-18,32.5281,0.9436,4.4261 +2018-04-19,108.2694,15.7936,0 +2018-04-20,49.0664,24.0000,0 +2018-04-21,72.0000,24.0000,0 +2018-04-22,72.0000,24.0000,0 +2018-04-23,72.0000,24.0000,0 +2018-04-24,72.0000,24.0000,0 +2018-04-25,72.0000,24.0000,0 +2018-04-26,72.4586,24.0000,6.3525 +2018-04-27,77.6706,19.8281,24.0000 +2018-04-28,72.0000,0,24.0000 +2018-04-29,72.0000,0,24.0000 +2018-04-30,69.0142,5.2886,23.0150 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fb93d5f327 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" +2018-04,913.0072,209.8539,105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ff91195cff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" +"2018 Q2",913.0072,209.8539,105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..963ecb7034 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM Size: Cores" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" +2018,913.0072,209.8539,105.7936 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..59e3704155 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" +"8 - 16 GB",4.0000 +"4 - 8 GB",2.0000 +"2 - 4 GB",1.1879 +"< 2 GB",1.0000 +"32 - 64 GB",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..59e3704155 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" +"8 - 16 GB",4.0000 +"4 - 8 GB",2.0000 +"2 - 4 GB",1.1879 +"< 2 GB",1.0000 +"32 - 64 GB",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..59e3704155 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" +"8 - 16 GB",4.0000 +"4 - 8 GB",2.0000 +"2 - 4 GB",1.1879 +"< 2 GB",1.0000 +"32 - 64 GB",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..59e3704155 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" +"8 - 16 GB",4.0000 +"4 - 8 GB",2.0000 +"2 - 4 GB",1.1879 +"< 2 GB",1.0000 +"32 - 64 GB",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cef182ba4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" +2018-04-18,4.0000,2.0000,1.0214,1.0000,1.0000 +2018-04-19,0,0,1.1283,1.0000,0 +2018-04-20,0,0,1.3285,0,0 +2018-04-21,0,0,1.2500,0,0 +2018-04-22,0,0,1.2500,0,0 +2018-04-23,0,0,1.2500,0,0 +2018-04-24,0,0,1.2500,0,0 +2018-04-25,0,0,1.2500,0,0 +2018-04-26,4.0000,0,1.2488,0,0 +2018-04-27,4.0000,0,1.2159,1.0000,0 +2018-04-28,4.0000,0,1.0000,0,0 +2018-04-29,4.0000,0,1.0000,0,0 +2018-04-30,4.0000,0,1.0712,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dce14bbff8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" +2018-04,4.0000,2.0000,1.1879,1.0000,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8d9bf1d23f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" +"2018 Q2",4.0000,2.0000,1.1879,1.0000,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d0964903b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" +2018,4.0000,2.0000,1.1879,1.0000,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..141f8d2af9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"32 - 64 GB",41943040000.0000 +"8 - 16 GB",17179869184.0000 +"4 - 8 GB",8589934592.0000 +"2 - 4 GB",4294967296.0000 +"< 2 GB",1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..141f8d2af9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"32 - 64 GB",41943040000.0000 +"8 - 16 GB",17179869184.0000 +"4 - 8 GB",8589934592.0000 +"2 - 4 GB",4294967296.0000 +"< 2 GB",1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..141f8d2af9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"32 - 64 GB",41943040000.0000 +"8 - 16 GB",17179869184.0000 +"4 - 8 GB",8589934592.0000 +"2 - 4 GB",4294967296.0000 +"< 2 GB",1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..141f8d2af9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" +"32 - 64 GB",41943040000.0000 +"8 - 16 GB",17179869184.0000 +"4 - 8 GB",8589934592.0000 +"2 - 4 GB",4294967296.0000 +"< 2 GB",1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..31812dc6e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 +2018-04-19,0,0,0,4294967296.0000,1073741824.0000 +2018-04-20,0,0,0,4294967296.0000,0 +2018-04-21,0,0,0,4294967296.0000,0 +2018-04-22,0,0,0,4294967296.0000,0 +2018-04-23,0,0,0,4294967296.0000,0 +2018-04-24,0,0,0,4294967296.0000,0 +2018-04-25,0,0,0,4294967296.0000,0 +2018-04-26,0,17179869184.0000,0,4294967296.0000,0 +2018-04-27,0,17179869184.0000,0,4294967296.0000,1073741824.0000 +2018-04-28,0,17179869184.0000,0,4294967296.0000,0 +2018-04-29,0,17179869184.0000,0,4294967296.0000,0 +2018-04-30,0,17179869184.0000,0,4294967296.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1f98adfd8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018-04,41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f66d27ccd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2957a18ea6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" +2018,41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dd05fdd013 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"< 2 GB",21474836480.0000 +"2 - 4 GB",21474836480.0000 +"4 - 8 GB",21474836480.0000 +"8 - 16 GB",21474836480.0000 +"32 - 64 GB",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dd05fdd013 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"< 2 GB",21474836480.0000 +"2 - 4 GB",21474836480.0000 +"4 - 8 GB",21474836480.0000 +"8 - 16 GB",21474836480.0000 +"32 - 64 GB",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dd05fdd013 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"< 2 GB",21474836480.0000 +"2 - 4 GB",21474836480.0000 +"4 - 8 GB",21474836480.0000 +"8 - 16 GB",21474836480.0000 +"32 - 64 GB",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dd05fdd013 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"< 2 GB",21474836480.0000 +"2 - 4 GB",21474836480.0000 +"4 - 8 GB",21474836480.0000 +"8 - 16 GB",21474836480.0000 +"32 - 64 GB",21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9823e52e3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04-18,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +2018-04-19,21474836480.0000,21474836480.0000,0,0,0 +2018-04-20,0,21474836480.0000,0,0,0 +2018-04-21,0,21474836480.0000,0,0,0 +2018-04-22,0,21474836480.0000,0,0,0 +2018-04-23,0,21474836480.0000,0,0,0 +2018-04-24,0,21474836480.0000,0,0,0 +2018-04-25,0,21474836480.0000,0,0,0 +2018-04-26,0,21474836480.0000,0,21474836480.0000,0 +2018-04-27,21474836480.0000,21474836480.0000,0,21474836480.0000,0 +2018-04-28,0,21474836480.0000,0,21474836480.0000,0 +2018-04-29,0,21474836480.0000,0,21474836480.0000,0 +2018-04-30,0,21474836480.0000,0,21474836480.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv new file mode 100644 index 0000000000..79f283ae34 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018-04,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..53313ff082 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d7dd1da4e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" +2018,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..284542dbb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Per Session" +"8 - 16 GB",35.26453704 +"2 - 4 GB",26.52719577 +"< 2 GB",1.10305556 +"4 - 8 GB",0.23527778 +"32 - 64 GB",0.12027778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..284542dbb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Per Session" +"8 - 16 GB",35.26453704 +"2 - 4 GB",26.52719577 +"< 2 GB",1.10305556 +"4 - 8 GB",0.23527778 +"32 - 64 GB",0.12027778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..284542dbb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Per Session" +"8 - 16 GB",35.26453704 +"2 - 4 GB",26.52719577 +"< 2 GB",1.10305556 +"4 - 8 GB",0.23527778 +"32 - 64 GB",0.12027778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..284542dbb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Per Session" +"8 - 16 GB",35.26453704 +"2 - 4 GB",26.52719577 +"< 2 GB",1.10305556 +"4 - 8 GB",0.23527778 +"32 - 64 GB",0.12027778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8335fe62d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" +2018-04-18,2.21305556,1.94709150,0.01527778,0.23527778,0.12055556 +2018-04-19,0,5.86257937,0.23722222,0,0 +2018-04-20,0,6.64239899,0,0,0 +2018-04-21,0,24.00000000,0,0,0 +2018-04-22,0,24.00000000,0,0,0 +2018-04-23,0,24.00000000,0,0,0 +2018-04-24,0,24.00000000,0,0,0 +2018-04-25,0,24.00000000,0,0,0 +2018-04-26,6.35250000,19.29172222,0,0,0 +2018-04-27,24.00000000,22.95701389,5.67055556,0,0 +2018-04-28,24.00000000,24.00000000,0,0,0 +2018-04-29,24.00000000,24.00000000,0,0,0 +2018-04-30,23.01500000,18.57569444,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d71e355292 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" +2018-04,35.26453704,26.56834656,1.10578704,0.23527778,0.12055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..82b4dab074 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" +"2018 Q2",35.26453704,26.56834656,1.10578704,0.23527778,0.12055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1d35474ff1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Session: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" +2018,35.26453704,26.56834656,1.10578704,0.23527778,0.12055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e93e763e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","CPU Hours: Total" +"2 - 4 GB",1325.4892 +"8 - 16 GB",423.1744 +"< 2 GB",6.6347 +"4 - 8 GB",0.4706 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e93e763e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","CPU Hours: Total" +"2 - 4 GB",1325.4892 +"8 - 16 GB",423.1744 +"< 2 GB",6.6347 +"4 - 8 GB",0.4706 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e93e763e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","CPU Hours: Total" +"2 - 4 GB",1325.4892 +"8 - 16 GB",423.1744 +"< 2 GB",6.6347 +"4 - 8 GB",0.4706 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e93e763e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","CPU Hours: Total" +"2 - 4 GB",1325.4892 +"8 - 16 GB",423.1744 +"< 2 GB",6.6347 +"4 - 8 GB",0.4706 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..286ea3da05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" +2018-04-18,33.8089,17.7044,0.0153,0.4706,0.1206 +2018-04-19,138.9078,0,0.9489,0,0 +2018-04-20,97.0664,0,0,0,0 +2018-04-21,120.0000,0,0,0,0 +2018-04-22,120.0000,0,0,0,0 +2018-04-23,120.0000,0,0,0,0 +2018-04-24,120.0000,0,0,0,0 +2018-04-25,120.0000,0,0,0,0 +2018-04-26,120.4586,25.4100,0,0,0 +2018-04-27,111.6561,96.0000,5.6706,0,0 +2018-04-28,72.0000,96.0000,0,0,0 +2018-04-29,72.0000,96.0000,0,0,0 +2018-04-30,79.5914,92.0600,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..889fc1a56f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" +2018-04,1325.4892,423.1744,6.6347,0.4706,0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e9fa77cb6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" +"2018 Q2",1325.4892,423.1744,6.6347,0.4706,0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..437ae44acc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" +2018,1325.4892,423.1744,6.6347,0.4706,0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d763375bdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Core Hour Utilization (%)" +"2 - 4 GB",1.8155 +"8 - 16 GB",0.5796 +"< 2 GB",0.0091 +"4 - 8 GB",0.0006 +"32 - 64 GB",0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d763375bdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Core Hour Utilization (%)" +"2 - 4 GB",1.8155 +"8 - 16 GB",0.5796 +"< 2 GB",0.0091 +"4 - 8 GB",0.0006 +"32 - 64 GB",0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4738410bbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Core Hour Utilization (%)" +"2 - 4 GB",0.3189 +"8 - 16 GB",0.1018 +"< 2 GB",0.0016 +"4 - 8 GB",0.0001 +"32 - 64 GB",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..64668edaf2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Core Hour Utilization (%)" +"2 - 4 GB",0.0915 +"8 - 16 GB",0.0292 +"< 2 GB",0.0005 +"4 - 8 GB",0.0000 +"32 - 64 GB",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..585f6c53b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" +2018-04-18,0.6020,0.3153,0.0003,0.0084,0.0021 +2018-04-19,2.4734,0,0.0169,0,0 +2018-04-20,1.7284,0,0,0,0 +2018-04-21,2.1368,0,0,0,0 +2018-04-22,2.1368,0,0,0,0 +2018-04-23,2.1368,0,0,0,0 +2018-04-24,2.1368,0,0,0,0 +2018-04-25,2.1368,0,0,0,0 +2018-04-26,2.1449,0.4525,0,0,0 +2018-04-27,1.9882,1.7094,0.1010,0,0 +2018-04-28,1.2821,1.7094,0,0,0 +2018-04-29,1.2821,1.7094,0,0,0 +2018-04-30,1.4172,1.6392,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e91b456c7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" +2018-04,1.8155,0.5796,0.0091,0.0006,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..86dec73164 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" +"2018 Q2",0.3189,0.1018,0.0016,0.0001,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8982472fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Core Hour Utilization (%): by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" +2018,0.0915,0.0292,0.0005,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv new file mode 100644 index 0000000000..87624bcd51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Ended" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv new file mode 100644 index 0000000000..87624bcd51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Ended" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..87624bcd51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Ended" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv new file mode 100644 index 0000000000..87624bcd51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Ended" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv new file mode 100644 index 0000000000..42c1241bea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" +2018-04-18,10,1,2,1,1 +2018-04-19,19,4,0,0,0 +2018-04-20,7,0,0,0,0 +2018-04-21,0,0,0,0,0 +2018-04-22,0,0,0,0,0 +2018-04-23,0,0,0,0,0 +2018-04-24,0,0,0,0,0 +2018-04-25,0,0,0,0,0 +2018-04-26,1,0,0,0,0 +2018-04-27,1,1,0,0,0 +2018-04-28,0,0,0,0,0 +2018-04-29,0,0,0,0,0 +2018-04-30,4,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b18ac3d1f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" +2018-04,42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7d1aa29224 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" +"2018 Q2",42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv new file mode 100644 index 0000000000..286eeafad8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Ended: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" +2018,42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f2bcd14c57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Active" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f2bcd14c57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Active" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f2bcd14c57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Active" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f2bcd14c57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Active" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3ff405caeb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" +2018-04-18,17,1,2,1,1 +2018-04-19,21,4,0,0,0 +2018-04-20,11,0,0,0,0 +2018-04-21,4,0,0,0,0 +2018-04-22,4,0,0,0,0 +2018-04-23,4,0,0,0,0 +2018-04-24,4,0,0,0,0 +2018-04-25,4,0,0,0,0 +2018-04-26,5,0,1,0,0 +2018-04-27,4,1,1,0,0 +2018-04-28,3,0,1,0,0 +2018-04-29,3,0,1,0,0 +2018-04-30,4,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0963b410aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" +2018-04,42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9940b6b13d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" +"2018 Q2",42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9024b8f18f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Active: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" +2018,42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2c3d04972a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Started" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2c3d04972a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Started" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2c3d04972a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Started" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2c3d04972a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Number of Sessions Started" +"2 - 4 GB",42 +"< 2 GB",6 +"8 - 16 GB",3 +"4 - 8 GB",1 +"32 - 64 GB",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv new file mode 100644 index 0000000000..162b2559ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" +2018-04-18,17,1,2,1,1 +2018-04-19,14,4,0,0,0 +2018-04-20,9,0,0,0,0 +2018-04-21,0,0,0,0,0 +2018-04-22,0,0,0,0,0 +2018-04-23,0,0,0,0,0 +2018-04-24,0,0,0,0,0 +2018-04-25,0,0,0,0,0 +2018-04-26,1,0,1,0,0 +2018-04-27,0,1,0,0,0 +2018-04-28,0,0,0,0,0 +2018-04-29,0,0,0,0,0 +2018-04-30,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8d231b8e4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" +2018-04,42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e6e80b88de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" +"2018 Q2",42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv new file mode 100644 index 0000000000..45c9399fc3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Sessions Started: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" +2018,42,6,3,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e64dd56b76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Total" +"2 - 4 GB",1115.8706 +"8 - 16 GB",105.7936 +"< 2 GB",6.6347 +"4 - 8 GB",0.2353 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e64dd56b76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Total" +"2 - 4 GB",1115.8706 +"8 - 16 GB",105.7936 +"< 2 GB",6.6347 +"4 - 8 GB",0.2353 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e64dd56b76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Total" +"2 - 4 GB",1115.8706 +"8 - 16 GB",105.7936 +"< 2 GB",6.6347 +"4 - 8 GB",0.2353 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e64dd56b76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +"VM Size: Memory","Wall Hours: Total" +"2 - 4 GB",1115.8706 +"8 - 16 GB",105.7936 +"< 2 GB",6.6347 +"4 - 8 GB",0.2353 +"32 - 64 GB",0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dd7a5174b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv @@ -0,0 +1,22 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Day,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" +2018-04-18,33.1006,4.4261,0.0153,0.2353,0.1206 +2018-04-19,123.1142,0,0.9489,0,0 +2018-04-20,73.0664,0,0,0,0 +2018-04-21,96.0000,0,0,0,0 +2018-04-22,96.0000,0,0,0,0 +2018-04-23,96.0000,0,0,0,0 +2018-04-24,96.0000,0,0,0,0 +2018-04-25,96.0000,0,0,0,0 +2018-04-26,96.4586,6.3525,0,0,0 +2018-04-27,91.8281,24.0000,5.6706,0,0 +2018-04-28,72.0000,24.0000,0,0,0 +2018-04-29,72.0000,24.0000,0,0,0 +2018-04-30,74.3028,23.0150,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv new file mode 100644 index 0000000000..21cefa2e31 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Month,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" +2018-04,1115.8706,105.7936,6.6347,0.2353,0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6ef56d7c74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Quarter,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" +"2018 Q2",1115.8706,105.7936,6.6347,0.2353,0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c3908dd9dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by VM Size: Memory" +parameters + +start,end +2018-04-18,2018-04-30 +--------- +Year,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" +2018,1115.8706,105.7936,6.6347,0.2353,0.1206 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ad19853ff5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Users: Active" +"Galactic Astronomy",6 +"Physical Chemistry",4 +"Quantum Electronics, Waves, and Beams",4 +"Stellar Astronomy and Astrophysics",4 +Arts,3 +"Mechanics and Materials",3 +Biophysics,2 +"Cell Biology",2 +"Decision, Risk, and Management Science",2 +"Experimental Systems",2 +"Organic and Macromolecular Chemistry",2 +Sociology,2 +"Solid State Chemistry and Polymers",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +"Computer and Computation Theory",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +Seismology,1 +"Solid-State and Microstructures",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ad19853ff5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Users: Active" +"Galactic Astronomy",6 +"Physical Chemistry",4 +"Quantum Electronics, Waves, and Beams",4 +"Stellar Astronomy and Astrophysics",4 +Arts,3 +"Mechanics and Materials",3 +Biophysics,2 +"Cell Biology",2 +"Decision, Risk, and Management Science",2 +"Experimental Systems",2 +"Organic and Macromolecular Chemistry",2 +Sociology,2 +"Solid State Chemistry and Polymers",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +"Computer and Computation Theory",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +Seismology,1 +"Solid-State and Microstructures",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ad19853ff5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Users: Active" +"Galactic Astronomy",6 +"Physical Chemistry",4 +"Quantum Electronics, Waves, and Beams",4 +"Stellar Astronomy and Astrophysics",4 +Arts,3 +"Mechanics and Materials",3 +Biophysics,2 +"Cell Biology",2 +"Decision, Risk, and Management Science",2 +"Experimental Systems",2 +"Organic and Macromolecular Chemistry",2 +Sociology,2 +"Solid State Chemistry and Polymers",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +"Computer and Computation Theory",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +Seismology,1 +"Solid-State and Microstructures",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ad19853ff5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Users: Active" +"Galactic Astronomy",6 +"Physical Chemistry",4 +"Quantum Electronics, Waves, and Beams",4 +"Stellar Astronomy and Astrophysics",4 +Arts,3 +"Mechanics and Materials",3 +Biophysics,2 +"Cell Biology",2 +"Decision, Risk, and Management Science",2 +"Experimental Systems",2 +"Organic and Macromolecular Chemistry",2 +Sociology,2 +"Solid State Chemistry and Polymers",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +"Computer and Computation Theory",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +Seismology,1 +"Solid-State and Microstructures",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a9676a61fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" +2016-12-22,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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-24,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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-25,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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-26,1,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,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-27,3,2,1,1,0,0,2,1,0,0,0,1,2,2,0,1,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-28,3,4,1,1,0,0,2,1,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1 +2016-12-29,4,4,2,3,2,0,2,2,1,2,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,1,0,1,1,1,0,0,1,1,1,0,1,0,1,1 +2016-12-30,6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1 +2016-12-31,5,4,4,4,3,3,2,1,1,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0 +2017-01-01,2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ba1ee8da68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" +2016-12,6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..164eed44d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" +"2016 Q4",6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..122dbcd164 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" +2016,6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..946556cc20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of PIs: Active" +"Statistics and Probability",2 +"Algebra and Number Theory",1 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Galactic Astronomy",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Organic and Macromolecular Chemistry",1 +"Physical Chemistry",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +"Quantum Electronics, Waves, and Beams",1 +Seismology,1 +Sociology,1 +"Solid State Chemistry and Polymers",1 +"Solid-State and Microstructures",1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..946556cc20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of PIs: Active" +"Statistics and Probability",2 +"Algebra and Number Theory",1 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Galactic Astronomy",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Organic and Macromolecular Chemistry",1 +"Physical Chemistry",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +"Quantum Electronics, Waves, and Beams",1 +Seismology,1 +Sociology,1 +"Solid State Chemistry and Polymers",1 +"Solid-State and Microstructures",1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..946556cc20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of PIs: Active" +"Statistics and Probability",2 +"Algebra and Number Theory",1 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Galactic Astronomy",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Organic and Macromolecular Chemistry",1 +"Physical Chemistry",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +"Quantum Electronics, Waves, and Beams",1 +Seismology,1 +Sociology,1 +"Solid State Chemistry and Polymers",1 +"Solid-State and Microstructures",1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..946556cc20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of PIs: Active" +"Statistics and Probability",2 +"Algebra and Number Theory",1 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Galactic Astronomy",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Organic and Macromolecular Chemistry",1 +"Physical Chemistry",1 +"Polar Aeronomy and Astrophysics",1 +"Polar Meteorology",1 +"Polar Ocean and Climate Systems",1 +"Quantum Electronics, Waves, and Beams",1 +Seismology,1 +Sociology,1 +"Solid State Chemistry and Polymers",1 +"Solid-State and Microstructures",1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..979190f5a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" +2016-12-22,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0 +2016-12-28,2,1,0,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,1 +2016-12-29,2,1,1,1,1,1,1,1,0,0,0,1,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,0,1,1 +2016-12-30,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0 +2017-01-01,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4654d057e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" +2016-12,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..50adc200f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" +"2016 Q4",2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..05616b3a0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" +2016,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7c33f50061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Resources: Active" +Sociology,5 +"Galactic Astronomy",3 +"Physical Chemistry",3 +"Solid State Chemistry and Polymers",3 +Arts,2 +"Organic and Macromolecular Chemistry",2 +"Polar Aeronomy and Astrophysics",2 +"Polar Ocean and Climate Systems",2 +"Quantum Electronics, Waves, and Beams",2 +"Solid-State and Microstructures",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +Seismology,1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7c33f50061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Resources: Active" +Sociology,5 +"Galactic Astronomy",3 +"Physical Chemistry",3 +"Solid State Chemistry and Polymers",3 +Arts,2 +"Organic and Macromolecular Chemistry",2 +"Polar Aeronomy and Astrophysics",2 +"Polar Ocean and Climate Systems",2 +"Quantum Electronics, Waves, and Beams",2 +"Solid-State and Microstructures",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +Seismology,1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7c33f50061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Resources: Active" +Sociology,5 +"Galactic Astronomy",3 +"Physical Chemistry",3 +"Solid State Chemistry and Polymers",3 +Arts,2 +"Organic and Macromolecular Chemistry",2 +"Polar Aeronomy and Astrophysics",2 +"Polar Ocean and Climate Systems",2 +"Quantum Electronics, Waves, and Beams",2 +"Solid-State and Microstructures",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +Seismology,1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7c33f50061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Resources: Active" +Sociology,5 +"Galactic Astronomy",3 +"Physical Chemistry",3 +"Solid State Chemistry and Polymers",3 +Arts,2 +"Organic and Macromolecular Chemistry",2 +"Polar Aeronomy and Astrophysics",2 +"Polar Ocean and Climate Systems",2 +"Quantum Electronics, Waves, and Beams",2 +"Solid-State and Microstructures",2 +"Statistics and Probability",2 +"Algebra and Number Theory",1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +"Design and Computer-Integrated Engineering",1 +"Design, Tools, and Test",1 +Economics,1 +"Emerging Technologies Initiation",1 +"Experimental Systems",1 +"Extragalactic Astronomy and Cosmology",1 +"Fluid, Particulate, and Hydraulic Systems",1 +"Geology and Paleontology",1 +Geophysics,1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Mechanics and Materials",1 +"Metals, Ceramics, and Electronic Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +Seismology,1 +"Stellar Astronomy and Astrophysics",1 +"Structures and Building Systems",1 +"Systematic and Population Biology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +"Theoretical Physics",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dc2c3078ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" +2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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-24,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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-25,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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-26,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,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-27,1,2,2,1,0,0,0,0,1,0,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-28,1,2,2,2,0,1,0,0,1,0,2,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,1 +2016-12-29,4,3,3,3,2,1,1,0,1,1,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,1,0,0,1,1,0,1,1,1,0,1,0,1,1 +2016-12-30,5,3,3,3,2,2,2,0,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,5,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0 +2017-01-01,5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6d6a4147a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" +2016-12,5,3,3,3,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..707d0df673 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" +"2016 Q4",5,3,3,3,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..26a3494fe6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" +2016,5,3,3,3,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..749997a0bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0e71cc91c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0e71cc91c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0e71cc91c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..268ff1d94c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a6971df01b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..08cf3cd832 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..db939918e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5dd69e62ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-27,24.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0,0 +2016-12-28,24.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000 +2016-12-29,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000 +2016-12-30,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,8.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0 +2017-01-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dd8579d3ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +2016-12,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e1e2c4626a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +"2016 Q4",77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c0b895abf2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +2016,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cba3d59030 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,1.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 +2016-12-28,1.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 +2016-12-29,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 +2016-12-30,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 +2017-01-01,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2dca7385eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +2016-12,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d8f504e065 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +"2016 Q4",0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8fe58ca1bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +2016,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ebb6f12075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By CPU Hours (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",326.9898 +"Organic and Macromolecular Chemistry",185.9182 +"Global Atmospheric Research",160.0000 +"Structures and Building Systems",112.0000 +"Design, Tools, and Test",108.0000 +"Emerging Technologies Initiation",96.0000 +"Quantum Electronics, Waves, and Beams",95.4997 +"Metals, Ceramics, and Electronic Materials",72.0000 +"Solid State Chemistry and Polymers",62.2411 +"Stellar Astronomy and Astrophysics",61.4597 +"Systematic and Population Biology",57.7053 +"Geology and Paleontology",55.6816 +"Decision, Risk, and Management Science",53.4612 +Biophysics,48.6577 +"Polar Aeronomy and Astrophysics",39.9999 +Economics,29.2166 +"Physical Chemistry",28.9482 +"Galactic Astronomy",24.5939 +"Design and Computer-Integrated Engineering",23.2563 +Geophysics,20.0000 +"Volcanology and Mantle Geochemistry",20.0000 +"Law and Social Sciences",16.0000 +"Statistics and Probability",13.7795 +"Algebra and Number Theory",12.0000 +"Polar Ocean and Climate Systems",12.0000 +"Theoretical Physics",12.0000 +Arts,11.8252 +Sociology,10.3886 +"Biochemistry and Molecular Structure and Function",10.0459 +Seismology,9.9744 +"Experimental Systems",8.3168 +"Cell Biology",7.5996 +"Solid-State and Microstructures",4.5532 +"Computer and Computation Theory",1.0000 +"Extragalactic Astronomy and Cosmology",1.0000 +"Mechanics and Materials",1.0000 +"Operations Research and Production Systems",1.0000 +"Polar Meteorology",1.0000 +"Systems Prototyping and Fabrication",1.0000 +Tectonics,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ebb6f12075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By CPU Hours (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",326.9898 +"Organic and Macromolecular Chemistry",185.9182 +"Global Atmospheric Research",160.0000 +"Structures and Building Systems",112.0000 +"Design, Tools, and Test",108.0000 +"Emerging Technologies Initiation",96.0000 +"Quantum Electronics, Waves, and Beams",95.4997 +"Metals, Ceramics, and Electronic Materials",72.0000 +"Solid State Chemistry and Polymers",62.2411 +"Stellar Astronomy and Astrophysics",61.4597 +"Systematic and Population Biology",57.7053 +"Geology and Paleontology",55.6816 +"Decision, Risk, and Management Science",53.4612 +Biophysics,48.6577 +"Polar Aeronomy and Astrophysics",39.9999 +Economics,29.2166 +"Physical Chemistry",28.9482 +"Galactic Astronomy",24.5939 +"Design and Computer-Integrated Engineering",23.2563 +Geophysics,20.0000 +"Volcanology and Mantle Geochemistry",20.0000 +"Law and Social Sciences",16.0000 +"Statistics and Probability",13.7795 +"Algebra and Number Theory",12.0000 +"Polar Ocean and Climate Systems",12.0000 +"Theoretical Physics",12.0000 +Arts,11.8252 +Sociology,10.3886 +"Biochemistry and Molecular Structure and Function",10.0459 +Seismology,9.9744 +"Experimental Systems",8.3168 +"Cell Biology",7.5996 +"Solid-State and Microstructures",4.5532 +"Computer and Computation Theory",1.0000 +"Extragalactic Astronomy and Cosmology",1.0000 +"Mechanics and Materials",1.0000 +"Operations Research and Production Systems",1.0000 +"Polar Meteorology",1.0000 +"Systems Prototyping and Fabrication",1.0000 +Tectonics,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ebb6f12075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By CPU Hours (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",326.9898 +"Organic and Macromolecular Chemistry",185.9182 +"Global Atmospheric Research",160.0000 +"Structures and Building Systems",112.0000 +"Design, Tools, and Test",108.0000 +"Emerging Technologies Initiation",96.0000 +"Quantum Electronics, Waves, and Beams",95.4997 +"Metals, Ceramics, and Electronic Materials",72.0000 +"Solid State Chemistry and Polymers",62.2411 +"Stellar Astronomy and Astrophysics",61.4597 +"Systematic and Population Biology",57.7053 +"Geology and Paleontology",55.6816 +"Decision, Risk, and Management Science",53.4612 +Biophysics,48.6577 +"Polar Aeronomy and Astrophysics",39.9999 +Economics,29.2166 +"Physical Chemistry",28.9482 +"Galactic Astronomy",24.5939 +"Design and Computer-Integrated Engineering",23.2563 +Geophysics,20.0000 +"Volcanology and Mantle Geochemistry",20.0000 +"Law and Social Sciences",16.0000 +"Statistics and Probability",13.7795 +"Algebra and Number Theory",12.0000 +"Polar Ocean and Climate Systems",12.0000 +"Theoretical Physics",12.0000 +Arts,11.8252 +Sociology,10.3886 +"Biochemistry and Molecular Structure and Function",10.0459 +Seismology,9.9744 +"Experimental Systems",8.3168 +"Cell Biology",7.5996 +"Solid-State and Microstructures",4.5532 +"Computer and Computation Theory",1.0000 +"Extragalactic Astronomy and Cosmology",1.0000 +"Mechanics and Materials",1.0000 +"Operations Research and Production Systems",1.0000 +"Polar Meteorology",1.0000 +"Systems Prototyping and Fabrication",1.0000 +Tectonics,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ebb6f12075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By CPU Hours (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",326.9898 +"Organic and Macromolecular Chemistry",185.9182 +"Global Atmospheric Research",160.0000 +"Structures and Building Systems",112.0000 +"Design, Tools, and Test",108.0000 +"Emerging Technologies Initiation",96.0000 +"Quantum Electronics, Waves, and Beams",95.4997 +"Metals, Ceramics, and Electronic Materials",72.0000 +"Solid State Chemistry and Polymers",62.2411 +"Stellar Astronomy and Astrophysics",61.4597 +"Systematic and Population Biology",57.7053 +"Geology and Paleontology",55.6816 +"Decision, Risk, and Management Science",53.4612 +Biophysics,48.6577 +"Polar Aeronomy and Astrophysics",39.9999 +Economics,29.2166 +"Physical Chemistry",28.9482 +"Galactic Astronomy",24.5939 +"Design and Computer-Integrated Engineering",23.2563 +Geophysics,20.0000 +"Volcanology and Mantle Geochemistry",20.0000 +"Law and Social Sciences",16.0000 +"Statistics and Probability",13.7795 +"Algebra and Number Theory",12.0000 +"Polar Ocean and Climate Systems",12.0000 +"Theoretical Physics",12.0000 +Arts,11.8252 +Sociology,10.3886 +"Biochemistry and Molecular Structure and Function",10.0459 +Seismology,9.9744 +"Experimental Systems",8.3168 +"Cell Biology",7.5996 +"Solid-State and Microstructures",4.5532 +"Computer and Computation Theory",1.0000 +"Extragalactic Astronomy and Cosmology",1.0000 +"Mechanics and Materials",1.0000 +"Operations Research and Production Systems",1.0000 +"Polar Meteorology",1.0000 +"Systems Prototyping and Fabrication",1.0000 +Tectonics,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..42ed505342 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,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,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,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,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,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,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,12.0000,0,0,15.9210,1.0000,0,0,0,0,0,0,0,0,0,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,12.0000,0,0,20.0000,1.0000,0,0,0,0,16.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,96.0000,0,110.0862,72.0000,0,0,0,35.8063,0,0,22.5565,15.2449,0,0,0,0,15.9632,0,0,0,0,1.0000,12.0000,0,0,8.0000,0,0,0,0,0,0,0,0 +2016-12-28,0,186.6783,0,0,0,0,96.0000,0,87.9948,65.7129,0,0,0,55.7895,0,0,28.6309,15.8148,0,0,20.0000,0,15.8458,12.0000,0,12.0000,0,1.0000,12.0000,0,8.0000,8.0000,0,0,0,0,1.0000,0,1.0000,0 +2016-12-29,0,186.5631,160.0000,112.0000,0,96.0000,95.9574,72.0000,62.0528,61.5476,0,0,56.0000,55.7895,40.0000,0,29.2190,23.6626,0,0,20.0000,0,15.9531,12.0000,0,12.0000,11.5552,7.4478,12.0000,5.0000,8.0000,7.2600,2.0000,1.0000,0,0,1.0000,0,1.0000,0 +2016-12-30,320.0517,186.4757,160.0000,112.0000,108.0000,96.0000,95.8117,72.0000,30.0833,59.0825,65.8038,45.1553,53.8849,55.7895,39.9998,41.1565,27.0648,25.1498,0,20.0000,20.0000,16.0000,15.9524,12.0000,0,12.0000,11.8713,10.0119,2.3934,5.0000,8.2497,7.1202,11.1559,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,180.1552,0,112.0000,0,96.0000,95.0483,72.0000,16.5130,59.5816,95.7214,59.2199,1.0000,55.7250,40.0000,24.3207,41.0622,33.7236,23.4747,0,0,0,11.9114,12.0000,12.0000,0,11.8540,10.7516,1.0000,11.1429,8.8093,8.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..95bd1a8dd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3584,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9d49d04694 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3584,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..db5c33548a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" +2016,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3584,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e56e2d1127 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,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.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 +2016-12-28,12.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 +2017-01-01,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..519cd5695b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0d7d181086 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f88f026959 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1436d72d1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9dfae15f9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9dfae15f9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9dfae15f9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Per Job: by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..81f31d2b8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3553c085c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9de203e4da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a70b30110d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by PI Group" +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","[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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0b7d8ef8fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0b7d8ef8fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0b7d8ef8fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0b7d8ef8fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c354f6ea7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c8c93c43c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..63d3f65d97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b65a34c209 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f6e1d34f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Galactic Astronomy",214.25581950,2.0529931333004057 +"Cell Biology",71.34538580,15.241596218036447 +"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 +"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 +"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 +"Global Atmospheric Research",31.02180556,3.7428536858056267 +"Solid-State and Microstructures",26.77900440,0.3093136712992847 +"Systematic and Population Biology",12.67979893,0.790292910753799 +"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 +"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 +"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 +"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 +Arts,4.87037458,0.44747381160758987 +"Algebra and Number Theory",4.41189394,0.6571458545780616 +Tectonics,3.92752472,0.08635320372070841 +"Theoretical Physics",3.72481481,0.0007211928415468717 +"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 +Sociology,2.05341236,0.02664920179778262 +"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 +"Emerging Technologies Initiation",1.88463542,0.5086144929601321 +"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 +"Statistics and Probability",0.67655350,0.18487368040866786 +"Computer and Computation Theory",0.32390278,0.2312398274998169 +Economics,0.29952899,0.12719098377944033 +"Experimental Systems",0.20924174,0.04281469020992288 +"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 +"Design, Tools, and Test",0.09777778,0 +"Polar Meteorology",0.08220238,0.011574714004551338 +"Physical Chemistry",0.06381908,0.014079147600380438 +"Operations Research and Production Systems",0.05740350,0.004593062258338075 +"Geology and Paleontology",0.04034722,0.034861577990454876 +Biophysics,0.03987455,0.015476567200768681 +Seismology,0.01747222,0.00747562396751627 +"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 +Geophysics,0.00105159,0.00005735857833479565 +"Structures and Building Systems",0.00059028,0.000142636082683637 +"Volcanology and Mantle Geochemistry",0.00027778,0 +"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 +"Mechanics and Materials",0.00012566,0.000016471282949086855 +"Law and Social Sciences",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f6e1d34f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Galactic Astronomy",214.25581950,2.0529931333004057 +"Cell Biology",71.34538580,15.241596218036447 +"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 +"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 +"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 +"Global Atmospheric Research",31.02180556,3.7428536858056267 +"Solid-State and Microstructures",26.77900440,0.3093136712992847 +"Systematic and Population Biology",12.67979893,0.790292910753799 +"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 +"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 +"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 +"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 +Arts,4.87037458,0.44747381160758987 +"Algebra and Number Theory",4.41189394,0.6571458545780616 +Tectonics,3.92752472,0.08635320372070841 +"Theoretical Physics",3.72481481,0.0007211928415468717 +"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 +Sociology,2.05341236,0.02664920179778262 +"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 +"Emerging Technologies Initiation",1.88463542,0.5086144929601321 +"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 +"Statistics and Probability",0.67655350,0.18487368040866786 +"Computer and Computation Theory",0.32390278,0.2312398274998169 +Economics,0.29952899,0.12719098377944033 +"Experimental Systems",0.20924174,0.04281469020992288 +"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 +"Design, Tools, and Test",0.09777778,0 +"Polar Meteorology",0.08220238,0.011574714004551338 +"Physical Chemistry",0.06381908,0.014079147600380438 +"Operations Research and Production Systems",0.05740350,0.004593062258338075 +"Geology and Paleontology",0.04034722,0.034861577990454876 +Biophysics,0.03987455,0.015476567200768681 +Seismology,0.01747222,0.00747562396751627 +"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 +Geophysics,0.00105159,0.00005735857833479565 +"Structures and Building Systems",0.00059028,0.000142636082683637 +"Volcanology and Mantle Geochemistry",0.00027778,0 +"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 +"Mechanics and Materials",0.00012566,0.000016471282949086855 +"Law and Social Sciences",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f6e1d34f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Galactic Astronomy",214.25581950,2.0529931333004057 +"Cell Biology",71.34538580,15.241596218036447 +"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 +"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 +"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 +"Global Atmospheric Research",31.02180556,3.7428536858056267 +"Solid-State and Microstructures",26.77900440,0.3093136712992847 +"Systematic and Population Biology",12.67979893,0.790292910753799 +"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 +"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 +"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 +"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 +Arts,4.87037458,0.44747381160758987 +"Algebra and Number Theory",4.41189394,0.6571458545780616 +Tectonics,3.92752472,0.08635320372070841 +"Theoretical Physics",3.72481481,0.0007211928415468717 +"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 +Sociology,2.05341236,0.02664920179778262 +"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 +"Emerging Technologies Initiation",1.88463542,0.5086144929601321 +"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 +"Statistics and Probability",0.67655350,0.18487368040866786 +"Computer and Computation Theory",0.32390278,0.2312398274998169 +Economics,0.29952899,0.12719098377944033 +"Experimental Systems",0.20924174,0.04281469020992288 +"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 +"Design, Tools, and Test",0.09777778,0 +"Polar Meteorology",0.08220238,0.011574714004551338 +"Physical Chemistry",0.06381908,0.014079147600380438 +"Operations Research and Production Systems",0.05740350,0.004593062258338075 +"Geology and Paleontology",0.04034722,0.034861577990454876 +Biophysics,0.03987455,0.015476567200768681 +Seismology,0.01747222,0.00747562396751627 +"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 +Geophysics,0.00105159,0.00005735857833479565 +"Structures and Building Systems",0.00059028,0.000142636082683637 +"Volcanology and Mantle Geochemistry",0.00027778,0 +"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 +"Mechanics and Materials",0.00012566,0.000016471282949086855 +"Law and Social Sciences",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f6e1d34f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Galactic Astronomy",214.25581950,2.0529931333004057 +"Cell Biology",71.34538580,15.241596218036447 +"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 +"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 +"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 +"Global Atmospheric Research",31.02180556,3.7428536858056267 +"Solid-State and Microstructures",26.77900440,0.3093136712992847 +"Systematic and Population Biology",12.67979893,0.790292910753799 +"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 +"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 +"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 +"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 +Arts,4.87037458,0.44747381160758987 +"Algebra and Number Theory",4.41189394,0.6571458545780616 +Tectonics,3.92752472,0.08635320372070841 +"Theoretical Physics",3.72481481,0.0007211928415468717 +"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 +Sociology,2.05341236,0.02664920179778262 +"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 +"Emerging Technologies Initiation",1.88463542,0.5086144929601321 +"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 +"Statistics and Probability",0.67655350,0.18487368040866786 +"Computer and Computation Theory",0.32390278,0.2312398274998169 +Economics,0.29952899,0.12719098377944033 +"Experimental Systems",0.20924174,0.04281469020992288 +"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 +"Design, Tools, and Test",0.09777778,0 +"Polar Meteorology",0.08220238,0.011574714004551338 +"Physical Chemistry",0.06381908,0.014079147600380438 +"Operations Research and Production Systems",0.05740350,0.004593062258338075 +"Geology and Paleontology",0.04034722,0.034861577990454876 +Biophysics,0.03987455,0.015476567200768681 +Seismology,0.01747222,0.00747562396751627 +"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 +Geophysics,0.00105159,0.00005735857833479565 +"Structures and Building Systems",0.00059028,0.000142636082683637 +"Volcanology and Mantle Geochemistry",0.00027778,0 +"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 +"Mechanics and Materials",0.00012566,0.000016471282949086855 +"Law and Social Sciences",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e6c4cbc2e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait 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,9.33222222,0,0,0.00027778,0,0,0,0,0,0,0,0 +2016-12-23,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-24,0.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,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-25,0.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,36.96185185,0,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-26,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-27,0.00055556,273.48105556,0,103.71148148,57.59064815,0,0,0,76.08611111,50.82250000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0.00288889,0,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-28,0.00000000,280.72700000,0,108.01750000,80.35419753,0,0,0,36.87611111,0.00000000,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0,0,1.68000000,0,0,0.46633333,0.02977924,0,0,7.07458333,0.07195578,0,0.00000000,0,0,0,0,0.00027778,0.00018519,0,0 +2016-12-29,150.26646605,12.05893162,0.00166667,41.77958333,22.19675214,25.72861111,0.00444444,0,5.85819444,0.00000000,0,0,0.87133838,0.00000000,0,0.00000000,0,7.73980283,1.98928571,3.47907407,0.79222222,4.46097222,0.01788889,0,0.13063131,0.04237662,0,0,1.33660948,0.04464331,0,0.00000000,0.00000000,0,0,0.00062500,0.00000000,0.00000000,0,0 +2016-12-30,224.39559552,55.29648148,105.48055556,0.00222222,31.96192488,0.00000000,18.02518519,13.00438580,14.90583333,5.14571429,6.67768519,0,5.77518519,0.38944444,2.58369031,0.00000000,0,1.39468892,0.00000000,1.47605556,0.84532650,0.00000000,0.42590741,0.59636111,0.31423611,0.32754774,0.09777778,0.17850082,0.02575712,0.13344771,0.05370370,0.00000000,0.00000000,0.01437500,0.00105159,0.00055556,0.00000000,0.00020833,0.00009921,0.00000000 +2016-12-31,4.34280303,351.74604167,0.00000000,0.00076389,33.49272778,0,27.32576747,3.35838889,0.95052083,0.00000000,0.00000000,0.02019097,0.00000000,0.00000000,7.36601918,0,2.15222222,2.90176261,0.00000000,0.07819444,0.55391509,0.00626263,0.00000000,0.33598291,0.26094444,0.35169374,0,0.02144676,0.03724051,0.01543544,0.00000000,0.00027778,0.02496032,0.01388889,0,0.00000000,0,0.00013889,0.00010913,0 +2017-01-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ff4c62a9d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait Hours: Per Job" +2016-12,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.67655350,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000 +2017-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..11db26b645 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait Hours: Per Job" +"2016 Q4",214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.67655350,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000 +"2017 Q1",0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6274353f6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait Hours: Per Job" +2016,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.67655350,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000 +2017,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..487ea851c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Statistics and Probability",52.69561728, +"Operations Research and Production Systems",49.85089556, +"Volcanology and Mantle Geochemistry",48.00666667, +"Theoretical Physics",44.13648148, +"Algebra and Number Theory",39.37916667, +"Quantum Electronics, Waves, and Beams",37.79727273, +"Metals, Ceramics, and Electronic Materials",36.49007937, +"Organic and Macromolecular Chemistry",26.34404444, +"Design and Computer-Integrated Engineering",25.49490741, +"Systems Prototyping and Fabrication",25.48654262, +"Polar Aeronomy and Astrophysics",25.17486111, +"Experimental Systems",24.23206456, +"Cell Biology",21.20474151, +"Stellar Astronomy and Astrophysics",18.55493056, +Arts,17.27322391, +"Biochemistry and Molecular Structure and Function",16.76537037, +"Structures and Building Systems",15.78250000, +"Fluid, Particulate, and Hydraulic Systems",15.43750000,2.949516142225878 +Biophysics,12.69807348,1.9501880028878633 +"Emerging Technologies Initiation",12.67826389, +Tectonics,8.59051583, +"Solid-State and Microstructures",7.94699670,0.252707620848999 +"Solid State Chemistry and Polymers",7.84637557,0.6422820715080719 +Seismology,7.02769444,1.7557857088278381 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.412736659063767 +"Geology and Paleontology",4.58416667,1.0571325984155044 +"Global Atmospheric Research",4.51402778,1.3866381241776238 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.61309706,0.16764615169441738 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +Economics,0.81574879,0.33900408606509713 +"Physical Chemistry",0.55186616,0.029985935034615736 +Sociology,0.29997993,0.003221245083552797 +"Design, Tools, and Test",0.26055556,0 +"Systematic and Population Biology",0.18926081,0.027954377835160745 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +"Decision, Risk, and Management Science",0.02840866,0.006969739306507408 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c2a4b06bb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Statistics and Probability",52.69561728, +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Volcanology and Mantle Geochemistry",48.00666667,0 +"Theoretical Physics",44.13648148,3.8863777173028686 +"Algebra and Number Theory",39.37916667,3.5074678840012607 +"Quantum Electronics, Waves, and Beams",37.79727273,4.7120666811720895 +"Metals, Ceramics, and Electronic Materials",36.49007937,2.407916402194818 +"Organic and Macromolecular Chemistry",26.34404444,6.8507338965077675 +"Design and Computer-Integrated Engineering",25.49490741, +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Polar Aeronomy and Astrophysics",25.17486111,17.80092216999551 +"Experimental Systems",24.23206456,3.046402847031802 +"Cell Biology",21.20474151,2.519140001248213 +"Stellar Astronomy and Astrophysics",18.55493056,4.578065909633193 +Arts,17.27322391,1.2812633375632778 +"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 +"Structures and Building Systems",15.78250000,1.4182317241819407 +"Fluid, Particulate, and Hydraulic Systems",15.43750000,9.334819660458281 +Biophysics,12.69807348,7.9017703608261565 +"Emerging Technologies Initiation",12.67826389,0.43082354975761517 +Tectonics,8.59051583,0.027937647321332644 +"Solid-State and Microstructures",7.94699670,0.4591933087881705 +"Solid State Chemistry and Polymers",7.84637557,1.3319104362573686 +Seismology,7.02769444,2.431694700689441 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +"Geology and Paleontology",4.58416667,1.606624250847252 +"Global Atmospheric Research",4.51402778,3.1765790052054 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.61309706,0.3572919275210631 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +Economics,0.81574879,0.33900408606509713 +"Physical Chemistry",0.55186616,0.0548134687339129 +Sociology,0.29997993,0.00460726351698731 +"Design, Tools, and Test",0.26055556,0 +"Systematic and Population Biology",0.18926081,0.027954377835160745 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +"Decision, Risk, and Management Science",0.02840866,0.007661173777721356 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c2a4b06bb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Statistics and Probability",52.69561728, +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Volcanology and Mantle Geochemistry",48.00666667,0 +"Theoretical Physics",44.13648148,3.8863777173028686 +"Algebra and Number Theory",39.37916667,3.5074678840012607 +"Quantum Electronics, Waves, and Beams",37.79727273,4.7120666811720895 +"Metals, Ceramics, and Electronic Materials",36.49007937,2.407916402194818 +"Organic and Macromolecular Chemistry",26.34404444,6.8507338965077675 +"Design and Computer-Integrated Engineering",25.49490741, +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Polar Aeronomy and Astrophysics",25.17486111,17.80092216999551 +"Experimental Systems",24.23206456,3.046402847031802 +"Cell Biology",21.20474151,2.519140001248213 +"Stellar Astronomy and Astrophysics",18.55493056,4.578065909633193 +Arts,17.27322391,1.2812633375632778 +"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 +"Structures and Building Systems",15.78250000,1.4182317241819407 +"Fluid, Particulate, and Hydraulic Systems",15.43750000,9.334819660458281 +Biophysics,12.69807348,7.9017703608261565 +"Emerging Technologies Initiation",12.67826389,0.43082354975761517 +Tectonics,8.59051583,0.027937647321332644 +"Solid-State and Microstructures",7.94699670,0.4591933087881705 +"Solid State Chemistry and Polymers",7.84637557,1.3319104362573686 +Seismology,7.02769444,2.431694700689441 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +"Geology and Paleontology",4.58416667,1.606624250847252 +"Global Atmospheric Research",4.51402778,3.1765790052054 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.61309706,0.3572919275210631 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +Economics,0.81574879,0.33900408606509713 +"Physical Chemistry",0.55186616,0.0548134687339129 +Sociology,0.29997993,0.00460726351698731 +"Design, Tools, and Test",0.26055556,0 +"Systematic and Population Biology",0.18926081,0.027954377835160745 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +"Decision, Risk, and Management Science",0.02840866,0.007661173777721356 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c2a4b06bb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Statistics and Probability",52.69561728, +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Volcanology and Mantle Geochemistry",48.00666667,0 +"Theoretical Physics",44.13648148,3.8863777173028686 +"Algebra and Number Theory",39.37916667,3.5074678840012607 +"Quantum Electronics, Waves, and Beams",37.79727273,4.7120666811720895 +"Metals, Ceramics, and Electronic Materials",36.49007937,2.407916402194818 +"Organic and Macromolecular Chemistry",26.34404444,6.8507338965077675 +"Design and Computer-Integrated Engineering",25.49490741, +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Polar Aeronomy and Astrophysics",25.17486111,17.80092216999551 +"Experimental Systems",24.23206456,3.046402847031802 +"Cell Biology",21.20474151,2.519140001248213 +"Stellar Astronomy and Astrophysics",18.55493056,4.578065909633193 +Arts,17.27322391,1.2812633375632778 +"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 +"Structures and Building Systems",15.78250000,1.4182317241819407 +"Fluid, Particulate, and Hydraulic Systems",15.43750000,9.334819660458281 +Biophysics,12.69807348,7.9017703608261565 +"Emerging Technologies Initiation",12.67826389,0.43082354975761517 +Tectonics,8.59051583,0.027937647321332644 +"Solid-State and Microstructures",7.94699670,0.4591933087881705 +"Solid State Chemistry and Polymers",7.84637557,1.3319104362573686 +Seismology,7.02769444,2.431694700689441 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +"Geology and Paleontology",4.58416667,1.606624250847252 +"Global Atmospheric Research",4.51402778,3.1765790052054 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.61309706,0.3572919275210631 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +Economics,0.81574879,0.33900408606509713 +"Physical Chemistry",0.55186616,0.0548134687339129 +Sociology,0.29997993,0.00460726351698731 +"Design, Tools, and Test",0.26055556,0 +"Systematic and Population Biology",0.18926081,0.027954377835160745 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +"Decision, Risk, and Management Science",0.02840866,0.007661173777721356 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2678eba1ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" +2016-12-22,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,0,0,0,0,16.94166667,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,24.00000000,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,8.12694444,0,0,0,0,0,0 +2016-12-26,2.70416667,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,24.00000000,0,0,0,0,0,0 +2016-12-27,20.78689815,0,0,0,0,12.98407407,0,0,0,0,0,0,13.96533333,20.66416667,0,19.90555556,0,0,13.89986111,0,0,0,20.49703704,0,0,0,0,0,0,8.71606481,0,0,0,8.23638889,3.21666667,0,0,0,0,0 +2016-12-28,9.90712418,13.35268330,4.70055556,5.03972222,3.11533951,15.23050000,0,17.86320988,0,5.01598392,0,8.78983333,17.63833333,18.38902778,0,24.00000000,0,0,24.00000000,0,0,0,14.10152778,0,0,0,0,0,0,24.00000000,0,0,0,19.32140278,24.00000000,0,0,0,0,0 +2016-12-29,23.89310847,16.60273286,24.00000000,24.00000000,24.00000000,23.40096618,11.55011905,24.00000000,0,13.10756221,18.97472222,10.54645833,7.73178763,18.61000000,4.34454545,24.00000000,3.66944444,0,24.00000000,6.36972222,0,3.62000000,14.25424444,10.40083333,0,2.01966667,0,6.48888889,0,7.81509259,0,0,0,11.06298354,1.17898003,0,0,0,0,1.92694444 +2016-12-30,18.94011905,21.71949405,19.30611111,15.09675926,14.55335859,18.93428571,21.78416667,16.65664530,0,13.31263065,12.00027778,13.41648148,7.32452206,11.90376984,9.68358547,11.72422222,10.28048611,9.78120370,24.00000000,7.97656250,4.25015531,16.84687500,4.10732350,13.60638889,3.48631944,4.10559722,1.45518519,2.51750000,0,0.80124024,0.97252976,1.58977533,0.48461111,0.27513871,0.34371670,0.26055556,0.14245370,0.08049603,0.06500000,0.03474935 +2016-12-31,23.17923611,10.83064379,0,0,24.00000000,11.12489583,22.09055556,4.88585470,16.61129630,12.53390738,7.37444444,10.97790404,14.97629630,8.30273148,15.93161523,1.92791667,7.33458333,16.96888889,8.03958333,10.17785714,5.54019436,7.28581633,1.97834003,6.47384921,7.65398148,8.63138889,4.84500000,0,0.19661458,5.00544444,0.97299603,1.07971065,1.49565171,0.32450010,0.38194742,0,0.14844444,0,0,0.01479010 +2017-01-01,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..11a3fd075a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" +2016-12,42.94008230,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 +2017-01,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..aeb1a6f80e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" +"2016 Q4",42.94008230,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 +"2017 Q1",11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..519830b4c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" +2016,42.94008230,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 +2017,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8b3fda3098 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","User Expansion Factor" +"Galactic Astronomy",119.8923 +"Systematic and Population Biology",69.2703 +"Global Atmospheric Research",7.8723 +Sociology,7.6469 +"Decision, Risk, and Management Science",6.8756 +"Solid-State and Microstructures",4.3697 +"Cell Biology",4.3693 +"Solid State Chemistry and Polymers",3.8702 +"Polar Ocean and Climate Systems",3.5459 +"Quantum Electronics, Waves, and Beams",2.2702 +"Polar Aeronomy and Astrophysics",2.0475 +"Stellar Astronomy and Astrophysics",1.5228 +"Biochemistry and Molecular Structure and Function",1.4886 +Tectonics,1.4572 +Economics,1.4161 +"Design, Tools, and Test",1.3753 +"Fluid, Particulate, and Hydraulic Systems",1.3348 +Arts,1.2820 +"Emerging Technologies Initiation",1.1487 +"Algebra and Number Theory",1.1120 +"Physical Chemistry",1.1103 +"Polar Meteorology",1.0932 +"Design and Computer-Integrated Engineering",1.0844 +"Theoretical Physics",1.0844 +"Computer and Computation Theory",1.0642 +"Metals, Ceramics, and Electronic Materials",1.0545 +"Geology and Paleontology",1.0148 +Geophysics,1.0131 +"Statistics and Probability",1.0128 +"Experimental Systems",1.0086 +"Systems Prototyping and Fabrication",1.0081 +Seismology,1.0025 +"Extragalactic Astronomy and Cosmology",1.0024 +"Operations Research and Production Systems",1.0012 +Biophysics,1.0010 +"Mechanics and Materials",1.0001 +"Law and Social Sciences",1.0000 +"Organic and Macromolecular Chemistry",1.0000 +"Structures and Building Systems",1.0000 +"Volcanology and Mantle Geochemistry",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8b3fda3098 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","User Expansion Factor" +"Galactic Astronomy",119.8923 +"Systematic and Population Biology",69.2703 +"Global Atmospheric Research",7.8723 +Sociology,7.6469 +"Decision, Risk, and Management Science",6.8756 +"Solid-State and Microstructures",4.3697 +"Cell Biology",4.3693 +"Solid State Chemistry and Polymers",3.8702 +"Polar Ocean and Climate Systems",3.5459 +"Quantum Electronics, Waves, and Beams",2.2702 +"Polar Aeronomy and Astrophysics",2.0475 +"Stellar Astronomy and Astrophysics",1.5228 +"Biochemistry and Molecular Structure and Function",1.4886 +Tectonics,1.4572 +Economics,1.4161 +"Design, Tools, and Test",1.3753 +"Fluid, Particulate, and Hydraulic Systems",1.3348 +Arts,1.2820 +"Emerging Technologies Initiation",1.1487 +"Algebra and Number Theory",1.1120 +"Physical Chemistry",1.1103 +"Polar Meteorology",1.0932 +"Design and Computer-Integrated Engineering",1.0844 +"Theoretical Physics",1.0844 +"Computer and Computation Theory",1.0642 +"Metals, Ceramics, and Electronic Materials",1.0545 +"Geology and Paleontology",1.0148 +Geophysics,1.0131 +"Statistics and Probability",1.0128 +"Experimental Systems",1.0086 +"Systems Prototyping and Fabrication",1.0081 +Seismology,1.0025 +"Extragalactic Astronomy and Cosmology",1.0024 +"Operations Research and Production Systems",1.0012 +Biophysics,1.0010 +"Mechanics and Materials",1.0001 +"Law and Social Sciences",1.0000 +"Organic and Macromolecular Chemistry",1.0000 +"Structures and Building Systems",1.0000 +"Volcanology and Mantle Geochemistry",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8b3fda3098 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","User Expansion Factor" +"Galactic Astronomy",119.8923 +"Systematic and Population Biology",69.2703 +"Global Atmospheric Research",7.8723 +Sociology,7.6469 +"Decision, Risk, and Management Science",6.8756 +"Solid-State and Microstructures",4.3697 +"Cell Biology",4.3693 +"Solid State Chemistry and Polymers",3.8702 +"Polar Ocean and Climate Systems",3.5459 +"Quantum Electronics, Waves, and Beams",2.2702 +"Polar Aeronomy and Astrophysics",2.0475 +"Stellar Astronomy and Astrophysics",1.5228 +"Biochemistry and Molecular Structure and Function",1.4886 +Tectonics,1.4572 +Economics,1.4161 +"Design, Tools, and Test",1.3753 +"Fluid, Particulate, and Hydraulic Systems",1.3348 +Arts,1.2820 +"Emerging Technologies Initiation",1.1487 +"Algebra and Number Theory",1.1120 +"Physical Chemistry",1.1103 +"Polar Meteorology",1.0932 +"Design and Computer-Integrated Engineering",1.0844 +"Theoretical Physics",1.0844 +"Computer and Computation Theory",1.0642 +"Metals, Ceramics, and Electronic Materials",1.0545 +"Geology and Paleontology",1.0148 +Geophysics,1.0131 +"Statistics and Probability",1.0128 +"Experimental Systems",1.0086 +"Systems Prototyping and Fabrication",1.0081 +Seismology,1.0025 +"Extragalactic Astronomy and Cosmology",1.0024 +"Operations Research and Production Systems",1.0012 +Biophysics,1.0010 +"Mechanics and Materials",1.0001 +"Law and Social Sciences",1.0000 +"Organic and Macromolecular Chemistry",1.0000 +"Structures and Building Systems",1.0000 +"Volcanology and Mantle Geochemistry",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8b3fda3098 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","User Expansion Factor" +"Galactic Astronomy",119.8923 +"Systematic and Population Biology",69.2703 +"Global Atmospheric Research",7.8723 +Sociology,7.6469 +"Decision, Risk, and Management Science",6.8756 +"Solid-State and Microstructures",4.3697 +"Cell Biology",4.3693 +"Solid State Chemistry and Polymers",3.8702 +"Polar Ocean and Climate Systems",3.5459 +"Quantum Electronics, Waves, and Beams",2.2702 +"Polar Aeronomy and Astrophysics",2.0475 +"Stellar Astronomy and Astrophysics",1.5228 +"Biochemistry and Molecular Structure and Function",1.4886 +Tectonics,1.4572 +Economics,1.4161 +"Design, Tools, and Test",1.3753 +"Fluid, Particulate, and Hydraulic Systems",1.3348 +Arts,1.2820 +"Emerging Technologies Initiation",1.1487 +"Algebra and Number Theory",1.1120 +"Physical Chemistry",1.1103 +"Polar Meteorology",1.0932 +"Design and Computer-Integrated Engineering",1.0844 +"Theoretical Physics",1.0844 +"Computer and Computation Theory",1.0642 +"Metals, Ceramics, and Electronic Materials",1.0545 +"Geology and Paleontology",1.0148 +Geophysics,1.0131 +"Statistics and Probability",1.0128 +"Experimental Systems",1.0086 +"Systems Prototyping and Fabrication",1.0081 +Seismology,1.0025 +"Extragalactic Astronomy and Cosmology",1.0024 +"Operations Research and Production Systems",1.0012 +Biophysics,1.0010 +"Mechanics and Materials",1.0001 +"Law and Social Sciences",1.0000 +"Organic and Macromolecular Chemistry",1.0000 +"Structures and Building Systems",1.0000 +"Volcanology and Mantle Geochemistry",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b2c303c331 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-23,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-24,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-25,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-26,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2735,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-27,1.0280,0,0,1.0000,0,0,4.9152,1.9856,0,2.5533,0,2.0864,1.7260,0,0,0,0,0,0,0,1.2277,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-28,1.0102,0,0,1.0000,0,0,4.8768,2.1159,0,2.5716,0,1.8919,1.7260,0,0,0,0,0,0,1.1095,1.0845,0,0,1.0866,0,0,0,0,1.0021,1.0107,1.0010,0,0,1.0013,1.0000,0,0,1.0000,0,1.0000 +2016-12-29,7.2405,0,3.8567,3.7347,1.0394,1.0001,3.0140,2.7029,0,2.3072,1.0000,1.6613,1.7260,0,0,0,0,1.0436,1.2430,1.1207,1.1039,0,0,1.0866,1.0011,1.0379,0,0,1.0217,1.0095,1.0011,1.0000,0,1.0011,1.0000,0,0,1.0000,1.0000,1.0000 +2016-12-30,244.8450,82.2879,3.8567,5.1450,5.9358,1.8025,2.9767,5.5485,0,2.2649,3.1975,1.5996,1.4078,1.1806,2.1933,1.3753,1.4992,1.4225,1.1539,1.1173,1.0974,1.1123,0,1.0801,1.0787,1.0500,1.0094,1.0131,1.0277,1.0076,1.0022,1.0000,1.0041,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.4459,30.3841,0,8.2387,38.4517,4.7123,7.3737,13.7412,1.0162,1.9038,1.0000,1.2381,1.2386,1.6099,1.2202,0,1.1213,1.1163,1.0513,1.0205,1.1361,1.0199,1.0760,0,1.0006,1.1462,1.0172,0,1.0100,1.0119,1.0187,1.0039,1.0018,1.0012,1.0000,1.0001,0,1.0000,1.0000,0 +2017-01-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..eecc5f8709 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" +2016-12,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0131,1.0144,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 +2017-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7a2f5ec2c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" +"2016 Q4",121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0131,1.0144,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..69f3edaf63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" +2016,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0131,1.0144,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 +2017,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..59464b9877 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Ended" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..59464b9877 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Ended" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..59464b9877 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Ended" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..59464b9877 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Ended" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0382aae0fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" +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 +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,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,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,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,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19044,3823,1700,788,1,732,0,34,90,68,63,3,28,60,20,39,6,8,7,0,4,19,3,5,11,14,10,4,1,0,4,6,1,2,3,1,1,1,1,1 +2016-12-31,22026,2719,933,869,999,29,4,180,10,24,83,97,28,5,24,22,1,16,16,4,13,1,8,4,4,0,0,6,7,0,4,1,2,1,0,0,1,0,0,0 +2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b916df7881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" +2016-12,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,7,24,23,4,17,20,11,9,15,14,10,10,8,0,8,7,3,3,3,1,2,1,1,1 +2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ae53ebaa4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" +"2016 Q4",41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,7,24,23,4,17,20,11,9,15,14,10,10,8,0,8,7,3,3,3,1,2,1,1,1 +"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cd4df7eea6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" +2016,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,7,24,23,4,17,20,11,9,15,14,10,10,8,0,8,7,3,3,3,1,2,1,1,1 +2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4e254f1104 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Max (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",336 +"Organic and Macromolecular Chemistry",192 +"Systematic and Population Biology",192 +"Global Atmospheric Research",160 +"Solid State Chemistry and Polymers",144 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Physical Chemistry",96 +"Quantum Electronics, Waves, and Beams",96 +"Metals, Ceramics, and Electronic Materials",72 +"Stellar Astronomy and Astrophysics",72 +Biophysics,64 +"Galactic Astronomy",64 +"Geology and Paleontology",60 +"Decision, Risk, and Management Science",56 +Economics,48 +"Polar Aeronomy and Astrophysics",40 +"Cell Biology",32 +"Design and Computer-Integrated Engineering",24 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Law and Social Sciences",16 +"Statistics and Probability",16 +"Algebra and Number Theory",12 +Arts,12 +"Biochemistry and Molecular Structure and Function",12 +"Experimental Systems",12 +"Polar Ocean and Climate Systems",12 +Seismology,12 +Sociology,12 +"Solid-State and Microstructures",12 +"Theoretical Physics",12 +"Computer and Computation Theory",1 +"Extragalactic Astronomy and Cosmology",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4e254f1104 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Max (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",336 +"Organic and Macromolecular Chemistry",192 +"Systematic and Population Biology",192 +"Global Atmospheric Research",160 +"Solid State Chemistry and Polymers",144 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Physical Chemistry",96 +"Quantum Electronics, Waves, and Beams",96 +"Metals, Ceramics, and Electronic Materials",72 +"Stellar Astronomy and Astrophysics",72 +Biophysics,64 +"Galactic Astronomy",64 +"Geology and Paleontology",60 +"Decision, Risk, and Management Science",56 +Economics,48 +"Polar Aeronomy and Astrophysics",40 +"Cell Biology",32 +"Design and Computer-Integrated Engineering",24 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Law and Social Sciences",16 +"Statistics and Probability",16 +"Algebra and Number Theory",12 +Arts,12 +"Biochemistry and Molecular Structure and Function",12 +"Experimental Systems",12 +"Polar Ocean and Climate Systems",12 +Seismology,12 +Sociology,12 +"Solid-State and Microstructures",12 +"Theoretical Physics",12 +"Computer and Computation Theory",1 +"Extragalactic Astronomy and Cosmology",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4e254f1104 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Max (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",336 +"Organic and Macromolecular Chemistry",192 +"Systematic and Population Biology",192 +"Global Atmospheric Research",160 +"Solid State Chemistry and Polymers",144 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Physical Chemistry",96 +"Quantum Electronics, Waves, and Beams",96 +"Metals, Ceramics, and Electronic Materials",72 +"Stellar Astronomy and Astrophysics",72 +Biophysics,64 +"Galactic Astronomy",64 +"Geology and Paleontology",60 +"Decision, Risk, and Management Science",56 +Economics,48 +"Polar Aeronomy and Astrophysics",40 +"Cell Biology",32 +"Design and Computer-Integrated Engineering",24 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Law and Social Sciences",16 +"Statistics and Probability",16 +"Algebra and Number Theory",12 +Arts,12 +"Biochemistry and Molecular Structure and Function",12 +"Experimental Systems",12 +"Polar Ocean and Climate Systems",12 +Seismology,12 +Sociology,12 +"Solid-State and Microstructures",12 +"Theoretical Physics",12 +"Computer and Computation Theory",1 +"Extragalactic Astronomy and Cosmology",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4e254f1104 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Max (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",336 +"Organic and Macromolecular Chemistry",192 +"Systematic and Population Biology",192 +"Global Atmospheric Research",160 +"Solid State Chemistry and Polymers",144 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Physical Chemistry",96 +"Quantum Electronics, Waves, and Beams",96 +"Metals, Ceramics, and Electronic Materials",72 +"Stellar Astronomy and Astrophysics",72 +Biophysics,64 +"Galactic Astronomy",64 +"Geology and Paleontology",60 +"Decision, Risk, and Management Science",56 +Economics,48 +"Polar Aeronomy and Astrophysics",40 +"Cell Biology",32 +"Design and Computer-Integrated Engineering",24 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Law and Social Sciences",16 +"Statistics and Probability",16 +"Algebra and Number Theory",12 +Arts,12 +"Biochemistry and Molecular Structure and Function",12 +"Experimental Systems",12 +"Polar Ocean and Climate Systems",12 +Seismology,12 +Sociology,12 +"Solid-State and Microstructures",12 +"Theoretical Physics",12 +"Computer and Computation Theory",1 +"Extragalactic Astronomy and Cosmology",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..57d5dfe7ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,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,12,0,0,0,12,1,0,0,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-24,0,0,0,0,0,0,0,0,12,0,0,0,12,1,0,0,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-25,0,0,0,0,0,0,0,0,24,0,0,0,12,1,0,0,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-26,0,0,0,0,0,0,0,0,24,0,0,0,12,1,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,144,0,0,0,32,96,0,72,64,16,0,0,0,0,8,0,0,0,0,16,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0 +2016-12-28,0,192,0,0,144,0,0,0,32,96,0,72,64,16,0,0,0,0,8,0,0,20,0,16,12,0,12,8,0,0,1,0,12,0,0,0,1,0,1,0 +2016-12-29,0,192,0,160,144,112,0,96,32,96,72,72,64,64,0,56,0,40,8,0,0,20,0,16,12,12,12,8,0,5,12,2,12,1,0,0,1,0,1,0 +2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,0,20,20,16,16,12,12,12,12,0,5,12,12,12,1,1,1,1,1,1,1 +2016-12-31,336,192,192,0,20,112,0,96,96,96,72,72,64,64,60,1,48,40,8,24,0,0,0,16,12,12,1,12,12,12,12,2,0,1,1,1,1,1,1,1 +2017-01-01,0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..db2acd75f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" +2016-12,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1 +2017-01,0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..77c072a4f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1 +"2017 Q1",0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..24284d7dc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" +2016,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1 +2017,0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a8651adb87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Min (Core Count)" +"Global Atmospheric Research",160 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Metals, Ceramics, and Electronic Materials",72 +"Fluid, Particulate, and Hydraulic Systems",48 +"Stellar Astronomy and Astrophysics",36 +"Organic and Macromolecular Chemistry",32 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Design and Computer-Integrated Engineering",16 +"Law and Social Sciences",16 +"Polar Aeronomy and Astrophysics",16 +"Algebra and Number Theory",12 +"Polar Ocean and Climate Systems",12 +"Solid State Chemistry and Polymers",12 +"Theoretical Physics",12 +"Experimental Systems",8 +"Physical Chemistry",8 +"Systematic and Population Biology",8 +"Geology and Paleontology",5 +Seismology,5 +"Solid-State and Microstructures",2 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +Economics,1 +"Extragalactic Astronomy and Cosmology",1 +"Galactic Astronomy",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Quantum Electronics, Waves, and Beams",1 +Sociology,1 +"Statistics and Probability",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a8651adb87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Min (Core Count)" +"Global Atmospheric Research",160 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Metals, Ceramics, and Electronic Materials",72 +"Fluid, Particulate, and Hydraulic Systems",48 +"Stellar Astronomy and Astrophysics",36 +"Organic and Macromolecular Chemistry",32 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Design and Computer-Integrated Engineering",16 +"Law and Social Sciences",16 +"Polar Aeronomy and Astrophysics",16 +"Algebra and Number Theory",12 +"Polar Ocean and Climate Systems",12 +"Solid State Chemistry and Polymers",12 +"Theoretical Physics",12 +"Experimental Systems",8 +"Physical Chemistry",8 +"Systematic and Population Biology",8 +"Geology and Paleontology",5 +Seismology,5 +"Solid-State and Microstructures",2 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +Economics,1 +"Extragalactic Astronomy and Cosmology",1 +"Galactic Astronomy",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Quantum Electronics, Waves, and Beams",1 +Sociology,1 +"Statistics and Probability",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a8651adb87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Min (Core Count)" +"Global Atmospheric Research",160 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Metals, Ceramics, and Electronic Materials",72 +"Fluid, Particulate, and Hydraulic Systems",48 +"Stellar Astronomy and Astrophysics",36 +"Organic and Macromolecular Chemistry",32 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Design and Computer-Integrated Engineering",16 +"Law and Social Sciences",16 +"Polar Aeronomy and Astrophysics",16 +"Algebra and Number Theory",12 +"Polar Ocean and Climate Systems",12 +"Solid State Chemistry and Polymers",12 +"Theoretical Physics",12 +"Experimental Systems",8 +"Physical Chemistry",8 +"Systematic and Population Biology",8 +"Geology and Paleontology",5 +Seismology,5 +"Solid-State and Microstructures",2 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +Economics,1 +"Extragalactic Astronomy and Cosmology",1 +"Galactic Astronomy",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Quantum Electronics, Waves, and Beams",1 +Sociology,1 +"Statistics and Probability",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a8651adb87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Min (Core Count)" +"Global Atmospheric Research",160 +"Structures and Building Systems",112 +"Design, Tools, and Test",108 +"Emerging Technologies Initiation",96 +"Metals, Ceramics, and Electronic Materials",72 +"Fluid, Particulate, and Hydraulic Systems",48 +"Stellar Astronomy and Astrophysics",36 +"Organic and Macromolecular Chemistry",32 +Geophysics,20 +"Volcanology and Mantle Geochemistry",20 +"Design and Computer-Integrated Engineering",16 +"Law and Social Sciences",16 +"Polar Aeronomy and Astrophysics",16 +"Algebra and Number Theory",12 +"Polar Ocean and Climate Systems",12 +"Solid State Chemistry and Polymers",12 +"Theoretical Physics",12 +"Experimental Systems",8 +"Physical Chemistry",8 +"Systematic and Population Biology",8 +"Geology and Paleontology",5 +Seismology,5 +"Solid-State and Microstructures",2 +Arts,1 +"Biochemistry and Molecular Structure and Function",1 +Biophysics,1 +"Cell Biology",1 +"Computer and Computation Theory",1 +"Decision, Risk, and Management Science",1 +Economics,1 +"Extragalactic Astronomy and Cosmology",1 +"Galactic Astronomy",1 +"Mechanics and Materials",1 +"Operations Research and Production Systems",1 +"Polar Meteorology",1 +"Quantum Electronics, Waves, and Beams",1 +Sociology,1 +"Statistics and Probability",1 +"Systems Prototyping and Fabrication",1 +Tectonics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3ab754cb2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,16,0,0 +2016-12-27,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,32,0,0,8,0,0,0,0,0,12,12,8,0,0,0,0,1,0,0,0,96,1,1,0,0 +2016-12-28,0,0,0,0,0,0,48,112,0,20,0,0,0,12,0,12,12,8,8,0,0,0,0,0,12,12,8,0,0,0,0,1,0,1,0,96,1,1,1,0 +2016-12-29,160,112,0,96,72,0,48,112,0,20,0,0,40,12,0,12,12,8,8,0,0,5,2,4,12,12,1,1,56,0,0,1,0,1,0,1,1,1,1,0 +2016-12-30,160,112,108,96,72,48,48,32,20,20,0,16,16,12,0,12,12,8,8,8,5,5,2,1,1,12,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,0,112,0,96,72,336,36,64,0,0,16,0,40,12,12,12,0,8,8,12,5,8,2,1,1,8,8,1,1,12,1,1,1,1,1,1,1,1,1,1 +2017-01-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cec71756a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" +2016-12,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..03768010e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" +"2016 Q4",160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b7267b1fd9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" +2016,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..72f7c36935 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..72f7c36935 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..72f7c36935 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..72f7c36935 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters + +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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..208e666633 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..68de651767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..167ebb42c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..93b968fe7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +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)","[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/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..54e1885868 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Running" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..54e1885868 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Running" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..54e1885868 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Running" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..54e1885868 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Running" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..11223eff77 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" +2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1,14,0,0,0,6,0,0,0,0,3,0,0,5,0,0,6,3,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,1,20,0,190,0,6,0,147,0,0,12,0,0,10,0,0,17,15,5,2,9,0,2,0,1,0,9,0,0,0,0,0,0,0,3,0,0,0,0,1 +2016-12-29,256,54,1,960,0,24,0,235,0,0,25,1,0,62,0,11,21,23,16,2,9,5,4,3,1,0,9,0,1,0,4,7,0,0,3,1,1,0,0,1 +2016-12-30,19313,3859,1700,1635,719,740,0,252,90,68,96,4,28,68,20,65,21,28,24,2,13,20,7,8,15,14,11,4,1,0,8,7,3,3,3,1,2,1,1,1 +2016-12-31,22516,2740,933,1637,999,30,16,255,10,24,83,98,28,12,26,27,48,24,22,6,13,1,12,7,4,0,1,6,7,9,4,1,2,1,0,0,1,0,0,0 +2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..66e065ba38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" +2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 +2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..25be773686 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" +"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 +"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7c07a41a14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" +2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 +2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f9365463fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Started" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f9365463fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Started" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f9365463fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Started" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f9365463fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Started" +Sociology,55001 +"Physical Chemistry",6944 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",756 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",239 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Global Atmospheric Research",2 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5811ad30c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" +2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,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-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,0 +2016-12-25,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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-27,1,10,0,0,0,5,0,0,0,0,3,0,0,5,0,0,1,3,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,6,0,190,0,0,0,147,0,0,9,0,0,5,0,0,11,12,5,0,9,0,1,0,0,0,9,0,0,0,0,0,0,0,3,0,0,0,0,1 +2016-12-29,255,34,1,770,0,18,0,88,0,0,13,1,0,52,0,11,4,8,11,0,0,5,2,3,0,0,0,0,1,0,4,7,0,0,0,1,1,0,0,0 +2016-12-30,19057,3805,1699,675,719,716,0,17,90,68,71,3,28,6,20,54,0,5,8,0,4,15,3,5,14,14,2,4,0,0,4,0,3,3,0,0,1,1,1,0 +2016-12-31,22247,2704,933,790,281,22,16,37,10,24,50,97,28,4,26,1,33,4,5,4,4,0,8,4,0,0,0,6,7,9,0,0,0,0,0,0,0,0,0,0 +2017-01-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b3ab25f7f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" +2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 +2017-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4ddd161523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" +"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 +"2017 Q1",13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6814a45bab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" +2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 +2017,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5cad7fe104 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Submitted" +Sociology,49664 +"Physical Chemistry",6927 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2586 +Tectonics,719 +"Polar Ocean and Climate Systems",693 +"Operations Research and Production Systems",308 +"Polar Meteorology",154 +"Systematic and Population Biology",123 +"Mechanics and Materials",84 +Economics,69 +"Cell Biology",55 +"Statistics and Probability",50 +"Galactic Astronomy",47 +"Experimental Systems",37 +Arts,31 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Quantum Electronics, Waves, and Beams",22 +"Computer and Computation Theory",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",14 +Geophysics,14 +"Stellar Astronomy and Astrophysics",14 +"Solid State Chemistry and Polymers",13 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Theoretical Physics",3 +"Design, Tools, and Test",1 +"Law and Social Sciences",1 +"Polar Aeronomy and Astrophysics",1 +"Solid-State and Microstructures",1 +"Volcanology and Mantle Geochemistry",1 +"Fluid, Particulate, and Hydraulic Systems",0 +"Global Atmospheric Research",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fb2d491b59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Submitted" +Sociology,53071 +"Physical Chemistry",6943 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",693 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",164 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fb2d491b59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Submitted" +Sociology,53071 +"Physical Chemistry",6943 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",693 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",164 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fb2d491b59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Number of Jobs Submitted" +Sociology,53071 +"Physical Chemistry",6943 +"Decision, Risk, and Management Science",2633 +"Systems Prototyping and Fabrication",2629 +Tectonics,1000 +"Galactic Astronomy",763 +"Polar Ocean and Climate Systems",693 +"Operations Research and Production Systems",308 +"Systematic and Population Biology",164 +"Polar Meteorology",154 +"Solid State Chemistry and Polymers",146 +"Solid-State and Microstructures",101 +"Mechanics and Materials",84 +"Cell Biology",72 +Economics,69 +Arts,66 +"Statistics and Probability",54 +"Quantum Electronics, Waves, and Beams",44 +"Experimental Systems",37 +Biophysics,31 +"Organic and Macromolecular Chemistry",25 +"Computer and Computation Theory",20 +"Stellar Astronomy and Astrophysics",20 +"Emerging Technologies Initiation",16 +"Biochemistry and Molecular Structure and Function",15 +Geophysics,14 +"Algebra and Number Theory",11 +"Extragalactic Astronomy and Cosmology",10 +Seismology,10 +"Design and Computer-Integrated Engineering",9 +"Structures and Building Systems",8 +"Metals, Ceramics, and Electronic Materials",7 +"Geology and Paleontology",4 +"Fluid, Particulate, and Hydraulic Systems",3 +"Theoretical Physics",3 +"Polar Aeronomy and Astrophysics",2 +"Design, Tools, and Test",1 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f48ded37f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,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-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,0 +2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,1,5,0,0,1,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-28,0,4,0,190,0,0,147,0,0,0,0,0,11,0,5,0,0,9,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,1,0,0 +2016-12-29,205,32,1,770,0,0,88,0,0,0,0,50,0,4,11,11,0,0,1,5,3,0,0,1,10,0,0,1,0,4,7,0,0,0,0,1,1,0,0,0 +2016-12-30,18462,3801,1699,675,719,0,17,68,50,28,20,5,0,15,8,19,0,4,5,15,5,14,14,1,1,2,4,0,0,4,0,3,0,1,1,0,0,0,0,0 +2016-12-31,19485,2699,933,747,0,16,37,24,9,28,26,0,33,21,5,1,4,4,4,0,4,0,0,7,2,0,6,7,9,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,11511,380,0,204,0,677,19,62,64,28,23,0,0,1,8,0,25,8,12,0,4,0,0,5,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ff3a785a64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted" +2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,2,1,1,1,1 +2017-01,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0f9fd295a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted" +"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,2,1,1,1,1 +"2017 Q1",11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..027c098e45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted" +2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,2,1,1,1,1 +2017,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..57e99001f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Total" +Sociology,160661.1219 +"Quantum Electronics, Waves, and Beams",147374.4353 +"Organic and Macromolecular Chemistry",119274.1289 +"Physical Chemistry",69231.4289 +"Systems Prototyping and Fabrication",67004.1206 +"Statistics and Probability",34897.7289 +"Solid State Chemistry and Polymers",33446.5633 +"Stellar Astronomy and Astrophysics",21995.7300 +"Emerging Technologies Initiation",19473.8133 +"Polar Ocean and Climate Systems",19117.7667 +"Metals, Ceramics, and Electronic Materials",18391.0000 +"Operations Research and Production Systems",15354.0758 +"Structures and Building Systems",14141.1200 +"Galactic Astronomy",13804.8528 +"Fluid, Particulate, and Hydraulic Systems",13105.9733 +Arts,12416.7611 +Biophysics,10880.2728 +"Cell Biology",8707.0903 +Tectonics,8590.5158 +"Experimental Systems",7367.1656 +"Design and Computer-Integrated Engineering",5262.3156 +"Algebra and Number Theory",5198.0500 +"Solid-State and Microstructures",2039.1683 +"Polar Aeronomy and Astrophysics",2013.9756 +"Theoretical Physics",1588.9133 +"Systematic and Population Biology",1518.1478 +Economics,1446.9428 +"Global Atmospheric Research",1444.4889 +"Decision, Risk, and Management Science",1183.6917 +"Biochemistry and Molecular Structure and Function",1021.5447 +"Volcanology and Mantle Geochemistry",960.1333 +Seismology,622.6494 +"Geology and Paleontology",590.3347 +"Polar Meteorology",135.7597 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Extragalactic Astronomy and Cosmology",59.8692 +"Design, Tools, and Test",28.1400 +Geophysics,22.5389 +"Law and Social Sciences",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..57e99001f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Total" +Sociology,160661.1219 +"Quantum Electronics, Waves, and Beams",147374.4353 +"Organic and Macromolecular Chemistry",119274.1289 +"Physical Chemistry",69231.4289 +"Systems Prototyping and Fabrication",67004.1206 +"Statistics and Probability",34897.7289 +"Solid State Chemistry and Polymers",33446.5633 +"Stellar Astronomy and Astrophysics",21995.7300 +"Emerging Technologies Initiation",19473.8133 +"Polar Ocean and Climate Systems",19117.7667 +"Metals, Ceramics, and Electronic Materials",18391.0000 +"Operations Research and Production Systems",15354.0758 +"Structures and Building Systems",14141.1200 +"Galactic Astronomy",13804.8528 +"Fluid, Particulate, and Hydraulic Systems",13105.9733 +Arts,12416.7611 +Biophysics,10880.2728 +"Cell Biology",8707.0903 +Tectonics,8590.5158 +"Experimental Systems",7367.1656 +"Design and Computer-Integrated Engineering",5262.3156 +"Algebra and Number Theory",5198.0500 +"Solid-State and Microstructures",2039.1683 +"Polar Aeronomy and Astrophysics",2013.9756 +"Theoretical Physics",1588.9133 +"Systematic and Population Biology",1518.1478 +Economics,1446.9428 +"Global Atmospheric Research",1444.4889 +"Decision, Risk, and Management Science",1183.6917 +"Biochemistry and Molecular Structure and Function",1021.5447 +"Volcanology and Mantle Geochemistry",960.1333 +Seismology,622.6494 +"Geology and Paleontology",590.3347 +"Polar Meteorology",135.7597 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Extragalactic Astronomy and Cosmology",59.8692 +"Design, Tools, and Test",28.1400 +Geophysics,22.5389 +"Law and Social Sciences",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..57e99001f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Total" +Sociology,160661.1219 +"Quantum Electronics, Waves, and Beams",147374.4353 +"Organic and Macromolecular Chemistry",119274.1289 +"Physical Chemistry",69231.4289 +"Systems Prototyping and Fabrication",67004.1206 +"Statistics and Probability",34897.7289 +"Solid State Chemistry and Polymers",33446.5633 +"Stellar Astronomy and Astrophysics",21995.7300 +"Emerging Technologies Initiation",19473.8133 +"Polar Ocean and Climate Systems",19117.7667 +"Metals, Ceramics, and Electronic Materials",18391.0000 +"Operations Research and Production Systems",15354.0758 +"Structures and Building Systems",14141.1200 +"Galactic Astronomy",13804.8528 +"Fluid, Particulate, and Hydraulic Systems",13105.9733 +Arts,12416.7611 +Biophysics,10880.2728 +"Cell Biology",8707.0903 +Tectonics,8590.5158 +"Experimental Systems",7367.1656 +"Design and Computer-Integrated Engineering",5262.3156 +"Algebra and Number Theory",5198.0500 +"Solid-State and Microstructures",2039.1683 +"Polar Aeronomy and Astrophysics",2013.9756 +"Theoretical Physics",1588.9133 +"Systematic and Population Biology",1518.1478 +Economics,1446.9428 +"Global Atmospheric Research",1444.4889 +"Decision, Risk, and Management Science",1183.6917 +"Biochemistry and Molecular Structure and Function",1021.5447 +"Volcanology and Mantle Geochemistry",960.1333 +Seismology,622.6494 +"Geology and Paleontology",590.3347 +"Polar Meteorology",135.7597 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Extragalactic Astronomy and Cosmology",59.8692 +"Design, Tools, and Test",28.1400 +Geophysics,22.5389 +"Law and Social Sciences",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..57e99001f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Total" +Sociology,160661.1219 +"Quantum Electronics, Waves, and Beams",147374.4353 +"Organic and Macromolecular Chemistry",119274.1289 +"Physical Chemistry",69231.4289 +"Systems Prototyping and Fabrication",67004.1206 +"Statistics and Probability",34897.7289 +"Solid State Chemistry and Polymers",33446.5633 +"Stellar Astronomy and Astrophysics",21995.7300 +"Emerging Technologies Initiation",19473.8133 +"Polar Ocean and Climate Systems",19117.7667 +"Metals, Ceramics, and Electronic Materials",18391.0000 +"Operations Research and Production Systems",15354.0758 +"Structures and Building Systems",14141.1200 +"Galactic Astronomy",13804.8528 +"Fluid, Particulate, and Hydraulic Systems",13105.9733 +Arts,12416.7611 +Biophysics,10880.2728 +"Cell Biology",8707.0903 +Tectonics,8590.5158 +"Experimental Systems",7367.1656 +"Design and Computer-Integrated Engineering",5262.3156 +"Algebra and Number Theory",5198.0500 +"Solid-State and Microstructures",2039.1683 +"Polar Aeronomy and Astrophysics",2013.9756 +"Theoretical Physics",1588.9133 +"Systematic and Population Biology",1518.1478 +Economics,1446.9428 +"Global Atmospheric Research",1444.4889 +"Decision, Risk, and Management Science",1183.6917 +"Biochemistry and Molecular Structure and Function",1021.5447 +"Volcanology and Mantle Geochemistry",960.1333 +Seismology,622.6494 +"Geology and Paleontology",590.3347 +"Polar Meteorology",135.7597 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Extragalactic Astronomy and Cosmology",59.8692 +"Design, Tools, and Test",28.1400 +Geophysics,22.5389 +"Law and Social Sciences",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c0ca4f1d48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" +2016-12-22,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,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,288.0000,0,0,0,0,0,0,0,0,0,8.6036,0,0,288.0000,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-24,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.0000,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-25,0,0,0,466.2700,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.0000,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-26,0,0,0,1728.0000,0,216.3333,0,0,0,0,0,0,0,24.0000,0,0,288.0000,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-27,3.2167,3739.4133,0,2293.7600,0,1924.7214,4298.8089,1487.8200,0,0,0,0,0,476.7422,0,0,531.1822,558.6133,0,0,0,0,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,0,0,0 +2016-12-28,24.0000,21931.9200,29467.4711,9954.8311,953.0369,2334.7378,6587.9644,2341.3467,0,0,0,1962.8444,0,1944.0000,0,0,1824.0000,1411.0667,0,351.5933,0,336.4567,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,0,0,0 +2016-12-29,1793.4019,49556.3222,39552.0000,15738.2700,12583.2597,7668.0844,12041.5822,4466.4000,1834.4800,0,5821.2600,3901.6422,1643.9111,2568.7161,0,516.0911,1824.0000,2203.9531,0,1349.9467,0,2592.0000,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,10.0983,0,0,0,0,0 +2016-12-30,62498.5789,46993.5803,39578.0711,16799.6656,21766.1511,6074.5967,7951.5333,4841.8833,6126.0000,0,10979.2200,5473.3125,9211.3156,5521.6442,7404.4267,6971.0514,1824.0000,2108.7128,3055.8617,2630.7078,0,1921.0433,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1061.9836,198.9664,386.1222,68.0319,65.9958,108.1047,82.1119,27.2308,13.9453,28.1400,22.5389,1.0400 +2016-12-31,87876.5508,22254.2050,10619.6356,14731.3744,20518.0064,11780.8131,2566.6744,5674.2567,6839.5200,37.7500,1590.5200,2761.8142,3285.8933,2841.5344,5701.5467,4629.6697,1827.6067,1437.7244,5534.6542,2071.8422,3473.9867,288.0000,1428.0200,294.9778,0,125.4733,914.2433,0,13.7992,7.7117,0,491.1800,502.9333,25.9131,8.6314,27.2439,45.9239,0,0,0 +2017-01-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0bdd6daa86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" +2016-12,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29999.2867,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,59.8692,28.1400,22.5389,1.0400 +2017-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..58b7d75d4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" +"2016 Q4",152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29999.2867,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,59.8692,28.1400,22.5389,1.0400 +"2017 Q1",8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..89136c4c16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" +2016,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29999.2867,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,59.8692,28.1400,22.5389,1.0400 +2017,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4e70e283a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 +2016-12-28,48.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 +2017-01-01,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..99fdb962b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c9e41491d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dfd98f33e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..91e7ee4e0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +"Quantum Electronics, Waves, and Beams",12343.6392 +Tectonics,8590.5158 +"Organic and Macromolecular Chemistry",7492.8064 +"Physical Chemistry",5412.7517 +"Statistics and Probability",2845.5633 +"Solid State Chemistry and Polymers",2367.6417 +"Stellar Astronomy and Astrophysics",1973.0481 +"Emerging Technologies Initiation",1622.8178 +"Polar Ocean and Climate Systems",1593.1472 +"Metals, Ceramics, and Electronic Materials",1532.5833 +"Cell Biology",1526.7692 +"Galactic Astronomy",1376.1239 +Biophysics,1233.9042 +Arts,1140.0328 +"Fluid, Particulate, and Hydraulic Systems",1092.1644 +"Experimental Systems",896.5864 +"Structures and Building Systems",883.8200 +"Solid-State and Microstructures",802.6467 +"Design and Computer-Integrated Engineering",458.9083 +"Algebra and Number Theory",433.1708 +"Decision, Risk, and Management Science",336.9017 +"Biochemistry and Molecular Structure and Function",251.4806 +"Global Atmospheric Research",180.5611 +"Systematic and Population Biology",150.5339 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +Economics,120.6086 +"Computer and Computation Theory",100.8417 +"Polar Aeronomy and Astrophysics",100.6989 +"Mechanics and Materials",81.6261 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +"Geology and Paleontology",54.6022 +"Volcanology and Mantle Geochemistry",48.0067 +"Design, Tools, and Test",2.3450 +Geophysics,1.1269 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..91e7ee4e0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +"Quantum Electronics, Waves, and Beams",12343.6392 +Tectonics,8590.5158 +"Organic and Macromolecular Chemistry",7492.8064 +"Physical Chemistry",5412.7517 +"Statistics and Probability",2845.5633 +"Solid State Chemistry and Polymers",2367.6417 +"Stellar Astronomy and Astrophysics",1973.0481 +"Emerging Technologies Initiation",1622.8178 +"Polar Ocean and Climate Systems",1593.1472 +"Metals, Ceramics, and Electronic Materials",1532.5833 +"Cell Biology",1526.7692 +"Galactic Astronomy",1376.1239 +Biophysics,1233.9042 +Arts,1140.0328 +"Fluid, Particulate, and Hydraulic Systems",1092.1644 +"Experimental Systems",896.5864 +"Structures and Building Systems",883.8200 +"Solid-State and Microstructures",802.6467 +"Design and Computer-Integrated Engineering",458.9083 +"Algebra and Number Theory",433.1708 +"Decision, Risk, and Management Science",336.9017 +"Biochemistry and Molecular Structure and Function",251.4806 +"Global Atmospheric Research",180.5611 +"Systematic and Population Biology",150.5339 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +Economics,120.6086 +"Computer and Computation Theory",100.8417 +"Polar Aeronomy and Astrophysics",100.6989 +"Mechanics and Materials",81.6261 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +"Geology and Paleontology",54.6022 +"Volcanology and Mantle Geochemistry",48.0067 +"Design, Tools, and Test",2.3450 +Geophysics,1.1269 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..91e7ee4e0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +"Quantum Electronics, Waves, and Beams",12343.6392 +Tectonics,8590.5158 +"Organic and Macromolecular Chemistry",7492.8064 +"Physical Chemistry",5412.7517 +"Statistics and Probability",2845.5633 +"Solid State Chemistry and Polymers",2367.6417 +"Stellar Astronomy and Astrophysics",1973.0481 +"Emerging Technologies Initiation",1622.8178 +"Polar Ocean and Climate Systems",1593.1472 +"Metals, Ceramics, and Electronic Materials",1532.5833 +"Cell Biology",1526.7692 +"Galactic Astronomy",1376.1239 +Biophysics,1233.9042 +Arts,1140.0328 +"Fluid, Particulate, and Hydraulic Systems",1092.1644 +"Experimental Systems",896.5864 +"Structures and Building Systems",883.8200 +"Solid-State and Microstructures",802.6467 +"Design and Computer-Integrated Engineering",458.9083 +"Algebra and Number Theory",433.1708 +"Decision, Risk, and Management Science",336.9017 +"Biochemistry and Molecular Structure and Function",251.4806 +"Global Atmospheric Research",180.5611 +"Systematic and Population Biology",150.5339 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +Economics,120.6086 +"Computer and Computation Theory",100.8417 +"Polar Aeronomy and Astrophysics",100.6989 +"Mechanics and Materials",81.6261 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +"Geology and Paleontology",54.6022 +"Volcanology and Mantle Geochemistry",48.0067 +"Design, Tools, and Test",2.3450 +Geophysics,1.1269 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..91e7ee4e0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +"Quantum Electronics, Waves, and Beams",12343.6392 +Tectonics,8590.5158 +"Organic and Macromolecular Chemistry",7492.8064 +"Physical Chemistry",5412.7517 +"Statistics and Probability",2845.5633 +"Solid State Chemistry and Polymers",2367.6417 +"Stellar Astronomy and Astrophysics",1973.0481 +"Emerging Technologies Initiation",1622.8178 +"Polar Ocean and Climate Systems",1593.1472 +"Metals, Ceramics, and Electronic Materials",1532.5833 +"Cell Biology",1526.7692 +"Galactic Astronomy",1376.1239 +Biophysics,1233.9042 +Arts,1140.0328 +"Fluid, Particulate, and Hydraulic Systems",1092.1644 +"Experimental Systems",896.5864 +"Structures and Building Systems",883.8200 +"Solid-State and Microstructures",802.6467 +"Design and Computer-Integrated Engineering",458.9083 +"Algebra and Number Theory",433.1708 +"Decision, Risk, and Management Science",336.9017 +"Biochemistry and Molecular Structure and Function",251.4806 +"Global Atmospheric Research",180.5611 +"Systematic and Population Biology",150.5339 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +Economics,120.6086 +"Computer and Computation Theory",100.8417 +"Polar Aeronomy and Astrophysics",100.6989 +"Mechanics and Materials",81.6261 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +"Geology and Paleontology",54.6022 +"Volcanology and Mantle Geochemistry",48.0067 +"Design, Tools, and Test",2.3450 +Geophysics,1.1269 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..384962b9cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" +2016-12-22,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,16.7464,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,24.0000,0,0,0,0,0,0,0,8.6036,24.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-24,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,24.0000,24.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-25,0,0,0,0,0,0,32.5078,0,0,0,0,0,0,0,24.0000,24.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-26,0,0,0,0,0,0,96.0000,13.5208,0,0,0,0,0,0,24.0000,24.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-27,0,3.2167,0,311.6178,0,0,115.3094,124.7214,331.1156,123.9850,0,0,0,69.8267,52.2964,54.3978,0,0,0,0,0,0,0,0,19.9056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,461.3931,168.4211,502.6856,220.6683,0,0,0,176.3833,144.0000,216.0000,0,0,43.9492,0,0,0,28.0381,0,24.0000,0,0,0,15.1192,0,0,0,0,0,0,0,4.7006,0,0,0 +2016-12-29,12583.2597,301.8189,3901.6422,4150.0822,0,2472.0000,933.4136,501.7553,848.2247,420.2000,152.8733,0,485.1050,479.3708,208.6497,216.0000,47.7900,0,168.7433,102.7444,3.6200,0,216.0000,26.9772,24.0000,129.7778,0,0,72.0000,0,10.0983,37.9494,0,10.4008,0,0,24.0000,0,0,0 +2016-12-30,21766.1511,6638.2006,5473.3125,3949.6347,3055.8617,2475.2589,1433.8564,397.7425,521.4136,451.4903,510.5000,0,914.9350,498.0953,664.9178,216.0000,629.4331,617.0356,321.9956,575.7072,67.3875,0,160.0869,296.1253,175.8633,50.3500,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,27.2308,13.6064,13.9453,7.5778,19.3061,2.3450,1.1269,0.0650 +2016-12-31,20518.0064,8599.9281,2761.8142,1871.4597,5534.6542,696.7117,1625.9722,1112.6033,164.2022,491.3692,569.9600,3.1458,132.5433,179.7156,202.4067,216.4508,430.1536,475.1289,241.5139,205.3683,714.0100,299.0033,24.0000,13.7992,7.7117,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,27.2439,45.3169,45.9239,42.7433,0,0,0,0 +2017-01-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5bf98609d8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" +2016-12,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2318.7644,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 +2017-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..97c0c150f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" +"2016 Q4",55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2318.7644,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 +"2017 Q1",11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7892e91bd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" +2016,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2318.7644,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 +2017,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7dda11cfa6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Total" +"Galactic Astronomy",163477.1903 +Sociology,112939.7331 +"Cell Biology",5136.8678 +"Solid State Chemistry and Polymers",5128.4506 +"Polar Ocean and Climate Systems",4056.0075 +Tectonics,3927.5247 +"Systematic and Population Biology",3030.4719 +"Solid-State and Microstructures",2704.6794 +"Quantum Electronics, Waves, and Beams",1959.9481 +"Decision, Risk, and Management Science",1953.8047 +"Systems Prototyping and Fabrication",544.5967 +"Physical Chemistry",443.1597 +Arts,321.4447 +"Stellar Astronomy and Astrophysics",184.2997 +"Biochemistry and Molecular Structure and Function",122.8625 +"Polar Aeronomy and Astrophysics",105.4822 +"Global Atmospheric Research",62.0436 +"Algebra and Number Theory",48.5308 +"Statistics and Probability",36.5339 +"Emerging Technologies Initiation",30.1542 +Economics,20.6675 +"Fluid, Particulate, and Hydraulic Systems",20.0331 +"Design and Computer-Integrated Engineering",19.3700 +"Operations Research and Production Systems",17.6803 +"Metals, Ceramics, and Electronic Materials",13.9250 +"Polar Meteorology",12.6592 +"Theoretical Physics",11.1744 +"Experimental Systems",7.7419 +"Computer and Computation Theory",6.4781 +Biophysics,1.2361 +Seismology,0.1747 +"Geology and Paleontology",0.1614 +"Extragalactic Astronomy and Cosmology",0.1408 +"Design, Tools, and Test",0.0978 +Geophysics,0.0147 +"Mechanics and Materials",0.0106 +"Structures and Building Systems",0.0047 +"Organic and Macromolecular Chemistry",0.0042 +"Volcanology and Mantle Geochemistry",0.0003 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7dda11cfa6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Total" +"Galactic Astronomy",163477.1903 +Sociology,112939.7331 +"Cell Biology",5136.8678 +"Solid State Chemistry and Polymers",5128.4506 +"Polar Ocean and Climate Systems",4056.0075 +Tectonics,3927.5247 +"Systematic and Population Biology",3030.4719 +"Solid-State and Microstructures",2704.6794 +"Quantum Electronics, Waves, and Beams",1959.9481 +"Decision, Risk, and Management Science",1953.8047 +"Systems Prototyping and Fabrication",544.5967 +"Physical Chemistry",443.1597 +Arts,321.4447 +"Stellar Astronomy and Astrophysics",184.2997 +"Biochemistry and Molecular Structure and Function",122.8625 +"Polar Aeronomy and Astrophysics",105.4822 +"Global Atmospheric Research",62.0436 +"Algebra and Number Theory",48.5308 +"Statistics and Probability",36.5339 +"Emerging Technologies Initiation",30.1542 +Economics,20.6675 +"Fluid, Particulate, and Hydraulic Systems",20.0331 +"Design and Computer-Integrated Engineering",19.3700 +"Operations Research and Production Systems",17.6803 +"Metals, Ceramics, and Electronic Materials",13.9250 +"Polar Meteorology",12.6592 +"Theoretical Physics",11.1744 +"Experimental Systems",7.7419 +"Computer and Computation Theory",6.4781 +Biophysics,1.2361 +Seismology,0.1747 +"Geology and Paleontology",0.1614 +"Extragalactic Astronomy and Cosmology",0.1408 +"Design, Tools, and Test",0.0978 +Geophysics,0.0147 +"Mechanics and Materials",0.0106 +"Structures and Building Systems",0.0047 +"Organic and Macromolecular Chemistry",0.0042 +"Volcanology and Mantle Geochemistry",0.0003 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7dda11cfa6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Total" +"Galactic Astronomy",163477.1903 +Sociology,112939.7331 +"Cell Biology",5136.8678 +"Solid State Chemistry and Polymers",5128.4506 +"Polar Ocean and Climate Systems",4056.0075 +Tectonics,3927.5247 +"Systematic and Population Biology",3030.4719 +"Solid-State and Microstructures",2704.6794 +"Quantum Electronics, Waves, and Beams",1959.9481 +"Decision, Risk, and Management Science",1953.8047 +"Systems Prototyping and Fabrication",544.5967 +"Physical Chemistry",443.1597 +Arts,321.4447 +"Stellar Astronomy and Astrophysics",184.2997 +"Biochemistry and Molecular Structure and Function",122.8625 +"Polar Aeronomy and Astrophysics",105.4822 +"Global Atmospheric Research",62.0436 +"Algebra and Number Theory",48.5308 +"Statistics and Probability",36.5339 +"Emerging Technologies Initiation",30.1542 +Economics,20.6675 +"Fluid, Particulate, and Hydraulic Systems",20.0331 +"Design and Computer-Integrated Engineering",19.3700 +"Operations Research and Production Systems",17.6803 +"Metals, Ceramics, and Electronic Materials",13.9250 +"Polar Meteorology",12.6592 +"Theoretical Physics",11.1744 +"Experimental Systems",7.7419 +"Computer and Computation Theory",6.4781 +Biophysics,1.2361 +Seismology,0.1747 +"Geology and Paleontology",0.1614 +"Extragalactic Astronomy and Cosmology",0.1408 +"Design, Tools, and Test",0.0978 +Geophysics,0.0147 +"Mechanics and Materials",0.0106 +"Structures and Building Systems",0.0047 +"Organic and Macromolecular Chemistry",0.0042 +"Volcanology and Mantle Geochemistry",0.0003 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7dda11cfa6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wait Hours: Total" +"Galactic Astronomy",163477.1903 +Sociology,112939.7331 +"Cell Biology",5136.8678 +"Solid State Chemistry and Polymers",5128.4506 +"Polar Ocean and Climate Systems",4056.0075 +Tectonics,3927.5247 +"Systematic and Population Biology",3030.4719 +"Solid-State and Microstructures",2704.6794 +"Quantum Electronics, Waves, and Beams",1959.9481 +"Decision, Risk, and Management Science",1953.8047 +"Systems Prototyping and Fabrication",544.5967 +"Physical Chemistry",443.1597 +Arts,321.4447 +"Stellar Astronomy and Astrophysics",184.2997 +"Biochemistry and Molecular Structure and Function",122.8625 +"Polar Aeronomy and Astrophysics",105.4822 +"Global Atmospheric Research",62.0436 +"Algebra and Number Theory",48.5308 +"Statistics and Probability",36.5339 +"Emerging Technologies Initiation",30.1542 +Economics,20.6675 +"Fluid, Particulate, and Hydraulic Systems",20.0331 +"Design and Computer-Integrated Engineering",19.3700 +"Operations Research and Production Systems",17.6803 +"Metals, Ceramics, and Electronic Materials",13.9250 +"Polar Meteorology",12.6592 +"Theoretical Physics",11.1744 +"Experimental Systems",7.7419 +"Computer and Computation Theory",6.4781 +Biophysics,1.2361 +Seismology,0.1747 +"Geology and Paleontology",0.1614 +"Extragalactic Astronomy and Cosmology",0.1408 +"Design, Tools, and Test",0.0978 +Geophysics,0.0147 +"Mechanics and Materials",0.0106 +"Structures and Building Systems",0.0047 +"Organic and Macromolecular Chemistry",0.0042 +"Volcanology and Mantle Geochemistry",0.0003 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f83f085322 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0,0,0,0 +2016-12-23,9.5964,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,0,0,0,0,0,0,0,110.8856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0033,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0.0028,0.0000,1367.4053,172.7719,0,0,0,0,311.1344,0,0,0.0289,0,76.0861,50.8225,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0.0000,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,42.4475,0,36.8761,0.0000,0,0,47.7519,18.4800,0,0,0,0,10.5775,0,0,11.1744,2.3317,0,0.0000,0,0,0,0,0,0,0,0.0017,0.0003,0 +2016-12-29,2704.7964,1973.6497,627.0644,288.5578,0,0,0,0.0044,334.2367,0.7922,32.6300,45.4447,9.5847,11.7164,0.0000,0.0017,25.7286,0.0000,17.8439,10.4372,0,0,0,3.9286,13.9250,0,0.0000,1.4369,0.0894,0.0000,0.0000,0,0,0,0,0,0.0025,0.0000,0.0000,0 +2016-12-30,160667.2464,26578.5867,331.7789,2269.2967,0,1857.6733,1170.3947,54.0756,0.0111,1436.2097,221.0947,98.0058,311.8600,44.7175,72.0400,105.4806,0.0000,0.7789,0.0000,7.3803,11.9272,20.0331,0,2.2686,0.0000,12.1381,0.0000,2.5139,6.3886,0.0000,0.0000,0.1611,0.0575,0.0978,0.0147,0.0028,0.0022,0.0008,0.0000,0.0000 +2016-12-31,95.5417,64555.5128,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0031,516.8028,277.8381,100.6983,0.0000,7.6042,0.0000,0.0000,0,0.0000,0.2067,0.3128,8.7356,0.0000,19.3700,0.5711,0.0000,0.5147,0,1.3047,0.0000,0.0011,0.1747,0.0000,0.0833,0,0,0.0031,0.0000,0.0006,0,0 +2017-01-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6582e95fbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" +2016-12,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000 +2017-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..711e2f8ec9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" +"2016 Q4",163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000 +"2017 Q1",0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5ac7b9cf91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" +2016,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000 +2017,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f4da77210d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +Tectonics,8590.5158 +"Physical Chemistry",3832.1586 +"Statistics and Probability",2845.5633 +"Quantum Electronics, Waves, and Beams",1663.0800 +"Polar Ocean and Climate Systems",1593.1472 +"Cell Biology",1526.7414 +"Galactic Astronomy",1230.7931 +"Solid State Chemistry and Polymers",1145.5708 +Arts,1140.0328 +"Experimental Systems",896.5864 +"Solid-State and Microstructures",802.6467 +"Organic and Macromolecular Chemistry",658.6011 +"Algebra and Number Theory",433.1708 +Biophysics,393.6403 +"Stellar Astronomy and Astrophysics",371.0986 +"Metals, Ceramics, and Electronic Materials",255.4306 +"Biochemistry and Molecular Structure and Function",251.4806 +"Design and Computer-Integrated Engineering",229.4542 +"Emerging Technologies Initiation",202.8522 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +"Structures and Building Systems",126.2600 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Decision, Risk, and Management Science",74.8000 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +Economics,56.2867 +"Polar Aeronomy and Astrophysics",50.3497 +"Volcanology and Mantle Geochemistry",48.0067 +"Fluid, Particulate, and Hydraulic Systems",46.3125 +"Systematic and Population Biology",45.2333 +"Geology and Paleontology",18.3367 +"Global Atmospheric Research",9.0281 +Geophysics,1.1269 +"Design, Tools, and Test",0.2606 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f4da77210d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +Tectonics,8590.5158 +"Physical Chemistry",3832.1586 +"Statistics and Probability",2845.5633 +"Quantum Electronics, Waves, and Beams",1663.0800 +"Polar Ocean and Climate Systems",1593.1472 +"Cell Biology",1526.7414 +"Galactic Astronomy",1230.7931 +"Solid State Chemistry and Polymers",1145.5708 +Arts,1140.0328 +"Experimental Systems",896.5864 +"Solid-State and Microstructures",802.6467 +"Organic and Macromolecular Chemistry",658.6011 +"Algebra and Number Theory",433.1708 +Biophysics,393.6403 +"Stellar Astronomy and Astrophysics",371.0986 +"Metals, Ceramics, and Electronic Materials",255.4306 +"Biochemistry and Molecular Structure and Function",251.4806 +"Design and Computer-Integrated Engineering",229.4542 +"Emerging Technologies Initiation",202.8522 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +"Structures and Building Systems",126.2600 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Decision, Risk, and Management Science",74.8000 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +Economics,56.2867 +"Polar Aeronomy and Astrophysics",50.3497 +"Volcanology and Mantle Geochemistry",48.0067 +"Fluid, Particulate, and Hydraulic Systems",46.3125 +"Systematic and Population Biology",45.2333 +"Geology and Paleontology",18.3367 +"Global Atmospheric Research",9.0281 +Geophysics,1.1269 +"Design, Tools, and Test",0.2606 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f4da77210d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +Tectonics,8590.5158 +"Physical Chemistry",3832.1586 +"Statistics and Probability",2845.5633 +"Quantum Electronics, Waves, and Beams",1663.0800 +"Polar Ocean and Climate Systems",1593.1472 +"Cell Biology",1526.7414 +"Galactic Astronomy",1230.7931 +"Solid State Chemistry and Polymers",1145.5708 +Arts,1140.0328 +"Experimental Systems",896.5864 +"Solid-State and Microstructures",802.6467 +"Organic and Macromolecular Chemistry",658.6011 +"Algebra and Number Theory",433.1708 +Biophysics,393.6403 +"Stellar Astronomy and Astrophysics",371.0986 +"Metals, Ceramics, and Electronic Materials",255.4306 +"Biochemistry and Molecular Structure and Function",251.4806 +"Design and Computer-Integrated Engineering",229.4542 +"Emerging Technologies Initiation",202.8522 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +"Structures and Building Systems",126.2600 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Decision, Risk, and Management Science",74.8000 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +Economics,56.2867 +"Polar Aeronomy and Astrophysics",50.3497 +"Volcanology and Mantle Geochemistry",48.0067 +"Fluid, Particulate, and Hydraulic Systems",46.3125 +"Systematic and Population Biology",45.2333 +"Geology and Paleontology",18.3367 +"Global Atmospheric Research",9.0281 +Geophysics,1.1269 +"Design, Tools, and Test",0.2606 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f4da77210d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Wall Hours: Total" +"Systems Prototyping and Fabrication",67004.1206 +Sociology,16499.1964 +"Operations Research and Production Systems",15354.0758 +Tectonics,8590.5158 +"Physical Chemistry",3832.1586 +"Statistics and Probability",2845.5633 +"Quantum Electronics, Waves, and Beams",1663.0800 +"Polar Ocean and Climate Systems",1593.1472 +"Cell Biology",1526.7414 +"Galactic Astronomy",1230.7931 +"Solid State Chemistry and Polymers",1145.5708 +Arts,1140.0328 +"Experimental Systems",896.5864 +"Solid-State and Microstructures",802.6467 +"Organic and Macromolecular Chemistry",658.6011 +"Algebra and Number Theory",433.1708 +Biophysics,393.6403 +"Stellar Astronomy and Astrophysics",371.0986 +"Metals, Ceramics, and Electronic Materials",255.4306 +"Biochemistry and Molecular Structure and Function",251.4806 +"Design and Computer-Integrated Engineering",229.4542 +"Emerging Technologies Initiation",202.8522 +"Polar Meteorology",135.7597 +"Theoretical Physics",132.4094 +"Structures and Building Systems",126.2600 +"Computer and Computation Theory",100.8417 +"Mechanics and Materials",81.6261 +"Decision, Risk, and Management Science",74.8000 +Seismology,70.2769 +"Extragalactic Astronomy and Cosmology",59.8692 +Economics,56.2867 +"Polar Aeronomy and Astrophysics",50.3497 +"Volcanology and Mantle Geochemistry",48.0067 +"Fluid, Particulate, and Hydraulic Systems",46.3125 +"Systematic and Population Biology",45.2333 +"Geology and Paleontology",18.3367 +"Global Atmospheric Research",9.0281 +Geophysics,1.1269 +"Design, Tools, and Test",0.2606 +"Law and Social Sciences",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..35d72cdbed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" +2016-12-22,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,16.7464,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,24.0000,0,0,0,0,8.6036,0,0,0,0,0,0,24.0000,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-24,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,24.0000,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-25,0,0,0,0,32.5078,0,0,0,0,24.0000,0,0,0,0,0,0,24.0000,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-26,0,0,0,0,96.0000,13.5208,0,0,0,24.0000,0,0,0,0,0,0,24.0000,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-27,0,3.2167,0,0,115.3094,124.7214,38.9522,0,69.8267,52.2964,61.4911,0,0,0,0,0,27.7997,20.6642,0,19.9056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,0,386.4281,168.4211,228.4575,0,176.3833,144.0000,169.2183,0,43.9492,0,160.7689,28.0381,48.0000,36.7781,0,24.0000,0,0,0,15.1192,0,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0 +2016-12-29,12583.2597,301.8189,3901.6422,0,597.4011,501.7553,538.2222,0,479.3708,187.5622,356.3561,47.7900,168.7433,3.6200,216.0000,216.0000,48.0000,74.4400,80.8508,24.0000,0,19.1092,0,72.0000,14.6778,10.0983,0,1.9269,10.4008,0,0,18.9747,24.0000,0,0,0,6.4889,0,0,0 +2016-12-30,21766.1511,6638.2006,5473.3125,3055.8617,1061.7603,397.7425,530.1600,0,498.0675,592.9178,394.3031,629.4331,321.9956,67.3875,216.5364,160.0869,48.0000,83.3264,152.4892,175.8633,0,63.8125,108.1047,45.2903,82.2439,82.1119,27.2308,59.0739,13.6064,13.9453,9.6922,24.0006,19.3061,29.3436,12.8208,4.3656,2.5175,1.1269,0.2606,0.0650 +2016-12-31,20518.0064,8599.9281,2761.8142,5534.6542,889.1303,1112.6033,266.9975,3.1458,179.7156,150.1633,164.2022,430.1536,241.5139,714.0100,63.5161,24.0000,48.2375,99.6328,22.0906,7.7117,149.5017,71.2450,25.9131,0,29.3383,8.6314,27.2439,13.7992,45.3169,45.9239,38.8869,7.3744,0,16.9689,1.4844,9.6900,0,0,0,0 +2017-01-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6cbbbc2ea9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" +2016-12,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2318.7644,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 +2017-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..90d483a75d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" +"2016 Q4",55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2318.7644,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 +"2017 Q1",11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6a542b5dee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" +2016,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2318.7644,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 +2017,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7bf0ce3c93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Screwdriver CPU Utilization (%)" +"Organic and Macromolecular Chemistry",7.3085 +"Quantum Electronics, Waves, and Beams",6.9780 +"Systems Prototyping and Fabrication",6.3451 +Sociology,3.6382 +"Physical Chemistry",2.5756 +"Structures and Building Systems",2.4551 +"Stellar Astronomy and Astrophysics",2.0829 +"Statistics and Probability",2.0195 +"Emerging Technologies Initiation",1.8441 +"Metals, Ceramics, and Electronic Materials",1.7416 +"Operations Research and Production Systems",1.4540 +"Solid State Chemistry and Polymers",1.2443 +"Fluid, Particulate, and Hydraulic Systems",1.2411 +"Polar Ocean and Climate Systems",1.1064 +Biophysics,1.0303 +"Cell Biology",0.8245 +Tectonics,0.8135 +Arts,0.7186 +"Experimental Systems",0.6976 +"Galactic Astronomy",0.5136 +"Design and Computer-Integrated Engineering",0.4983 +"Algebra and Number Theory",0.4922 +"Theoretical Physics",0.1505 +"Systematic and Population Biology",0.1438 +"Volcanology and Mantle Geochemistry",0.1429 +Economics,0.1370 +"Global Atmospheric Research",0.1368 +"Decision, Risk, and Management Science",0.1121 +"Biochemistry and Molecular Structure and Function",0.0967 +"Solid-State and Microstructures",0.0966 +"Polar Aeronomy and Astrophysics",0.0954 +Seismology,0.0590 +"Geology and Paleontology",0.0559 +"Mechanics and Materials",0.0142 +"Polar Meteorology",0.0129 +"Computer and Computation Theory",0.0095 +"Extragalactic Astronomy and Cosmology",0.0057 +Geophysics,0.0034 +"Design, Tools, and Test",0.0027 +"Law and Social Sciences",0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7f77f89415 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Screwdriver CPU Utilization (%)" +"Quantum Electronics, Waves, and Beams",1.6507 +"Organic and Macromolecular Chemistry",1.6136 +"Systems Prototyping and Fabrication",1.3685 +Sociology,0.8085 +"Physical Chemistry",0.5590 +"Stellar Astronomy and Astrophysics",0.4493 +"Statistics and Probability",0.4131 +"Structures and Building Systems",0.4092 +"Emerging Technologies Initiation",0.3977 +"Metals, Ceramics, and Electronic Materials",0.3756 +"Operations Research and Production Systems",0.3136 +Biophysics,0.2764 +"Solid State Chemistry and Polymers",0.2701 +"Fluid, Particulate, and Hydraulic Systems",0.2677 +"Polar Ocean and Climate Systems",0.2263 +"Cell Biology",0.1778 +Tectonics,0.1755 +"Experimental Systems",0.1505 +Arts,0.1470 +"Galactic Astronomy",0.1115 +"Design and Computer-Integrated Engineering",0.1075 +"Algebra and Number Theory",0.1062 +"Theoretical Physics",0.0325 +"Systematic and Population Biology",0.0310 +Economics,0.0296 +"Global Atmospheric Research",0.0295 +"Volcanology and Mantle Geochemistry",0.0270 +"Decision, Risk, and Management Science",0.0242 +"Solid-State and Microstructures",0.0228 +"Polar Aeronomy and Astrophysics",0.0226 +"Biochemistry and Molecular Structure and Function",0.0209 +Seismology,0.0127 +"Geology and Paleontology",0.0121 +"Polar Meteorology",0.0028 +"Mechanics and Materials",0.0024 +"Computer and Computation Theory",0.0021 +"Extragalactic Astronomy and Cosmology",0.0012 +"Design, Tools, and Test",0.0006 +Geophysics,0.0006 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e64fb49381 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Screwdriver CPU Utilization (%)" +"Quantum Electronics, Waves, and Beams",0.7276 +"Organic and Macromolecular Chemistry",0.6371 +"Systems Prototyping and Fabrication",0.6345 +Sociology,0.3334 +"Physical Chemistry",0.2357 +"Stellar Astronomy and Astrophysics",0.2083 +"Emerging Technologies Initiation",0.1844 +"Statistics and Probability",0.1765 +"Metals, Ceramics, and Electronic Materials",0.1742 +"Structures and Building Systems",0.1551 +"Operations Research and Production Systems",0.1454 +"Fluid, Particulate, and Hydraulic Systems",0.1241 +"Solid State Chemistry and Polymers",0.1139 +Biophysics,0.1133 +"Polar Ocean and Climate Systems",0.0967 +"Cell Biology",0.0825 +Tectonics,0.0813 +"Experimental Systems",0.0698 +Arts,0.0628 +"Design and Computer-Integrated Engineering",0.0498 +"Algebra and Number Theory",0.0492 +"Galactic Astronomy",0.0470 +"Theoretical Physics",0.0150 +"Systematic and Population Biology",0.0144 +Economics,0.0137 +"Global Atmospheric Research",0.0137 +"Decision, Risk, and Management Science",0.0112 +"Volcanology and Mantle Geochemistry",0.0104 +"Solid-State and Microstructures",0.0101 +"Polar Aeronomy and Astrophysics",0.0099 +"Biochemistry and Molecular Structure and Function",0.0097 +Seismology,0.0059 +"Geology and Paleontology",0.0056 +"Polar Meteorology",0.0013 +"Computer and Computation Theory",0.0010 +"Mechanics and Materials",0.0009 +"Extragalactic Astronomy and Cosmology",0.0006 +"Design, Tools, and Test",0.0003 +Geophysics,0.0002 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..072ab16e08 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Screwdriver CPU Utilization (%)" +"Quantum Electronics, Waves, and Beams",0.2017 +"Systems Prototyping and Fabrication",0.1813 +"Organic and Macromolecular Chemistry",0.1668 +Sociology,0.0892 +"Physical Chemistry",0.0638 +"Stellar Astronomy and Astrophysics",0.0595 +"Emerging Technologies Initiation",0.0527 +"Metals, Ceramics, and Electronic Materials",0.0498 +"Statistics and Probability",0.0481 +"Operations Research and Production Systems",0.0415 +"Structures and Building Systems",0.0398 +"Fluid, Particulate, and Hydraulic Systems",0.0355 +"Solid State Chemistry and Polymers",0.0308 +Biophysics,0.0302 +"Polar Ocean and Climate Systems",0.0263 +"Cell Biology",0.0236 +Tectonics,0.0232 +"Experimental Systems",0.0199 +Arts,0.0171 +"Design and Computer-Integrated Engineering",0.0142 +"Algebra and Number Theory",0.0141 +"Galactic Astronomy",0.0127 +"Theoretical Physics",0.0043 +"Systematic and Population Biology",0.0041 +Economics,0.0039 +"Global Atmospheric Research",0.0039 +"Decision, Risk, and Management Science",0.0032 +"Biochemistry and Molecular Structure and Function",0.0028 +"Polar Aeronomy and Astrophysics",0.0028 +"Solid-State and Microstructures",0.0028 +"Volcanology and Mantle Geochemistry",0.0027 +Seismology,0.0017 +"Geology and Paleontology",0.0016 +"Polar Meteorology",0.0004 +"Computer and Computation Theory",0.0003 +"Extragalactic Astronomy and Cosmology",0.0002 +"Mechanics and Materials",0.0002 +"Design, Tools, and Test",0.0001 +Geophysics,0.0001 +"Law and Social Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3389b2c151 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0.2093,0,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.3000,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0090,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,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.4857,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,1.8000,0,0,0.2253,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.8952,0,0.0034,1.1947,0,1.5498,1.0025,0,0,0,4.4779,0,0,0.5533,0.5819,0,0,0,0.2483,0,0,0,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,30.6953,22.8458,0.9927,0.0250,5.1848,0,2.4389,1.2160,0,0,2.0446,3.4312,0,0,1.9000,1.4699,0,0,0.3662,1.0125,0,0.3505,0.1890,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,41.2000,51.6212,13.1076,0.4670,5.4647,1.7124,4.6525,3.9938,1.9109,6.0638,4.0642,4.1811,0,0,1.9000,2.2958,0,0.2688,1.4062,0.8919,0,2.7000,0.9000,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0,0.0105,0,0,0,0 +2016-12-30,20.6136,24.4758,22.6731,13.0205,5.8332,9.5951,5.0436,3.1639,6.3813,11.4367,5.7014,2.7609,7.7129,0,1.9000,2.1966,3.1832,3.6308,2.7403,1.9172,0,2.0011,0.5661,0.5439,0.4022,0.3402,0.4196,1.1062,0.2073,0.2962,0.5000,0.0709,0.0687,0.0284,0.1126,0.0855,0.0145,0.0235,0.0293,0.0011 +2016-12-31,5.5311,11.5907,21.3729,18.3076,5.1151,3.4228,5.9107,12.2717,7.1245,1.6568,2.8769,1.3368,5.9391,0.0393,1.9038,1.4976,5.7653,2.4113,2.1582,2.9599,3.6187,0.3000,0,0.1307,0,0.9523,0,0.0144,0.0080,0.7438,0.3073,0.5116,0.5239,0.0284,0.0270,0.0090,0.0478,0,0,0 +2017-01-01,0.0593,1.5099,11.6497,1.7636,2.3403,0,3.3167,5.1025,4.8686,0,1.3067,0,0,9.9375,1.7672,1.0281,0,0.1562,1.0032,0.3871,1.8628,0.0631,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0223,0.0283,0.0018,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..88d6c3f5be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" +2016-12,4.8547,8.2790,2.9073,3.0488,1.8082,0.9798,1.2019,2.9461,0.7708,0.9579,0.7344,0.9566,0.9678,0.6826,0.0066,0.4021,0.4474,0.3335,0.4854,0.3887,0.1809,0.2676,0.0828,0.0337,0.0646,0.0751,0.1667,0.0617,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0113,0.0053,0.0031,0.0015,0.0039,0.0001 +2017-01,0.0487,0.0019,0.3758,0.0569,0.0755,0.1070,0.1646,0,0.1571,0,0.0422,0.0570,0,0,0.3206,0.0332,0,0.0324,0.0050,0.0125,0.0601,0.0020,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0004,0.0007,0.0001,0.0009,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..17f5ff791e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" +"2016 Q4",4.8547,8.2790,2.9073,3.0488,1.8082,0.9798,0.7708,1.2019,0.9579,2.9461,0.7344,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.1667,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0053,0.0113,0.0031,0.0015,0.0039,0.0001 +"2017 Q1",0.0168,0.0007,0.1294,0.0196,0.0260,0.0369,0.0541,0.0567,0,0,0.0145,0,0,0.0196,0.1104,0.0114,0,0.0111,0.0017,0.0207,0.0007,0.0043,0,0.0101,0.0024,0.0000,0,0,0.0004,0,0,0.0001,0.0002,0.0000,0,0.0003,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..05628aeaee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" +2016,4.8547,2.9073,8.2790,3.0488,1.8082,0.9798,0.7708,0.9579,1.2019,0.7344,2.9461,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.0532,0.0677,0.0673,0.1667,0.0318,0.0296,0.0070,0.0053,0.0031,0.0113,0.0015,0.0039,0.0001 +2017,0.0041,0.0319,0.0002,0.0048,0.0064,0.0091,0.0133,0,0.0140,0.0036,0,0,0,0.0048,0.0272,0.0028,0,0.0027,0.0004,0.0051,0.0002,0.0011,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0.0000,0.0001,0.0000,0,0,0.0001,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..67b648fec7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Users: Active","[2] Number of Users: Active" +2016-12-22,1,1 +2016-12-23,2,1 +2016-12-24,2,1 +2016-12-25,3,1 +2016-12-26,4,1 +2016-12-27,15,1 +2016-12-28,24,1 +2016-12-29,42,1 +2016-12-30,63,1 +2016-12-31,55,1 +2017-01-01,38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7c356cf4fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Users: Active","[2] Number of Users: Active" +2016-12,66,1 +2017-01,38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..81e3ad710a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Users: Active","[2] Number of Users: Active" +"2016 Q4",66,1 +"2017 Q1",38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f6ef6018f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Users: Active","[2] Number of Users: Active" +2016,66,1 +2017,38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..570ddb0602 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of PIs: Active","[2] Number of PIs: Active" +2016-12-22,1,1 +2016-12-23,2,1 +2016-12-24,2,1 +2016-12-25,2,1 +2016-12-26,3,1 +2016-12-27,11,1 +2016-12-28,18,1 +2016-12-29,28,1 +2016-12-30,39,1 +2016-12-31,34,1 +2017-01-01,25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..714c93a3a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of PIs: Active","[2] Number of PIs: Active" +2016-12,41,1 +2017-01,25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..076c5de42f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of PIs: Active","[2] Number of PIs: Active" +"2016 Q4",41,1 +"2017 Q1",25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..36d2751cda --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of PIs: Active","[2] Number of PIs: Active" +2016,41,1 +2017,25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..19cd976fad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Resources: Active","[2] Number of Resources: Active" +2016-12-22,1,1 +2016-12-23,1,1 +2016-12-24,1,1 +2016-12-25,1,1 +2016-12-26,2,1 +2016-12-27,5,1 +2016-12-28,5,1 +2016-12-29,5,1 +2016-12-30,5,1 +2016-12-31,5,1 +2017-01-01,5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..18769cd6a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Resources: Active","[2] Number of Resources: Active" +2016-12,5,1 +2017-01,5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6a69bc2006 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Resources: Active","[2] Number of Resources: Active" +"2016 Q4",5,1 +"2017 Q1",5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d473fe4b65 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Resources: Active","[2] Number of Resources: Active" +2016,5,1 +2017,5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d46fefda96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.45334655825879255 +2,1520.73833333, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..09525e7d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.7927749973468059 +2,1520.73833333,899.5902978802504 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..09525e7d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.7927749973468059 +2,1520.73833333,899.5902978802504 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..09525e7d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.7927749973468059 +2,1520.73833333,899.5902978802504 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..126480d848 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +2016-12-22,203.30000000,200.95666667 +2016-12-23,148.30180556,288.00000000 +2016-12-24,156.00000000,288.00000000 +2016-12-25,98.05400000,288.00000000 +2016-12-26,196.83333333,288.00000000 +2016-12-27,372.32060298,288.00000000 +2016-12-28,181.96149282,288.00000000 +2016-12-29,98.31729921,288.00000000 +2016-12-30,9.52489316,288.00000000 +2016-12-31,7.49752144,288.00000000 +2017-01-01,4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..442f1eb1ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +2016-12,13.66323374,2792.95666667 +2017-01,4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..963ab4bd11 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +"2016 Q4",13.66323374,2792.95666667 +"2017 Q1",4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..31025c39ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +2016,13.66323374,2792.95666667 +2017,4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f1b8733132 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +2016-12-22,0.00000000,33.49277778 +2016-12-23,0.00000000,48.00000000 +2016-12-24,0.00000000,48.00000000 +2016-12-25,0.00000000,48.00000000 +2016-12-26,0.00000000,48.00000000 +2016-12-27,0.00000000,48.00000000 +2016-12-28,0.00000000,48.00000000 +2016-12-29,0.00000000,48.00000000 +2016-12-30,0.00000000,48.00000000 +2016-12-31,0.00000000,48.00000000 +2017-01-01,0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..acf895c1f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +2016-12,0.00000000,465.49277778 +2017-01,0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8ebf038ad5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +"2016 Q4",0.00000000,465.49277778 +"2017 Q1",0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8868cea75d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +2016,0.00000000,465.49277778 +2017,0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..58fae4864f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +2016-12-22,0.0000,2.0000 +2016-12-23,0.0000,2.0000 +2016-12-24,0.0000,2.0000 +2016-12-25,0.0000,2.0000 +2016-12-26,0.0000,2.0000 +2016-12-27,0.0000,2.0000 +2016-12-28,0.0000,2.0000 +2016-12-29,0.0000,2.0000 +2016-12-30,0.0000,2.0000 +2016-12-31,0.0000,2.0000 +2017-01-01,0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..700cfccf84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +2016-12,0.0000,2.0000 +2017-01,0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..327af0ee6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +"2016 Q4",0.0000,2.0000 +"2017 Q1",0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..14afc1faba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +2016,0.0000,2.0000 +2017,0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..04fbc57539 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,11.6809,12.0000 +2016-12-24,11.1538,12.0000 +2016-12-25,15.1906,12.0000 +2016-12-26,19.3287,12.0000 +2016-12-27,68.9139,12.0000 +2016-12-28,107.9503,12.0000 +2016-12-29,87.7147,12.0000 +2016-12-30,69.1753,12.0000 +2016-12-31,43.3951,12.0000 +2017-01-01,22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d76545b6a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,69.7491,12.0000 +2017-01,22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1526735c14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",69.7491,12.0000 +"2017 Q1",22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bba2269bb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +2016,69.7491,12.0000 +2017,22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b28dcfb2a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0.0000,12.0000 +2016-12-23,0.0000,12.0000 +2016-12-24,0.0000,12.0000 +2016-12-25,0.0000,12.0000 +2016-12-26,0.0000,12.0000 +2016-12-27,0.0000,12.0000 +2016-12-28,0.0000,12.0000 +2016-12-29,0.0000,12.0000 +2016-12-30,0.0000,12.0000 +2016-12-31,0.0000,12.0000 +2017-01-01,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..be71e5eda7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,12.0000 +2017-01,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..84f5c0133a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,12.0000 +"2017 Q1",0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1a679a7d3f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,12.0000 +2017,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4b5feb22a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.03779688988122659 +2,126.72819444, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5eb9296993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.06286554569018009 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5eb9296993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.06286554569018009 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5eb9296993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.06286554569018009 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..58a4fb7b49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +2016-12-22,16.94166667,16.74638889 +2016-12-23,16.30180556,24.00000000 +2016-12-24,24.00000000,24.00000000 +2016-12-25,11.30155556,24.00000000 +2016-12-26,13.35208333,24.00000000 +2016-12-27,28.83883469,24.00000000 +2016-12-28,19.13277654,24.00000000 +2016-12-29,16.39131509,24.00000000 +2016-12-30,1.81203854,24.00000000 +2016-12-31,1.60005394,24.00000000 +2017-01-01,1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f82a236d40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +2016-12,2.45898158,232.74638889 +2017-01,1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d10656e711 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +"2016 Q4",2.45898158,232.74638889 +"2017 Q1",1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ee7542e7ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +2016,2.45898158,232.74638889 +2017,1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..da2605354c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,6.5000,12.0000 +2016-12-24,6.5000,12.0000 +2016-12-25,14.6000,12.0000 +2016-12-26,15.3000,12.0000 +2016-12-27,29.4390,12.0000 +2016-12-28,11.5635,12.0000 +2016-12-29,6.8608,12.0000 +2016-12-30,8.0162,12.0000 +2016-12-31,8.7856,12.0000 +2017-01-01,9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..53100fb9d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +2016-12,8.5389,12.0000 +2017-01,9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..84c2a0866a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +"2016 Q4",8.5389,12.0000 +"2017 Q1",9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..710206be53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +2016,8.5389,12.0000 +2017,9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1f58befd7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +2016-12-22,9.33222222,0.00027778 +2016-12-23,9.59638889,0.00000000 +2016-12-24,0.00000000,0.00000000 +2016-12-25,36.96185185,0.00000000 +2016-12-26,0.00066667,0.00000000 +2016-12-27,63.81457885,0.00000000 +2016-12-28,8.81944104,0.00000000 +2016-12-29,4.73013286,0.00000000 +2016-12-30,7.20200027,0.00000000 +2016-12-31,2.68411411,0.00000000 +2017-01-01,1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f457b3c9e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +2016-12,4.99060218,0.00027778 +2017-01,1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dab5871365 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +"2016 Q4",4.99060218,0.00027778 +"2017 Q1",1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d5af09d763 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +2016,4.99060218,0.00027778 +2017,1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e6b746013c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.017902725699608067 +2,126.72819444, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ebe5b92de3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.02569893349474275 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ebe5b92de3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.02569893349474275 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ebe5b92de3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.02569893349474275 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..05c8e94e7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +2016-12-22,16.94166667,16.74638889 +2016-12-23,16.30180556,24.00000000 +2016-12-24,24.00000000,24.00000000 +2016-12-25,11.30155556,24.00000000 +2016-12-26,13.35208333,24.00000000 +2016-12-27,12.44349593,24.00000000 +2016-12-28,10.13395014,24.00000000 +2016-12-29,11.77717622,24.00000000 +2016-12-30,1.48466465,24.00000000 +2016-12-31,1.42890835,24.00000000 +2017-01-01,1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b9f9515bd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +2016-12,1.97419352,232.74638889 +2017-01,1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f4d79f4748 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +"2016 Q4",1.97419352,232.74638889 +"2017 Q1",1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e8e1ccfcf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +2016,1.97419352,232.74638889 +2017,1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f1743f4da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] User Expansion Factor","[2] User Expansion Factor" +2016-12-22,1.0495,1.0000 +2016-12-23,1.0525,1.0000 +2016-12-24,1.0552,1.0000 +2016-12-25,1.1158,1.0000 +2016-12-26,1.2076,1.0000 +2016-12-27,2.0662,1.0000 +2016-12-28,1.5099,1.0000 +2016-12-29,1.3805,1.0000 +2016-12-30,4.9363,1.0000 +2016-12-31,2.5847,1.0000 +2017-01-01,2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c425337161 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] User Expansion Factor","[2] User Expansion Factor" +2016-12,3.1517,1.0000 +2017-01,2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..180ab029e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] User Expansion Factor","[2] User Expansion Factor" +"2016 Q4",3.1517,1.0000 +"2017 Q1",2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1cfc62ea70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] User Expansion Factor","[2] User Expansion Factor" +2016,3.1517,1.0000 +2017,2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a5999dc9fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +2016-12-22,0,0 +2016-12-23,0,0 +2016-12-24,0,0 +2016-12-25,0,0 +2016-12-26,0,0 +2016-12-27,0,0 +2016-12-28,0,0 +2016-12-29,0,0 +2016-12-30,26606,0 +2016-12-31,28141,0 +2017-01-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fb49506c37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +2016-12,54747,0 +2017-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f64923a86e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +"2016 Q4",54747,0 +"2017 Q1",16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8b5f88efef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +2016,54747,0 +2017,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c755d3eac3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +2016-12-22,12,12 +2016-12-23,12,12 +2016-12-24,12,12 +2016-12-25,24,12 +2016-12-26,24,12 +2016-12-27,144,12 +2016-12-28,192,12 +2016-12-29,192,12 +2016-12-30,336,12 +2016-12-31,336,12 +2017-01-01,192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ad5ba0c0b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +2016-12,336,12 +2017-01,192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cf4842f488 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +"2016 Q4",336,12 +"2017 Q1",192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..98c5dcf2c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +2016,336,12 +2017,192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1ee81515da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +2016-12-22,12,12 +2016-12-23,1,12 +2016-12-24,1,12 +2016-12-25,1,12 +2016-12-26,1,12 +2016-12-27,1,12 +2016-12-28,1,12 +2016-12-29,1,12 +2016-12-30,1,12 +2016-12-31,1,12 +2017-01-01,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..54b4a05d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +2016-12,1,12 +2017-01,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a186c24576 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +"2016 Q4",1,12 +"2017 Q1",1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..185ecc2553 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +2016,1,12 +2017,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..31fbde2297 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.300000000,0.300000000 +2016-12-23,0.162500000,0.300000000 +2016-12-24,0.162500000,0.300000000 +2016-12-25,0.365000000,0.300000000 +2016-12-26,0.191250000,0.300000000 +2016-12-27,0.147195122,0.300000000 +2016-12-28,0.057817372,0.300000000 +2016-12-29,0.034304198,0.300000000 +2016-12-30,0.040080751,0.300000000 +2016-12-31,0.043928113,0.300000000 +2017-01-01,0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..efe48119fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +2016-12,0.042694456,0.300000000 +2017-01,0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5736198e2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.042694456,0.300000000 +"2017 Q1",0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3e3daf710e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +2016,0.042694456,0.300000000 +2017,0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cd3c48a6d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Running","[2] Number of Jobs Running" +2016-12-22,1,1 +2016-12-23,2,1 +2016-12-24,2,1 +2016-12-25,5,1 +2016-12-26,10,1 +2016-12-27,41,1 +2016-12-28,449,1 +2016-12-29,1739,1 +2016-12-30,28854,1 +2016-12-31,29602,1 +2017-01-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..925b7dc776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Running","[2] Number of Jobs Running" +2016-12,56208,1 +2017-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5657e279e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Running","[2] Number of Jobs Running" +"2016 Q4",56208,1 +"2017 Q1",16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cfc70429a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Running","[2] Number of Jobs Running" +2016,56208,1 +2017,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d688831a35 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Started","[2] Number of Jobs Started" +2016-12-22,1,1 +2016-12-23,1,0 +2016-12-24,0,0 +2016-12-25,3,0 +2016-12-26,5,0 +2016-12-27,31,0 +2016-12-28,408,0 +2016-12-29,1290,0 +2016-12-30,27115,0 +2016-12-31,27354,0 +2017-01-01,15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f1a7bbb780 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Started","[2] Number of Jobs Started" +2016-12,56208,1 +2017-01,15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..54cd0b22c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Started","[2] Number of Jobs Started" +"2016 Q4",56208,1 +"2017 Q1",15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e52504a543 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Started","[2] Number of Jobs Started" +2016,56208,1 +2017,15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3047699123 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,64414 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..404763a5ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,69241 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..404763a5ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,69241 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..404763a5ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,69241 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c70274fdc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +2016-12-22,0,1 +2016-12-23,1,0 +2016-12-24,0,0 +2016-12-25,1,0 +2016-12-26,5,0 +2016-12-27,18,0 +2016-12-28,379,0 +2016-12-29,1206,0 +2016-12-30,25660,0 +2016-12-31,24111,0 +2017-01-01,13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e319a4de5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +2016-12,56208,1 +2017-01,13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a31e74a134 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +"2016 Q4",56208,1 +"2017 Q1",13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3f6c8e29a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +2016,56208,1 +2017,13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..98fa24dee6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] CPU Hours: Total","[2] CPU Hours: Total" +2016-12-22,203.3000,200.9567 +2016-12-23,296.6036,288.0000 +2016-12-24,312.0000,288.0000 +2016-12-25,490.2700,288.0000 +2016-12-26,1968.3333,288.0000 +2016-12-27,15265.1447,288.0000 +2016-12-28,81700.7103,288.0000 +2016-12-29,170973.7833,288.0000 +2016-12-30,274831.2672,288.0000 +2016-12-31,221941.6297,288.0000 +2017-01-01,69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..96f9ce8626 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] CPU Hours: Total","[2] CPU Hours: Total" +2016-12,767983.0422,2792.9567 +2017-01,69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b3957f1fb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] CPU Hours: Total","[2] CPU Hours: Total" +"2016 Q4",767983.0422,2792.9567 +"2017 Q1",69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c01e050aa7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] CPU Hours: Total","[2] CPU Hours: Total" +2016,767983.0422,2792.9567 +2017,69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..42d62245f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] GPU Hours: Total","[2] GPU Hours: Total" +2016-12-22,0.0000,33.4928 +2016-12-23,0.0000,48.0000 +2016-12-24,0.0000,48.0000 +2016-12-25,0.0000,48.0000 +2016-12-26,0.0000,48.0000 +2016-12-27,0.0000,48.0000 +2016-12-28,0.0000,48.0000 +2016-12-29,0.0000,48.0000 +2016-12-30,0.0000,48.0000 +2016-12-31,0.0000,48.0000 +2017-01-01,0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..65124723ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] GPU Hours: Total","[2] GPU Hours: Total" +2016-12,0.0000,465.4928 +2017-01,0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f9c635a790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] GPU Hours: Total","[2] GPU Hours: Total" +"2016 Q4",0.0000,465.4928 +"2017 Q1",0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..97b3347dcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] GPU Hours: Total","[2] GPU Hours: Total" +2016,0.0000,465.4928 +2017,0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c2b4e3c126 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Node Hours: Total","[2] Node Hours: Total" +2016-12-22,16.9417,16.7464 +2016-12-23,32.6036,24.0000 +2016-12-24,48.0000,24.0000 +2016-12-25,56.5078,24.0000 +2016-12-26,133.5208,24.0000 +2016-12-27,1182.3922,24.0000 +2016-12-28,8590.6167,24.0000 +2016-12-29,28504.4969,24.0000 +2016-12-30,52284.5600,24.0000 +2016-12-31,47364.7967,24.0000 +2017-01-01,17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..06e6680993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Node Hours: Total","[2] Node Hours: Total" +2016-12,138214.4364,232.7464 +2017-01,17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5d295d2641 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Node Hours: Total","[2] Node Hours: Total" +"2016 Q4",138214.4364,232.7464 +"2017 Q1",17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ac5c5c4cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Node Hours: Total","[2] Node Hours: Total" +2016,138214.4364,232.7464 +2017,17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ca74d4f661 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wait Hours: Total","[2] Wait Hours: Total" +2016-12-22,9.3322,0.0003 +2016-12-23,9.5964,0.0000 +2016-12-24,0.0000,0.0000 +2016-12-25,110.8856,0.0000 +2016-12-26,0.0033,0.0000 +2016-12-27,1978.2519,0.0000 +2016-12-28,3598.3319,0.0000 +2016-12-29,6101.8714,0.0000 +2016-12-30,195282.2372,0.0000 +2016-12-31,73421.2575,0.0000 +2017-01-01,25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1ea871b452 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wait Hours: Total","[2] Wait Hours: Total" +2016-12,280511.7675,0.0003 +2017-01,25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1009503fdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wait Hours: Total","[2] Wait Hours: Total" +"2016 Q4",280511.7675,0.0003 +"2017 Q1",25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..588cdc538e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wait Hours: Total","[2] Wait Hours: Total" +2016,280511.7675,0.0003 +2017,25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8f2ddc6856 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wall Hours: Total","[2] Wall Hours: Total" +2016-12-22,16.9417,16.7464 +2016-12-23,32.6036,24.0000 +2016-12-24,48.0000,24.0000 +2016-12-25,56.5078,24.0000 +2016-12-26,133.5208,24.0000 +2016-12-27,510.1833,24.0000 +2016-12-28,4550.1436,24.0000 +2016-12-29,20480.5094,24.0000 +2016-12-30,42838.5139,24.0000 +2016-12-31,42298.5450,24.0000 +2017-01-01,16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f213c66690 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wall Hours: Total","[2] Wall Hours: Total" +2016-12,110965.4692,232.7464 +2017-01,16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..88a1ee5614 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wall Hours: Total","[2] Wall Hours: Total" +"2016 Q4",110965.4692,232.7464 +"2017 Q1",16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..26e40e79b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wall Hours: Total","[2] Wall Hours: Total" +2016,110965.4692,232.7464 +2017,16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d898636a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver CPU Utilization (%)" +0,18.9655 +2,0.2880 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..16797753d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver CPU Utilization (%)" +0,4.2145 +2,0.0773 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cfbbfe8c0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver CPU Utilization (%)" +0,1.7379 +2,0.0317 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a711acc12f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver CPU Utilization (%)" +0,0.4648 +2,0.0084 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4b13cf72df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" +2016-12-22,0.2118,0.2093 +2016-12-23,0.3090,0.3000 +2016-12-24,0.3250,0.3000 +2016-12-25,0.5107,0.3000 +2016-12-26,1.0252,0.3000 +2016-12-27,3.1802,0.3000 +2016-12-28,17.0210,0.3000 +2016-12-29,35.6195,0.3000 +2016-12-30,57.2565,0.3000 +2016-12-31,46.2378,0.3000 +2017-01-01,14.4857,0.2589 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b0a3c19def --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" +2016-12,15.3843,0.2909 +2017-01,0.4673,0.0084 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9bd99b74de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" +"2016 Q4",15.3843,0.2909 +"2017 Q1",0.1610,0.0029 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dcc72982a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" +2016,15.3843,0.2909 +2017,0.0397,0.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..50435a20ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Users: Active" +1,23 +2,1 +"3 - 4",3 +"5 - 8",13 +"9 - 16",24 +"17 - 32",13 +"33 - 64",14 +"65 - 128",11 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..50435a20ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Users: Active" +1,23 +2,1 +"3 - 4",3 +"5 - 8",13 +"9 - 16",24 +"17 - 32",13 +"33 - 64",14 +"65 - 128",11 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..50435a20ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Users: Active" +1,23 +2,1 +"3 - 4",3 +"5 - 8",13 +"9 - 16",24 +"17 - 32",13 +"33 - 64",14 +"65 - 128",11 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..50435a20ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Users: Active" +1,23 +2,1 +"3 - 4",3 +"5 - 8",13 +"9 - 16",24 +"17 - 32",13 +"33 - 64",14 +"65 - 128",11 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..612353e95e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" +2016-12-22,0,0,0,0,2,0,0,0,0,0 +2016-12-23,1,0,0,0,2,0,0,0,0,0 +2016-12-24,1,0,0,0,2,0,0,0,0,0 +2016-12-25,1,0,0,0,2,1,0,0,0,0 +2016-12-26,1,0,0,0,3,1,0,0,0,0 +2016-12-27,3,0,0,2,6,2,1,2,1,0 +2016-12-28,5,0,0,3,10,5,2,3,2,0 +2016-12-29,8,1,3,8,13,5,7,6,3,0 +2016-12-30,21,1,3,11,21,11,12,11,4,1 +2016-12-31,17,1,2,12,17,7,11,8,2,1 +2017-01-01,9,1,2,10,13,8,7,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b573711cfe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" +2016-12,22,1,3,13,24,13,13,11,4,1 +2017-01,9,1,2,10,13,8,7,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..29b4e7e086 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" +"2016 Q4",22,1,3,13,24,13,13,11,4,1 +"2017 Q1",9,1,2,10,13,8,7,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9de30b03e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" +2016,22,1,3,13,24,13,13,11,4,1 +2017,9,1,2,10,13,8,7,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ffb8bf80f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of PIs: Active" +1,18 +2,1 +"3 - 4",3 +"5 - 8",11 +"9 - 16",19 +"17 - 32",11 +"33 - 64",11 +"65 - 128",10 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ffb8bf80f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of PIs: Active" +1,18 +2,1 +"3 - 4",3 +"5 - 8",11 +"9 - 16",19 +"17 - 32",11 +"33 - 64",11 +"65 - 128",10 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ffb8bf80f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of PIs: Active" +1,18 +2,1 +"3 - 4",3 +"5 - 8",11 +"9 - 16",19 +"17 - 32",11 +"33 - 64",11 +"65 - 128",10 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ffb8bf80f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of PIs: Active" +1,18 +2,1 +"3 - 4",3 +"5 - 8",11 +"9 - 16",19 +"17 - 32",11 +"33 - 64",11 +"65 - 128",10 +"129 - 256",4 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b4323ac35f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" +2016-12-22,0,0,0,0,2,0,0,0,0,0 +2016-12-23,1,0,0,0,2,0,0,0,0,0 +2016-12-24,1,0,0,0,2,0,0,0,0,0 +2016-12-25,1,0,0,0,2,1,0,0,0,0 +2016-12-26,1,0,0,0,3,1,0,0,0,0 +2016-12-27,3,0,0,2,5,2,1,2,1,0 +2016-12-28,5,0,0,3,8,3,2,3,2,0 +2016-12-29,8,1,3,6,10,3,5,6,3,0 +2016-12-30,16,1,3,9,16,9,10,10,4,1 +2016-12-31,14,1,2,10,14,6,8,8,2,1 +2017-01-01,7,1,2,9,12,6,5,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76fc0fd135 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" +2016-12,17,1,3,11,19,11,10,10,4,1 +2017-01,7,1,2,9,12,6,5,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..86b1dff11b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" +"2016 Q4",17,1,3,11,19,11,10,10,4,1 +"2017 Q1",7,1,2,9,12,6,5,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f27fbf07c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" +2016,17,1,3,11,19,11,10,10,4,1 +2017,7,1,2,9,12,6,5,4,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9dd85d2285 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Resources: Active" +1,5 +2,2 +"3 - 4",3 +"5 - 8",4 +"9 - 16",5 +"17 - 32",4 +"33 - 64",3 +"65 - 128",3 +"129 - 256",2 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9dd85d2285 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Resources: Active" +1,5 +2,2 +"3 - 4",3 +"5 - 8",4 +"9 - 16",5 +"17 - 32",4 +"33 - 64",3 +"65 - 128",3 +"129 - 256",2 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9dd85d2285 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Resources: Active" +1,5 +2,2 +"3 - 4",3 +"5 - 8",4 +"9 - 16",5 +"17 - 32",4 +"33 - 64",3 +"65 - 128",3 +"129 - 256",2 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9dd85d2285 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Resources: Active" +1,5 +2,2 +"3 - 4",3 +"5 - 8",4 +"9 - 16",5 +"17 - 32",4 +"33 - 64",3 +"65 - 128",3 +"129 - 256",2 +"257 - 512",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fcfb2150c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" +2016-12-22,0,0,0,0,2,0,0,0,0,0 +2016-12-23,1,0,0,0,2,0,0,0,0,0 +2016-12-24,1,0,0,0,2,0,0,0,0,0 +2016-12-25,1,0,0,0,2,1,0,0,0,0 +2016-12-26,1,0,0,0,3,1,0,0,0,0 +2016-12-27,2,0,0,2,5,2,1,1,1,0 +2016-12-28,2,0,0,2,5,3,2,2,2,0 +2016-12-29,2,1,3,3,5,3,3,2,2,0 +2016-12-30,4,1,3,4,5,4,3,3,2,1 +2016-12-31,4,2,2,4,5,3,3,2,2,1 +2017-01-01,4,1,2,4,5,3,2,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9b104a7743 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" +2016-12,4,2,3,4,5,4,3,3,2,1 +2017-01,4,1,2,4,5,3,2,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..64da8a4ae0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" +"2016 Q4",4,2,3,4,5,4,3,3,2,1 +"2017 Q1",4,1,2,4,5,3,2,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ba43043ecf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" +2016,4,2,3,4,5,4,3,3,2,1 +2017,4,1,2,4,5,3,2,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8936ed96d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c0e6d67029 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c0e6d67029 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c0e6d67029 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..761462d4e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" +2016-12-22,0,0,0,0,202.12833333,0,0,0,0,0 +2016-12-23,8.60361111,0,0,0,288.00000000,0,0,0,0,0 +2016-12-24,24.00000000,0,0,0,288.00000000,0,0,0,0,0 +2016-12-25,24.00000000,0,0,0,200.63888889,76.17666667,0,0,0,0 +2016-12-26,24.00000000,0,0,0,135.04166667,576.00000000,0,0,0,0 +2016-12-27,10.64601852,0,0,94.23481481,248.25777778,231.74256410,243.18222222,1306.80833333,2997.12000000,0 +2016-12-28,8.78788644,0,0,122.16625000,166.40375661,471.85305556,1074.67333333,1507.06692810,3440.36148148,0 +2016-12-29,13.40730206,7.24000000,29.80072222,22.73914396,101.22594378,649.60562092,798.73777778,1664.46660819,4135.82222222,0 +2016-12-30,6.90473878,48.00000000,3.61978632,2.18327092,10.24904606,107.32861811,228.24631313,1185.01319865,3432.16606061,3497.71333333 +2016-12-31,7.42391623,14.57163265,73.27320988,2.68285810,7.26953416,130.50399356,382.53380952,903.59550617,1041.07851852,5701.54666667 +2017-01-01,10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bc86265e40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" +2016-12,12.08505760,15.13530612,6.21603370,2.64634175,10.27666632,334.29748439,449.30588123,2662.12213889,10203.51074074,6348.48666667 +2017-01,10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8dd76e0de8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" +"2016 Q4",12.08505760,15.13530612,6.21603370,2.64634175,10.27666632,334.29748439,449.30588123,2662.12213889,10203.51074074,6348.48666667 +"2017 Q1",10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..79d70f4940 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" +2016,12.08505760,15.13530612,6.21603370,2.64634175,10.27666632,334.29748439,449.30588123,2662.12213889,10203.51074074,6348.48666667 +2017,10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7bf796e22c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0 +2016-12-23,0.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-24,0.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-25,0.00000000,0,0,0,16.00000000,0.00000000,0,0,0,0 +2016-12-26,0.00000000,0,0,0,6.00000000,0.00000000,0,0,0,0 +2016-12-27,0.00000000,0,0,0.00000000,3.42857143,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-28,0.00000000,0,0,0.00000000,1.14285714,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-29,0.00000000,0.00000000,0.00000000,0.00000000,0.28915663,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,0.00000000,0.00000000,0.00000000,0.00000000,0.00870511,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00000000,0.00000000,0.00000000,0.00000000,0.00445228,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bef8b75874 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +2016-12,0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1faea3cceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +"2016 Q4",0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ad0fd6b630 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +2016,0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b8e72d2c03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +2016-12-22,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-23,0.0000,0,0,0,1.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,1.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,0.6667,0.0000,0,0,0,0 +2016-12-26,0.0000,0,0,0,0.2500,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,0.0000,0.1429,0.0000,0.0000,0.0000,0.0000,0 +2016-12-28,0.0000,0,0,0.0000,0.0476,0.0000,0.0000,0.0000,0.0000,0 +2016-12-29,0.0000,0.0000,0.0000,0.0000,0.0120,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0.0000,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4a160c013a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3c9a2b6a6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..012c23a4fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +2016,0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e2bbbe38a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By CPU Hours (Core Count)" +1,1.0000 +2,2.0000 +"3 - 4",4.0000 +"5 - 8",7.9949 +"9 - 16",12.8641 +"17 - 32",29.6605 +"33 - 64",57.1742 +"65 - 128",94.6628 +"129 - 256",187.5579 +"257 - 512",335.9767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e2bbbe38a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By CPU Hours (Core Count)" +1,1.0000 +2,2.0000 +"3 - 4",4.0000 +"5 - 8",7.9949 +"9 - 16",12.8641 +"17 - 32",29.6605 +"33 - 64",57.1742 +"65 - 128",94.6628 +"129 - 256",187.5579 +"257 - 512",335.9767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e2bbbe38a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By CPU Hours (Core Count)" +1,1.0000 +2,2.0000 +"3 - 4",4.0000 +"5 - 8",7.9949 +"9 - 16",12.8641 +"17 - 32",29.6605 +"33 - 64",57.1742 +"65 - 128",94.6628 +"129 - 256",187.5579 +"257 - 512",335.9767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e2bbbe38a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By CPU Hours (Core Count)" +1,1.0000 +2,2.0000 +"3 - 4",4.0000 +"5 - 8",7.9949 +"9 - 16",12.8641 +"17 - 32",29.6605 +"33 - 64",57.1742 +"65 - 128",94.6628 +"129 - 256",187.5579 +"257 - 512",335.9767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6e2b243d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 +2016-12-23,1.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-24,1.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-25,1.0000,0,0,0,12.0000,24.0000,0,0,0,0 +2016-12-26,1.0000,0,0,0,12.8010,24.0000,0,0,0,0 +2016-12-27,1.0000,0,0,8.0000,14.7307,28.6879,64.0000,89.1689,144.0000,0 +2016-12-28,1.0000,0,0,8.0000,14.4214,30.6797,59.4342,95.6054,186.6424,0 +2016-12-29,1.0000,2.0000,4.0000,7.9670,14.3348,31.0970,56.1561,94.2313,187.1857,0 +2016-12-30,1.0000,2.0000,4.0000,7.9934,12.7911,30.6708,56.6778,94.7927,191.0737,335.9577 +2016-12-31,1.0000,2.0000,4.0000,7.9995,12.4744,26.0424,58.0319,95.6675,192.0000,336.0000 +2017-01-01,1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7b8f518bf0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,1.0000,2.0000,4.0000,7.9949,12.8973,29.8837,57.2790,94.7527,187.5585,335.9767 +2017-01,1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d31faa3599 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",1.0000,2.0000,4.0000,7.9949,12.8973,29.8837,57.2790,94.7527,187.5585,335.9767 +"2017 Q1",1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..aa74f7866c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" +2016,1.0000,2.0000,4.0000,7.9949,12.8973,29.8837,57.2790,94.7527,187.5585,335.9767 +2017,1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6c3098c996 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 +2016-12-23,0.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,12.0000,0.0000,0,0,0,0 +2016-12-26,0.0000,0,0,0,12.0000,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-28,0.0000,0,0,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-29,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..429299c1eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b1b221900b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..eec96d8299 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8e30061803 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2eba5956e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2eba5956e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2eba5956e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8390eb3ae8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" +2016-12-22,0,0,0,0,16.84402778,0,0,0,0,0 +2016-12-23,8.60361111,0,0,0,24.00000000,0,0,0,0,0 +2016-12-24,24.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-25,24.00000000,0,0,0,16.71990741,3.17402778,0,0,0,0 +2016-12-26,24.00000000,0,0,0,10.69010417,24.00000000,0,0,0,0 +2016-12-27,10.64601852,0,0,11.77935185,17.15728175,11.37042735,30.39777778,108.90069444,249.76000000,0 +2016-12-28,8.78788644,0,0,15.27078125,11.76839947,21.58686343,134.33416667,123.18668301,223.02259259,0 +2016-12-29,13.40730206,3.62000000,7.45018056,2.86114450,7.20452811,37.69553922,80.17761905,136.33059942,272.17777778,0 +2016-12-30,6.90473878,24.00000000,0.90494658,0.27326942,0.81252131,6.33885621,24.09976010,95.63723064,217.72141414,291.47611111 +2016-12-31,7.42391623,7.28581633,18.31830247,0.33539378,0.58915499,10.90767311,35.28030423,77.56779012,65.08074074,475.12888889 +2017-01-01,10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2c5715be45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" +2016-12,12.08505760,7.56765306,1.55400842,0.33112911,0.80947667,19.71264045,45.88940134,218.91183681,663.28361111,529.04055556 +2017-01,10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c25b5a6550 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" +"2016 Q4",12.08505760,7.56765306,1.55400842,0.33112911,0.80947667,19.71264045,45.88940134,218.91183681,663.28361111,529.04055556 +"2017 Q1",10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b58133e1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" +2016,12.08505760,7.56765306,1.55400842,0.33112911,0.80947667,19.71264045,45.88940134,218.91183681,663.28361111,529.04055556 +2017,10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..88b53ed8c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..88b53ed8c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..88b53ed8c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..88b53ed8c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +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/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..771b0729a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 +2016-12-23,1.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-24,1.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-25,1.0000,0,0,0,12.0000,24.0000,0,0,0,0 +2016-12-26,1.0000,0,0,0,14.5000,24.0000,0,0,0,0 +2016-12-27,1.0000,0,0,8.0000,14.8571,30.1538,64.0000,90.0000,144.0000,0 +2016-12-28,1.0000,0,0,8.0000,14.0000,30.5000,56.0000,95.5294,186.6667,0 +2016-12-29,1.0000,2.0000,4.0000,7.9856,12.8675,30.5882,56.0000,93.0526,184.0000,0 +2016-12-30,1.0000,2.0000,4.0000,7.9995,12.0747,25.9496,55.0000,95.3333,184.7273,312.0000 +2016-12-31,1.0000,2.0000,4.0000,7.9998,12.0312,22.9565,51.0476,95.1111,192.0000,336.0000 +2017-01-01,1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..86072b7bf2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" +2016-12,1.0000,2.0000,4.0000,7.9997,12.0355,24.8315,53.3793,94.5500,185.3333,312.0000 +2017-01,1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..902ed2b119 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" +"2016 Q4",1.0000,2.0000,4.0000,7.9997,12.0355,24.8315,53.3793,94.5500,185.3333,312.0000 +"2017 Q1",1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f5f2be89f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" +2016,1.0000,2.0000,4.0000,7.9997,12.0355,24.8315,53.3793,94.5500,185.3333,312.0000 +2017,1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7b310d09ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +1,0.94761662,0.021277245449250474 +2,27.04697846,0.2774036771007414 +"3 - 4",223.20642001,1.3670657449209522 +"5 - 8",2.38386221,0.04482950539481939 +"9 - 16",1.24761007,0.025114172332948253 +"17 - 32",14.34069231,1.304127513906302 +"33 - 64",7.00926843,0.8845416369380606 +"65 - 128",22.27161812,3.7233393634709016 +"129 - 256",10.57740079,5.825320513630149 +"257 - 512",6.67972222,1.4827636364381243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7b310d09ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +1,0.94761662,0.021277245449250474 +2,27.04697846,0.2774036771007414 +"3 - 4",223.20642001,1.3670657449209522 +"5 - 8",2.38386221,0.04482950539481939 +"9 - 16",1.24761007,0.025114172332948253 +"17 - 32",14.34069231,1.304127513906302 +"33 - 64",7.00926843,0.8845416369380606 +"65 - 128",22.27161812,3.7233393634709016 +"129 - 256",10.57740079,5.825320513630149 +"257 - 512",6.67972222,1.4827636364381243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7b310d09ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +1,0.94761662,0.021277245449250474 +2,27.04697846,0.2774036771007414 +"3 - 4",223.20642001,1.3670657449209522 +"5 - 8",2.38386221,0.04482950539481939 +"9 - 16",1.24761007,0.025114172332948253 +"17 - 32",14.34069231,1.304127513906302 +"33 - 64",7.00926843,0.8845416369380606 +"65 - 128",22.27161812,3.7233393634709016 +"129 - 256",10.57740079,5.825320513630149 +"257 - 512",6.67972222,1.4827636364381243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7b310d09ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +1,0.94761662,0.021277245449250474 +2,27.04697846,0.2774036771007414 +"3 - 4",223.20642001,1.3670657449209522 +"5 - 8",2.38386221,0.04482950539481939 +"9 - 16",1.24761007,0.025114172332948253 +"17 - 32",14.34069231,1.304127513906302 +"33 - 64",7.00926843,0.8845416369380606 +"65 - 128",22.27161812,3.7233393634709016 +"129 - 256",10.57740079,5.825320513630149 +"257 - 512",6.67972222,1.4827636364381243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c6b75987e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" +2016-12-22,0,0,0,0,4.66625000,0,0,0,0,0 +2016-12-23,9.59638889,0,0,0,0.00000000,0,0,0,0,0 +2016-12-24,0.00000000,0,0,0,0.00000000,0,0,0,0,0 +2016-12-25,0.00000000,0,0,0,0.06333333,55.41111111,0,0,0,0 +2016-12-26,0.00000000,0,0,0,0.00066667,0.00000000,0,0,0,0 +2016-12-27,0.00000000,0,0,227.90537037,8.47087963,8.54411616,0.00000000,96.80513889,78.78861111,0 +2016-12-28,0.04817672,0,0,140.59666667,13.48954365,42.30315657,36.87611111,99.70848291,0.00017361,0 +2016-12-29,0.06132672,0.00444444,131.82598611,13.37330150,0.53786514,33.35175000,11.39555556,17.07518519,25.72861111,0 +2016-12-30,1.10740738,0.00000000,226.93986503,1.39299409,0.94008446,11.52861111,8.42826577,2.98377976,0.77944444,6.67972222 +2016-12-31,1.35311510,27.32576747,19.28881944,3.95346547,0.89391908,19.21645951,0.49553571,2.09069444,5.17777778,0.00000000 +2017-01-01,0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f3b02448dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" +2016-12,0.98849809,27.04697846,223.20642001,2.69523606,0.93139446,17.51327403,7.11443487,26.93531597,9.20631944,6.67972222 +2017-01,0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5b8efadac8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" +"2016 Q4",0.98849809,27.04697846,223.20642001,2.69523606,0.93139446,17.51327403,7.11443487,26.93531597,9.20631944,6.67972222 +"2017 Q1",0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c37f8171d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" +2016,0.98849809,27.04697846,223.20642001,2.69523606,0.93139446,17.51327403,7.11443487,26.93531597,9.20631944,6.67972222 +2017,0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a11fa8558f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.015228120582305632 +"17 - 32",8.28519444,0.5577161576430426 +"33 - 64",5.29163641,0.817315922487462 +"65 - 128",22.99202805, +"129 - 256",46.94807540, +"257 - 512",18.89583333,1.2783184846305509 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..81a067564c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.028202744752572246 +"17 - 32",8.28519444,1.1171022585583983 +"33 - 64",5.29163641,1.4989071580899005 +"65 - 128",22.99202805,2.657295484972631 +"129 - 256",46.94807540,9.002831841794622 +"257 - 512",18.89583333,13.346247657795425 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..81a067564c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.028202744752572246 +"17 - 32",8.28519444,1.1171022585583983 +"33 - 64",5.29163641,1.4989071580899005 +"65 - 128",22.99202805,2.657295484972631 +"129 - 256",46.94807540,9.002831841794622 +"257 - 512",18.89583333,13.346247657795425 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..81a067564c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.028202744752572246 +"17 - 32",8.28519444,1.1171022585583983 +"33 - 64",5.29163641,1.4989071580899005 +"65 - 128",22.99202805,2.657295484972631 +"129 - 256",46.94807540,9.002831841794622 +"257 - 512",18.89583333,13.346247657795425 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..af73e7e718 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" +2016-12-22,0,0,0,0,16.84402778,0,0,0,0,0 +2016-12-23,8.60361111,0,0,0,24.00000000,0,0,0,0,0 +2016-12-24,24.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-25,24.00000000,0,0,0,16.71990741,3.17402778,0,0,0,0 +2016-12-26,24.00000000,0,0,0,10.69010417,24.00000000,0,0,0,0 +2016-12-27,10.64601852,0,0,11.77935185,17.15728175,8.24136752,3.79972222,14.90409722,20.81333333,0 +2016-12-28,8.78788644,0,0,15.27078125,11.76839947,15.56885417,18.38902778,15.87996732,18.58521605,0 +2016-12-29,13.40730206,3.62000000,7.45018056,2.86114450,7.20452811,21.11080065,14.62440476,17.85836257,22.24888889,0 +2016-12-30,6.90473878,24.00000000,0.90494658,0.27326942,0.81185654,3.56487162,4.11833965,12.69962963,17.98661616,10.41138889 +2016-12-31,7.42391623,7.28581633,18.31830247,0.33539378,0.58783261,5.15196055,6.80177249,9.52966667,5.42228395,16.96888889 +2017-01-01,10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b1317ab531 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" +2016-12,12.08505760,7.56765306,1.55400842,0.33112911,0.80836307,11.41916042,8.05159962,28.44005208,54.76854167,18.89583333 +2017-01,10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1d078444f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" +"2016 Q4",12.08505760,7.56765306,1.55400842,0.33112911,0.80836307,11.41916042,8.05159962,28.44005208,54.76854167,18.89583333 +"2017 Q1",10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5435c41c2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" +2016,12.08505760,7.56765306,1.55400842,0.33112911,0.80836307,11.41916042,8.05159962,28.44005208,54.76854167,18.89583333 +2017,10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c31588a295 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","User Expansion Factor" +1,1.0712 +2,4.4910 +"3 - 4",127.6190 +"5 - 8",9.2691 +"9 - 16",2.5196 +"17 - 32",2.7553 +"33 - 64",2.3863 +"65 - 128",2.0131 +"129 - 256",1.2892 +"257 - 512",1.3204 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c31588a295 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","User Expansion Factor" +1,1.0712 +2,4.4910 +"3 - 4",127.6190 +"5 - 8",9.2691 +"9 - 16",2.5196 +"17 - 32",2.7553 +"33 - 64",2.3863 +"65 - 128",2.0131 +"129 - 256",1.2892 +"257 - 512",1.3204 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c31588a295 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","User Expansion Factor" +1,1.0712 +2,4.4910 +"3 - 4",127.6190 +"5 - 8",9.2691 +"9 - 16",2.5196 +"17 - 32",2.7553 +"33 - 64",2.3863 +"65 - 128",2.0131 +"129 - 256",1.2892 +"257 - 512",1.3204 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c31588a295 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","User Expansion Factor" +1,1.0712 +2,4.4910 +"3 - 4",127.6190 +"5 - 8",9.2691 +"9 - 16",2.5196 +"17 - 32",2.7553 +"33 - 64",2.3863 +"65 - 128",2.0131 +"129 - 256",1.2892 +"257 - 512",1.3204 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..468f01ed0d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" +2016-12-22,0,0,0,0,1.0249,0,0,0,0,0 +2016-12-23,1.0610,0,0,0,1.0247,0,0,0,0,0 +2016-12-24,1.0610,0,0,0,1.0247,0,0,0,0,0 +2016-12-25,1.0610,0,0,0,1.0237,1.6127,0,0,0,0 +2016-12-26,1.0610,0,0,0,1.0141,1.5220,0,0,0,0 +2016-12-27,1.0459,0,0,4.8681,1.0652,1.5286,1.0000,2.4204,2.0942,0 +2016-12-28,1.0017,0,0,3.8006,1.2217,1.3810,1.1503,2.4463,1.1570,0 +2016-12-29,1.0021,1.0001,9.4448,3.9818,1.1607,1.8698,1.2642,2.0881,1.2520,0 +2016-12-30,1.0685,1.0001,246.9648,6.3712,2.1290,3.6189,3.0067,1.9162,1.0828,1.4826 +2016-12-31,1.1475,4.7123,1.2556,12.1702,2.4884,2.7548,1.2306,1.5938,1.1414,1.1213 +2017-01-01,1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..abb617eb18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" +2016-12,1.0806,4.5740,144.6304,8.8318,2.1387,2.3439,1.9346,1.9787,1.1954,1.3204 +2017-01,1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..73e21ed0b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" +"2016 Q4",1.0806,4.5740,144.6304,8.8318,2.1387,2.3439,1.9346,1.9787,1.1954,1.3204 +"2017 Q1",1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..df0eca0bca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" +2016,1.0806,4.5740,144.6304,8.8318,2.1387,2.3439,1.9346,1.9787,1.1954,1.3204 +2017,1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..185ac84045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Ended" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..185ac84045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Ended" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..185ac84045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Ended" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..185ac84045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Ended" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..62b61297ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" +2016-12-22,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0,0,0 +2016-12-30,2720,0,714,17674,5313,109,37,35,3,1 +2016-12-31,3067,97,6,14372,10481,58,16,34,9,1 +2017-01-01,1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..65f7760445 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" +2016-12,5787,97,720,32046,15794,167,53,69,12,2 +2017-01,1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2f70550df9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" +"2016 Q4",5787,97,720,32046,15794,167,53,69,12,2 +"2017 Q1",1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ea131f551 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" +2016,5787,97,720,32046,15794,167,53,69,12,2 +2017,1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..19d5b98a2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Max (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",8 +"9 - 16",16 +"17 - 32",32 +"33 - 64",64 +"65 - 128",128 +"129 - 256",192 +"257 - 512",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..19d5b98a2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Max (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",8 +"9 - 16",16 +"17 - 32",32 +"33 - 64",64 +"65 - 128",128 +"129 - 256",192 +"257 - 512",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..19d5b98a2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Max (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",8 +"9 - 16",16 +"17 - 32",32 +"33 - 64",64 +"65 - 128",128 +"129 - 256",192 +"257 - 512",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..19d5b98a2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Max (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",8 +"9 - 16",16 +"17 - 32",32 +"33 - 64",64 +"65 - 128",128 +"129 - 256",192 +"257 - 512",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b49772402d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,12,0,0,0,0,0 +2016-12-23,1,0,0,0,12,0,0,0,0,0 +2016-12-24,1,0,0,0,12,0,0,0,0,0 +2016-12-25,1,0,0,0,12,24,0,0,0,0 +2016-12-26,1,0,0,0,16,24,0,0,0,0 +2016-12-27,1,0,0,8,16,32,64,96,144,0 +2016-12-28,1,0,0,8,16,32,64,112,192,0 +2016-12-29,1,2,4,8,16,32,64,112,192,0 +2016-12-30,1,2,4,8,16,32,64,128,192,336 +2016-12-31,1,2,4,8,16,32,64,112,192,336 +2017-01-01,1,2,4,8,16,32,64,128,192,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..723811aa3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" +2016-12,1,2,4,8,16,32,64,128,192,336 +2017-01,1,2,4,8,16,32,64,128,192,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..63cab2c860 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" +"2016 Q4",1,2,4,8,16,32,64,128,192,336 +"2017 Q1",1,2,4,8,16,32,64,128,192,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..563eb5ac92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" +2016,1,2,4,8,16,32,64,128,192,336 +2017,1,2,4,8,16,32,64,128,192,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60da25f374 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Min (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",5 +"9 - 16",12 +"17 - 32",20 +"33 - 64",36 +"65 - 128",72 +"129 - 256",144 +"257 - 512",288 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60da25f374 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Min (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",5 +"9 - 16",12 +"17 - 32",20 +"33 - 64",36 +"65 - 128",72 +"129 - 256",144 +"257 - 512",288 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60da25f374 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Min (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",5 +"9 - 16",12 +"17 - 32",20 +"33 - 64",36 +"65 - 128",72 +"129 - 256",144 +"257 - 512",288 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60da25f374 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Min (Core Count)" +1,1 +2,2 +"3 - 4",4 +"5 - 8",5 +"9 - 16",12 +"17 - 32",20 +"33 - 64",36 +"65 - 128",72 +"129 - 256",144 +"257 - 512",288 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9d3bbf33c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,12,0,0,0,0,0 +2016-12-23,1,0,0,0,12,0,0,0,0,0 +2016-12-24,1,0,0,0,12,0,0,0,0,0 +2016-12-25,1,0,0,0,12,24,0,0,0,0 +2016-12-26,1,0,0,0,12,24,0,0,0,0 +2016-12-27,1,0,0,8,12,24,64,72,144,0 +2016-12-28,1,0,0,8,12,20,48,72,144,0 +2016-12-29,1,2,4,5,12,20,40,72,144,0 +2016-12-30,1,2,4,5,12,20,40,72,144,288 +2016-12-31,1,2,4,5,12,20,36,72,192,336 +2017-01-01,1,2,4,5,12,20,36,72,160,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..80867be114 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" +2016-12,1,2,4,5,12,20,36,72,144,288 +2017-01,1,2,4,5,12,20,36,72,160,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cacdfdb4df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" +"2016 Q4",1,2,4,5,12,20,36,72,144,288 +"2017 Q1",1,2,4,5,12,20,36,72,160,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a5af11a242 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" +2016,1,2,4,5,12,20,36,72,144,288 +2017,1,2,4,5,12,20,36,72,160,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..6497b1e019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv @@ -0,0 +1,19 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +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.210000000 +"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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..6497b1e019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +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.210000000 +"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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a78f3ada1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a78f3ada1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a78f3ada1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a78f3ada1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +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/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fc38e65138 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0.150000000,0,0,0,0,0 +2016-12-23,0.025000000,0,0,0,0.150000000,0,0,0,0,0 +2016-12-24,0.025000000,0,0,0,0.150000000,0,0,0,0,0 +2016-12-25,0.025000000,0,0,0,0.150000000,0.600000000,0,0,0,0 +2016-12-26,0.025000000,0,0,0,0.120833333,0.600000000,0,0,0,0 +2016-12-27,0.012500000,0,0,0.100000000,0.074285714,0.376923077,1.600000000,2.250000000,3.600000000,0 +2016-12-28,0.012500000,0,0,0.100000000,0.070000000,0.254166667,0.700000000,1.194117647,2.333333333,0 +2016-12-29,0.012500000,0.050000000,0.033333333,0.066546474,0.064337349,0.254901961,0.466666667,1.163157895,2.300000000,0 +2016-12-30,0.006250000,0.050000000,0.033333333,0.049996850,0.060373594,0.162184874,0.458333333,0.794444444,2.309090909,7.800000000 +2016-12-31,0.006250000,0.025000000,0.050000000,0.049998720,0.060155830,0.191304348,0.425396825,1.188888889,2.400000000,8.400000000 +2017-01-01,0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7cbc1e713c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" +2016-12,0.006250000,0.025000000,0.033333333,0.049998260,0.060177706,0.155196629,0.444827586,0.787916667,2.316666667,7.800000000 +2017-01,0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ed0c4c50bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.006250000,0.025000000,0.033333333,0.049998260,0.060177706,0.155196629,0.444827586,0.787916667,2.316666667,7.800000000 +"2017 Q1",0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..875bf6e99d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" +2016,0.006250000,0.025000000,0.033333333,0.049998260,0.060177706,0.155196629,0.444827586,0.787916667,2.316666667,7.800000000 +2017,0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..62dda5ff16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Running" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..62dda5ff16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Running" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..62dda5ff16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Running" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..62dda5ff16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Running" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..23c3e1b026 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" +2016-12-22,0,0,0,0,2,0,0,0,0,0 +2016-12-23,1,0,0,0,2,0,0,0,0,0 +2016-12-24,1,0,0,0,2,0,0,0,0,0 +2016-12-25,1,0,0,0,3,2,0,0,0,0 +2016-12-26,1,0,0,0,8,2,0,0,0,0 +2016-12-27,3,0,0,6,14,13,1,4,1,0 +2016-12-28,340,0,0,16,42,24,2,17,9,0 +2016-12-29,1256,1,20,208,166,34,7,38,10,0 +2016-12-30,4513,1,728,17857,5514,119,44,66,11,2 +2016-12-31,3911,98,18,14650,10781,69,21,45,9,1 +2017-01-01,1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..011ac10997 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" +2016-12,6631,98,732,32324,16094,178,58,80,12,2 +2017-01,1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0e0580d46f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" +"2016 Q4",6631,98,732,32324,16094,178,58,80,12,2 +"2017 Q1",1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0ff03b718d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" +2016,6631,98,732,32324,16094,178,58,80,12,2 +2017,1168,1,12,10344,4864,93,48,34,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9349eaf47d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Started" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9349eaf47d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Started" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9349eaf47d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Started" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9349eaf47d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Started" +1,6955 +2,98 +"3 - 4",732 +"5 - 8",42390 +"9 - 16",20658 +"17 - 32",260 +"33 - 64",101 +"65 - 128",103 +"129 - 256",14 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d9e7f0a35c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" +2016-12-22,0,0,0,0,2,0,0,0,0,0 +2016-12-23,1,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,1,2,0,0,0,0 +2016-12-26,0,0,0,0,5,0,0,0,0,0 +2016-12-27,2,0,0,6,6,11,1,4,1,0 +2016-12-28,337,0,0,10,28,11,1,13,8,0 +2016-12-29,916,1,20,192,124,10,5,21,1,0 +2016-12-30,3257,0,708,17649,5348,85,37,28,1,2 +2016-12-31,2118,97,4,14467,10580,59,14,14,1,0 +2017-01-01,324,0,0,10066,4564,82,43,23,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..205f65f078 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" +2016-12,6631,98,732,32324,16094,178,58,80,12,2 +2017-01,324,0,0,10066,4564,82,43,23,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c573070f0c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" +"2016 Q4",6631,98,732,32324,16094,178,58,80,12,2 +"2017 Q1",324,0,0,10066,4564,82,43,23,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6a7cf7dc2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" +2016,6631,98,732,32324,16094,178,58,80,12,2 +2017,324,0,0,10066,4564,82,43,23,2,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9a7c6b79d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Submitted" +1,6629 +2,1 +"3 - 4",17 +"5 - 8",38249 +"9 - 16",19207 +"17 - 32",162 +"33 - 64",71 +"65 - 128",69 +"129 - 256",11 +"257 - 512",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7ce8c7785e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Submitted" +1,6954 +2,98 +"3 - 4",732 +"5 - 8",41398 +"9 - 16",19628 +"17 - 32",235 +"33 - 64",86 +"65 - 128",97 +"129 - 256",13 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7ce8c7785e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Submitted" +1,6954 +2,98 +"3 - 4",732 +"5 - 8",41398 +"9 - 16",19628 +"17 - 32",235 +"33 - 64",86 +"65 - 128",97 +"129 - 256",13 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7ce8c7785e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Number of Jobs Submitted" +1,6954 +2,98 +"3 - 4",732 +"5 - 8",41398 +"9 - 16",19628 +"17 - 32",235 +"33 - 64",86 +"65 - 128",97 +"129 - 256",13 +"257 - 512",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a46ef7e9a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" +2016-12-22,0,0,0,0,1,0,0,0,0,0 +2016-12-23,1,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,1,0,0,0,0,0 +2016-12-26,0,0,0,0,5,0,0,0,0,0 +2016-12-27,2,0,0,1,5,9,1,0,0,0 +2016-12-28,337,0,0,5,23,5,0,1,8,0 +2016-12-29,915,1,8,140,120,5,3,14,0,0 +2016-12-30,3257,0,8,17147,5142,55,27,23,1,0 +2016-12-31,1794,0,1,11882,10376,31,12,14,1,0 +2017-01-01,323,0,0,9074,3534,57,28,17,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ebee0bbd23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" +2016-12,6631,98,732,32324,16094,178,58,80,12,2 +2017-01,323,0,0,9074,3534,57,28,17,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0344c0fd74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" +"2016 Q4",6631,98,732,32324,16094,178,58,80,12,2 +"2017 Q1",323,0,0,9074,3534,57,28,17,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e578a36bc3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" +2016,6631,98,732,32324,16094,178,58,80,12,2 +2017,323,0,0,9074,3534,57,28,17,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0f38004aac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Total" +1,92614.1756 +2,1518.5183 +"3 - 4",5161.5356 +"5 - 8",97377.1386 +"9 - 16",195052.4044 +"17 - 32",62507.7644 +"33 - 64",29705.6467 +"65 - 128",221470.5378 +"129 - 256",122451.1422 +"257 - 512",12696.9733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0f38004aac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Total" +1,92614.1756 +2,1518.5183 +"3 - 4",5161.5356 +"5 - 8",97377.1386 +"9 - 16",195052.4044 +"17 - 32",62507.7644 +"33 - 64",29705.6467 +"65 - 128",221470.5378 +"129 - 256",122451.1422 +"257 - 512",12696.9733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0f38004aac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Total" +1,92614.1756 +2,1518.5183 +"3 - 4",5161.5356 +"5 - 8",97377.1386 +"9 - 16",195052.4044 +"17 - 32",62507.7644 +"33 - 64",29705.6467 +"65 - 128",221470.5378 +"129 - 256",122451.1422 +"257 - 512",12696.9733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0f38004aac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Total" +1,92614.1756 +2,1518.5183 +"3 - 4",5161.5356 +"5 - 8",97377.1386 +"9 - 16",195052.4044 +"17 - 32",62507.7644 +"33 - 64",29705.6467 +"65 - 128",221470.5378 +"129 - 256",122451.1422 +"257 - 512",12696.9733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b1856e7d3f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" +2016-12-22,0,0,0,0,404.2567,0,0,0,0,0 +2016-12-23,8.6036,0,0,0,576.0000,0,0,0,0,0 +2016-12-24,24.0000,0,0,0,576.0000,0,0,0,0,0 +2016-12-25,24.0000,0,0,0,601.9167,152.3533,0,0,0,0 +2016-12-26,24.0000,0,0,0,1080.3333,1152.0000,0,0,0,0 +2016-12-27,31.9381,0,0,565.4089,3475.6089,3012.6533,243.1822,5227.2333,2997.1200,0 +2016-12-28,2987.8814,0,0,1954.6600,6988.9578,11324.4733,2149.3467,25620.1378,30963.2533,0 +2016-12-29,16839.5714,7.2400,596.0144,4729.7419,16803.5067,22086.5911,5591.1644,63249.7311,41358.2222,0 +2016-12-30,31161.0861,48.0000,2635.2044,38986.6689,56513.2400,12772.1056,10042.8378,78210.8711,37753.8267,6995.4267 +2016-12-31,29034.9364,1428.0200,1318.9178,39303.8711,78372.8478,9004.7756,8033.2100,40661.7978,9369.7067,5701.5467 +2017-01-01,12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..29dad9836d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" +2016-12,80136.0169,1483.2600,4550.1367,85540.3508,165392.6678,59504.9522,26059.7411,212969.7711,122442.1289,12696.9733 +2017-01,12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..26ed539adc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" +"2016 Q4",80136.0169,1483.2600,4550.1367,85540.3508,165392.6678,59504.9522,26059.7411,212969.7711,122442.1289,12696.9733 +"2017 Q1",12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..01489ca867 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" +2016,80136.0169,1483.2600,4550.1367,85540.3508,165392.6678,59504.9522,26059.7411,212969.7711,122442.1289,12696.9733 +2017,12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d7a76fc540 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +2016-12-22,0,0,0,0,33.4928,0,0,0,0,0 +2016-12-23,0.0000,0,0,0,48.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,48.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,48.0000,0.0000,0,0,0,0 +2016-12-26,0.0000,0,0,0,48.0000,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-28,0.0000,0,0,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-29,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ff3f088546 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +2016-12,0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..080036c11f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0889e82815 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +2016,0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..543c682e60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15418.2167 +"17 - 32",3767.9550 +"33 - 64",3029.1761 +"65 - 128",18221.5797 +"129 - 256",7960.2989 +"257 - 512",1058.0811 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..543c682e60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15418.2167 +"17 - 32",3767.9550 +"33 - 64",3029.1761 +"65 - 128",18221.5797 +"129 - 256",7960.2989 +"257 - 512",1058.0811 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..543c682e60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15418.2167 +"17 - 32",3767.9550 +"33 - 64",3029.1761 +"65 - 128",18221.5797 +"129 - 256",7960.2989 +"257 - 512",1058.0811 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..543c682e60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15418.2167 +"17 - 32",3767.9550 +"33 - 64",3029.1761 +"65 - 128",18221.5797 +"129 - 256",7960.2989 +"257 - 512",1058.0811 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6388c3d5b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" +2016-12-22,0,0,0,0,33.6881,0,0,0,0,0 +2016-12-23,8.6036,0,0,0,48.0000,0,0,0,0,0 +2016-12-24,24.0000,0,0,0,48.0000,0,0,0,0,0 +2016-12-25,24.0000,0,0,0,50.1597,6.3481,0,0,0,0 +2016-12-26,24.0000,0,0,0,85.5208,48.0000,0,0,0,0 +2016-12-27,31.9381,0,0,70.6761,240.2019,147.8156,30.3978,435.6028,249.7600,0 +2016-12-28,2987.8814,0,0,244.3325,494.2728,518.0847,268.6683,2094.1736,2007.2033,0 +2016-12-29,16839.5714,3.6200,149.0036,595.1181,1195.9517,1281.6483,561.2433,5180.5628,2721.7778,0 +2016-12-30,31161.0861,24.0000,658.8011,4879.7719,4480.2425,754.3239,1060.3894,6312.0572,2394.9356,582.9522 +2016-12-31,29034.9364,714.0100,329.7294,4913.5189,6351.6800,752.6294,740.8864,3490.5506,585.7267,475.1289 +2017-01-01,12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..68c301557a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" +2016-12,80136.0169,741.6300,1137.5342,10703.4175,13027.7175,3508.8500,2661.5853,17512.9469,7959.4033,1058.0811 +2017-01,12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..eb21fd250b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" +"2016 Q4",80136.0169,741.6300,1137.5342,10703.4175,13027.7175,3508.8500,2661.5853,17512.9469,7959.4033,1058.0811 +"2017 Q1",12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..78a60321db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" +2016,80136.0169,741.6300,1137.5342,10703.4175,13027.7175,3508.8500,2661.5853,17512.9469,7959.4033,1058.0811 +2017,12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..40e800fca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Total" +1,6590.6736 +2,2650.6039 +"3 - 4",163387.0994 +"5 - 8",101051.9192 +"9 - 16",25773.1289 +"17 - 32",3728.5800 +"33 - 64",707.9361 +"65 - 128",2293.9767 +"129 - 256",148.0836 +"257 - 512",13.3594 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..40e800fca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Total" +1,6590.6736 +2,2650.6039 +"3 - 4",163387.0994 +"5 - 8",101051.9192 +"9 - 16",25773.1289 +"17 - 32",3728.5800 +"33 - 64",707.9361 +"65 - 128",2293.9767 +"129 - 256",148.0836 +"257 - 512",13.3594 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..40e800fca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Total" +1,6590.6736 +2,2650.6039 +"3 - 4",163387.0994 +"5 - 8",101051.9192 +"9 - 16",25773.1289 +"17 - 32",3728.5800 +"33 - 64",707.9361 +"65 - 128",2293.9767 +"129 - 256",148.0836 +"257 - 512",13.3594 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..40e800fca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wait Hours: Total" +1,6590.6736 +2,2650.6039 +"3 - 4",163387.0994 +"5 - 8",101051.9192 +"9 - 16",25773.1289 +"17 - 32",3728.5800 +"33 - 64",707.9361 +"65 - 128",2293.9767 +"129 - 256",148.0836 +"257 - 512",13.3594 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c1214556f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" +2016-12-22,0,0,0,0,9.3325,0,0,0,0,0 +2016-12-23,9.5964,0,0,0,0.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,0.0633,110.8222,0,0,0,0 +2016-12-26,0.0000,0,0,0,0.0033,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,1367.4322,50.8253,93.9853,0.0000,387.2206,78.7886,0 +2016-12-28,16.2356,0,0,1405.9667,377.7072,465.3347,36.8761,1296.2103,0.0014,0 +2016-12-29,56.1753,0.0044,2636.5197,2567.6739,66.6953,333.5175,56.9778,358.5789,25.7286,0 +2016-12-30,3606.8258,0.0000,160673.4244,24584.9528,5027.5717,979.9319,311.8458,83.5458,0.7794,13.3594 +2016-12-31,2865.8978,2650.5994,77.1553,57194.7850,9457.6639,1133.7711,6.9375,29.2697,5.1778,0.0000 +2017-01-01,35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f6afb14b5e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" +2016-12,6554.7308,2650.6039,163387.0994,87120.8106,14989.8625,3117.3628,412.6372,2154.8253,110.4758,13.3594 +2017-01,35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7c562f3375 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" +"2016 Q4",6554.7308,2650.6039,163387.0994,87120.8106,14989.8625,3117.3628,412.6372,2154.8253,110.4758,13.3594 +"2017 Q1",35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a103e3277b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" +2016,6554.7308,2650.6039,163387.0994,87120.8106,14989.8625,3117.3628,412.6372,2154.8253,110.4758,13.3594 +2017,35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..23ca6a3d85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15376.5169 +"17 - 32",2154.1506 +"33 - 64",534.4553 +"65 - 128",2368.1789 +"129 - 256",657.2731 +"257 - 512",37.7917 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..23ca6a3d85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15376.5169 +"17 - 32",2154.1506 +"33 - 64",534.4553 +"65 - 128",2368.1789 +"129 - 256",657.2731 +"257 - 512",37.7917 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..23ca6a3d85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15376.5169 +"17 - 32",2154.1506 +"33 - 64",534.4553 +"65 - 128",2368.1789 +"129 - 256",657.2731 +"257 - 512",37.7917 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..23ca6a3d85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Wall Hours: Total" +1,92614.1756 +2,759.2592 +"3 - 4",1290.3839 +"5 - 8",12184.6214 +"9 - 16",15376.5169 +"17 - 32",2154.1506 +"33 - 64",534.4553 +"65 - 128",2368.1789 +"129 - 256",657.2731 +"257 - 512",37.7917 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2adb01b33c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" +2016-12-22,0,0,0,0,33.6881,0,0,0,0,0 +2016-12-23,8.6036,0,0,0,48.0000,0,0,0,0,0 +2016-12-24,24.0000,0,0,0,48.0000,0,0,0,0,0 +2016-12-25,24.0000,0,0,0,50.1597,6.3481,0,0,0,0 +2016-12-26,24.0000,0,0,0,85.5208,48.0000,0,0,0,0 +2016-12-27,31.9381,0,0,70.6761,240.2019,107.1378,3.7997,59.6164,20.8133,0 +2016-12-28,2987.8814,0,0,244.3325,494.2728,373.6525,36.7781,269.9594,167.2669,0 +2016-12-29,16839.5714,3.6200,149.0036,595.1181,1195.9517,717.7672,102.3708,678.6178,222.4889,0 +2016-12-30,31161.0861,24.0000,658.8011,4879.7719,4476.5769,424.2197,181.2069,838.1756,197.8528,20.8228 +2016-12-31,29034.9364,714.0100,329.7294,4913.5189,6337.4233,355.4853,142.8372,428.8350,48.8006,16.9689 +2017-01-01,12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0605ee7c2c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" +2016-12,80136.0169,741.6300,1137.5342,10703.4175,13009.7953,2032.6106,466.9928,2275.2042,657.2225,37.7917 +2017-01,12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..03384431af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" +"2016 Q4",80136.0169,741.6300,1137.5342,10703.4175,13009.7953,2032.6106,466.9928,2275.2042,657.2225,37.7917 +"2017 Q1",12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0af6dbe6aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" +2016,80136.0169,741.6300,1137.5342,10703.4175,13009.7953,2032.6106,466.9928,2275.2042,657.2225,37.7917 +2017,12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4eac3811df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Screwdriver CPU Utilization (%)" +1,2.0972 +2,0.0719 +"3 - 4",0.1854 +"5 - 8",2.5359 +"9 - 16",4.4169 +"17 - 32",1.6278 +"33 - 64",0.9377 +"65 - 128",8.2392 +"129 - 256",7.5031 +"257 - 512",1.2024 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eb743b3e19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Screwdriver CPU Utilization (%)" +1,0.4661 +2,0.0170 +"3 - 4",0.0414 +"5 - 8",0.5932 +"9 - 16",0.9815 +"17 - 32",0.3808 +"33 - 64",0.2309 +"65 - 128",1.7884 +"129 - 256",1.4661 +"257 - 512",0.2593 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cafd329e43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Screwdriver CPU Utilization (%)" +1,0.1922 +2,0.0075 +"3 - 4",0.0175 +"5 - 8",0.2492 +"9 - 16",0.4047 +"17 - 32",0.1600 +"33 - 64",0.0995 +"65 - 128",0.7539 +"129 - 256",0.6222 +"257 - 512",0.1202 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a5b6b7b819 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Screwdriver CPU Utilization (%)" +1,0.0514 +2,0.0021 +"3 - 4",0.0047 +"5 - 8",0.0673 +"9 - 16",0.1082 +"17 - 32",0.0432 +"33 - 64",0.0272 +"65 - 128",0.2040 +"129 - 256",0.1689 +"257 - 512",0.0344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2ba394759c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0.2106,0,0,0,0,0 +2016-12-23,0.0090,0,0,0,0.3000,0,0,0,0,0 +2016-12-24,0.0250,0,0,0,0.3000,0,0,0,0,0 +2016-12-25,0.0250,0,0,0,0.3135,0.1587,0,0,0,0 +2016-12-26,0.0250,0,0,0,0.3751,1.2000,0,0,0,0 +2016-12-27,0.0166,0,0,0.2945,0.7241,1.5691,0.2533,5.4450,3.1220,0 +2016-12-28,1.5562,0,0,1.0181,1.4560,3.9321,1.1195,13.3438,16.1267,0 +2016-12-29,8.7706,0.0075,0.2069,1.6423,3.5007,7.6690,1.9414,32.9426,21.5407,0 +2016-12-30,8.1149,0.0500,0.9150,10.1528,11.7736,3.3261,3.4871,27.1566,19.6635,7.2869 +2016-12-31,7.5612,0.7438,0.6869,10.2354,16.3277,3.1267,2.7893,21.1780,4.8801,5.9391 +2017-01-01,3.2495,0.0367,0.3184,3.0825,6.1791,1.0426,1.8989,8.8550,0.0094,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2cee5b0415 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" +2016-12,1.9875,0.0498,0.1281,1.8958,3.3132,1.3188,0.6621,6.1623,5.1018,0.6613 +2017-01,0.1048,0.0012,0.0103,0.0994,0.1993,0.0336,0.0613,0.2856,0.0003,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0a7b6c674b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" +"2016 Q4",1.9875,0.0498,0.1281,1.8958,3.3132,1.3188,0.6621,6.1623,5.1018,0.6613 +"2017 Q1",0.0361,0.0004,0.0035,0.0342,0.0687,0.0116,0.0211,0.0984,0.0001,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ba6df848d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" +2016,1.9875,0.0498,0.1281,1.8958,3.3132,1.3188,0.6621,6.1623,5.1018,0.6613 +2017,0.0089,0.0001,0.0009,0.0084,0.0169,0.0029,0.0052,0.0243,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..026f4a8e55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Users: Active" +"0 - 1s",31 +"1 - 30s",45 +"30s - 30min",34 +"30 - 60min",14 +"1 - 5hr",24 +"5 - 10hr",22 +"10 - 18hr",10 +18+hr,17 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..026f4a8e55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Users: Active" +"0 - 1s",31 +"1 - 30s",45 +"30s - 30min",34 +"30 - 60min",14 +"1 - 5hr",24 +"5 - 10hr",22 +"10 - 18hr",10 +18+hr,17 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..026f4a8e55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Users: Active" +"0 - 1s",31 +"1 - 30s",45 +"30s - 30min",34 +"30 - 60min",14 +"1 - 5hr",24 +"5 - 10hr",22 +"10 - 18hr",10 +18+hr,17 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..026f4a8e55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Users: Active" +"0 - 1s",31 +"1 - 30s",45 +"30s - 30min",34 +"30 - 60min",14 +"1 - 5hr",24 +"5 - 10hr",22 +"10 - 18hr",10 +18+hr,17 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bd37511944 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +2016-12-22,0,1,0,0,0,1,0,0 +2016-12-23,0,1,0,0,0,2,0,0 +2016-12-24,0,1,0,0,0,2,0,0 +2016-12-25,0,1,1,0,0,2,0,1 +2016-12-26,0,2,1,0,0,2,0,1 +2016-12-27,4,5,2,0,0,2,0,7 +2016-12-28,5,9,5,1,6,3,1,7 +2016-12-29,11,20,14,3,11,5,4,11 +2016-12-30,24,40,27,12,21,15,8,14 +2016-12-31,20,32,27,10,16,13,7,9 +2017-01-01,17,25,16,5,10,10,4,9 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d0347258ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +2016-12,28,43,33,13,23,19,9,16 +2017-01,17,25,16,5,10,10,4,9 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..24c8350cba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +"2016 Q4",28,43,33,13,23,19,9,16 +"2017 Q1",17,25,16,5,10,10,4,9 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..41d1556ded --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +2016,28,43,33,13,23,19,9,16 +2017,17,25,16,5,10,10,4,9 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b1a1be05f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of PIs: Active" +"0 - 1s",21 +"1 - 30s",30 +"30s - 30min",27 +"30 - 60min",13 +"1 - 5hr",22 +"5 - 10hr",19 +"10 - 18hr",7 +18+hr,13 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b1a1be05f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of PIs: Active" +"0 - 1s",21 +"1 - 30s",30 +"30s - 30min",27 +"30 - 60min",13 +"1 - 5hr",22 +"5 - 10hr",19 +"10 - 18hr",7 +18+hr,13 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b1a1be05f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of PIs: Active" +"0 - 1s",21 +"1 - 30s",30 +"30s - 30min",27 +"30 - 60min",13 +"1 - 5hr",22 +"5 - 10hr",19 +"10 - 18hr",7 +18+hr,13 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b1a1be05f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of PIs: Active" +"0 - 1s",21 +"1 - 30s",30 +"30s - 30min",27 +"30 - 60min",13 +"1 - 5hr",22 +"5 - 10hr",19 +"10 - 18hr",7 +18+hr,13 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4dfc386a3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +2016-12-22,0,1,0,0,0,1,0,0 +2016-12-23,0,1,0,0,0,2,0,0 +2016-12-24,0,1,0,0,0,2,0,0 +2016-12-25,0,1,1,0,0,2,0,1 +2016-12-26,0,2,1,0,0,2,0,1 +2016-12-27,4,4,1,0,0,2,0,6 +2016-12-28,5,8,4,1,5,3,1,6 +2016-12-29,10,15,11,3,10,5,3,9 +2016-12-30,18,25,21,11,19,12,6,12 +2016-12-31,13,22,21,10,15,13,5,7 +2017-01-01,11,18,13,5,10,10,4,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dae74a3024 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +2016-12,19,28,26,12,21,16,6,12 +2017-01,11,18,13,5,10,10,4,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cf071a9ce6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +"2016 Q4",19,28,26,12,21,16,6,12 +"2017 Q1",11,18,13,5,10,10,4,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ea7998c52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +2016,19,28,26,12,21,16,6,12 +2017,11,18,13,5,10,10,4,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eeda5c10d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",4 +"1 - 5hr",4 +"5 - 10hr",4 +"10 - 18hr",4 +18+hr,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eeda5c10d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",4 +"1 - 5hr",4 +"5 - 10hr",4 +"10 - 18hr",4 +18+hr,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eeda5c10d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",4 +"1 - 5hr",4 +"5 - 10hr",4 +"10 - 18hr",4 +18+hr,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eeda5c10d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",4 +"1 - 5hr",4 +"5 - 10hr",4 +"10 - 18hr",4 +18+hr,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..88a43db551 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +2016-12-22,0,1,0,0,0,1,0,0 +2016-12-23,0,1,0,0,0,1,0,0 +2016-12-24,0,1,0,0,0,1,0,0 +2016-12-25,0,1,1,0,0,1,0,1 +2016-12-26,0,2,1,0,0,1,0,1 +2016-12-27,3,5,1,0,0,1,0,2 +2016-12-28,4,5,2,1,2,2,1,2 +2016-12-29,5,5,2,1,3,3,2,2 +2016-12-30,5,5,4,3,4,4,2,2 +2016-12-31,5,5,5,3,3,4,3,2 +2017-01-01,5,5,4,4,3,3,3,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9ec7211354 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +2016-12,5,5,5,4,4,4,3,2 +2017-01,5,5,4,4,3,3,3,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2ce29974a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +"2016 Q4",5,5,5,4,4,4,3,2 +"2017 Q1",5,5,4,4,3,3,3,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..017422f326 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +2016,5,5,5,4,4,4,3,2 +2017,5,5,4,4,3,3,3,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..219450bfe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..da5f4d6f4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..da5f4d6f4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..da5f4d6f4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ff1ed7d4a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +2016-12-22,0,200.95666667,0,0,0,203.30000000,0,0 +2016-12-23,0,288.00000000,0,0,0,148.30180556,0,0 +2016-12-24,0,288.00000000,0,0,0,156.00000000,0,0 +2016-12-25,0,288.00000000,25.91666667,0,0,156.00000000,0,76.17666667 +2016-12-26,0,84.05555556,288.00000000,0,0,156.00000000,0,576.00000000 +2016-12-27,70.64052469,202.50444444,147.39777778,0,0,156.00000000,0,765.03481481 +2016-12-28,1366.84000000,391.50280724,11.68403753,66.06888889,82.33015873,62.62095238,179.32000000,787.00578811 +2016-12-29,185.29667641,130.44889074,17.90702218,88.31777778,226.61909402,282.36419753,541.60527778,587.04204316 +2016-12-30,6.80199544,8.05667462,7.79642350,2.47524156,6.69865088,15.83233559,119.50737127,49.37357045 +2016-12-31,7.25347461,9.56893971,5.09801928,2.19488043,6.05379937,5.62853088,14.21899818,41.76741222 +2017-01-01,2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a32495f3de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +2016-12,10.85719114,13.93211963,8.58144650,2.57788241,8.09504805,8.83596718,45.17256881,99.45469827 +2017-01,2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..98b4b4f961 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +"2016 Q4",10.85719114,13.93211963,8.58144650,2.57788241,8.09504805,8.83596718,45.17256881,99.45469827 +"2017 Q1",2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..79dc05bb5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +2016,10.85719114,13.93211963,8.58144650,2.57788241,8.09504805,8.83596718,45.17256881,99.45469827 +2017,2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..19cfa667eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12-22,0,33.49277778,0,0,0,0.00000000,0,0 +2016-12-23,0,48.00000000,0,0,0,0.00000000,0,0 +2016-12-24,0,48.00000000,0,0,0,0.00000000,0,0 +2016-12-25,0,48.00000000,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-26,0,8.00000000,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-27,0.00000000,3.42857143,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-28,0.00000000,0.72727273,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-29,0.00000000,0.16000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.00000000,0.00570071,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00000000,0.00947306,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6e134e68c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12,0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..329b34e730 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +"2016 Q4",0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..699c8acc85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016,0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..973e0266e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12-22,0,2.0000,0,0,0,0.0000,0,0 +2016-12-23,0,2.0000,0,0,0,0.0000,0,0 +2016-12-24,0,2.0000,0,0,0,0.0000,0,0 +2016-12-25,0,2.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-26,0,0.3333,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,0.1429,0.0000,0,0,0.0000,0,0.0000 +2016-12-28,0.0000,0.0303,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,0.0000,0.0067,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2d4427a38b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7df676cd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +"2016 Q4",0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e45fc43625 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..85fca5d8a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",84.5716 +"1 - 30s",86.2606 +"30s - 30min",16.6203 +"30 - 60min",22.0405 +"1 - 5hr",64.1043 +"5 - 10hr",29.9680 +"10 - 18hr",36.1523 +18+hr,75.4702 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..85fca5d8a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",84.5716 +"1 - 30s",86.2606 +"30s - 30min",16.6203 +"30 - 60min",22.0405 +"1 - 5hr",64.1043 +"5 - 10hr",29.9680 +"10 - 18hr",36.1523 +18+hr,75.4702 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..85fca5d8a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",84.5716 +"1 - 30s",86.2606 +"30s - 30min",16.6203 +"30 - 60min",22.0405 +"1 - 5hr",64.1043 +"5 - 10hr",29.9680 +"10 - 18hr",36.1523 +18+hr,75.4702 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..85fca5d8a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",84.5716 +"1 - 30s",86.2606 +"30s - 30min",16.6203 +"30 - 60min",22.0405 +"1 - 5hr",64.1043 +"5 - 10hr",29.9680 +"10 - 18hr",36.1523 +18+hr,75.4702 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9bf466d3d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,12.0000,0,0,0,12.0000,0,0 +2016-12-23,0,12.0000,0,0,0,11.6809,0,0 +2016-12-24,0,12.0000,0,0,0,11.1538,0,0 +2016-12-25,0,12.0000,12.0000,0,0,11.1538,0,24.0000 +2016-12-26,0,13.7158,12.0000,0,0,11.1538,0,24.0000 +2016-12-27,42.6543,16.5775,11.9078,0,0,11.1538,0,84.9050 +2016-12-28,136.0959,141.1175,2.7336,8.0000,24.1089,11.3977,12.0000,85.2671 +2016-12-29,139.3929,129.7100,13.6754,21.0129,38.3508,22.5289,47.3510,84.0594 +2016-12-30,82.7447,89.1986,18.2789,29.9474,83.7293,30.8991,38.5735,72.4955 +2016-12-31,36.5422,40.6049,18.4091,15.5002,71.5730,28.5121,39.5256,60.5814 +2017-01-01,23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d392963fac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,87.9399,90.5162,16.9717,22.4209,70.8622,27.1335,40.2722,76.3571 +2017-01,23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0e7d5ff712 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",87.9399,90.5162,16.9717,22.4209,70.8622,27.1335,40.2722,76.3571 +"2017 Q1",23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7e1305f847 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +2016,87.9399,90.5162,16.9717,22.4209,70.8622,27.1335,40.2722,76.3571 +2017,23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5a8a1bfa2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0,12.0000,0,0,0,0.0000,0,0 +2016-12-23,0,12.0000,0,0,0,0.0000,0,0 +2016-12-24,0,12.0000,0,0,0,0.0000,0,0 +2016-12-25,0,12.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-26,0,12.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,12.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-28,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b71dd15988 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4843dc281b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e9f256417c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cb9a3aa100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4f9045cc7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4f9045cc7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4f9045cc7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..576f7be815 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +2016-12-22,0,16.74638889,0,0,0,16.94166667,0,0 +2016-12-23,0,24.00000000,0,0,0,16.30180556,0,0 +2016-12-24,0,24.00000000,0,0,0,24.00000000,0,0 +2016-12-25,0,24.00000000,2.15972222,0,0,24.00000000,0,3.17402778 +2016-12-26,0,6.25347222,24.00000000,0,0,24.00000000,0,24.00000000 +2016-12-27,5.70537037,12.69599206,12.42472222,0,0,24.00000000,0,60.29670370 +2016-12-28,86.17750000,25.19816498,9.59354236,8.25861111,7.79908730,8.36126984,14.94333333,65.19597545 +2016-12-29,13.26773148,15.28286944,13.33380967,12.55677778,18.27062393,25.13419753,39.12645833,48.24373737 +2016-12-30,0.60351603,0.90650139,5.01868454,0.64634436,0.83483158,1.76957969,9.21621951,4.47096711 +2016-12-31,0.63794775,1.10700941,2.60785284,0.29318726,1.08572255,1.82485009,1.20263813,4.56646314 +2017-01-01,0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d711504d92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +2016-12,0.88196999,1.48502582,5.25889908,0.49634703,1.12768541,2.06694215,3.52934378,8.86101066 +2017-01,0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..06546fc30a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +"2016 Q4",0.88196999,1.48502582,5.25889908,0.49634703,1.12768541,2.06694215,3.52934378,8.86101066 +"2017 Q1",0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dea85731af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +2016,0.88196999,1.48502582,5.25889908,0.49634703,1.12768541,2.06694215,3.52934378,8.86101066 +2017,0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6ce39c2097 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6ce39c2097 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6ce39c2097 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6ce39c2097 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..861846c4a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +2016-12-22,0,12.0000,0,0,0,12.0000,0,0 +2016-12-23,0,12.0000,0,0,0,6.5000,0,0 +2016-12-24,0,12.0000,0,0,0,6.5000,0,0 +2016-12-25,0,12.0000,12.0000,0,0,6.5000,0,24.0000 +2016-12-26,0,15.3333,12.0000,0,0,6.5000,0,24.0000 +2016-12-27,27.7778,19.1429,10.0000,0,0,6.5000,0,44.5333 +2016-12-28,68.8333,21.7424,1.1304,8.0000,17.3333,10.4286,12.0000,49.9535 +2016-12-29,15.4035,10.1933,1.5642,20.0000,20.8000,17.8889,31.0000,30.0579 +2016-12-30,9.5403,9.0758,5.4186,3.8214,7.9386,9.0167,32.0000,8.7843 +2016-12-31,12.0906,11.6100,6.3090,6.1814,8.1523,8.0848,11.9126,9.9848 +2017-01-01,10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cd0abde098 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +2016-12,10.5960,9.9692,6.3631,5.1467,8.2329,8.3970,15.2294,8.3990 +2017-01,10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8089963766 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +"2016 Q4",10.5960,9.9692,6.3631,5.1467,8.2329,8.3970,15.2294,8.3990 +"2017 Q1",10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1d8b0a9940 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +2016,10.5960,9.9692,6.3631,5.1467,8.2329,8.3970,15.2294,8.3990 +2017,10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4f3ab75a71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00067233,0.000009532698389553274 +"30s - 30min",0.14412436,0.0009030872510103734 +"30 - 60min",0.71076431,0.002779916456475484 +"1 - 5hr",2.08196102,0.007078085718233825 +"5 - 10hr",7.96579571,0.023416472717942394 +"10 - 18hr",12.06009729,0.10212331707534603 +18+hr,90.85559814,1.7341253070391138 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4f3ab75a71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00067233,0.000009532698389553274 +"30s - 30min",0.14412436,0.0009030872510103734 +"30 - 60min",0.71076431,0.002779916456475484 +"1 - 5hr",2.08196102,0.007078085718233825 +"5 - 10hr",7.96579571,0.023416472717942394 +"10 - 18hr",12.06009729,0.10212331707534603 +18+hr,90.85559814,1.7341253070391138 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4f3ab75a71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00067233,0.000009532698389553274 +"30s - 30min",0.14412436,0.0009030872510103734 +"30 - 60min",0.71076431,0.002779916456475484 +"1 - 5hr",2.08196102,0.007078085718233825 +"5 - 10hr",7.96579571,0.023416472717942394 +"10 - 18hr",12.06009729,0.10212331707534603 +18+hr,90.85559814,1.7341253070391138 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4f3ab75a71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00067233,0.000009532698389553274 +"30s - 30min",0.14412436,0.0009030872510103734 +"30 - 60min",0.71076431,0.002779916456475484 +"1 - 5hr",2.08196102,0.007078085718233825 +"5 - 10hr",7.96579571,0.023416472717942394 +"10 - 18hr",12.06009729,0.10212331707534603 +18+hr,90.85559814,1.7341253070391138 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9787f8603e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +2016-12-22,0,0.00027778,0,0,0,9.33222222,0,0 +2016-12-23,0,0.00000000,0,0,0,9.59638889,0,0 +2016-12-24,0,0.00000000,0,0,0,0.00000000,0,0 +2016-12-25,0,0.00000000,0.06333333,0,0,0.00000000,0,55.41111111 +2016-12-26,0,0.00066667,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-27,0.00000000,0.00059028,0.02694444,0,0,0.00000000,0,152.17079060 +2016-12-28,0.00000000,0.00519231,0.05457725,0.97472222,2.69326720,6.31216667,12.27500000,124.30297619 +2016-12-29,0.00000000,0.00229820,0.04908431,0.94562500,1.80866793,6.40305556,15.21722222,75.88609687 +2016-12-30,0.00000000,0.00072534,0.07010813,0.74716129,1.85504492,6.13281911,11.85139640,139.04254383 +2016-12-31,0.00000000,0.00068140,0.16068062,0.67907857,2.13118952,8.49370108,10.43064187,40.84676303 +2017-01-01,0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..37a06a6a35 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +2016-12,0.00000000,0.00075406,0.12001539,0.71198619,1.98945386,8.16968874,10.74610984,99.58557853 +2017-01,0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a87b0a0243 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +"2016 Q4",0.00000000,0.00075406,0.12001539,0.71198619,1.98945386,8.16968874,10.74610984,99.58557853 +"2017 Q1",0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..207bcf7c5f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +2016,0.00000000,0.00075406,0.12001539,0.71198619,1.98945386,8.16968874,10.74610984,99.58557853 +2017,0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..35c3f909e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.49315691,0.014517223815777877 +"1 - 30s",0.92592179,0.025066795402547932 +"30s - 30min",4.34074564,0.055443976670460395 +"30 - 60min",0.35002350,0.030900746638049585 +"1 - 5hr",0.89276088,0.023255030658770073 +"5 - 10hr",1.60253047,0.06328182590453404 +"10 - 18hr",1.00758695,0.12804935676644585 +18+hr,2.99461843,0.10227044779661995 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9c04672eee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.49315691,0.02457273421536707 +"1 - 30s",0.92592179,0.038190782831705315 +"30s - 30min",4.34074564,0.0809366938495074 +"30 - 60min",0.35002350,0.039243281108874206 +"1 - 5hr",0.89276088,0.03193159152610175 +"5 - 10hr",1.60253047,0.0913270168146558 +"10 - 18hr",1.00758695,0.1816748208929652 +18+hr,2.99461843,0.18843366518542579 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9c04672eee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.49315691,0.02457273421536707 +"1 - 30s",0.92592179,0.038190782831705315 +"30s - 30min",4.34074564,0.0809366938495074 +"30 - 60min",0.35002350,0.039243281108874206 +"1 - 5hr",0.89276088,0.03193159152610175 +"5 - 10hr",1.60253047,0.0913270168146558 +"10 - 18hr",1.00758695,0.1816748208929652 +18+hr,2.99461843,0.18843366518542579 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9c04672eee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.49315691,0.02457273421536707 +"1 - 30s",0.92592179,0.038190782831705315 +"30s - 30min",4.34074564,0.0809366938495074 +"30 - 60min",0.35002350,0.039243281108874206 +"1 - 5hr",0.89276088,0.03193159152610175 +"5 - 10hr",1.60253047,0.0913270168146558 +"10 - 18hr",1.00758695,0.1816748208929652 +18+hr,2.99461843,0.18843366518542579 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b25f048317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +2016-12-22,0,16.74638889,0,0,0,16.94166667,0,0 +2016-12-23,0,24.00000000,0,0,0,16.30180556,0,0 +2016-12-24,0,24.00000000,0,0,0,24.00000000,0,0 +2016-12-25,0,24.00000000,2.15972222,0,0,24.00000000,0,3.17402778 +2016-12-26,0,6.25347222,24.00000000,0,0,24.00000000,0,24.00000000 +2016-12-27,2.75003086,12.69599206,12.42472222,0,0,24.00000000,0,17.25598148 +2016-12-28,22.51479167,8.75883838,9.59354236,8.25861111,4.22932540,8.36126984,14.94333333,15.97364987 +2016-12-29,4.63944201,9.99022315,13.07476976,7.54672222,10.18715812,21.84608025,15.68840278,11.15196051 +2016-12-30,0.42073731,0.67200894,4.89549072,0.41773994,0.61206820,1.40062914,5.39272358,1.78568953 +2016-12-31,0.53892192,0.99729426,2.53510859,0.25151938,0.89879489,1.67857150,0.66289921,2.72339857 +2017-01-01,0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..19df2576ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +2016-12,0.55774411,1.09466327,5.13553286,0.35459446,0.86174841,1.87399127,1.92710627,3.25157379 +2017-01,0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f049975b01 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +"2016 Q4",0.55774411,1.09466327,5.13553286,0.35459446,0.86174841,1.87399127,1.92710627,3.25157379 +"2017 Q1",0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b3b3ea1cef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +2016,0.55774411,1.09466327,5.13553286,0.35459446,0.86174841,1.87399127,1.92710627,3.25157379 +2017,0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a88b0c32d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","User Expansion Factor" +"0 - 1s",1.0000 +"1 - 30s",1.0005 +"30s - 30min",1.0322 +"30 - 60min",2.4872 +"1 - 5hr",2.8146 +"5 - 10hr",5.2710 +"10 - 18hr",10.0667 +18+hr,13.4785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a88b0c32d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","User Expansion Factor" +"0 - 1s",1.0000 +"1 - 30s",1.0005 +"30s - 30min",1.0322 +"30 - 60min",2.4872 +"1 - 5hr",2.8146 +"5 - 10hr",5.2710 +"10 - 18hr",10.0667 +18+hr,13.4785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a88b0c32d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","User Expansion Factor" +"0 - 1s",1.0000 +"1 - 30s",1.0005 +"30s - 30min",1.0322 +"30 - 60min",2.4872 +"1 - 5hr",2.8146 +"5 - 10hr",5.2710 +"10 - 18hr",10.0667 +18+hr,13.4785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a88b0c32d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","User Expansion Factor" +"0 - 1s",1.0000 +"1 - 30s",1.0005 +"30s - 30min",1.0322 +"30 - 60min",2.4872 +"1 - 5hr",2.8146 +"5 - 10hr",5.2710 +"10 - 18hr",10.0667 +18+hr,13.4785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b5f86f21ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +2016-12-22,0,1.0000,0,0,0,1.0495,0,0 +2016-12-23,0,1.0000,0,0,0,1.0525,0,0 +2016-12-24,0,1.0000,0,0,0,1.0552,0,0 +2016-12-25,0,1.0000,1.0006,0,0,1.0552,0,1.6127 +2016-12-26,0,1.0000,1.0006,0,0,1.0552,0,1.5220 +2016-12-27,1.0000,1.0000,1.0006,0,0,1.0552,0,2.3909 +2016-12-28,1.0000,1.0000,1.0012,1.0228,1.0688,1.0714,1.1649,2.5548 +2016-12-29,1.0000,1.0001,1.0014,1.0359,1.0996,1.1188,1.4455,2.8173 +2016-12-30,1.0000,1.0008,1.0117,2.1893,3.0491,4.3677,4.6225,31.0736 +2016-12-31,1.0000,1.0006,1.0534,3.2562,2.9536,5.6091,8.3411,9.2461 +2017-01-01,1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..da137c447d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +2016-12,1.0000,1.0005,1.0226,2.4668,2.8034,5.0815,4.9728,12.9741 +2017-01,1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e008240fd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +"2016 Q4",1.0000,1.0005,1.0226,2.4668,2.8034,5.0815,4.9728,12.9741 +"2017 Q1",1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9eccf9dd74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +2016,1.0000,1.0005,1.0226,2.4668,2.8034,5.0815,4.9728,12.9741 +2017,1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ac2732a994 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Ended" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ac2732a994 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Ended" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ac2732a994 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Ended" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ac2732a994 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Ended" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b91a364e7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +2016-12-22,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0 +2016-12-30,5568,8262,4418,1149,5532,293,35,1349 +2016-12-31,4314,4851,7669,1370,6329,2698,129,781 +2017-01-01,2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..541b0aea0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +2016-12,9882,13113,12087,2519,11861,2991,164,2130 +2017-01,2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5854baba87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +"2016 Q4",9882,13113,12087,2519,11861,2991,164,2130 +"2017 Q1",2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..81f9e9be24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +2016,9882,13113,12087,2519,11861,2991,164,2130 +2017,2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..22395f3546 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Max (Core Count)" +"0 - 1s",192 +"1 - 30s",192 +"30s - 30min",108 +"30 - 60min",192 +"1 - 5hr",336 +"5 - 10hr",288 +"10 - 18hr",96 +18+hr,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..22395f3546 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Max (Core Count)" +"0 - 1s",192 +"1 - 30s",192 +"30s - 30min",108 +"30 - 60min",192 +"1 - 5hr",336 +"5 - 10hr",288 +"10 - 18hr",96 +18+hr,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..22395f3546 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Max (Core Count)" +"0 - 1s",192 +"1 - 30s",192 +"30s - 30min",108 +"30 - 60min",192 +"1 - 5hr",336 +"5 - 10hr",288 +"10 - 18hr",96 +18+hr,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..22395f3546 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Max (Core Count)" +"0 - 1s",192 +"1 - 30s",192 +"30s - 30min",108 +"30 - 60min",192 +"1 - 5hr",336 +"5 - 10hr",288 +"10 - 18hr",96 +18+hr,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a07d41e731 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +2016-12-22,0,12,0,0,0,12,0,0 +2016-12-23,0,12,0,0,0,12,0,0 +2016-12-24,0,12,0,0,0,12,0,0 +2016-12-25,0,12,12,0,0,12,0,24 +2016-12-26,0,16,12,0,0,12,0,24 +2016-12-27,64,32,12,0,0,12,0,144 +2016-12-28,192,192,12,8,32,12,12,144 +2016-12-29,192,192,72,56,96,72,60,160 +2016-12-30,192,192,108,192,336,288,72,160 +2016-12-31,192,192,96,32,336,192,72,96 +2017-01-01,64,48,96,96,192,96,96,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76d60f5746 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +2016-12,192,192,108,192,336,288,72,160 +2017-01,64,48,96,96,192,96,96,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e319d8ab2c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +"2016 Q4",192,192,108,192,336,288,72,160 +"2017 Q1",64,48,96,96,192,96,96,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a6e815086a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +2016,192,192,108,192,336,288,72,160 +2017,64,48,96,96,192,96,96,160 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..52be40ed9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Min (Core Count)" +"0 - 1s",1 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",4 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..52be40ed9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Min (Core Count)" +"0 - 1s",1 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",4 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..52be40ed9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Min (Core Count)" +"0 - 1s",1 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",4 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..52be40ed9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Min (Core Count)" +"0 - 1s",1 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",4 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6b3d33a694 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +2016-12-22,0,12,0,0,0,12,0,0 +2016-12-23,0,12,0,0,0,1,0,0 +2016-12-24,0,12,0,0,0,1,0,0 +2016-12-25,0,12,12,0,0,1,0,24 +2016-12-26,0,12,12,0,0,1,0,24 +2016-12-27,1,12,8,0,0,1,0,8 +2016-12-28,1,1,1,8,8,1,12,8 +2016-12-29,1,1,1,8,8,1,12,1 +2016-12-30,1,1,1,1,1,1,4,1 +2016-12-31,1,1,1,1,1,1,4,2 +2017-01-01,1,1,1,1,1,1,8,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2fd22a88fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +2016-12,1,1,1,1,1,1,4,1 +2017-01,1,1,1,1,1,1,8,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f9262f2dd9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +"2016 Q4",1,1,1,1,1,1,4,1 +"2017 Q1",1,1,1,1,1,1,8,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..83fc91acfb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +2016,1,1,1,1,1,1,4,1 +2017,1,1,1,1,1,1,8,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5244ebc993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5244ebc993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5244ebc993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5244ebc993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +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/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6be9e3c60e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0.300000000,0,0,0,0.300000000,0,0 +2016-12-23,0,0.300000000,0,0,0,0.162500000,0,0 +2016-12-24,0,0.300000000,0,0,0,0.162500000,0,0 +2016-12-25,0,0.300000000,0.300000000,0,0,0.162500000,0,0.600000000 +2016-12-26,0,0.191666667,0.300000000,0,0,0.162500000,0,0.600000000 +2016-12-27,0.231481481,0.095714286,0.250000000,0,0,0.162500000,0,0.556666667 +2016-12-28,0.430208333,0.108712121,0.014130435,0.200000000,0.216666667,0.130357143,0.300000000,0.624418605 +2016-12-29,0.077017544,0.050966667,0.019552139,0.500000000,0.173333333,0.149074074,0.387500000,0.375723140 +2016-12-30,0.047701477,0.045378860,0.033866436,0.031845238,0.049616397,0.056354415,0.400000000,0.109803748 +2016-12-31,0.060453210,0.058050128,0.031545016,0.051511289,0.067935775,0.050530165,0.099271403,0.124810606 +2017-01-01,0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1fa3f3297f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +2016-12,0.052979884,0.049846200,0.031815720,0.032166931,0.051455415,0.052481011,0.126911315,0.104987901 +2017-01,0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0f0426dcb2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.052979884,0.049846200,0.031815720,0.032166931,0.051455415,0.052481011,0.126911315,0.104987901 +"2017 Q1",0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c9fd663af6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +2016,0.052979884,0.049846200,0.031815720,0.032166931,0.051455415,0.052481011,0.126911315,0.104987901 +2017,0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..86cb723bd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Running" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..86cb723bd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Running" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..86cb723bd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Running" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..86cb723bd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Running" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fdcd4dd14a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +2016-12-22,0,1,0,0,0,1,0,0 +2016-12-23,0,1,0,0,0,2,0,0 +2016-12-24,0,1,0,0,0,2,0,0 +2016-12-25,0,1,1,0,0,2,0,2 +2016-12-26,0,6,1,0,0,2,0,2 +2016-12-27,9,14,2,0,0,2,0,15 +2016-12-28,12,66,299,1,21,7,1,43 +2016-12-29,114,300,1122,5,65,9,4,121 +2016-12-30,5621,8420,5561,1204,6175,419,41,1414 +2016-12-31,4424,5067,8508,1373,6389,2735,183,924 +2017-01-01,2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2b7720a18b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +2016-12,9992,13329,12926,2522,11921,3028,218,2273 +2017-01,2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d8c6b1cd38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +"2016 Q4",9992,13329,12926,2522,11921,3028,218,2273 +"2017 Q1",2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..516afb7c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +2016,9992,13329,12926,2522,11921,3028,218,2273 +2017,2413,5059,5817,141,1277,966,427,466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..892ec0e4c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Started" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..892ec0e4c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Started" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..892ec0e4c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Started" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..892ec0e4c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Started" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17904 +"30 - 60min",2660 +"1 - 5hr",13138 +"5 - 10hr",3957 +"10 - 18hr",591 +18+hr,2596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f683986ef0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +2016-12-22,0,1,0,0,0,1,0,0 +2016-12-23,0,0,0,0,0,1,0,0 +2016-12-24,0,0,0,0,0,0,0,0 +2016-12-25,0,0,1,0,0,0,0,2 +2016-12-26,0,5,0,0,0,0,0,0 +2016-12-27,9,8,1,0,0,0,0,13 +2016-12-28,3,52,297,1,21,5,1,28 +2016-12-29,102,234,823,4,44,2,3,78 +2016-12-30,5507,8120,4439,1199,6110,410,37,1293 +2016-12-31,4371,4909,7365,1318,5746,2609,177,859 +2017-01-01,2303,4843,4978,138,1217,929,373,323 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9d39990f35 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +2016-12,9992,13329,12926,2522,11921,3028,218,2273 +2017-01,2303,4843,4978,138,1217,929,373,323 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..75288b766d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +"2016 Q4",9992,13329,12926,2522,11921,3028,218,2273 +"2017 Q1",2303,4843,4978,138,1217,929,373,323 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..51895e12e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +2016,9992,13329,12926,2522,11921,3028,218,2273 +2017,2303,4843,4978,138,1217,929,373,323 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d79350cd67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Submitted" +"0 - 1s",12295 +"1 - 30s",18171 +"30s - 30min",17734 +"30 - 60min",2604 +"1 - 5hr",11469 +"5 - 10hr",1836 +"10 - 18hr",282 +18+hr,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7f0920aab9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Submitted" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17742 +"30 - 60min",2604 +"1 - 5hr",12635 +"5 - 10hr",3196 +"10 - 18hr",301 +18+hr,2298 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7f0920aab9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Submitted" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17742 +"30 - 60min",2604 +"1 - 5hr",12635 +"5 - 10hr",3196 +"10 - 18hr",301 +18+hr,2298 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7f0920aab9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Number of Jobs Submitted" +"0 - 1s",12295 +"1 - 30s",18172 +"30s - 30min",17742 +"30 - 60min",2604 +"1 - 5hr",12635 +"5 - 10hr",3196 +"10 - 18hr",301 +18+hr,2298 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ad6175b130 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +2016-12-22,0,1,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,1,0,0 +2016-12-24,0,0,0,0,0,0,0,0 +2016-12-25,0,0,1,0,0,0,0,0 +2016-12-26,0,5,0,0,0,0,0,0 +2016-12-27,9,8,1,0,0,0,0,0 +2016-12-28,3,52,297,1,21,5,0,0 +2016-12-29,102,234,823,4,41,1,1,0 +2016-12-30,5507,8119,4436,1199,6007,367,25,0 +2016-12-31,4371,4909,7360,1318,4686,1294,173,0 +2017-01-01,2303,4843,4816,82,714,168,83,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6d4e03d411 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +2016-12,9992,13329,12926,2522,11921,3028,218,2273 +2017-01,2303,4843,4816,82,714,168,83,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c32c435fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +"2016 Q4",9992,13329,12926,2522,11921,3028,218,2273 +"2017 Q1",2303,4843,4816,82,714,168,83,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a9b8b77af9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +2016,9992,13329,12926,2522,11921,3028,218,2273 +2017,2303,4843,4816,82,714,168,83,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..19496727d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Total" +"0 - 1s",114440.9553 +"1 - 30s",196096.3686 +"30s - 30min",131344.7058 +"30 - 60min",6972.5603 +"1 - 5hr",114549.0461 +"5 - 10hr",34222.8861 +"10 - 18hr",12186.1800 +18+hr,230743.1347 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..19496727d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Total" +"0 - 1s",114440.9553 +"1 - 30s",196096.3686 +"30s - 30min",131344.7058 +"30 - 60min",6972.5603 +"1 - 5hr",114549.0461 +"5 - 10hr",34222.8861 +"10 - 18hr",12186.1800 +18+hr,230743.1347 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..19496727d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Total" +"0 - 1s",114440.9553 +"1 - 30s",196096.3686 +"30s - 30min",131344.7058 +"30 - 60min",6972.5603 +"1 - 5hr",114549.0461 +"5 - 10hr",34222.8861 +"10 - 18hr",12186.1800 +18+hr,230743.1347 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..19496727d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Total" +"0 - 1s",114440.9553 +"1 - 30s",196096.3686 +"30s - 30min",131344.7058 +"30 - 60min",6972.5603 +"1 - 5hr",114549.0461 +"5 - 10hr",34222.8861 +"10 - 18hr",12186.1800 +18+hr,230743.1347 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..64a9174b24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +2016-12-22,0,200.9567,0,0,0,203.3000,0,0 +2016-12-23,0,288.0000,0,0,0,296.6036,0,0 +2016-12-24,0,288.0000,0,0,0,312.0000,0,0 +2016-12-25,0,288.0000,25.9167,0,0,312.0000,0,152.3533 +2016-12-26,0,504.3333,288.0000,0,0,312.0000,0,1152.0000 +2016-12-27,635.7647,2835.0622,294.7956,0,0,312.0000,0,11475.5222 +2016-12-28,16402.0800,25839.1853,3493.5272,66.0689,1728.9333,438.3467,179.3200,33841.2489 +2016-12-29,21123.8211,39134.6672,20091.6789,441.5889,14730.2411,2541.2778,2166.4211,71032.0872 +2016-12-30,38234.0164,67837.2003,43355.9111,2980.1908,41364.1692,6633.7486,4899.8022,69814.2286 +2016-12-31,32089.3717,48485.8175,43373.9481,3013.5708,38677.7242,15394.0319,2602.0767,38593.0889 +2017-01-01,5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a042c47cd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +2016-12,108485.0539,185701.2225,110923.7775,6501.4194,96501.0678,26755.3086,9847.6200,226060.5292 +2017-01,5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..31915c2b36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +"2016 Q4",108485.0539,185701.2225,110923.7775,6501.4194,96501.0678,26755.3086,9847.6200,226060.5292 +"2017 Q1",5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7347e0e693 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +2016,108485.0539,185701.2225,110923.7775,6501.4194,96501.0678,26755.3086,9847.6200,226060.5292 +2017,5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ad28903a75 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12-22,0,33.4928,0,0,0,0.0000,0,0 +2016-12-23,0,48.0000,0,0,0,0.0000,0,0 +2016-12-24,0,48.0000,0,0,0,0.0000,0,0 +2016-12-25,0,48.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-26,0,48.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,48.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-28,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b472b5364a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..98567bae16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +"2016 Q4",0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ac4773dab0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f3f8c22cc0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Total" +"0 - 1s",9447.1700 +"1 - 30s",22041.2992 +"30s - 30min",79592.7303 +"30 - 60min",1294.0506 +"1 - 5hr",15211.2039 +"5 - 10hr",7117.9731 +"10 - 18hr",966.6325 +18+hr,20632.6881 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f3f8c22cc0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Total" +"0 - 1s",9447.1700 +"1 - 30s",22041.2992 +"30s - 30min",79592.7303 +"30 - 60min",1294.0506 +"1 - 5hr",15211.2039 +"5 - 10hr",7117.9731 +"10 - 18hr",966.6325 +18+hr,20632.6881 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f3f8c22cc0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Total" +"0 - 1s",9447.1700 +"1 - 30s",22041.2992 +"30s - 30min",79592.7303 +"30 - 60min",1294.0506 +"1 - 5hr",15211.2039 +"5 - 10hr",7117.9731 +"10 - 18hr",966.6325 +18+hr,20632.6881 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f3f8c22cc0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Total" +"0 - 1s",9447.1700 +"1 - 30s",22041.2992 +"30s - 30min",79592.7303 +"30 - 60min",1294.0506 +"1 - 5hr",15211.2039 +"5 - 10hr",7117.9731 +"10 - 18hr",966.6325 +18+hr,20632.6881 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..74134e0f03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +2016-12-22,0,16.7464,0,0,0,16.9417,0,0 +2016-12-23,0,24.0000,0,0,0,32.6036,0,0 +2016-12-24,0,24.0000,0,0,0,48.0000,0,0 +2016-12-25,0,24.0000,2.1597,0,0,48.0000,0,6.3481 +2016-12-26,0,37.5208,24.0000,0,0,48.0000,0,48.0000 +2016-12-27,51.3483,177.7439,24.8494,0,0,48.0000,0,904.4506 +2016-12-28,1034.1300,1663.0789,2868.4692,8.2586,163.7808,58.5289,14.9433,2803.4269 +2016-12-29,1512.5214,4584.8608,14960.5344,62.7839,1187.5906,226.2078,156.5058,5837.4922 +2016-12-30,3392.3636,7632.7417,27908.9047,778.1986,5155.0850,741.4539,377.8650,6321.9475 +2016-12-31,2822.2808,5609.2167,22187.6119,402.5461,6936.6814,4990.9650,220.0828,4219.4119 +2017-01-01,634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9d813ee1cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +2016-12,8812.6442,19793.9092,67976.5294,1251.7872,13443.1378,6258.7008,769.3969,20141.0772 +2017-01,634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ab24ff4bd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +"2016 Q4",8812.6442,19793.9092,67976.5294,1251.7872,13443.1378,6258.7008,769.3969,20141.0772 +"2017 Q1",634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3d6c37034a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +2016,8812.6442,19793.9092,67976.5294,1251.7872,13443.1378,6258.7008,769.3969,20141.0772 +2017,634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..68b4683741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",12.2175 +"30s - 30min",2580.4025 +"30 - 60min",1890.6331 +"1 - 5hr",27352.8039 +"5 - 10hr",31520.6536 +"10 - 18hr",7127.5175 +18+hr,235861.1328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..68b4683741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",12.2175 +"30s - 30min",2580.4025 +"30 - 60min",1890.6331 +"1 - 5hr",27352.8039 +"5 - 10hr",31520.6536 +"10 - 18hr",7127.5175 +18+hr,235861.1328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..68b4683741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",12.2175 +"30s - 30min",2580.4025 +"30 - 60min",1890.6331 +"1 - 5hr",27352.8039 +"5 - 10hr",31520.6536 +"10 - 18hr",7127.5175 +18+hr,235861.1328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..68b4683741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wait Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",12.2175 +"30s - 30min",2580.4025 +"30 - 60min",1890.6331 +"1 - 5hr",27352.8039 +"5 - 10hr",31520.6536 +"10 - 18hr",7127.5175 +18+hr,235861.1328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..560f9aa359 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +2016-12-22,0,0.0003,0,0,0,9.3322,0,0 +2016-12-23,0,0.0000,0,0,0,9.5964,0,0 +2016-12-24,0,0.0000,0,0,0,0.0000,0,0 +2016-12-25,0,0.0000,0.0633,0,0,0.0000,0,110.8222 +2016-12-26,0,0.0033,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,0.0047,0.0269,0,0,0.0000,0,1978.2203 +2016-12-28,0.0000,0.2700,16.2094,0.9747,56.5586,31.5608,12.2750,3480.4833 +2016-12-29,0.0000,0.5378,40.3964,3.7825,79.5814,12.8061,45.6517,5919.1156 +2016-12-30,0.0000,5.8897,311.2100,895.8464,11334.3244,2514.4558,438.5017,179782.0092 +2016-12-31,0.0000,3.3450,1183.4128,895.0256,12245.8150,22160.0661,1846.2236,35087.3694 +2017-01-01,0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ee88826ea3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +2016-12,0.0000,10.0508,1551.3189,1795.6292,23716.2794,24737.8175,2342.6519,226358.0200 +2017-01,0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c94aa7685d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +"2016 Q4",0.0000,10.0508,1551.3189,1795.6292,23716.2794,24737.8175,2342.6519,226358.0200 +"2017 Q1",0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..22bc33b0eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +2016,0.0000,10.0508,1551.3189,1795.6292,23716.2794,24737.8175,2342.6519,226358.0200 +2017,0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..51178042c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Total" +"0 - 1s",6063.3642 +"1 - 30s",16825.8508 +"30s - 30min",77716.7100 +"30 - 60min",931.0625 +"1 - 5hr",11729.0925 +"5 - 10hr",6341.2131 +"10 - 18hr",595.4839 +18+hr,7774.0294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..51178042c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Total" +"0 - 1s",6063.3642 +"1 - 30s",16825.8508 +"30s - 30min",77716.7100 +"30 - 60min",931.0625 +"1 - 5hr",11729.0925 +"5 - 10hr",6341.2131 +"10 - 18hr",595.4839 +18+hr,7774.0294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..51178042c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Total" +"0 - 1s",6063.3642 +"1 - 30s",16825.8508 +"30s - 30min",77716.7100 +"30 - 60min",931.0625 +"1 - 5hr",11729.0925 +"5 - 10hr",6341.2131 +"10 - 18hr",595.4839 +18+hr,7774.0294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..51178042c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Wall Hours: Total" +"0 - 1s",6063.3642 +"1 - 30s",16825.8508 +"30s - 30min",77716.7100 +"30 - 60min",931.0625 +"1 - 5hr",11729.0925 +"5 - 10hr",6341.2131 +"10 - 18hr",595.4839 +18+hr,7774.0294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5cf19e266f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +2016-12-22,0,16.7464,0,0,0,16.9417,0,0 +2016-12-23,0,24.0000,0,0,0,32.6036,0,0 +2016-12-24,0,24.0000,0,0,0,48.0000,0,0 +2016-12-25,0,24.0000,2.1597,0,0,48.0000,0,6.3481 +2016-12-26,0,37.5208,24.0000,0,0,48.0000,0,48.0000 +2016-12-27,24.7503,177.7439,24.8494,0,0,48.0000,0,258.8397 +2016-12-28,270.1775,578.0833,2868.4692,8.2586,88.8158,58.5289,14.9433,686.8669 +2016-12-29,528.8964,2997.0669,14669.8917,37.7336,662.1653,196.6147,62.7536,1349.3872 +2016-12-30,2364.9644,5658.3153,27223.8239,502.9589,3779.5211,586.8636,221.1017,2524.9650 +2016-12-31,2384.1906,5053.2900,21568.7039,345.3361,5742.4006,4590.8931,121.3106,2516.4203 +2017-01-01,490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2958cefd45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +2016-12,5572.9792,14590.7667,66381.8978,894.2872,10272.9028,5674.4456,420.1092,7390.8272 +2017-01,490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8215585894 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +"2016 Q4",5572.9792,14590.7667,66381.8978,894.2872,10272.9028,5674.4456,420.1092,7390.8272 +"2017 Q1",490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..938ae74900 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +2016,5572.9792,14590.7667,66381.8978,894.2872,10272.9028,5674.4456,420.1092,7390.8272 +2017,490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..82c7b7af00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Screwdriver CPU Utilization (%)" +"0 - 1s",2.5915 +"1 - 30s",4.4406 +"30s - 30min",2.9743 +"30 - 60min",0.1816 +"1 - 5hr",2.9830 +"5 - 10hr",0.8912 +"10 - 18hr",0.3173 +18+hr,8.2882 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..54da11e73c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.5759 +"1 - 30s",0.9868 +"30s - 30min",0.6610 +"30 - 60min",0.0425 +"1 - 5hr",0.6978 +"5 - 10hr",0.2085 +"10 - 18hr",0.0742 +18+hr,1.8489 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e30607f6f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.2375 +"1 - 30s",0.4069 +"30s - 30min",0.2725 +"30 - 60min",0.0178 +"1 - 5hr",0.2932 +"5 - 10hr",0.0876 +"10 - 18hr",0.0312 +18+hr,0.7829 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..26e7e91e55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.0635 +"1 - 30s",0.1088 +"30s - 30min",0.0729 +"30 - 60min",0.0048 +"1 - 5hr",0.0792 +"5 - 10hr",0.0237 +"10 - 18hr",0.0084 +18+hr,0.2123 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fb41a42c47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +2016-12-22,0,0.2093,0,0,0,0.2118,0,0 +2016-12-23,0,0.3000,0,0,0,0.3090,0,0 +2016-12-24,0,0.3000,0,0,0,0.3250,0,0 +2016-12-25,0,0.3000,0.0270,0,0,0.3250,0,0.1587 +2016-12-26,0,0.2627,0.3000,0,0,0.3250,0,1.2000 +2016-12-27,0.2208,0.5906,0.3071,0,0,0.3250,0,5.9768 +2016-12-28,4.2714,5.3832,1.8195,0.0688,0.9005,0.2283,0.1868,17.6257 +2016-12-29,4.4008,8.1531,10.4644,0.4600,5.1147,0.8824,1.1283,36.9959 +2016-12-30,7.9654,14.1328,11.2906,1.0348,10.7719,1.7275,2.5520,36.3616 +2016-12-31,6.6853,10.1012,9.0362,1.0464,13.4298,4.0089,0.9035,20.1006 +2017-01-01,1.2408,2.1657,5.3180,0.1227,6.2667,2.5929,0.8120,1.6259 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0cb55b2f20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +2016-12,2.1732,3.7200,2.2220,0.1441,2.1388,0.5930,0.2502,7.5961 +2017-01,0.0400,0.0699,0.1715,0.0040,0.2022,0.0836,0.0262,0.0524 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cc453e1b04 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +"2016 Q4",2.1732,3.7200,2.2220,0.1441,2.1388,0.5930,0.2502,7.5961 +"2017 Q1",0.0138,0.0241,0.0591,0.0014,0.0696,0.0288,0.0090,0.0181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..150e4f4405 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +2016,2.1732,3.7200,2.2220,0.1441,2.1388,0.5930,0.2502,7.5961 +2017,0.0034,0.0059,0.0146,0.0003,0.0172,0.0071,0.0022,0.0045 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3c91c58c3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Users: Active" +"0 - 1s",1 +"1 - 30s",20 +"30s - 30min",32 +"30 - 60min",20 +"1 - 5hr",25 +"5 - 10hr",21 +"10 - 18hr",26 +18+hr,45 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3c91c58c3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Users: Active" +"0 - 1s",1 +"1 - 30s",20 +"30s - 30min",32 +"30 - 60min",20 +"1 - 5hr",25 +"5 - 10hr",21 +"10 - 18hr",26 +18+hr,45 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3c91c58c3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Users: Active" +"0 - 1s",1 +"1 - 30s",20 +"30s - 30min",32 +"30 - 60min",20 +"1 - 5hr",25 +"5 - 10hr",21 +"10 - 18hr",26 +18+hr,45 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3c91c58c3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Users: Active" +"0 - 1s",1 +"1 - 30s",20 +"30s - 30min",32 +"30 - 60min",20 +"1 - 5hr",25 +"5 - 10hr",21 +"10 - 18hr",26 +18+hr,45 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6b13b2da24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +2016-12-22,0,0,0,0,0,0,0,2 +2016-12-23,0,0,0,0,0,0,0,3 +2016-12-24,0,0,0,0,0,0,0,3 +2016-12-25,0,0,0,0,0,0,0,4 +2016-12-26,0,0,0,0,0,0,0,5 +2016-12-27,0,0,0,0,0,0,0,16 +2016-12-28,0,0,0,0,0,0,0,25 +2016-12-29,0,1,4,4,5,6,11,40 +2016-12-30,0,13,25,14,19,15,19,43 +2016-12-31,0,12,15,13,17,12,14,35 +2017-01-01,1,9,15,16,12,6,11,22 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1c9d0261ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +2016-12,0,18,28,16,24,18,23,45 +2017-01,1,9,15,16,12,6,11,22 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9889657fcd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +"2016 Q4",0,18,28,16,24,18,23,45 +"2017 Q1",1,9,15,16,12,6,11,22 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f3e7b3444e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" +2016,0,18,28,16,24,18,23,45 +2017,1,9,15,16,12,6,11,22 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..796ad2c25f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of PIs: Active" +"0 - 1s",1 +"1 - 30s",18 +"30s - 30min",26 +"30 - 60min",15 +"1 - 5hr",22 +"5 - 10hr",16 +"10 - 18hr",21 +18+hr,28 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..796ad2c25f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of PIs: Active" +"0 - 1s",1 +"1 - 30s",18 +"30s - 30min",26 +"30 - 60min",15 +"1 - 5hr",22 +"5 - 10hr",16 +"10 - 18hr",21 +18+hr,28 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..796ad2c25f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of PIs: Active" +"0 - 1s",1 +"1 - 30s",18 +"30s - 30min",26 +"30 - 60min",15 +"1 - 5hr",22 +"5 - 10hr",16 +"10 - 18hr",21 +18+hr,28 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..796ad2c25f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of PIs: Active" +"0 - 1s",1 +"1 - 30s",18 +"30s - 30min",26 +"30 - 60min",15 +"1 - 5hr",22 +"5 - 10hr",16 +"10 - 18hr",21 +18+hr,28 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d2f41dfddd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +2016-12-22,0,0,0,0,0,0,0,2 +2016-12-23,0,0,0,0,0,0,0,3 +2016-12-24,0,0,0,0,0,0,0,3 +2016-12-25,0,0,0,0,0,0,0,3 +2016-12-26,0,0,0,0,0,0,0,4 +2016-12-27,0,0,0,0,0,0,0,11 +2016-12-28,0,0,0,0,0,0,0,18 +2016-12-29,0,1,3,3,4,5,10,26 +2016-12-30,0,11,19,9,16,13,16,27 +2016-12-31,0,11,13,10,15,9,13,22 +2017-01-01,1,8,13,12,11,4,10,15 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4e2255deaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +2016-12,0,16,22,11,21,15,19,28 +2017-01,1,8,13,12,11,4,10,15 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1074b94812 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +"2016 Q4",0,16,22,11,21,15,19,28 +"2017 Q1",1,8,13,12,11,4,10,15 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f59c182c57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" +2016,0,16,22,11,21,15,19,28 +2017,1,8,13,12,11,4,10,15 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..11925a01a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",5 +"1 - 5hr",5 +"5 - 10hr",3 +"10 - 18hr",4 +18+hr,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..11925a01a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",5 +"1 - 5hr",5 +"5 - 10hr",3 +"10 - 18hr",4 +18+hr,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..11925a01a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",5 +"1 - 5hr",5 +"5 - 10hr",3 +"10 - 18hr",4 +18+hr,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..11925a01a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Resources: Active" +"0 - 1s",5 +"1 - 30s",5 +"30s - 30min",5 +"30 - 60min",5 +"1 - 5hr",5 +"5 - 10hr",3 +"10 - 18hr",4 +18+hr,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ccc2cc45c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +2016-12-22,0,0,0,0,0,0,0,2 +2016-12-23,0,0,0,0,0,0,0,2 +2016-12-24,0,0,0,0,0,0,0,2 +2016-12-25,0,0,0,0,0,0,0,2 +2016-12-26,0,0,0,0,0,0,0,3 +2016-12-27,0,0,0,0,0,0,0,5 +2016-12-28,0,0,0,0,0,0,0,5 +2016-12-29,0,1,4,4,4,3,2,5 +2016-12-30,0,5,5,4,4,3,3,5 +2016-12-31,0,5,5,4,5,3,4,5 +2017-01-01,5,5,5,5,5,3,4,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e6e8fd4491 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +2016-12,0,5,5,4,5,3,4,5 +2017-01,5,5,5,5,5,3,4,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9c0aebbb51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +"2016 Q4",0,5,5,4,5,3,4,5 +"2017 Q1",5,5,5,5,5,3,4,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..373ba6763d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" +2016,0,5,5,4,5,3,4,5 +2017,5,5,5,5,5,3,4,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1b78156c88 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dc9d1b8bb1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dc9d1b8bb1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dc9d1b8bb1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..228358b405 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,202.12833333 +2016-12-23,0,0,0,0,0,0,0,194.86787037 +2016-12-24,0,0,0,0,0,0,0,200.00000000 +2016-12-25,0,0,0,0,0,0,0,129.71166667 +2016-12-26,0,0,0,0,0,0,0,205.12121212 +2016-12-27,0,0,0,0,0,0,0,370.31296958 +2016-12-28,0,0,0,0,0,0,0,182.19713395 +2016-12-29,0,0.02666667,2.04706667,3.63511860,7.12643246,213.36079861,31.47967125,123.85804092 +2016-12-30,0,0.04720222,1.02464827,6.60106644,13.24311345,8.02312193,94.50595975,91.31999102 +2016-12-31,0,0.04772036,2.05496092,6.77198865,12.42697538,7.75664920,153.82075315,56.92325035 +2017-01-01,0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..21ff78ef40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +2016-12,0,0.04744826,1.54736848,6.82270633,13.56120300,13.80149317,148.41040217,210.80056448 +2017-01,0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..719bb26957 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +"2016 Q4",0,0.04744826,1.54736848,6.82270633,13.56120300,13.80149317,148.41040217,210.80056448 +"2017 Q1",0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cb34f7f399 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" +2016,0,0.04744826,1.54736848,6.82270633,13.56120300,13.80149317,148.41040217,210.80056448 +2017,0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3237614890 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,16.74638889 +2016-12-23,0,0,0,0,0,0,0,16.00000000 +2016-12-24,0,0,0,0,0,0,0,16.00000000 +2016-12-25,0,0,0,0,0,0,0,8.00000000 +2016-12-26,0,0,0,0,0,0,0,4.36363636 +2016-12-27,0,0,0,0,0,0,0,1.14285714 +2016-12-28,0,0,0,0,0,0,0,0.10666667 +2016-12-29,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.03611738 +2016-12-30,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.02424242 +2016-12-31,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.02635914 +2017-01-01,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7e81fcaa80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 +2017-01,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f9c8331848 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +"2016 Q4",0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 +"2017 Q1",0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..da646d8a15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 +2017,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1c58d1d3c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12-22,0,0,0,0,0,0,0,1.0000 +2016-12-23,0,0,0,0,0,0,0,0.6667 +2016-12-24,0,0,0,0,0,0,0,0.6667 +2016-12-25,0,0,0,0,0,0,0,0.3333 +2016-12-26,0,0,0,0,0,0,0,0.1818 +2016-12-27,0,0,0,0,0,0,0,0.0476 +2016-12-28,0,0,0,0,0,0,0,0.0044 +2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0015 +2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0010 +2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0011 +2017-01-01,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0fb822d113 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 +2017-01,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4ee213f145 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 +"2017 Q1",0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..db95fe1aaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 +2017,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3bfdcbd953 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",0.0000 +"1 - 30s",8.3761 +"30s - 30min",12.6150 +"30 - 60min",11.9980 +"1 - 5hr",10.6108 +"5 - 10hr",29.1064 +"10 - 18hr",70.9822 +18+hr,85.2054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3bfdcbd953 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",0.0000 +"1 - 30s",8.3761 +"30s - 30min",12.6150 +"30 - 60min",11.9980 +"1 - 5hr",10.6108 +"5 - 10hr",29.1064 +"10 - 18hr",70.9822 +18+hr,85.2054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3bfdcbd953 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",0.0000 +"1 - 30s",8.3761 +"30s - 30min",12.6150 +"30 - 60min",11.9980 +"1 - 5hr",10.6108 +"5 - 10hr",29.1064 +"10 - 18hr",70.9822 +18+hr,85.2054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3bfdcbd953 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" +"0 - 1s",0.0000 +"1 - 30s",8.3761 +"30s - 30min",12.6150 +"30 - 60min",11.9980 +"1 - 5hr",10.6108 +"5 - 10hr",29.1064 +"10 - 18hr",70.9822 +18+hr,85.2054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c3ba6d1bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,0,0,0,0,0,0,12.0000 +2016-12-23,0,0,0,0,0,0,0,11.8381 +2016-12-24,0,0,0,0,0,0,0,11.5600 +2016-12-25,0,0,0,0,0,0,0,14.0099 +2016-12-26,0,0,0,0,0,0,0,18.3933 +2016-12-27,0,0,0,0,0,0,0,67.8600 +2016-12-28,0,0,0,0,0,0,0,107.6133 +2016-12-29,0,8.0000,11.0602,11.2686,9.6295,129.5264,57.8719,88.4859 +2016-12-30,0,8.0214,12.6177,11.7066,9.6705,27.1506,69.4558,93.7569 +2016-12-31,0,8.0659,11.9325,11.8839,10.2742,6.5618,80.0038,70.4326 +2017-01-01,0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8f32074e39 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,0,8.0415,12.1568,11.8077,9.9461,26.5253,72.9020,88.4699 +2017-01,0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..be7b69084c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",0,8.0415,12.1568,11.8077,9.9461,26.5253,72.9020,88.4699 +"2017 Q1",0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ee273d31e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" +2016,0,8.0415,12.1568,11.8077,9.9461,26.5253,72.9020,88.4699 +2017,0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..70581a434a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0,0,0,0,0,0,0,12.0000 +2016-12-23,0,0,0,0,0,0,0,12.0000 +2016-12-24,0,0,0,0,0,0,0,12.0000 +2016-12-25,0,0,0,0,0,0,0,12.0000 +2016-12-26,0,0,0,0,0,0,0,12.0000 +2016-12-27,0,0,0,0,0,0,0,12.0000 +2016-12-28,0,0,0,0,0,0,0,12.0000 +2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2017-01-01,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..22adca734e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2017-01,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2b9c15aea4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +"2017 Q1",0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..70cbf9e093 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2017,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c11ba137c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cc106ed217 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cc106ed217 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..cc106ed217 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..17e118fc0c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,16.84402778 +2016-12-23,0,0,0,0,0,0,0,18.86787037 +2016-12-24,0,0,0,0,0,0,0,24.00000000 +2016-12-25,0,0,0,0,0,0,0,13.41796296 +2016-12-26,0,0,0,0,0,0,0,14.32007576 +2016-12-27,0,0,0,0,0,0,0,28.72362434 +2016-12-28,0,0,0,0,0,0,0,19.14359259 +2016-12-29,0,0.00333333,0.20393889,0.33386704,0.80695171,23.85128472,7.16686290,20.61182635 +2016-12-30,0,0.00615899,0.10752299,0.60261784,1.59544717,4.56279920,12.04322688,19.66855233 +2016-12-31,0,0.00600808,0.17849747,0.58784425,1.64400914,5.68685042,18.13074456,16.22165263 +2017-01-01,0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f2b0bb5ecb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +2016-12,0,0.00609280,0.14367879,0.60500652,1.70536588,8.41619561,19.78734420,40.57277608 +2017-01,0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5b6af9ee4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +"2016 Q4",0,0.00609280,0.14367879,0.60500652,1.70536588,8.41619561,19.78734420,40.57277608 +"2017 Q1",0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..99ae63ef5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" +2016,0,0.00609280,0.14367879,0.60500652,1.70536588,8.41619561,19.78734420,40.57277608 +2017,0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a4d68d65b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a4d68d65b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a4d68d65b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a4d68d65b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..246324220e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,12.0000 +2016-12-23,0,0,0,0,0,0,0,8.3333 +2016-12-24,0,0,0,0,0,0,0,8.3333 +2016-12-25,0,0,0,0,0,0,0,14.1667 +2016-12-26,0,0,0,0,0,0,0,15.0000 +2016-12-27,0,0,0,0,0,0,0,29.0238 +2016-12-28,0,0,0,0,0,0,0,11.5644 +2016-12-29,0,8.0000,9.4400,11.0562,8.5556,39.5000,5.0275,6.2438 +2016-12-30,0,7.6652,8.0058,11.1603,8.2130,1.8205,10.8263,5.0444 +2016-12-31,0,7.9714,9.1588,11.6703,8.0921,1.3084,17.1753,4.2521 +2017-01-01,10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..249bec9231 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +2016-12,0,7.8028,8.5822,11.4601,8.1025,1.7354,11.4304,4.2750 +2017-01,10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..59a1679069 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +"2016 Q4",0,7.8028,8.5822,11.4601,8.1025,1.7354,11.4304,4.2750 +"2017 Q1",10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3bdd6ae794 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" +2016,0,7.8028,8.5822,11.4601,8.1025,1.7354,11.4304,4.2750 +2017,10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d31b4dfa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",1.75797943,0.07225916089808289 +"1 - 30s",1.34280665,0.027298224161272592 +"30s - 30min",4.78160354,0.15859935254032856 +"30 - 60min",4.82357202,0.30866999281232865 +"1 - 5hr",10.58790336,0.22380828584819532 +"5 - 10hr",5.12942144,0.19143484631584606 +"10 - 18hr",2.15733883,0.43004631076392297 +18+hr,3.66214825,0.5194762197126669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4d31b4dfa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",1.75797943,0.07225916089808289 +"1 - 30s",1.34280665,0.027298224161272592 +"30s - 30min",4.78160354,0.15859935254032856 +"30 - 60min",4.82357202,0.30866999281232865 +"1 - 5hr",10.58790336,0.22380828584819532 +"5 - 10hr",5.12942144,0.19143484631584606 +"10 - 18hr",2.15733883,0.43004631076392297 +18+hr,3.66214825,0.5194762197126669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4d31b4dfa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",1.75797943,0.07225916089808289 +"1 - 30s",1.34280665,0.027298224161272592 +"30s - 30min",4.78160354,0.15859935254032856 +"30 - 60min",4.82357202,0.30866999281232865 +"1 - 5hr",10.58790336,0.22380828584819532 +"5 - 10hr",5.12942144,0.19143484631584606 +"10 - 18hr",2.15733883,0.43004631076392297 +18+hr,3.66214825,0.5194762197126669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4d31b4dfa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"0 - 1s",1.75797943,0.07225916089808289 +"1 - 30s",1.34280665,0.027298224161272592 +"30s - 30min",4.78160354,0.15859935254032856 +"30 - 60min",4.82357202,0.30866999281232865 +"1 - 5hr",10.58790336,0.22380828584819532 +"5 - 10hr",5.12942144,0.19143484631584606 +"10 - 18hr",2.15733883,0.43004631076392297 +18+hr,3.66214825,0.5194762197126669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..927b713818 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,4.66625000 +2016-12-23,0,0,0,0,0,0,0,9.59638889 +2016-12-24,0,0,0,0,0,0,0,0.00000000 +2016-12-25,0,0,0,0,0,0,0,36.96185185 +2016-12-26,0,0,0,0,0,0,0,0.00066667 +2016-12-27,0,0,0,0,0,0,0,63.81457885 +2016-12-28,0,0,0,0,0,0,0,8.81944104 +2016-12-29,0,0.00027778,39.79101111,7.71368914,12.75797204,3.35656250,1.18908257,1.49871413 +2016-12-30,0,0.80820964,8.57240499,10.22453127,8.41848253,2.41778487,4.21659962,1.24884750 +2016-12-31,0,2.76736224,1.30652462,0.98469655,15.29293925,10.62378277,3.52318783,2.79679134 +2017-01-01,1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d97aa0a1fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +2016-12,0,1.68863779,4.97744000,4.88127932,11.74988540,5.37828591,2.59188527,3.67599756 +2017-01,1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7123dabbde --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +"2016 Q4",0,1.68863779,4.97744000,4.88127932,11.74988540,5.37828591,2.59188527,3.67599756 +"2017 Q1",1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cd74854f09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" +2016,0,1.68863779,4.97744000,4.88127932,11.74988540,5.37828591,2.59188527,3.67599756 +2017,1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8fc67a30a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00425772,0.000020680416493683043 +"30s - 30min",0.14098194,0.0010058497282342677 +"30 - 60min",0.61308951,0.000946207432541567 +"1 - 5hr",1.78755398,0.008479014802875632 +"5 - 10hr",8.07963701, +"10 - 18hr",13.53437998, +18+hr,35.53722212, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c74daedbc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00425772,0.000020682543214807062 +"30s - 30min",0.14098194,0.00100774909771691 +"30 - 60min",0.61308951,0.0011109028185435747 +"1 - 5hr",1.78755398,0.009401875379897017 +"5 - 10hr",8.07963701,0.03239580111285475 +"10 - 18hr",13.53437998, +18+hr,35.53722212,0.1527501916941727 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c74daedbc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00425772,0.000020682543214807062 +"30s - 30min",0.14098194,0.00100774909771691 +"30 - 60min",0.61308951,0.0011109028185435747 +"1 - 5hr",1.78755398,0.009401875379897017 +"5 - 10hr",8.07963701,0.03239580111285475 +"10 - 18hr",13.53437998, +18+hr,35.53722212,0.1527501916941727 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c74daedbc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00425772,0.000020682543214807062 +"30s - 30min",0.14098194,0.00100774909771691 +"30 - 60min",0.61308951,0.0011109028185435747 +"1 - 5hr",1.78755398,0.009401875379897017 +"5 - 10hr",8.07963701,0.03239580111285475 +"10 - 18hr",13.53437998, +18+hr,35.53722212,0.1527501916941727 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0f37ba8607 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,16.84402778 +2016-12-23,0,0,0,0,0,0,0,18.86787037 +2016-12-24,0,0,0,0,0,0,0,24.00000000 +2016-12-25,0,0,0,0,0,0,0,13.41796296 +2016-12-26,0,0,0,0,0,0,0,14.32007576 +2016-12-27,0,0,0,0,0,0,0,12.71865079 +2016-12-28,0,0,0,0,0,0,0,10.16476358 +2016-12-29,0,0.00333333,0.20393889,0.33386704,0.80695171,5.48704861,5.79718400,14.79709452 +2016-12-30,0,0.00615381,0.10523706,0.59942082,1.58562870,4.40082842,7.70464571,15.36433039 +2016-12-31,0,0.00600430,0.17799823,0.58708566,1.60662306,5.64624892,9.09936999,13.99883580 +2017-01-01,0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..afa8f8996d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +2016-12,0,0.00608825,0.14228847,0.60320315,1.68142152,8.15553937,12.17916425,31.00850478 +2017-01,0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..558b6d1ee6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +"2016 Q4",0,0.00608825,0.14228847,0.60320315,1.68142152,8.15553937,12.17916425,31.00850478 +"2017 Q1",0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..26cffb96e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" +2016,0,0.00608825,0.14228847,0.60320315,1.68142152,8.15553937,12.17916425,31.00850478 +2017,0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fd68a699f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","User Expansion Factor" +"0 - 1s",0.0000 +"1 - 30s",316.3051 +"30s - 30min",35.7816 +"30 - 60min",8.9675 +"1 - 5hr",6.8435 +"5 - 10hr",1.6699 +"10 - 18hr",1.1780 +18+hr,1.2185 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fd68a699f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","User Expansion Factor" +"0 - 1s",0.0000 +"1 - 30s",316.3051 +"30s - 30min",35.7816 +"30 - 60min",8.9675 +"1 - 5hr",6.8435 +"5 - 10hr",1.6699 +"10 - 18hr",1.1780 +18+hr,1.2185 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fd68a699f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","User Expansion Factor" +"0 - 1s",0.0000 +"1 - 30s",316.3051 +"30s - 30min",35.7816 +"30 - 60min",8.9675 +"1 - 5hr",6.8435 +"5 - 10hr",1.6699 +"10 - 18hr",1.1780 +18+hr,1.2185 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fd68a699f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","User Expansion Factor" +"0 - 1s",0.0000 +"1 - 30s",316.3051 +"30s - 30min",35.7816 +"30 - 60min",8.9675 +"1 - 5hr",6.8435 +"5 - 10hr",1.6699 +"10 - 18hr",1.1780 +18+hr,1.2185 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1682d47e56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +2016-12-22,0,0,0,0,0,0,0,1.0249 +2016-12-23,0,0,0,0,0,0,0,1.0302 +2016-12-24,0,0,0,0,0,0,0,1.0368 +2016-12-25,0,0,0,0,0,0,0,1.0813 +2016-12-26,0,0,0,0,0,0,0,1.1760 +2016-12-27,0,0,0,0,0,0,0,2.0450 +2016-12-28,0,0,0,0,0,0,0,1.5085 +2016-12-29,0,1.0417,89.1026,13.7294,7.6485,2.9477,1.2752,1.2980 +2016-12-30,0,132.3045,82.8001,17.8304,6.1278,1.2128,1.2140,1.1807 +2016-12-31,0,461.4775,8.3564,2.5988,9.1531,1.9123,1.1838,1.1257 +2017-01-01,0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a3310e7657 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +2016-12,0,278.2336,36.3038,9.1029,7.6090,1.6886,1.2129,1.2318 +2017-01,0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7c99f830f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +"2016 Q4",0,278.2336,36.3038,9.1029,7.6090,1.6886,1.2129,1.2318 +"2017 Q1",0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..58269d0e98 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" +2016,0,278.2336,36.3038,9.1029,7.6090,1.6886,1.2129,1.2318 +2017,0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3791d8aebf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Ended" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3791d8aebf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Ended" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3791d8aebf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Ended" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3791d8aebf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Ended" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..43570954a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +2016-12-22,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0 +2016-12-30,0,4234,15582,3547,2241,75,133,794 +2016-12-31,0,3459,15613,4929,2021,1157,59,903 +2017-01-01,1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a73233d6bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +2016-12,0,7693,31195,8476,4262,1232,192,1697 +2017-01,1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9a497598d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +"2016 Q4",0,7693,31195,8476,4262,1232,192,1697 +"2017 Q1",1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..44b653b421 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" +2016,0,7693,31195,8476,4262,1232,192,1697 +2017,1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8d9fc6e128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Max (Core Count)" +"0 - 1s",12 +"1 - 30s",32 +"30s - 30min",288 +"30 - 60min",96 +"1 - 5hr",80 +"5 - 10hr",160 +"10 - 18hr",112 +18+hr,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8d9fc6e128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Max (Core Count)" +"0 - 1s",12 +"1 - 30s",32 +"30s - 30min",288 +"30 - 60min",96 +"1 - 5hr",80 +"5 - 10hr",160 +"10 - 18hr",112 +18+hr,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8d9fc6e128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Max (Core Count)" +"0 - 1s",12 +"1 - 30s",32 +"30s - 30min",288 +"30 - 60min",96 +"1 - 5hr",80 +"5 - 10hr",160 +"10 - 18hr",112 +18+hr,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8d9fc6e128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Max (Core Count)" +"0 - 1s",12 +"1 - 30s",32 +"30s - 30min",288 +"30 - 60min",96 +"1 - 5hr",80 +"5 - 10hr",160 +"10 - 18hr",112 +18+hr,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1e76b6918 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,0,0,0,12 +2016-12-23,0,0,0,0,0,0,0,12 +2016-12-24,0,0,0,0,0,0,0,12 +2016-12-25,0,0,0,0,0,0,0,24 +2016-12-26,0,0,0,0,0,0,0,24 +2016-12-27,0,0,0,0,0,0,0,144 +2016-12-28,0,0,0,0,0,0,0,192 +2016-12-29,0,8,12,12,20,160,96,192 +2016-12-30,0,24,288,64,80,160,112,336 +2016-12-31,0,32,192,96,64,60,112,336 +2017-01-01,12,32,192,96,48,96,96,96 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..72020e4035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +2016-12,0,32,288,96,80,160,112,336 +2017-01,12,32,192,96,48,96,96,96 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..432b9a65a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +"2016 Q4",0,32,288,96,80,160,112,336 +"2017 Q1",12,32,192,96,48,96,96,96 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6dc21d58c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" +2016,0,32,288,96,80,160,112,336 +2017,12,32,192,96,48,96,96,96 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ee562cde8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Min (Core Count)" +"0 - 1s",8 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",1 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ee562cde8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Min (Core Count)" +"0 - 1s",8 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",1 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ee562cde8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Min (Core Count)" +"0 - 1s",8 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",1 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ee562cde8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Min (Core Count)" +"0 - 1s",8 +"1 - 30s",1 +"30s - 30min",1 +"30 - 60min",1 +"1 - 5hr",1 +"5 - 10hr",1 +"10 - 18hr",1 +18+hr,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e685da27ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,0,0,0,12 +2016-12-23,0,0,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,0,0,1 +2016-12-25,0,0,0,0,0,0,0,1 +2016-12-26,0,0,0,0,0,0,0,1 +2016-12-27,0,0,0,0,0,0,0,1 +2016-12-28,0,0,0,0,0,0,0,1 +2016-12-29,0,8,4,4,1,1,1,1 +2016-12-30,0,1,1,1,1,1,1,1 +2016-12-31,0,1,1,1,1,1,1,1 +2017-01-01,8,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d709e86ccc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +2016-12,0,1,1,1,1,1,1,1 +2017-01,8,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..63661a5a60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +"2016 Q4",0,1,1,1,1,1,1,1 +"2017 Q1",8,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f25f718998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" +2016,0,1,1,1,1,1,1,1 +2017,8,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..06e921eca5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..06e921eca5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..06e921eca5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..06e921eca5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +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/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4fece74fdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0.150000000 +2016-12-23,0,0,0,0,0,0,0,0.104166667 +2016-12-24,0,0,0,0,0,0,0,0.104166667 +2016-12-25,0,0,0,0,0,0,0,0.177083333 +2016-12-26,0,0,0,0,0,0,0,0.125000000 +2016-12-27,0,0,0,0,0,0,0,0.145119048 +2016-12-28,0,0,0,0,0,0,0,0.057822222 +2016-12-29,0,0.200000000,0.059000000,0.069101124,0.053472222,0.329166667,0.062844037,0.031218962 +2016-12-30,0,0.038325856,0.040028806,0.069751778,0.051331115,0.015170670,0.090219561,0.025222222 +2016-12-31,0,0.039856895,0.045793897,0.072939289,0.040460644,0.010902957,0.107345361,0.021260297 +2017-01-01,0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..01ddf893e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +2016-12,0,0.039014039,0.042910898,0.071625348,0.040512620,0.014461974,0.071440217,0.021374761 +2017-01,0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f0ab1428c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0,0.039014039,0.042910898,0.071625348,0.040512620,0.014461974,0.071440217,0.021374761 +"2017 Q1",0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ff93c88fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" +2016,0,0.039014039,0.042910898,0.071625348,0.040512620,0.014461974,0.071440217,0.021374761 +2017,0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5caf04093b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Running" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5caf04093b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Running" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5caf04093b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Running" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5caf04093b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Running" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..97cbd8d166 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +2016-12-22,0,0,0,0,0,0,0,2 +2016-12-23,0,0,0,0,0,0,0,3 +2016-12-24,0,0,0,0,0,0,0,3 +2016-12-25,0,0,0,0,0,0,0,6 +2016-12-26,0,0,0,0,0,0,0,11 +2016-12-27,0,0,0,0,0,0,0,42 +2016-12-28,0,0,0,0,0,0,0,450 +2016-12-29,0,2,50,89,153,8,109,1329 +2016-12-30,0,4235,15622,3656,2404,791,167,1980 +2016-12-31,0,3459,15764,5065,2236,1161,97,1821 +2017-01-01,1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7f15a71aab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +2016-12,0,7693,31346,8612,4477,1236,230,2615 +2017-01,1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1d2d77b157 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +"2016 Q4",0,7693,31346,8612,4477,1236,230,2615 +"2017 Q1",1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b8b1fd7170 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" +2016,0,7693,31346,8612,4477,1236,230,2615 +2017,1861,9113,2633,670,1188,72,101,928 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ebb8e21f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Started" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ebb8e21f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Started" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ebb8e21f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Started" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ebb8e21f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Started" +"0 - 1s",1861 +"1 - 30s",16806 +"30s - 30min",33828 +"30 - 60min",9146 +"1 - 5hr",5450 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..458972b0b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +2016-12-22,0,0,0,0,0,0,0,2 +2016-12-23,0,0,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,3 +2016-12-26,0,0,0,0,0,0,0,5 +2016-12-27,0,0,0,0,0,0,0,31 +2016-12-28,0,0,0,0,0,0,0,408 +2016-12-29,0,2,50,89,153,8,109,879 +2016-12-30,0,4233,15572,3567,2251,783,58,651 +2016-12-31,0,3458,15724,4956,2073,445,63,635 +2017-01-01,1861,9113,2482,534,973,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..58cb9566f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +2016-12,0,7693,31346,8612,4477,1236,230,2615 +2017-01,1861,9113,2482,534,973,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ff52a38552 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +"2016 Q4",0,7693,31346,8612,4477,1236,230,2615 +"2017 Q1",1861,9113,2482,534,973,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d4d81ba0ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" +2016,0,7693,31346,8612,4477,1236,230,2615 +2017,1861,9113,2482,534,973,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e32c3df854 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Submitted" +"0 - 1s",1337 +"1 - 30s",15344 +"30s - 30min",31475 +"30 - 60min",8680 +"1 - 5hr",3888 +"5 - 10hr",922 +"10 - 18hr",268 +18+hr,2502 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..394e51261b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Submitted" +"0 - 1s",1337 +"1 - 30s",15936 +"30s - 30min",33355 +"30 - 60min",9040 +"1 - 5hr",5353 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..394e51261b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Submitted" +"0 - 1s",1337 +"1 - 30s",15936 +"30s - 30min",33355 +"30 - 60min",9040 +"1 - 5hr",5353 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..394e51261b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Number of Jobs Submitted" +"0 - 1s",1337 +"1 - 30s",15936 +"30s - 30min",33355 +"30 - 60min",9040 +"1 - 5hr",5353 +"5 - 10hr",1304 +"10 - 18hr",293 +18+hr,2625 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a48d30bb8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,1 +2016-12-23,0,0,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,1 +2016-12-26,0,0,0,0,0,0,0,5 +2016-12-27,0,0,0,0,0,0,0,18 +2016-12-28,0,0,0,0,0,0,0,379 +2016-12-29,0,2,41,86,103,7,107,860 +2016-12-30,0,4230,14929,3350,1688,781,44,638 +2016-12-31,0,2869,14496,4816,1221,66,54,589 +2017-01-01,1337,8243,2009,428,876,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3e1cd2eb48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +2016-12,0,7693,31346,8612,4477,1236,230,2615 +2017-01,1337,8243,2009,428,876,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b8dc86179a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +"2016 Q4",0,7693,31346,8612,4477,1236,230,2615 +"2017 Q1",1337,8243,2009,428,876,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8dc50045aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" +2016,0,7693,31346,8612,4477,1236,230,2615 +2017,1337,8243,2009,428,876,68,63,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0f0e7ef70d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",578.6189 +"30s - 30min",52315.3122 +"30 - 60min",63206.7303 +"1 - 5hr",83668.3564 +"5 - 10hr",20402.9481 +"10 - 18hr",42946.2353 +18+hr,577437.6358 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0f0e7ef70d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",578.6189 +"30s - 30min",52315.3122 +"30 - 60min",63206.7303 +"1 - 5hr",83668.3564 +"5 - 10hr",20402.9481 +"10 - 18hr",42946.2353 +18+hr,577437.6358 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0f0e7ef70d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",578.6189 +"30s - 30min",52315.3122 +"30 - 60min",63206.7303 +"1 - 5hr",83668.3564 +"5 - 10hr",20402.9481 +"10 - 18hr",42946.2353 +18+hr,577437.6358 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0f0e7ef70d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",578.6189 +"30s - 30min",52315.3122 +"30 - 60min",63206.7303 +"1 - 5hr",83668.3564 +"5 - 10hr",20402.9481 +"10 - 18hr",42946.2353 +18+hr,577437.6358 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e55aa264fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +2016-12-22,0,0,0,0,0,0,0,404.2567 +2016-12-23,0,0,0,0,0,0,0,584.6036 +2016-12-24,0,0,0,0,0,0,0,600.0000 +2016-12-25,0,0,0,0,0,0,0,778.2700 +2016-12-26,0,0,0,0,0,0,0,2256.3333 +2016-12-27,0,0,0,0,0,0,0,15553.1447 +2016-12-28,0,0,0,0,0,0,0,81988.7103 +2016-12-29,0,0.0533,102.3533,323.5256,1090.3442,1706.8864,3431.2842,164607.3364 +2016-12-30,0,199.9014,16007.0553,24133.4989,31836.4447,6346.2894,15782.4953,180813.5822 +2016-12-31,0,165.0647,32394.4039,34300.1225,27786.7169,9005.4697,14920.6131,103657.2389 +2017-01-01,0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..832d12eadd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +2016-12,0,365.0194,48503.8125,58757.1469,60713.5058,17058.6456,34134.3925,551243.4761 +2017-01,0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4f3921dec5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +"2016 Q4",0,365.0194,48503.8125,58757.1469,60713.5058,17058.6456,34134.3925,551243.4761 +"2017 Q1",0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..90b9b377f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" +2016,0,365.0194,48503.8125,58757.1469,60713.5058,17058.6456,34134.3925,551243.4761 +2017,0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5226fdaa02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12-22,0,0,0,0,0,0,0,33.4928 +2016-12-23,0,0,0,0,0,0,0,48.0000 +2016-12-24,0,0,0,0,0,0,0,48.0000 +2016-12-25,0,0,0,0,0,0,0,48.0000 +2016-12-26,0,0,0,0,0,0,0,48.0000 +2016-12-27,0,0,0,0,0,0,0,48.0000 +2016-12-28,0,0,0,0,0,0,0,48.0000 +2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 +2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 +2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 +2017-01-01,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b5274048c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 +2017-01,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..da072d6303 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 +"2017 Q1",0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e369105e36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 +2017,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e2e270caa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.6172 +"30s - 30min",4855.8350 +"30 - 60min",5654.4003 +"1 - 5hr",9897.0397 +"5 - 10hr",10946.2956 +"10 - 18hr",6142.9911 +18+hr,118735.5686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e2e270caa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.6172 +"30s - 30min",4855.8350 +"30 - 60min",5654.4003 +"1 - 5hr",9897.0397 +"5 - 10hr",10946.2956 +"10 - 18hr",6142.9911 +18+hr,118735.5686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e2e270caa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.6172 +"30s - 30min",4855.8350 +"30 - 60min",5654.4003 +"1 - 5hr",9897.0397 +"5 - 10hr",10946.2956 +"10 - 18hr",6142.9911 +18+hr,118735.5686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e2e270caa9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.6172 +"30s - 30min",4855.8350 +"30 - 60min",5654.4003 +"1 - 5hr",9897.0397 +"5 - 10hr",10946.2956 +"10 - 18hr",6142.9911 +18+hr,118735.5686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..647a6e5d47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +2016-12-22,0,0,0,0,0,0,0,33.6881 +2016-12-23,0,0,0,0,0,0,0,56.6036 +2016-12-24,0,0,0,0,0,0,0,72.0000 +2016-12-25,0,0,0,0,0,0,0,80.5078 +2016-12-26,0,0,0,0,0,0,0,157.5208 +2016-12-27,0,0,0,0,0,0,0,1206.3922 +2016-12-28,0,0,0,0,0,0,0,8614.6167 +2016-12-29,0,0.0067,10.1969,29.7142,123.4636,190.8103,781.1881,27393.1172 +2016-12-30,0,26.0833,1679.7242,2203.1708,3835.4550,3609.1742,2011.2189,38943.7336 +2016-12-31,0,20.7819,2813.8342,2977.4311,3676.0044,6602.4333,1758.6822,29539.6294 +2017-01-01,0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ce98d9bcd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +2016-12,0,46.8719,4503.7553,5210.3161,7634.9231,10402.4178,4551.0892,106097.8094 +2017-01,0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3f70ca27a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +"2016 Q4",0,46.8719,4503.7553,5210.3161,7634.9231,10402.4178,4551.0892,106097.8094 +"2017 Q1",0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8fa7363773 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" +2016,0,46.8719,4503.7553,5210.3161,7634.9231,10402.4178,4551.0892,106097.8094 +2017,0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dde0c1911d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Total" +"0 - 1s",3271.5997 +"1 - 30s",22567.2086 +"30s - 30min",161752.0844 +"30 - 60min",44116.3897 +"1 - 5hr",57704.0733 +"5 - 10hr",6688.7656 +"10 - 18hr",632.1003 +18+hr,9613.1392 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dde0c1911d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Total" +"0 - 1s",3271.5997 +"1 - 30s",22567.2086 +"30s - 30min",161752.0844 +"30 - 60min",44116.3897 +"1 - 5hr",57704.0733 +"5 - 10hr",6688.7656 +"10 - 18hr",632.1003 +18+hr,9613.1392 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dde0c1911d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Total" +"0 - 1s",3271.5997 +"1 - 30s",22567.2086 +"30s - 30min",161752.0844 +"30 - 60min",44116.3897 +"1 - 5hr",57704.0733 +"5 - 10hr",6688.7656 +"10 - 18hr",632.1003 +18+hr,9613.1392 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dde0c1911d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wait Hours: Total" +"0 - 1s",3271.5997 +"1 - 30s",22567.2086 +"30s - 30min",161752.0844 +"30 - 60min",44116.3897 +"1 - 5hr",57704.0733 +"5 - 10hr",6688.7656 +"10 - 18hr",632.1003 +18+hr,9613.1392 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a772f966f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +2016-12-22,0,0,0,0,0,0,0,9.3325 +2016-12-23,0,0,0,0,0,0,0,9.5964 +2016-12-24,0,0,0,0,0,0,0,0.0000 +2016-12-25,0,0,0,0,0,0,0,110.8856 +2016-12-26,0,0,0,0,0,0,0,0.0033 +2016-12-27,0,0,0,0,0,0,0,1978.2519 +2016-12-28,0,0,0,0,0,0,0,3598.3319 +2016-12-29,0,0.0006,1989.5506,686.5183,1951.9697,26.8525,129.6100,1317.3697 +2016-12-30,0,3421.1514,133489.4906,36470.9031,18950.0042,1893.1256,244.5628,812.9997 +2016-12-31,0,9569.5386,20543.7931,4880.1561,31702.2631,4727.5833,221.9608,1775.9625 +2017-01-01,3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e7f4b0e518 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +2016-12,0,12990.6906,156022.8342,42037.5775,52604.2369,6647.5614,596.1336,9612.7336 +2017-01,3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5e0be5159c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +"2016 Q4",0,12990.6906,156022.8342,42037.5775,52604.2369,6647.5614,596.1336,9612.7336 +"2017 Q1",3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1c64ff6c0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" +2016,0,12990.6906,156022.8342,42037.5775,52604.2369,6647.5614,596.1336,9612.7336 +2017,3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9d7cc7de56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.5553 +"30s - 30min",4769.1372 +"30 - 60min",5607.3167 +"1 - 5hr",9742.1692 +"5 - 10hr",10535.8467 +"10 - 18hr",3965.5733 +18+hr,93285.2081 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9d7cc7de56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.5553 +"30s - 30min",4769.1372 +"30 - 60min",5607.3167 +"1 - 5hr",9742.1692 +"5 - 10hr",10535.8467 +"10 - 18hr",3965.5733 +18+hr,93285.2081 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9d7cc7de56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.5553 +"30s - 30min",4769.1372 +"30 - 60min",5607.3167 +"1 - 5hr",9742.1692 +"5 - 10hr",10535.8467 +"10 - 18hr",3965.5733 +18+hr,93285.2081 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9d7cc7de56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Wall Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",71.5553 +"30s - 30min",4769.1372 +"30 - 60min",5607.3167 +"1 - 5hr",9742.1692 +"5 - 10hr",10535.8467 +"10 - 18hr",3965.5733 +18+hr,93285.2081 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b3dbb48d1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +2016-12-22,0,0,0,0,0,0,0,33.6881 +2016-12-23,0,0,0,0,0,0,0,56.6036 +2016-12-24,0,0,0,0,0,0,0,72.0000 +2016-12-25,0,0,0,0,0,0,0,80.5078 +2016-12-26,0,0,0,0,0,0,0,157.5208 +2016-12-27,0,0,0,0,0,0,0,534.1833 +2016-12-28,0,0,0,0,0,0,0,4574.1436 +2016-12-29,0,0.0067,10.1969,29.7142,123.4636,43.8964,631.8931,19665.3386 +2016-12-30,0,26.0614,1644.0133,2191.4825,3811.8514,3481.0553,1286.6758,30421.3742 +2016-12-31,0,20.7689,2805.9642,2973.5889,3592.4092,6555.2950,882.6389,25491.8800 +2017-01-01,0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ecf7aea1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +2016-12,0,46.8369,4460.1744,5194.7856,7527.7242,10080.2467,2801.2078,81087.2400 +2017-01,0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6251ade6b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +"2016 Q4",0,46.8369,4460.1744,5194.7856,7527.7242,10080.2467,2801.2078,81087.2400 +"2017 Q1",0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1277063b25 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" +2016,0,46.8369,4460.1744,5194.7856,7527.7242,10080.2467,2801.2078,81087.2400 +2017,0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cb527b856d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.0000 +"1 - 30s",0.0131 +"30s - 30min",1.1847 +"30 - 60min",1.4313 +"1 - 5hr",1.8947 +"5 - 10hr",0.7590 +"10 - 18hr",1.2782 +18+hr,13.0760 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6face7f1a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.0000 +"1 - 30s",0.0029 +"30s - 30min",0.2633 +"30 - 60min",0.3181 +"1 - 5hr",0.4210 +"5 - 10hr",0.1648 +"10 - 18hr",0.2695 +18+hr,2.9058 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a73f017bd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.0000 +"1 - 30s",0.0012 +"30s - 30min",0.1086 +"30 - 60min",0.1312 +"1 - 5hr",0.1736 +"5 - 10hr",0.0695 +"10 - 18hr",0.1113 +18+hr,1.1982 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5f41e08ad3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Screwdriver CPU Utilization (%)" +"0 - 1s",0.0000 +"1 - 30s",0.0003 +"30s - 30min",0.0290 +"30 - 60min",0.0351 +"1 - 5hr",0.0464 +"5 - 10hr",0.0188 +"10 - 18hr",0.0298 +18+hr,0.3205 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e11ebdba8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0,0,0.2106 +2016-12-23,0,0,0,0,0,0,0,0.3045 +2016-12-24,0,0,0,0,0,0,0,0.3125 +2016-12-25,0,0,0,0,0,0,0,0.4053 +2016-12-26,0,0,0,0,0,0,0,0.7834 +2016-12-27,0,0,0,0,0,0,0,3.2402 +2016-12-28,0,0,0,0,0,0,0,17.0810 +2016-12-29,0,0.0001,0.0267,0.0843,0.2839,0.5927,1.7871,34.2932 +2016-12-30,0,0.0416,3.3348,6.2848,8.2907,2.2036,5.4800,37.6695 +2016-12-31,0,0.0344,6.7488,8.9323,5.7889,3.1269,3.8856,21.5953 +2017-01-01,0.0000,0.0445,0.7941,0.9270,4.7823,1.1612,2.2948,5.4571 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1c7f224e57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +2016-12,0,0.0073,0.9716,1.4573,1.2162,0.4936,0.8466,11.0425 +2017-01,0.0000,0.0014,0.0256,0.0299,0.1543,0.0375,0.0740,0.1760 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..33a452015d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +"2016 Q4",0,0.0073,0.9716,1.4573,1.2162,0.4936,0.8466,11.0425 +"2017 Q1",0.0000,0.0005,0.0088,0.0103,0.0531,0.0129,0.0255,0.0606 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a20a5dad9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" +2016,0,0.0073,0.9716,1.4573,1.2162,0.4936,0.8466,11.0425 +2017,0.0000,0.0001,0.0022,0.0025,0.0131,0.0032,0.0063,0.0150 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..66d502987b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Users: Active" +1,49 +4,8 +2,7 +8,5 +6,4 +5,3 +12,3 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..66d502987b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Users: Active" +1,49 +4,8 +2,7 +8,5 +6,4 +5,3 +12,3 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..66d502987b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Users: Active" +1,49 +4,8 +2,7 +8,5 +6,4 +5,3 +12,3 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..66d502987b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Users: Active" +1,49 +4,8 +2,7 +8,5 +6,4 +5,3 +12,3 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2deb89f310 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" +2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,11,0,1,2,1,0,1,0,0,0,0,0,0,0,0 +2016-12-28,19,1,1,2,1,0,2,1,0,0,0,0,0,0,0 +2016-12-29,30,2,2,3,2,2,2,2,0,0,1,0,1,0,0 +2016-12-30,48,7,6,5,3,3,3,2,0,1,1,1,1,1,1 +2016-12-31,40,5,3,5,3,3,2,2,1,0,0,1,0,0,1 +2017-01-01,28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bfeb48d37d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" +2016-12,49,8,7,5,3,3,3,2,1,1,1,1,1,1,1 +2017-01,28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a8c5e94047 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" +"2016 Q4",49,8,7,5,3,3,3,2,1,1,1,1,1,1,1 +"2017 Q1",28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a9f271555d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" +2016,49,8,7,5,3,3,3,2,1,1,1,1,1,1,1 +2017,28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..651632b12c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of PIs: Active" +1,32 +4,8 +2,7 +8,5 +6,3 +12,3 +5,2 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..651632b12c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of PIs: Active" +1,32 +4,8 +2,7 +8,5 +6,3 +12,3 +5,2 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..651632b12c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of PIs: Active" +1,32 +4,8 +2,7 +8,5 +6,3 +12,3 +5,2 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..651632b12c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of PIs: Active" +1,32 +4,8 +2,7 +8,5 +6,3 +12,3 +5,2 +7,2 +3,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..885b28c0e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" +2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,8,0,1,2,1,1,0,0,0,0,0,0,0,0,0 +2016-12-28,15,1,1,2,1,2,0,1,0,0,0,0,0,0,0 +2016-12-29,20,2,2,3,2,2,1,2,0,0,1,0,1,0,0 +2016-12-30,31,7,6,5,2,3,2,2,0,1,1,1,1,1,1 +2016-12-31,26,5,3,5,2,2,2,2,1,0,0,1,0,0,1 +2017-01-01,20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4ae0670743 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" +2016-12,32,8,7,5,2,3,2,2,1,1,1,1,1,1,1 +2017-01,20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..36265199a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" +"2016 Q4",32,8,7,5,2,3,2,2,1,1,1,1,1,1,1 +"2017 Q1",20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3a56a69e37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" +2016,32,8,7,5,2,3,2,2,1,1,1,1,1,1,1 +2017,20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a99480e555 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Resources: Active" +1,5 +4,3 +2,2 +8,2 +12,2 +3,1 +5,1 +6,1 +7,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a99480e555 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Resources: Active" +1,5 +4,3 +2,2 +8,2 +12,2 +3,1 +5,1 +6,1 +7,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a99480e555 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Resources: Active" +1,5 +4,3 +2,2 +8,2 +12,2 +3,1 +5,1 +6,1 +7,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a99480e555 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Resources: Active" +1,5 +4,3 +2,2 +8,2 +12,2 +3,1 +5,1 +6,1 +7,1 +9,1 +14,1 +16,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b1c5245baa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" +2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,5,0,1,2,1,0,0,1,0,0,0,0,0,0,0 +2016-12-28,5,1,1,2,2,0,0,1,1,0,0,0,0,0,0 +2016-12-29,5,2,2,2,2,0,1,1,1,0,1,0,1,0,0 +2016-12-30,5,3,2,2,2,0,1,1,1,1,1,1,1,1,1 +2016-12-31,5,3,2,2,2,1,1,1,1,0,0,1,0,0,1 +2017-01-01,5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..67b26077bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" +2016-12,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1 +2017-01,5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4beccc2036 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" +"2016 Q4",5,3,2,2,2,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..417be5b136 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" +2016,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1 +2017,5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eb995b4923 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cc28d3116c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cc28d3116c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..cc28d3116c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6b1f78e986 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Node Count" +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","[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,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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3417595479 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Node Count" +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","[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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d2c6a27499 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Node Count" +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","[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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d5e471d1f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Node Count" +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","[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/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..39ee882bf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +2016-12-22,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,16.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,16.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,8.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,4.36363636,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1.41176471,0.00000000,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0,0,0 +2016-12-28,0.11650485,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0,0 +2016-12-29,0.02875974,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0 +2016-12-30,0.00167492,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00162739,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000 +2017-01-01,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..69d1e02d52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +2016-12,0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e1db9987ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +"2016 Q4",0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..39c1ae8f1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +2016,0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..73898b4023 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +2016-12-22,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0.6667,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0.6667,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0.3333,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0.1818,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0.0588,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 +2016-12-28,0.0049,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 +2016-12-29,0.0012,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 +2016-12-30,0.0001,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 +2017-01-01,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6874dc4bf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c9b64858f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..672a732eb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..98f5c5c925 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By CPU Hours (Core Count)" +28,336.0000 +24,288.0000 +12,183.8058 +16,179.0578 +20,160.0000 +7,112.0000 +9,108.0000 +8,94.4545 +6,69.2561 +5,60.0000 +14,56.0000 +4,40.6778 +3,36.0000 +2,30.0822 +1,10.2574 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..98f5c5c925 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By CPU Hours (Core Count)" +28,336.0000 +24,288.0000 +12,183.8058 +16,179.0578 +20,160.0000 +7,112.0000 +9,108.0000 +8,94.4545 +6,69.2561 +5,60.0000 +14,56.0000 +4,40.6778 +3,36.0000 +2,30.0822 +1,10.2574 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..98f5c5c925 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By CPU Hours (Core Count)" +28,336.0000 +24,288.0000 +12,183.8058 +16,179.0578 +20,160.0000 +7,112.0000 +9,108.0000 +8,94.4545 +6,69.2561 +5,60.0000 +14,56.0000 +4,40.6778 +3,36.0000 +2,30.0822 +1,10.2574 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..98f5c5c925 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By CPU Hours (Core Count)" +28,336.0000 +24,288.0000 +12,183.8058 +16,179.0578 +20,160.0000 +7,112.0000 +9,108.0000 +8,94.4545 +6,69.2561 +5,60.0000 +14,56.0000 +4,40.6778 +3,36.0000 +2,30.0822 +1,10.2574 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e1db38d68a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.8381 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.5600 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.0099 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.3933 +2016-12-27,0,0,144.0000,0,0,0,0,94.0460,72.0000,0,0,0,0,32.0000,17.3803 +2016-12-28,0,0,186.6424,0,0,112.0000,0,93.9056,65.7129,0,0,32.0000,0,32.0000,18.2927 +2016-12-29,0,0,187.8857,0,160.0000,112.0000,0,95.0709,68.8225,60.0000,56.0000,35.5686,0,32.7542,12.6845 +2016-12-30,336.0000,288.0000,188.5230,183.6426,160.0000,112.0000,108.0000,95.0294,69.8589,60.0000,56.0000,45.9274,0,33.5244,9.4785 +2016-12-31,336.0000,0,161.0440,192.0000,0,112.0000,0,93.8708,69.1050,60.0000,0,42.1685,36.0000,24.6265,9.1250 +2017-01-01,0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c9cadff792 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,336.0000,288.0000,183.8058,184.9507,160.0000,112.0000,108.0000,94.6441,69.2300,60.0000,56.0000,40.9942,36.0000,30.8956,10.4497 +2017-01,0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c41c146c99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",336.0000,288.0000,183.8058,184.9507,160.0000,112.0000,108.0000,94.6441,69.2300,60.0000,56.0000,40.9942,36.0000,30.8956,10.4497 +"2017 Q1",0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0db3db0f45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" +2016,336.0000,288.0000,183.8058,184.9507,160.0000,112.0000,108.0000,94.6441,69.2300,60.0000,56.0000,40.9942,36.0000,30.8956,10.4497 +2017,0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..37db0597ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 +2016-12-28,12.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 +2016-12-29,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 +2016-12-30,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..63148c4df6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0a17584840 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..03d265b5db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dd389f4e80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..be6b5f5d50 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..be6b5f5d50 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..be6b5f5d50 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Per Job: by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..226a70c1bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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,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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..de009ba45a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Node Count" +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","[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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..40ff7784f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Node Count" +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","[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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1f4e7b2372 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Node Count" +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","[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/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..00aa1de7c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..00aa1de7c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..00aa1de7c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..00aa1de7c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +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/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f179cd5e72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3333 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3333 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.1667 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.0000 +2016-12-27,0,0,144.0000,0,0,0,0,88.0000,72.0000,0,0,0,0,32.0000,17.2647 +2016-12-28,0,0,186.6667,0,0,112.0000,0,94.0000,60.0000,0,0,32.0000,0,32.0000,3.5631 +2016-12-29,0,0,186.6667,0,160.0000,112.0000,0,94.7692,69.3333,60.0000,56.0000,36.5714,0,32.7273,3.3930 +2016-12-30,336.0000,288.0000,170.1818,160.0000,160.0000,112.0000,108.0000,88.1404,69.6000,60.0000,56.0000,41.7561,0,24.0000,7.6080 +2016-12-31,336.0000,0,172.8000,192.0000,0,112.0000,0,91.7895,68.0000,60.0000,0,40.0000,36.0000,24.3200,8.5385 +2017-01-01,0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..47987f479d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" +2016-12,336.0000,288.0000,170.1818,170.6667,160.0000,112.0000,108.0000,88.0000,70.1538,60.0000,56.0000,41.4118,36.0000,23.9000,8.2893 +2017-01,0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a454b3460a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" +"2016 Q4",336.0000,288.0000,170.1818,170.6667,160.0000,112.0000,108.0000,88.0000,70.1538,60.0000,56.0000,41.4118,36.0000,23.9000,8.2893 +"2017 Q1",0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cd8628edf2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" +2016,336.0000,288.0000,170.1818,170.6667,160.0000,112.0000,108.0000,88.0000,70.1538,60.0000,56.0000,41.4118,36.0000,23.9000,8.2893 +2017,0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0824459587 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +20,31.02180556,3.7428536858056267 +8,23.32822222,3.5623533676578716 +2,12.75819728,1.7916575165582784 +16,8.82927778,3.577621630132938 +4,8.80284937,1.2555800122268639 +24,8.77666667,0 +12,7.94618687,6.785954421587278 +5,7.86661111,2.858018648480399 +6,7.37370833,4.0104974299359375 +28,4.58277778,0 +1,4.24213692,0.0897695546135694 +3,1.29993827,0.48194573964755716 +14,0.98805556,0.13847507798236555 +9,0.09777778,0 +7,0.00055556,0.00013094570021973103 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0824459587 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +20,31.02180556,3.7428536858056267 +8,23.32822222,3.5623533676578716 +2,12.75819728,1.7916575165582784 +16,8.82927778,3.577621630132938 +4,8.80284937,1.2555800122268639 +24,8.77666667,0 +12,7.94618687,6.785954421587278 +5,7.86661111,2.858018648480399 +6,7.37370833,4.0104974299359375 +28,4.58277778,0 +1,4.24213692,0.0897695546135694 +3,1.29993827,0.48194573964755716 +14,0.98805556,0.13847507798236555 +9,0.09777778,0 +7,0.00055556,0.00013094570021973103 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0824459587 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +20,31.02180556,3.7428536858056267 +8,23.32822222,3.5623533676578716 +2,12.75819728,1.7916575165582784 +16,8.82927778,3.577621630132938 +4,8.80284937,1.2555800122268639 +24,8.77666667,0 +12,7.94618687,6.785954421587278 +5,7.86661111,2.858018648480399 +6,7.37370833,4.0104974299359375 +28,4.58277778,0 +1,4.24213692,0.0897695546135694 +3,1.29993827,0.48194573964755716 +14,0.98805556,0.13847507798236555 +9,0.09777778,0 +7,0.00055556,0.00013094570021973103 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0824459587 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +20,31.02180556,3.7428536858056267 +8,23.32822222,3.5623533676578716 +2,12.75819728,1.7916575165582784 +16,8.82927778,3.577621630132938 +4,8.80284937,1.2555800122268639 +24,8.77666667,0 +12,7.94618687,6.785954421587278 +5,7.86661111,2.858018648480399 +6,7.37370833,4.0104974299359375 +28,4.58277778,0 +1,4.24213692,0.0897695546135694 +3,1.29993827,0.48194573964755716 +14,0.98805556,0.13847507798236555 +9,0.09777778,0 +7,0.00055556,0.00013094570021973103 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..786eb70436 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,4.66625000,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,9.59638889,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,36.96185185,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0 +2016-12-27,0,77.78361111,46.99166667,0,0,0,78.78861111,0,76.08611111,0,61.66345411,0,0,0,0 +2016-12-28,0,108.01750000,87.03238889,0,2.73787037,0,0.00017361,0,36.87611111,0,4.81975823,0,0,0,0.00027778 +2016-12-29,25.72861111,34.46513889,67.80812500,0,11.16486111,0,0.00000000,5.85819444,1.98928571,0,4.28732167,0,0.79222222,0,0.00062500 +2016-12-30,0.00000000,7.04252688,9.45451852,9.63930556,8.55795752,8.77666667,4.30902778,9.20555556,17.26194444,4.58277778,7.19775006,0,1.18388889,0.09777778,0.00055556 +2016-12-31,0,1.87794444,1.16680556,5.17777778,0.39252778,0,0.00000000,0.00000000,0.36703704,0.00000000,2.68714749,1.30061111,0,0,0.00000000 +2017-01-01,36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1b63820f76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" +2016-12,25.72861111,30.53449074,15.67293056,8.15212963,6.81899782,8.77666667,7.94618687,7.86661111,11.17309829,4.58277778,4.93919225,1.30061111,0.98805556,0.09777778,0.00055556 +2017-01,36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d53b7c35d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" +"2016 Q4",25.72861111,30.53449074,15.67293056,8.15212963,6.81899782,8.77666667,7.94618687,7.86661111,11.17309829,4.58277778,4.93919225,1.30061111,0.98805556,0.09777778,0.00055556 +"2017 Q1",36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a84ca61fa7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" +2016,25.72861111,30.53449074,15.67293056,8.15212963,6.81899782,8.77666667,7.94618687,7.86661111,11.17309829,4.58277778,4.93919225,1.30061111,0.98805556,0.09777778,0.00055556 +2017,36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a0cf63d9dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +12,64.23568182, +28,37.77027778, +5,30.72350000, +6,22.41712500, +7,22.02904321, +8,17.76180159,0.6087360678198865 +14,10.08083333,5.736664622204642 +2,5.20598073,0.6639556959407057 +20,4.51402778,1.3866381241776238 +3,4.03675926,0.40654126035691324 +4,3.97137457,0.6800199931656237 +1,1.73983262,0.017634409297817635 +9,0.26055556,0 +16,0.05505556,0.019275199955728954 +24,0.02138889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..196a64c884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +12,64.23568182,5.022295006482176 +28,37.77027778,0 +5,30.72350000,2.787898170200514 +6,22.41712500,4.958147503609022 +7,22.02904321,6.022712308418543 +8,17.76180159,2.736494697732903 +14,10.08083333,7.102298361367882 +2,5.20598073,1.034690026204867 +20,4.51402778,3.1765790052054 +3,4.03675926,0.40654126035691324 +4,3.97137457,0.988521065528704 +1,1.73983262,0.025196235065978963 +9,0.26055556,0 +16,0.05505556,0.019275199955728954 +24,0.02138889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..196a64c884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +12,64.23568182,5.022295006482176 +28,37.77027778,0 +5,30.72350000,2.787898170200514 +6,22.41712500,4.958147503609022 +7,22.02904321,6.022712308418543 +8,17.76180159,2.736494697732903 +14,10.08083333,7.102298361367882 +2,5.20598073,1.034690026204867 +20,4.51402778,3.1765790052054 +3,4.03675926,0.40654126035691324 +4,3.97137457,0.988521065528704 +1,1.73983262,0.025196235065978963 +9,0.26055556,0 +16,0.05505556,0.019275199955728954 +24,0.02138889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..196a64c884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +12,64.23568182,5.022295006482176 +28,37.77027778,0 +5,30.72350000,2.787898170200514 +6,22.41712500,4.958147503609022 +7,22.02904321,6.022712308418543 +8,17.76180159,2.736494697732903 +14,10.08083333,7.102298361367882 +2,5.20598073,1.034690026204867 +20,4.51402778,3.1765790052054 +3,4.03675926,0.40654126035691324 +4,3.97137457,0.988521065528704 +1,1.73983262,0.025196235065978963 +9,0.26055556,0 +16,0.05505556,0.019275199955728954 +24,0.02138889,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..560a1b6859 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,16.84402778,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,18.86787037,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,13.41796296,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,14.32007576,0,0,0 +2016-12-27,20.81333333,0,0,20.66416667,0,10.68798611,0,20.33888889,0,0,0,12.03753268,0,0,0 +2016-12-28,18.58521605,0,0,18.38902778,17.50194444,15.77859375,0,9.92388889,0,0,8.32944444,9.72253304,0,0,0 +2016-12-29,24.00000000,0,13.22000000,14.31675926,7.73555556,21.50342949,1.92694444,22.44030303,6.48888889,0,17.00476190,11.48062263,0,0,0 +2016-12-30,18.84722222,20.80138889,9.85422222,18.73475000,11.80487654,10.17189084,9.11736111,2.09234623,2.51750000,0,2.98219512,1.44640537,0.26055556,0.08611111,0.02138889 +2016-12-31,9.51927778,16.96888889,18.75444444,9.04125000,7.16755556,8.78502193,0,7.69457778,0,3.89516667,6.69218254,1.40446323,0,0.03000000,0 +2017-01-01,0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..aa3a1216cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" +2016-12,64.23568182,37.77027778,26.39488889,32.91446581,22.02904321,24.55454475,10.08083333,8.33155208,9.00638889,3.89516667,7.05847495,1.90964305,0.26055556,0.06740741,0.02138889 +2017-01,0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..92a4c23ad5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" +"2016 Q4",64.23568182,37.77027778,26.39488889,32.91446581,22.02904321,24.55454475,10.08083333,8.33155208,9.00638889,3.89516667,7.05847495,1.90964305,0.26055556,0.06740741,0.02138889 +"2017 Q1",0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a3f981ed9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" +2016,64.23568182,37.77027778,26.39488889,32.91446581,22.02904321,24.55454475,10.08083333,8.33155208,9.00638889,3.89516667,7.05847495,1.90964305,0.26055556,0.06740741,0.02138889 +2017,0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..573c78106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","User Expansion Factor" +24,411.3377 +16,161.3703 +20,7.8723 +2,3.4507 +1,3.4117 +4,3.2166 +8,2.3134 +9,1.3753 +6,1.3289 +3,1.3220 +5,1.2560 +12,1.1237 +28,1.1213 +14,1.0980 +7,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..573c78106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","User Expansion Factor" +24,411.3377 +16,161.3703 +20,7.8723 +2,3.4507 +1,3.4117 +4,3.2166 +8,2.3134 +9,1.3753 +6,1.3289 +3,1.3220 +5,1.2560 +12,1.1237 +28,1.1213 +14,1.0980 +7,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..573c78106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","User Expansion Factor" +24,411.3377 +16,161.3703 +20,7.8723 +2,3.4507 +1,3.4117 +4,3.2166 +8,2.3134 +9,1.3753 +6,1.3289 +3,1.3220 +5,1.2560 +12,1.1237 +28,1.1213 +14,1.0980 +7,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..573c78106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","User Expansion Factor" +24,411.3377 +16,161.3703 +20,7.8723 +2,3.4507 +1,3.4117 +4,3.2166 +8,2.3134 +9,1.3753 +6,1.3289 +3,1.3220 +5,1.2560 +12,1.1237 +28,1.1213 +14,1.0980 +7,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ba9ba3ce32 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" +2016-12-22,0,0,0,0,1.0249,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,1.0302,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,1.0368,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,1.0813,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,1.1760,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,1.6524,1.7710,0,2.4152,0,2.0864,0,0,2.0942,0,0,0 +2016-12-28,0,0,0,2.1666,1.2063,1.0771,2.4222,0,1.8919,0,0,1.1570,0,0,1.0000 +2016-12-29,0,0,3.8567,3.0451,1.1744,1.1059,2.2212,0,1.3242,0,1.3449,1.1216,0,1.0394,1.0000 +2016-12-30,411.3377,112.9403,3.8567,6.2353,5.7153,3.5416,2.4579,1.3753,1.2032,0,1.3579,1.0192,1.1213,1.1042,1.0000 +2016-12-31,0,173.5926,0,1.1025,2.7529,1.2388,1.7277,0,1.1871,1.3338,1.2016,1.0855,1.1213,0,1.0000 +2017-01-01,0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5cd786906b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" +2016-12,411.3377,121.9382,3.8567,2.8687,3.5511,1.9658,2.2390,1.3753,1.3394,1.3338,1.2887,1.1237,1.1213,1.0980,1.0000 +2017-01,0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a8f3b26281 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" +"2016 Q4",411.3377,121.9382,3.8567,2.8687,3.5511,1.9658,2.2390,1.3753,1.3394,1.3338,1.2887,1.1237,1.1213,1.0980,1.0000 +"2017 Q1",0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4e76172ae0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" +2016,411.3377,121.9382,3.8567,2.8687,3.5511,1.9658,2.2390,1.3753,1.3394,1.3338,1.2887,1.1237,1.1213,1.0980,1.0000 +2017,0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e54431efcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Ended" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e54431efcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Ended" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e54431efcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Ended" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e54431efcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Ended" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1cf09b1ce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" +2016-12-22,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 +2016-12-24,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 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,26459,55,34,37,7,1,0,4,2,2,2,1,1,1,0 +2016-12-31,28060,15,27,12,5,10,4,5,1,1,0,0,0,0,1 +2017-01-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0c5dca57a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" +2016-12,54519,70,61,49,12,11,4,9,3,3,2,1,1,1,1 +2017-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..89132eb9f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" +"2016 Q4",54519,70,61,49,12,11,4,9,3,3,2,1,1,1,1 +"2017 Q1",16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..476f1dfd29 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" +2016,54519,70,61,49,12,11,4,9,3,3,2,1,1,1,1 +2017,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..48752d1560 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Max (Core Count)" +28,336 +24,288 +12,192 +16,192 +20,160 +7,112 +9,108 +8,96 +4,80 +6,72 +5,60 +14,56 +2,40 +3,36 +1,32 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..48752d1560 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Max (Core Count)" +28,336 +24,288 +12,192 +16,192 +20,160 +7,112 +9,108 +8,96 +4,80 +6,72 +5,60 +14,56 +2,40 +3,36 +1,32 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..48752d1560 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Max (Core Count)" +28,336 +24,288 +12,192 +16,192 +20,160 +7,112 +9,108 +8,96 +4,80 +6,72 +5,60 +14,56 +2,40 +3,36 +1,32 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..48752d1560 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Max (Core Count)" +28,336 +24,288 +12,192 +16,192 +20,160 +7,112 +9,108 +8,96 +4,80 +6,72 +5,60 +14,56 +2,40 +3,36 +1,32 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7f9262883b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 +2016-12-27,0,0,144,0,0,0,0,96,0,72,0,0,32,0,32 +2016-12-28,0,0,192,0,0,112,0,96,32,72,0,0,32,0,32 +2016-12-29,0,0,192,0,160,112,0,96,64,72,60,56,40,0,32 +2016-12-30,336,288,192,192,160,112,108,96,80,72,60,56,40,0,32 +2016-12-31,336,0,192,192,0,112,0,96,64,72,60,0,40,36,32 +2017-01-01,0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8c37206d0d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" +2016-12,336,288,192,192,160,112,108,96,80,72,60,56,40,36,32 +2017-01,0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8db97154f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" +"2016 Q4",336,288,192,192,160,112,108,96,80,72,60,56,40,36,32 +"2017 Q1",0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c7992462cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" +2016,336,288,192,192,160,112,108,96,80,72,60,56,40,36,32 +2017,0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..881987751d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Min (Core Count)" +28,336 +24,288 +20,160 +16,128 +7,112 +9,108 +12,96 +8,64 +5,60 +14,56 +6,48 +3,36 +4,32 +2,16 +1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..881987751d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Min (Core Count)" +28,336 +24,288 +20,160 +16,128 +7,112 +9,108 +12,96 +8,64 +5,60 +14,56 +6,48 +3,36 +4,32 +2,16 +1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..881987751d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Min (Core Count)" +28,336 +24,288 +20,160 +16,128 +7,112 +9,108 +12,96 +8,64 +5,60 +14,56 +6,48 +3,36 +4,32 +2,16 +1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..881987751d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Min (Core Count)" +28,336 +24,288 +20,160 +16,128 +7,112 +9,108 +12,96 +8,64 +5,60 +14,56 +6,48 +3,36 +4,32 +2,16 +1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7907bed1c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-27,0,0,0,0,0,0,144,64,0,0,72,0,0,32,1 +2016-12-28,0,0,0,0,112,0,144,64,0,0,48,0,32,32,1 +2016-12-29,0,0,160,0,112,0,144,64,60,56,48,0,32,32,1 +2016-12-30,336,288,160,128,112,108,96,64,60,56,48,0,32,16,1 +2016-12-31,336,0,0,192,112,0,96,64,60,0,48,36,32,16,1 +2017-01-01,0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..784be2f368 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" +2016-12,336,288,160,128,112,108,96,64,60,56,48,36,32,16,1 +2017-01,0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8b07d75bfc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" +"2016 Q4",336,288,160,128,112,108,96,64,60,56,48,36,32,16,1 +"2017 Q1",0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e7bf1e76f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" +2016,336,288,160,128,112,108,96,64,60,56,48,36,32,16,1 +2017,0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..22195dbc87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +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/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..22195dbc87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +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/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..22195dbc87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +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/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..22195dbc87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +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/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8243567400 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.150000000 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104166667 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104166667 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177083333 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125000000 +2016-12-27,0,0,0,0,0,0,3.600000000,1.800000000,0,0,1.100000000,0,0,0.800000000,0.086323529 +2016-12-28,0,0,0,0,2.800000000,0,2.333333333,1.500000000,0,0,1.175000000,0,0.800000000,0.800000000,0.017815534 +2016-12-29,0,0,0,4.000000000,2.800000000,0,2.333333333,1.733333333,1.500000000,1.400000000,1.184615385,0,0.457142857,0.409090909,0.016965249 +2016-12-30,8.400000000,7.200000000,4.000000000,4.000000000,2.800000000,2.700000000,2.127272727,1.740000000,1.500000000,1.400000000,1.101754386,0,0.347967480,0.300000000,0.038039989 +2016-12-31,8.400000000,0,4.800000000,0,2.800000000,0,2.160000000,1.700000000,1.500000000,0,1.147368421,0.900000000,0.333333333,0.304000000,0.042692660 +2017-01-01,0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1d719145a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" +2016-12,8.400000000,7.200000000,4.266666667,4.000000000,2.800000000,2.700000000,2.127272727,1.753846154,1.500000000,1.400000000,1.100000000,0.900000000,0.345098039,0.298750000,0.041446367 +2017-01,0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6ade840940 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" +"2016 Q4",8.400000000,7.200000000,4.266666667,4.000000000,2.800000000,2.700000000,2.127272727,1.753846154,1.500000000,1.400000000,1.100000000,0.900000000,0.345098039,0.298750000,0.041446367 +"2017 Q1",0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5b1859a94b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" +2016,8.400000000,7.200000000,4.266666667,4.000000000,2.800000000,2.700000000,2.127272727,1.753846154,1.500000000,1.400000000,1.100000000,0.900000000,0.345098039,0.298750000,0.041446367 +2017,0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b6d125a4b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Running" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b6d125a4b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Running" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b6d125a4b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Running" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b6d125a4b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Running" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..907374b853 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" +2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,34,2,4,0,1,1,0,0,0,0,0,0,0,0,0 +2016-12-28,412,7,16,3,2,9,0,1,0,0,0,0,0,0,0 +2016-12-29,1669,11,26,7,9,9,0,5,2,0,1,1,0,0,0 +2016-12-30,28658,56,57,41,10,11,0,9,5,2,2,1,1,1,1 +2016-12-31,29495,25,38,14,6,10,5,5,3,1,0,0,0,0,1 +2017-01-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b3d092299f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" +2016-12,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +2017-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..42cfc8e345 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" +"2016 Q4",55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +"2017 Q1",16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..903380553b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" +2016,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +2017,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6fa9cf32fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Started" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6fa9cf32fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Started" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6fa9cf32fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Started" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6fa9cf32fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Started" +1,70898 +2,147 +8,105 +4,97 +6,20 +12,11 +3,9 +7,9 +5,5 +16,5 +14,2 +20,2 +9,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..91c0463afe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" +2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,1,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 +2016-12-25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,23,2,4,0,1,1,0,0,0,0,0,0,0,0,0 +2016-12-28,378,5,12,3,1,8,0,1,0,0,0,0,0,0,0 +2016-12-29,1257,4,10,4,7,0,0,4,2,0,1,1,0,0,0 +2016-12-30,26989,45,31,34,1,2,0,4,3,2,1,0,1,1,1 +2016-12-31,27296,24,15,10,3,0,5,0,0,1,0,0,0,0,0 +2017-01-01,14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e864673c83 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" +2016-12,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +2017-01,14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8e2447da80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" +"2016 Q4",55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +"2017 Q1",14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9903f1e952 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" +2016,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +2017,14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dbcb5a97ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Submitted" +1,64137 +2,97 +4,65 +8,64 +6,17 +12,10 +7,9 +3,8 +5,3 +16,3 +14,2 +9,1 +20,0 +24,0 +28,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e17704ee21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Submitted" +1,68887 +2,121 +8,94 +4,77 +6,20 +12,11 +3,9 +7,9 +5,5 +16,4 +14,2 +9,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e17704ee21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Submitted" +1,68887 +2,121 +8,94 +4,77 +6,20 +12,11 +3,9 +7,9 +5,5 +16,4 +14,2 +9,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e17704ee21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Number of Jobs Submitted" +1,68887 +2,121 +8,94 +4,77 +6,20 +12,11 +3,9 +7,9 +5,5 +16,4 +14,2 +9,1 +20,1 +24,1 +28,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..198cd86519 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[4] Number of Jobs Submitted","[8] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[7] Number of Jobs Submitted","[3] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" +2016-12-22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,1,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 +2016-12-25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,17,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,367,0,3,0,0,8,1,0,0,0,0,0,0,0,0 +2016-12-29,1186,1,3,3,7,0,4,0,1,0,1,0,0,0,0 +2016-12-30,25570,31,25,23,0,2,4,0,2,1,1,1,0,0,0 +2016-12-31,24056,24,8,15,3,0,0,4,0,1,0,0,0,0,0 +2017-01-01,12933,41,26,22,7,0,0,4,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9f89f8693a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[8] Number of Jobs Submitted","[4] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[3] Number of Jobs Submitted","[7] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" +2016-12,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +2017-01,12933,41,22,26,7,0,4,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9a70a09359 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[8] Number of Jobs Submitted","[4] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[3] Number of Jobs Submitted","[7] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" +"2016 Q4",55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +"2017 Q1",12933,41,22,26,7,0,4,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c6276bdd68 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[8] Number of Jobs Submitted","[4] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[3] Number of Jobs Submitted","[7] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" +2016,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 +2017,12933,41,22,26,7,0,4,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5d0e191d7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Total" +1,423990.4703 +8,174817.4489 +12,126588.8667 +6,30535.1267 +2,22222.2422 +7,22205.2756 +4,14324.7911 +28,12690.8133 +5,9217.0500 +20,1444.4889 +3,1307.9100 +14,1129.0533 +16,48.0000 +9,28.1400 +24,6.1600 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5d0e191d7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Total" +1,423990.4703 +8,174817.4489 +12,126588.8667 +6,30535.1267 +2,22222.2422 +7,22205.2756 +4,14324.7911 +28,12690.8133 +5,9217.0500 +20,1444.4889 +3,1307.9100 +14,1129.0533 +16,48.0000 +9,28.1400 +24,6.1600 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5d0e191d7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Total" +1,423990.4703 +8,174817.4489 +12,126588.8667 +6,30535.1267 +2,22222.2422 +7,22205.2756 +4,14324.7911 +28,12690.8133 +5,9217.0500 +20,1444.4889 +3,1307.9100 +14,1129.0533 +16,48.0000 +9,28.1400 +24,6.1600 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5d0e191d7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Total" +1,423990.4703 +8,174817.4489 +12,126588.8667 +6,30535.1267 +2,22222.2422 +7,22205.2756 +4,14324.7911 +28,12690.8133 +5,9217.0500 +20,1444.4889 +3,1307.9100 +14,1129.0533 +16,48.0000 +9,28.1400 +24,6.1600 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..00b3ce2c80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" +2016-12-22,404.2567,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,584.6036,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,600.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,778.2700,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2256.3333,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,5783.9203,3982.5956,2997.1200,1487.8200,1301.6889,0,0,0,0,0,0,0,0,0,0 +2016-12-28,20233.3947,23467.9200,30963.2533,2341.3467,2222.9511,1960.2178,799.6267,0,0,0,0,0,0,0,0 +2016-12-29,50186.7367,52904.5600,40320.0000,8701.2600,8050.7844,4331.9111,4034.0000,0,1586.4000,1038.2222,0,107.9089,0,0,0 +2016-12-30,136663.6894,54829.0400,38488.0133,12913.0200,3846.2333,11899.3156,5045.1378,6989.2667,2956.2667,402.8000,0,1021.1444,31.0400,28.1400,6.1600 +2016-12-31,151722.6131,31015.8844,13820.4800,3683.6467,4620.6844,4013.8311,3568.2533,5701.5467,3375.8000,0,701.1300,0,5.7600,0,0 +2017-01-01,54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bf0db4d383 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" +2016-12,369213.8178,166200.0000,126588.8667,29127.0933,20042.3422,22205.2756,13447.0178,12690.8133,7918.4667,1441.0222,701.1300,1129.0533,36.8000,28.1400,6.1600 +2017-01,54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4aa4ff1df3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" +"2016 Q4",369213.8178,166200.0000,126588.8667,29127.0933,20042.3422,22205.2756,13447.0178,12690.8133,7918.4667,1441.0222,701.1300,1129.0533,36.8000,28.1400,6.1600 +"2017 Q1",54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a47d8f2150 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" +2016,369213.8178,166200.0000,126588.8667,29127.0933,20042.3422,22205.2756,13447.0178,12690.8133,7918.4667,1441.0222,701.1300,1129.0533,36.8000,28.1400,6.1600 +2017,54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f8a33a2180 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 +2016-12-28,48.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 +2016-12-29,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 +2016-12-30,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2296c99f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ba0f64c53e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e15a54b695 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..449af38878 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Total" +1,123350.6528 +8,14919.9133 +12,8479.1100 +6,2690.0550 +4,1540.8933 +2,1530.5583 +7,1387.8297 +28,1057.5678 +5,768.0875 +14,282.2633 +20,180.5611 +3,108.9925 +16,4.4044 +9,2.3450 +24,0.5133 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..449af38878 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Total" +1,123350.6528 +8,14919.9133 +12,8479.1100 +6,2690.0550 +4,1540.8933 +2,1530.5583 +7,1387.8297 +28,1057.5678 +5,768.0875 +14,282.2633 +20,180.5611 +3,108.9925 +16,4.4044 +9,2.3450 +24,0.5133 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..449af38878 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Total" +1,123350.6528 +8,14919.9133 +12,8479.1100 +6,2690.0550 +4,1540.8933 +2,1530.5583 +7,1387.8297 +28,1057.5678 +5,768.0875 +14,282.2633 +20,180.5611 +3,108.9925 +16,4.4044 +9,2.3450 +24,0.5133 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..449af38878 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Total" +1,123350.6528 +8,14919.9133 +12,8479.1100 +6,2690.0550 +4,1540.8933 +2,1530.5583 +7,1387.8297 +28,1057.5678 +5,768.0875 +14,282.2633 +20,180.5611 +3,108.9925 +16,4.4044 +9,2.3450 +24,0.5133 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5c64a7fb3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" +2016-12-22,33.6881,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,56.6036,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,72.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,80.5078,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,157.5208,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,409.2761,342.0156,249.7600,123.9850,0,81.3556,0,0,0,0,0,0,0,0,0 +2016-12-28,4005.6836,2019.6600,2007.2033,220.6683,99.9533,138.9344,122.5136,0,0,0,0,0,0,0,0 +2016-12-29,19161.1592,4472.7133,2592.0000,773.1050,476.1333,493.6867,270.7444,0,132.2000,26.9772,129.7778,0,0,0,0 +2016-12-30,41451.0850,4638.3822,2487.8333,1124.0850,489.0800,234.3428,743.7072,582.4389,246.3556,255.2861,50.3500,0,2.7556,2.3450,0.5133 +2016-12-31,41424.6431,2670.6467,1142.3133,325.4850,374.7622,384.7289,250.8644,475.1289,281.3167,0,0,58.4275,0.4800,0,0 +2017-01-01,16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ecbb3867e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" +2016-12,106852.1672,14143.4178,8479.1100,2567.3283,1439.9289,1333.0483,1387.8297,1057.5678,659.8722,282.2633,180.1278,58.4275,3.2356,2.3450,0.5133 +2017-01,16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d88e2538d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" +"2016 Q4",106852.1672,14143.4178,8479.1100,2567.3283,1439.9289,1333.0483,1387.8297,1057.5678,659.8722,282.2633,180.1278,58.4275,3.2356,2.3450,0.5133 +"2017 Q1",16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..899ec5b50f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" +2016,106852.1672,14143.4178,8479.1100,2567.3283,1439.9289,1333.0483,1387.8297,1057.5678,659.8722,282.2633,180.1278,58.4275,3.2356,2.3450,0.5133 +2017,16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..adcb7f7aed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Total" +1,300759.0231 +8,2449.4633 +2,1875.4550 +4,853.8764 +6,147.4742 +12,87.4081 +20,62.0436 +16,44.1464 +5,39.3331 +3,11.6994 +24,8.7767 +28,4.5828 +14,1.9761 +9,0.0978 +7,0.0050 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..adcb7f7aed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Total" +1,300759.0231 +8,2449.4633 +2,1875.4550 +4,853.8764 +6,147.4742 +12,87.4081 +20,62.0436 +16,44.1464 +5,39.3331 +3,11.6994 +24,8.7767 +28,4.5828 +14,1.9761 +9,0.0978 +7,0.0050 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..adcb7f7aed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Total" +1,300759.0231 +8,2449.4633 +2,1875.4550 +4,853.8764 +6,147.4742 +12,87.4081 +20,62.0436 +16,44.1464 +5,39.3331 +3,11.6994 +24,8.7767 +28,4.5828 +14,1.9761 +9,0.0978 +7,0.0050 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..adcb7f7aed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wait Hours: Total" +1,300759.0231 +8,2449.4633 +2,1875.4550 +4,853.8764 +6,147.4742 +12,87.4081 +20,62.0436 +16,44.1464 +5,39.3331 +3,11.6994 +24,8.7767 +28,4.5828 +14,1.9761 +9,0.0978 +7,0.0050 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..72d3883fc4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" +2016-12-22,9.3325,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,9.5964,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,110.8856,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0.0033,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1418.2594,311.1344,93.9833,0,76.0861,78.7886,0,0,0,0,0,0,0,0,0 +2016-12-28,1821.8686,1296.2100,435.1619,8.2136,36.8761,0.0014,0,0,0,0,0,0,0,0,0.0003 +2016-12-29,5389.1633,344.6514,271.2325,44.6594,13.9250,0.0000,25.7286,0,11.7164,0,0,0,0.7922,0,0.0025 +2016-12-30,194260.0764,218.3183,425.4533,290.9706,17.2619,8.6181,0.0000,19.2786,27.6167,0,8.7767,4.5828,1.1839,0.0978,0.0022 +2016-12-31,73348.3778,28.1692,28.0033,3.9253,1.1011,0.0000,0,5.1778,0.0000,6.5031,0,0.0000,0,0,0.0000 +2017-01-01,24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..329c1b4844 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" +2016-12,276367.5633,2198.4833,1253.8344,347.7689,145.2503,87.4081,25.7286,24.4564,39.3331,6.5031,8.7767,4.5828,1.9761,0.0978,0.0050 +2017-01,24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b2608f67df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" +"2016 Q4",276367.5633,2198.4833,1253.8344,347.7689,145.2503,87.4081,25.7286,24.4564,39.3331,6.5031,8.7767,4.5828,1.9761,0.0978,0.0050 +"2017 Q1",24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b854dbd09d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" +2016,276367.5633,2198.4833,1253.8344,347.7689,145.2503,87.4081,25.7286,24.4564,39.3331,6.5031,8.7767,4.5828,1.9761,0.0978,0.0050 +2017,24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3ae94a1fb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Total" +1,123350.6528 +8,1864.9892 +2,765.2792 +12,706.5925 +6,448.3425 +4,385.2233 +7,198.2614 +5,153.6175 +28,37.7703 +3,36.3308 +14,20.1617 +20,9.0281 +16,0.2753 +9,0.2606 +24,0.0214 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3ae94a1fb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Total" +1,123350.6528 +8,1864.9892 +2,765.2792 +12,706.5925 +6,448.3425 +4,385.2233 +7,198.2614 +5,153.6175 +28,37.7703 +3,36.3308 +14,20.1617 +20,9.0281 +16,0.2753 +9,0.2606 +24,0.0214 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3ae94a1fb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Total" +1,123350.6528 +8,1864.9892 +2,765.2792 +12,706.5925 +6,448.3425 +4,385.2233 +7,198.2614 +5,153.6175 +28,37.7703 +3,36.3308 +14,20.1617 +20,9.0281 +16,0.2753 +9,0.2606 +24,0.0214 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3ae94a1fb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Wall Hours: Total" +1,123350.6528 +8,1864.9892 +2,765.2792 +12,706.5925 +6,448.3425 +4,385.2233 +7,198.2614 +5,153.6175 +28,37.7703 +3,36.3308 +14,20.1617 +20,9.0281 +16,0.2753 +9,0.2606 +24,0.0214 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a9c496c579 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" +2016-12-22,33.6881,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,56.6036,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,72.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,80.5078,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,157.5208,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,409.2761,42.7519,40.6778,20.8133,20.6642,0,0,0,0,0,0,0,0,0,0 +2016-12-28,4005.6836,252.4575,69.4672,167.2669,36.7781,24.9883,17.5019,0,0,0,0,0,0,0,0 +2016-12-29,19161.1592,559.0892,246.8433,216.0000,128.8508,119.0333,38.6778,26.4400,0,0,1.9269,6.4889,0,0,0 +2016-12-30,41451.0850,579.7978,117.1714,207.3194,187.3475,122.2700,106.2439,49.2711,20.8014,0,18.2347,2.5175,0.1722,0.2606,0.0214 +2016-12-31,41424.6431,333.8308,192.3644,95.1928,54.2475,93.6906,35.8378,56.2633,16.9689,19.4758,0,0,0.0300,0,0 +2017-01-01,16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b47ae0e747 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" +2016-12,106852.1672,1767.9272,666.5242,706.5925,427.8881,359.9822,198.2614,131.9744,37.7703,19.4758,20.1617,9.0064,0.2022,0.2606,0.0214 +2017-01,16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f82dec08d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" +"2016 Q4",106852.1672,1767.9272,666.5242,706.5925,427.8881,359.9822,198.2614,131.9744,37.7703,19.4758,20.1617,9.0064,0.2022,0.2606,0.0214 +"2017 Q1",16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7c73c67e85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" +2016,106852.1672,1767.9272,666.5242,706.5925,427.8881,359.9822,198.2614,131.9744,37.7703,19.4758,20.1617,9.0064,0.2022,0.2606,0.0214 +2017,16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..55a3235f62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Screwdriver CPU Utilization (%)" +1,9.6012 +8,8.2773 +12,7.7567 +7,3.8551 +6,2.8916 +28,1.2018 +2,1.0522 +5,0.8728 +4,0.4522 +20,0.1368 +3,0.1239 +14,0.1069 +16,0.0045 +9,0.0027 +24,0.0006 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a7f2cabe84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Screwdriver CPU Utilization (%)" +1,2.1336 +8,1.9794 +12,1.5157 +7,0.6425 +6,0.6237 +28,0.2592 +2,0.2489 +5,0.1883 +4,0.1114 +20,0.0295 +3,0.0267 +14,0.0231 +16,0.0010 +9,0.0006 +24,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7f78eeadbb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Screwdriver CPU Utilization (%)" +1,0.8798 +8,0.8672 +12,0.6432 +6,0.2892 +7,0.2435 +28,0.1202 +2,0.1097 +5,0.0873 +4,0.0480 +20,0.0137 +3,0.0124 +14,0.0107 +16,0.0005 +9,0.0003 +24,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0c2f793459 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Screwdriver CPU Utilization (%)" +8,0.2396 +1,0.2353 +12,0.1747 +6,0.0826 +7,0.0625 +28,0.0343 +2,0.0304 +5,0.0249 +4,0.0131 +20,0.0039 +3,0.0035 +14,0.0031 +9,0.0001 +16,0.0001 +24,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e1b1f13346 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Screwdriver CPU Utilization (%)","[8] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" +2016-12-22,0.2106,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0.3045,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0.3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0.4053,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0.7834,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1.2050,2.0743,3.1220,0,1.5498,0,1.3559,0,0,0,0,0,0,0,0 +2016-12-28,4.2153,12.2229,16.1267,2.0419,2.4389,0,2.3156,0,0.8329,0,0,0,0,0,0 +2016-12-29,10.4556,27.5545,21.0000,4.5124,9.0638,0,4.1931,1.6525,2.1010,1.0815,0,0.1124,0,0,0 +2016-12-30,28.4716,28.5568,20.0458,12.3951,13.4511,7.2805,2.0032,3.0794,1.7518,0.4196,0,1.0637,0.0323,0.0293,0.0064 +2016-12-31,31.6089,16.1541,7.1982,4.1811,3.8371,5.9391,2.4066,3.5165,1.2390,0,0.7303,0,0.0060,0,0 +2017-01-01,11.4118,4.4883,0,0,1.4667,0,2.2707,1.3527,0.4572,0.0036,0.6321,0,0.0117,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c85bf88725 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Screwdriver CPU Utilization (%)","[8] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" +2016-12,7.3961,5.7708,5.2745,4.6261,1.5170,0.6610,0.6735,0.4124,0.3416,0.0751,0.0365,0.0588,0.0019,0.0015,0.0003 +2017-01,0.3681,0.1448,0,0,0.0473,0,0.0732,0.0436,0.0147,0.0001,0.0204,0,0.0004,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d988254166 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Screwdriver CPU Utilization (%)","[8] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" +"2016 Q4",7.3961,5.7708,5.2745,1.5170,4.6261,0.6610,0.6735,0.4124,0.3416,0.0751,0.0365,0.0588,0.0019,0.0015,0.0003 +"2017 Q1",0.1268,0.0499,0,0.0163,0,0,0.0252,0.0150,0.0051,0.0000,0.0070,0,0.0001,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dca6b2b73e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[8] Screwdriver CPU Utilization (%)","[1] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" +2016,5.7708,7.3961,5.2745,1.5170,4.6261,0.6610,0.6735,0.4124,0.3416,0.0751,0.0365,0.0588,0.0015,0.0019,0.0003 +2017,0.0123,0.0313,0,0.0040,0,0,0.0062,0.0037,0.0013,0.0000,0.0017,0,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..55d0a8b890 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Users: Active" +Screwdriver,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..55d0a8b890 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Users: Active" +Screwdriver,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..55d0a8b890 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Users: Active" +Screwdriver,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..55d0a8b890 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Users: Active" +Screwdriver,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..58e544dbac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of Users: Active" +2016-12-22,2 +2016-12-23,3 +2016-12-24,3 +2016-12-25,4 +2016-12-26,5 +2016-12-27,16 +2016-12-28,25 +2016-12-29,43 +2016-12-30,64 +2016-12-31,55 +2017-01-01,38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9a31b0de2c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of Users: Active" +2016-12,66 +2017-01,38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..16b4630b7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of Users: Active" +"2016 Q4",66 +"2017 Q1",38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ba18d9f8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of Users: Active" +2016,66 +2017,38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d4713ee7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of PIs: Active" +Screwdriver,41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d4713ee7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of PIs: Active" +Screwdriver,41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d4713ee7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of PIs: Active" +Screwdriver,41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d4713ee7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of PIs: Active" +Screwdriver,41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..96e3db941a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of PIs: Active" +2016-12-22,2 +2016-12-23,3 +2016-12-24,3 +2016-12-25,3 +2016-12-26,4 +2016-12-27,11 +2016-12-28,18 +2016-12-29,28 +2016-12-30,39 +2016-12-31,34 +2017-01-01,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..431d02ad1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of PIs: Active" +2016-12,41 +2017-01,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1dc2a393c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of PIs: Active" +"2016 Q4",41 +"2017 Q1",25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..83ed901316 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of PIs: Active" +2016,41 +2017,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7cdd4cb01c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Resources: Active" +Screwdriver,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7cdd4cb01c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Resources: Active" +Screwdriver,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7cdd4cb01c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Resources: Active" +Screwdriver,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7cdd4cb01c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Resources: Active" +Screwdriver,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1c5d189985 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of Resources: Active" +2016-12-22,2 +2016-12-23,2 +2016-12-24,2 +2016-12-25,2 +2016-12-26,3 +2016-12-27,5 +2016-12-28,5 +2016-12-29,5 +2016-12-30,5 +2016-12-31,5 +2017-01-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b0206ff881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of Resources: Active" +2016-12,5 +2017-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c260ac7618 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of Resources: Active" +"2016 Q4",5 +"2017 Q1",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2ba267b5ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of Resources: Active" +2016,5 +2017,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b14424beec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dcda9ec49c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dcda9ec49c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dcda9ec49c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..73837851a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] CPU Hours: Per Job" +2016-12-22,202.12833333 +2016-12-23,194.86787037 +2016-12-24,200.00000000 +2016-12-25,129.71166667 +2016-12-26,205.12121212 +2016-12-27,370.31296958 +2016-12-28,182.19713395 +2016-12-29,98.42631226 +2016-12-30,9.53454400 +2016-12-31,7.50699692 +2017-01-01,4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2d016fd941 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] CPU Hours: Per Job" +2016-12,13.71267944 +2017-01,4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3d9691cac4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] CPU Hours: Per Job" +"2016 Q4",13.71267944 +"2017 Q1",4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3ff7f1bd10 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] CPU Hours: Per Job" +2016,13.71267944 +2017,4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1b720375d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] GPU Hours: Per Job" +2016-12-22,16.74638889 +2016-12-23,16.00000000 +2016-12-24,16.00000000 +2016-12-25,8.00000000 +2016-12-26,4.36363636 +2016-12-27,1.14285714 +2016-12-28,0.10666667 +2016-12-29,0.02758621 +2016-12-30,0.00166349 +2016-12-31,0.00162146 +2017-01-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..931395676e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] GPU Hours: Per Job" +2016-12,0.00828146 +2017-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7253e758e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] GPU Hours: Per Job" +"2016 Q4",0.00828146 +"2017 Q1",0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3e12c42858 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] GPU Hours: Per Job" +2016,0.00828146 +2017,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..937da59fb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] GPU Count: Per Job" +2016-12-22,1.0000 +2016-12-23,0.6667 +2016-12-24,0.6667 +2016-12-25,0.3333 +2016-12-26,0.1818 +2016-12-27,0.0476 +2016-12-28,0.0044 +2016-12-29,0.0011 +2016-12-30,0.0001 +2016-12-31,0.0001 +2017-01-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8d8c3cd462 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] GPU Count: Per Job" +2016-12,0.0000 +2017-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c6553d41ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] GPU Count: Per Job" +"2016 Q4",0.0000 +"2017 Q1",0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d571a225ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] GPU Count: Per Job" +2016,0.0000 +2017,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..010af7ceab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By CPU Hours (Core Count)" +Screwdriver,65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..010af7ceab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By CPU Hours (Core Count)" +Screwdriver,65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..010af7ceab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By CPU Hours (Core Count)" +Screwdriver,65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..010af7ceab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By CPU Hours (Core Count)" +Screwdriver,65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a6aaa3972d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,12.0000 +2016-12-23,11.8381 +2016-12-24,11.5600 +2016-12-25,14.0099 +2016-12-26,18.3933 +2016-12-27,67.8600 +2016-12-28,107.6133 +2016-12-29,87.5874 +2016-12-30,69.1154 +2016-12-31,43.3544 +2017-01-01,22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..244e3ca308 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,69.5398 +2017-01,22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..45c2612215 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",69.5398 +"2017 Q1",22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..664adb91d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" +2016,69.5398 +2017,22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..af52fb7566 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000 +2016-12-23,12.0000 +2016-12-24,12.0000 +2016-12-25,12.0000 +2016-12-26,12.0000 +2016-12-27,12.0000 +2016-12-28,12.0000 +2016-12-29,12.0000 +2016-12-30,12.0000 +2016-12-31,12.0000 +2017-01-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bc4b0e094e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000 +2017-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..688648ba12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000 +"2017 Q1",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..05c200df73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000 +2017,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6411c49e61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c7ba1b18f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c7ba1b18f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c7ba1b18f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job" +parameters + +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/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ab7b8541a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Node Hours: Per Job" +2016-12-22,16.84402778 +2016-12-23,18.86787037 +2016-12-24,24.00000000 +2016-12-25,13.41796296 +2016-12-26,14.32007576 +2016-12-27,28.72362434 +2016-12-28,19.14359259 +2016-12-29,16.39568790 +2016-12-30,1.81280749 +2016-12-31,1.60081062 +2017-01-01,1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..895eddb5b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Node Hours: Per Job" +2016-12,2.46307856 +2017-01,1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4234fa551c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Node Hours: Per Job" +"2016 Q4",2.46307856 +"2017 Q1",1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b738fd46b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Node Hours: Per Job" +2016,2.46307856 +2017,1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..628019e8b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +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/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..628019e8b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +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/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..628019e8b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +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/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..628019e8b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +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/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..26a2ccb93e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Per Job (Core Count)" +2016-12-22,12.0000 +2016-12-23,8.3333 +2016-12-24,8.3333 +2016-12-25,14.1667 +2016-12-26,15.0000 +2016-12-27,29.0238 +2016-12-28,11.5644 +2016-12-29,6.8638 +2016-12-30,8.0163 +2016-12-31,8.7857 +2017-01-01,9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4fa6485199 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Per Job (Core Count)" +2016-12,8.5390 +2017-01,9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8a7ce70bf3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Per Job (Core Count)" +"2016 Q4",8.5390 +"2017 Q1",9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8ed670af91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Per Job (Core Count)" +2016,8.5390 +2017,9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1124779cd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +Screwdriver,4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1124779cd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +Screwdriver,4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1124779cd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +Screwdriver,4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1124779cd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +Screwdriver,4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8fb06893b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Wait Hours: Per Job" +2016-12-22,4.66625000 +2016-12-23,9.59638889 +2016-12-24,0.00000000 +2016-12-25,36.96185185 +2016-12-26,0.00066667 +2016-12-27,63.81457885 +2016-12-28,8.81944104 +2016-12-29,4.73013286 +2016-12-30,7.20200027 +2016-12-31,2.68411411 +2017-01-01,1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ee8f937c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Wait Hours: Per Job" +2016-12,4.99051340 +2017-01,1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2b0f08cc4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Wait Hours: Per Job" +"2016 Q4",4.99051340 +"2017 Q1",1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..02ee982b53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Wait Hours: Per Job" +2016,4.99051340 +2017,1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7ec84033cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Screwdriver,1.79457892,0.017929611668507588 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b2f6b56a8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Screwdriver,1.79457892,0.0259028363905744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b2f6b56a8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Screwdriver,1.79457892,0.0259028363905744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b2f6b56a8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Screwdriver,1.79457892,0.0259028363905744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d2d3dce377 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Wall Hours: Per Job" +2016-12-22,16.84402778 +2016-12-23,18.86787037 +2016-12-24,24.00000000 +2016-12-25,13.41796296 +2016-12-26,14.32007576 +2016-12-27,12.71865079 +2016-12-28,10.16476358 +2016-12-29,11.78420083 +2016-12-30,1.48544495 +2016-12-31,1.42967081 +2017-01-01,1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..978a933a62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Wall Hours: Per Job" +2016-12,1.97829913 +2017-01,1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3885ac061c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Wall Hours: Per Job" +"2016 Q4",1.97829913 +"2017 Q1",1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e5e834040c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Wall Hours: Per Job" +2016,1.97829913 +2017,1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d40fc85fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"User Expansion Factor" +Screwdriver,3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4d40fc85fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"User Expansion Factor" +Screwdriver,3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4d40fc85fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"User Expansion Factor" +Screwdriver,3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4d40fc85fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"User Expansion Factor" +Screwdriver,3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d3f3931ec4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] User Expansion Factor" +2016-12-22,1.0249 +2016-12-23,1.0302 +2016-12-24,1.0368 +2016-12-25,1.0813 +2016-12-26,1.1760 +2016-12-27,2.0450 +2016-12-28,1.5085 +2016-12-29,1.3802 +2016-12-30,4.9345 +2016-12-31,2.5839 +2017-01-01,2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7ad8ff6f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] User Expansion Factor" +2016-12,3.1481 +2017-01,2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fb3a05cfd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] User Expansion Factor" +"2016 Q4",3.1481 +"2017 Q1",2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cd86fd45e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] User Expansion Factor" +2016,3.1481 +2017,2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6de8c6bbe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Ended" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6de8c6bbe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Ended" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6de8c6bbe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Ended" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6de8c6bbe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Ended" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3868e4a948 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of Jobs Ended" +2016-12-22,0 +2016-12-23,0 +2016-12-24,0 +2016-12-25,0 +2016-12-26,0 +2016-12-27,0 +2016-12-28,0 +2016-12-29,0 +2016-12-30,26606 +2016-12-31,28141 +2017-01-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..39cbaf10b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of Jobs Ended" +2016-12,54747 +2017-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..31fe30f1d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of Jobs Ended" +"2016 Q4",54747 +"2017 Q1",16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4ddcf5422a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of Jobs Ended" +2016,54747 +2017,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c1f36ddeff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Max (Core Count)" +Screwdriver,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c1f36ddeff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Max (Core Count)" +Screwdriver,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c1f36ddeff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Max (Core Count)" +Screwdriver,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c1f36ddeff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Max (Core Count)" +Screwdriver,336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3164dfe060 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Max (Core Count)" +2016-12-22,12 +2016-12-23,12 +2016-12-24,12 +2016-12-25,24 +2016-12-26,24 +2016-12-27,144 +2016-12-28,192 +2016-12-29,192 +2016-12-30,336 +2016-12-31,336 +2017-01-01,192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0ff83944b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Max (Core Count)" +2016-12,336 +2017-01,192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2a70425d60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Max (Core Count)" +"2016 Q4",336 +"2017 Q1",192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1680eb4aa6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Max (Core Count)" +2016,336 +2017,192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c8cf408c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Min (Core Count)" +Screwdriver,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c8cf408c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Min (Core Count)" +Screwdriver,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c8cf408c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Min (Core Count)" +Screwdriver,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c8cf408c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Min (Core Count)" +Screwdriver,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..56d8705bfd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Min (Core Count)" +2016-12-22,12 +2016-12-23,1 +2016-12-24,1 +2016-12-25,1 +2016-12-26,1 +2016-12-27,1 +2016-12-28,1 +2016-12-29,1 +2016-12-30,1 +2016-12-31,1 +2017-01-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9c47de9de8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Min (Core Count)" +2016-12,1 +2017-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..44dd553ae0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Min (Core Count)" +"2016 Q4",1 +"2017 Q1",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..df84695769 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Min (Core Count)" +2016,1 +2017,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7d557792c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +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/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7d557792c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +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/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7d557792c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +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/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7d557792c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +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/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cb33162e3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.150000000 +2016-12-23,0.104166667 +2016-12-24,0.104166667 +2016-12-25,0.177083333 +2016-12-26,0.125000000 +2016-12-27,0.145119048 +2016-12-28,0.057822222 +2016-12-29,0.034318966 +2016-12-30,0.040081442 +2016-12-31,0.043928656 +2017-01-01,0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4707496294 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Normalized (% of Total Cores)" +2016-12,0.042694764 +2017-01,0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a46d32084e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.042694764 +"2017 Q1",0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a369fafa30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Normalized (% of Total Cores)" +2016,0.042694764 +2017,0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6c491eed15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Running" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6c491eed15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Running" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6c491eed15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Running" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6c491eed15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Running" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..441dc8d143 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of Jobs Running" +2016-12-22,2 +2016-12-23,3 +2016-12-24,3 +2016-12-25,6 +2016-12-26,11 +2016-12-27,42 +2016-12-28,450 +2016-12-29,1740 +2016-12-30,28855 +2016-12-31,29603 +2017-01-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8915d316bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of Jobs Running" +2016-12,56209 +2017-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f879363116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of Jobs Running" +"2016 Q4",56209 +"2017 Q1",16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f44b9a46f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of Jobs Running" +2016,56209 +2017,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..73a2a361a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Started" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..73a2a361a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Started" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..73a2a361a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Started" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..73a2a361a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Started" +Screwdriver,71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ec60e41b58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of Jobs Started" +2016-12-22,2 +2016-12-23,1 +2016-12-24,0 +2016-12-25,3 +2016-12-26,5 +2016-12-27,31 +2016-12-28,408 +2016-12-29,1290 +2016-12-30,27115 +2016-12-31,27354 +2017-01-01,15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..17609dbfaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of Jobs Started" +2016-12,56209 +2017-01,15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..abb16b2f12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of Jobs Started" +"2016 Q4",56209 +"2017 Q1",15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..266214efc2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of Jobs Started" +2016,56209 +2017,15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f682d935e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Submitted" +Screwdriver,64416 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..285ec5fa72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Submitted" +Screwdriver,69243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..285ec5fa72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Submitted" +Screwdriver,69243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..285ec5fa72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Number of Jobs Submitted" +Screwdriver,69243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8a709ca88b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Number of Jobs Submitted" +2016-12-22,1 +2016-12-23,1 +2016-12-24,0 +2016-12-25,1 +2016-12-26,5 +2016-12-27,18 +2016-12-28,379 +2016-12-29,1206 +2016-12-30,25660 +2016-12-31,24111 +2017-01-01,13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ecb955462f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Number of Jobs Submitted" +2016-12,56209 +2017-01,13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5287b6bffe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Number of Jobs Submitted" +"2016 Q4",56209 +"2017 Q1",13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3397dc432a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Number of Jobs Submitted" +2016,56209 +2017,13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0ac812f8a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Total" +Screwdriver,840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0ac812f8a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Total" +Screwdriver,840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0ac812f8a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Total" +Screwdriver,840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0ac812f8a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Total" +Screwdriver,840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..23102d003e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] CPU Hours: Total" +2016-12-22,404.2567 +2016-12-23,584.6036 +2016-12-24,600.0000 +2016-12-25,778.2700 +2016-12-26,2256.3333 +2016-12-27,15553.1447 +2016-12-28,81988.7103 +2016-12-29,171261.7833 +2016-12-30,275119.2672 +2016-12-31,222229.6297 +2017-01-01,69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..186e486915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] CPU Hours: Total" +2016-12,770775.9989 +2017-01,69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2a0680efe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] CPU Hours: Total" +"2016 Q4",770775.9989 +"2017 Q1",69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fe7aeec10a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] CPU Hours: Total" +2016,770775.9989 +2017,69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..114cbd12f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] GPU Hours: Total" +2016-12-22,33.4928 +2016-12-23,48.0000 +2016-12-24,48.0000 +2016-12-25,48.0000 +2016-12-26,48.0000 +2016-12-27,48.0000 +2016-12-28,48.0000 +2016-12-29,48.0000 +2016-12-30,48.0000 +2016-12-31,48.0000 +2017-01-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cc8ccac726 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] GPU Hours: Total" +2016-12,465.4928 +2017-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad78335da6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] GPU Hours: Total" +"2016 Q4",465.4928 +"2017 Q1",41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..84a3a19d15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] GPU Hours: Total" +2016,465.4928 +2017,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..90b62b2251 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Total" +Screwdriver,156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..90b62b2251 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Total" +Screwdriver,156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..90b62b2251 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Total" +Screwdriver,156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..90b62b2251 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Total" +Screwdriver,156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..72649b419d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Node Hours: Total" +2016-12-22,33.6881 +2016-12-23,56.6036 +2016-12-24,72.0000 +2016-12-25,80.5078 +2016-12-26,157.5208 +2016-12-27,1206.3922 +2016-12-28,8614.6167 +2016-12-29,28528.4969 +2016-12-30,52308.5600 +2016-12-31,47388.7967 +2017-01-01,17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d2db1b10fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Node Hours: Total" +2016-12,138447.1828 +2017-01,17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..23db1dbd5e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Node Hours: Total" +"2016 Q4",138447.1828 +"2017 Q1",17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..97039e3391 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Node Hours: Total" +2016,138447.1828 +2017,17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..895a6373bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Total" +Screwdriver,306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..895a6373bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Total" +Screwdriver,306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..895a6373bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Total" +Screwdriver,306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..895a6373bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wait Hours: Total" +Screwdriver,306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7b9d8a866d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Wait Hours: Total" +2016-12-22,9.3325 +2016-12-23,9.5964 +2016-12-24,0.0000 +2016-12-25,110.8856 +2016-12-26,0.0033 +2016-12-27,1978.2519 +2016-12-28,3598.3319 +2016-12-29,6101.8714 +2016-12-30,195282.2372 +2016-12-31,73421.2575 +2017-01-01,25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0f39d4bae7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Wait Hours: Total" +2016-12,280511.7678 +2017-01,25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..669aae733d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Wait Hours: Total" +"2016 Q4",280511.7678 +"2017 Q1",25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5c815da1a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Wait Hours: Total" +2016,280511.7678 +2017,25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5751301019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Total" +Screwdriver,127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5751301019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Total" +Screwdriver,127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5751301019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Total" +Screwdriver,127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5751301019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Wall Hours: Total" +Screwdriver,127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c312651dc3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Wall Hours: Total" +2016-12-22,33.6881 +2016-12-23,56.6036 +2016-12-24,72.0000 +2016-12-25,80.5078 +2016-12-26,157.5208 +2016-12-27,534.1833 +2016-12-28,4574.1436 +2016-12-29,20504.5094 +2016-12-30,42862.5139 +2016-12-31,42322.5450 +2017-01-01,16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6df403bf77 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Wall Hours: Total" +2016-12,111198.2156 +2017-01,16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..873f8e9858 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Wall Hours: Total" +"2016 Q4",111198.2156 +"2017 Q1",16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b822ae4a7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Wall Hours: Total" +2016,111198.2156 +2017,16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ca213b33b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Screwdriver CPU Utilization (%)" +Screwdriver,19.0343 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9fbb8a1d15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Screwdriver CPU Utilization (%)" +Screwdriver,4.2299 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d9024b8b2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Screwdriver CPU Utilization (%)" +Screwdriver,1.7442 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..083b1f775c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Screwdriver CPU Utilization (%)" +Screwdriver,0.4665 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8226ea8661 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Screwdriver CPU Utilization (%)" +2016-12-22,0.2106 +2016-12-23,0.3045 +2016-12-24,0.3125 +2016-12-25,0.4053 +2016-12-26,0.7834 +2016-12-27,3.2402 +2016-12-28,17.0810 +2016-12-29,35.6795 +2016-12-30,57.3165 +2016-12-31,46.2978 +2017-01-01,14.5375 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..099dd9e68d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Screwdriver CPU Utilization (%)" +2016-12,15.4402 +2017-01,0.4690 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4029647ccd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Screwdriver CPU Utilization (%)" +"2016 Q4",15.4402 +"2017 Q1",0.1615 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..22cb139203 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Screwdriver CPU Utilization (%)" +2016,15.4402 +2017,0.0398 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..62c6dd045c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Users: Active" +"Mathematical and Physical Sciences",24 +Engineering,13 +Geosciences,9 +"Biological Sciences",6 +"Social, Behavioral, and Economic Sciences",6 +"Computer and Information Science and Engineering",5 +Humanities/Arts,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..62c6dd045c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Users: Active" +"Mathematical and Physical Sciences",24 +Engineering,13 +Geosciences,9 +"Biological Sciences",6 +"Social, Behavioral, and Economic Sciences",6 +"Computer and Information Science and Engineering",5 +Humanities/Arts,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..62c6dd045c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Users: Active" +"Mathematical and Physical Sciences",24 +Engineering,13 +Geosciences,9 +"Biological Sciences",6 +"Social, Behavioral, and Economic Sciences",6 +"Computer and Information Science and Engineering",5 +Humanities/Arts,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..62c6dd045c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Users: Active" +"Mathematical and Physical Sciences",24 +Engineering,13 +Geosciences,9 +"Biological Sciences",6 +"Social, Behavioral, and Economic Sciences",6 +"Computer and Information Science and Engineering",5 +Humanities/Arts,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..45857a20f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" +2016-12-22,1,0,0,1,0,0,0 +2016-12-23,2,0,0,1,0,0,0 +2016-12-24,2,0,0,1,0,0,0 +2016-12-25,3,0,0,1,0,0,0 +2016-12-26,4,0,0,1,0,0,0 +2016-12-27,10,1,0,4,1,0,0 +2016-12-28,15,2,1,4,1,2,0 +2016-12-29,19,6,4,5,3,4,2 +2016-12-30,24,12,8,6,6,5,3 +2016-12-31,20,13,6,5,4,4,3 +2017-01-01,12,10,5,4,3,2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c2f2e1c0a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" +2016-12,24,13,9,6,6,5,3 +2017-01,12,10,5,4,3,2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6a49055b0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" +"2016 Q4",24,13,9,6,6,5,3 +"2017 Q1",12,10,5,4,3,2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7907c220f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" +2016,24,13,9,6,6,5,3 +2017,12,10,5,4,3,2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..212bac5177 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of PIs: Active" +"Mathematical and Physical Sciences",11 +Geosciences,9 +Engineering,8 +"Biological Sciences",4 +"Computer and Information Science and Engineering",4 +"Social, Behavioral, and Economic Sciences",4 +Humanities/Arts,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..212bac5177 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of PIs: Active" +"Mathematical and Physical Sciences",11 +Geosciences,9 +Engineering,8 +"Biological Sciences",4 +"Computer and Information Science and Engineering",4 +"Social, Behavioral, and Economic Sciences",4 +Humanities/Arts,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..212bac5177 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of PIs: Active" +"Mathematical and Physical Sciences",11 +Geosciences,9 +Engineering,8 +"Biological Sciences",4 +"Computer and Information Science and Engineering",4 +"Social, Behavioral, and Economic Sciences",4 +Humanities/Arts,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..212bac5177 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of PIs: Active" +"Mathematical and Physical Sciences",11 +Geosciences,9 +Engineering,8 +"Biological Sciences",4 +"Computer and Information Science and Engineering",4 +"Social, Behavioral, and Economic Sciences",4 +Humanities/Arts,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bcf2e11feb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" +2016-12-22,1,0,0,1,0,0,0 +2016-12-23,2,0,0,1,0,0,0 +2016-12-24,2,0,0,1,0,0,0 +2016-12-25,2,0,0,1,0,0,0 +2016-12-26,3,0,0,1,0,0,0 +2016-12-27,6,0,1,3,0,1,0 +2016-12-28,9,1,2,3,2,1,0 +2016-12-29,10,4,5,3,3,2,1 +2016-12-30,11,8,7,4,4,4,1 +2016-12-31,9,6,8,4,3,3,1 +2017-01-01,6,5,6,3,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..26a787e298 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" +2016-12,11,9,8,4,4,4,1 +2017-01,6,5,6,3,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cffe3f1eca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" +"2016 Q4",11,9,8,4,4,4,1 +"2017 Q1",6,5,6,3,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2a02d91a75 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" +2016,11,9,8,4,4,4,1 +2017,6,5,6,3,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0343c162c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Resources: Active" +"Mathematical and Physical Sciences",5 +"Social, Behavioral, and Economic Sciences",5 +Engineering,3 +Geosciences,3 +"Biological Sciences",2 +Humanities/Arts,2 +"Computer and Information Science and Engineering",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0343c162c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Resources: Active" +"Mathematical and Physical Sciences",5 +"Social, Behavioral, and Economic Sciences",5 +Engineering,3 +Geosciences,3 +"Biological Sciences",2 +Humanities/Arts,2 +"Computer and Information Science and Engineering",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0343c162c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Resources: Active" +"Mathematical and Physical Sciences",5 +"Social, Behavioral, and Economic Sciences",5 +Engineering,3 +Geosciences,3 +"Biological Sciences",2 +Humanities/Arts,2 +"Computer and Information Science and Engineering",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0343c162c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Resources: Active" +"Mathematical and Physical Sciences",5 +"Social, Behavioral, and Economic Sciences",5 +Engineering,3 +Geosciences,3 +"Biological Sciences",2 +Humanities/Arts,2 +"Computer and Information Science and Engineering",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c79bb1feaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" +2016-12-22,1,0,0,0,1,0,0 +2016-12-23,1,0,0,0,1,0,0 +2016-12-24,1,0,0,0,1,0,0 +2016-12-25,1,0,0,0,1,0,0 +2016-12-26,2,0,0,0,1,0,0 +2016-12-27,4,1,1,0,2,0,0 +2016-12-28,4,1,1,1,2,0,1 +2016-12-29,4,4,3,3,2,2,1 +2016-12-30,5,5,3,3,2,2,1 +2016-12-31,5,5,3,3,2,2,1 +2017-01-01,5,5,3,2,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..63706fd663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" +2016-12,5,5,3,3,2,2,1 +2017-01,5,5,3,2,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..08681ffa96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" +"2016 Q4",5,5,3,3,2,2,1 +"2017 Q1",5,5,3,2,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dacc0eda21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" +2016,5,5,3,3,2,2,1 +2017,5,5,3,2,2,2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5dc8e71c4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..228915657c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..228915657c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..228915657c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1290cf60d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" +2016-12-22,0,0,200.95666667,203.30000000,0,0,0 +2016-12-23,0,0,288.00000000,148.30180556,0,0,0 +2016-12-24,0,0,288.00000000,156.00000000,0,0,0 +2016-12-25,0,0,288.00000000,98.05400000,0,0,0 +2016-12-26,0,0,288.00000000,196.83333333,0,0,0 +2016-12-27,1246.47111111,0,166.08277778,349.39508333,0,0,3.21666667 +2016-12-28,147.49854595,0,271.00512821,681.38766382,6.69041168,94.01111111,24.00000000 +2016-12-29,214.07366750,46.91737374,66.39927778,585.33533832,14.21335853,582.30381944,7.39809663 +2016-12-30,229.01666415,107.24694444,26.59341111,19.79102838,14.58756597,6.26633395,3.03737720 +2016-12-31,107.44654864,171.46924897,106.20362847,17.08886588,13.61354217,6.56568955,3.78294327 +2017-01-01,67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1ace5019f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" +2016-12,404.22454684,183.58806397,96.23316926,39.87568906,25.19334377,12.64740448,3.49505680 +2017-01,67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..82a44a8843 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" +"2016 Q4",404.22454684,183.58806397,96.23316926,39.87568906,25.19334377,12.64740448,3.49505680 +"2017 Q1",67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2761cc19c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" +2016,404.22454684,183.58806397,96.23316926,39.87568906,25.19334377,12.64740448,3.49505680 +2017,67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f05dd15b50 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0.00000000,0 +2016-12-23,48.00000000,0,0,0,0,0.00000000,0 +2016-12-24,48.00000000,0,0,0,0,0.00000000,0 +2016-12-25,48.00000000,0,0,0,0,0.00000000,0 +2016-12-26,48.00000000,0,0,0,0,0.00000000,0 +2016-12-27,6.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +2016-12-28,3.69230769,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +2016-12-29,0.73846154,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.27428571,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,1.50000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ccbedcf9bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +2016-12,2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f6c66c488e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +"2016 Q4",2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b24a3d602c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +2016,2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1b4e805068 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0.0000,0 +2016-12-23,2.0000,0,0,0,0,0.0000,0 +2016-12-24,2.0000,0,0,0,0,0.0000,0 +2016-12-25,2.0000,0,0,0,0,0.0000,0 +2016-12-26,2.0000,0,0,0,0,0.0000,0 +2016-12-27,0.2500,0,0.0000,0,0,0.0000,0.0000 +2016-12-28,0.1538,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2016-12-29,0.0308,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0625,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..79d51c87c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +2016-12,0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7f4b24bc8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +"2016 Q4",0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d3d98490ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +2016,0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c70319d289 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" +Engineering,101.2769 +"Mathematical and Physical Sciences",93.8663 +"Biological Sciences",31.3393 +Geosciences,18.1667 +Humanities/Arts,11.8252 +"Social, Behavioral, and Economic Sciences",10.8677 +"Computer and Information Science and Engineering",1.7640 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c70319d289 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" +Engineering,101.2769 +"Mathematical and Physical Sciences",93.8663 +"Biological Sciences",31.3393 +Geosciences,18.1667 +Humanities/Arts,11.8252 +"Social, Behavioral, and Economic Sciences",10.8677 +"Computer and Information Science and Engineering",1.7640 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c70319d289 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" +Engineering,101.2769 +"Mathematical and Physical Sciences",93.8663 +"Biological Sciences",31.3393 +Geosciences,18.1667 +Humanities/Arts,11.8252 +"Social, Behavioral, and Economic Sciences",10.8677 +"Computer and Information Science and Engineering",1.7640 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c70319d289 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" +Engineering,101.2769 +"Mathematical and Physical Sciences",93.8663 +"Biological Sciences",31.3393 +Geosciences,18.1667 +Humanities/Arts,11.8252 +"Social, Behavioral, and Economic Sciences",10.8677 +"Computer and Information Science and Engineering",1.7640 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6dde69dcfd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,12.0000,12.0000,0,0,0,0 +2016-12-23,0,11.6809,12.0000,0,0,0,0 +2016-12-24,0,11.1538,12.0000,0,0,0,0 +2016-12-25,0,15.1906,12.0000,0,0,0,0 +2016-12-26,0,19.3287,12.0000,0,0,0,0 +2016-12-27,96.0000,63.9290,19.8357,0,0,1.0000,0 +2016-12-28,88.1962,124.0581,33.0691,20.0000,0,1.0000,2.8865 +2016-12-29,89.9037,104.0892,28.0857,88.5857,11.5552,10.2034,1.6777 +2016-12-30,112.1825,99.9328,32.5776,23.1791,11.8713,10.9005,1.9011 +2016-12-31,112.3553,64.8745,36.8877,7.7053,11.8540,10.8898,1.7160 +2017-01-01,68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..21b11129d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,102.9933,97.4694,30.0052,26.3413,11.8512,10.8841,1.8047 +2017-01,68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..01991de945 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",102.9933,97.4694,30.0052,26.3413,11.8512,10.8841,1.8047 +"2017 Q1",68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e57983ebf7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" +2016,102.9933,97.4694,30.0052,26.3413,11.8512,10.8841,1.8047 +2017,68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..88244c4a20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0.0000,0 +2016-12-23,12.0000,0,0,0,0,0.0000,0 +2016-12-24,12.0000,0,0,0,0,0.0000,0 +2016-12-25,12.0000,0,0,0,0,0.0000,0 +2016-12-26,12.0000,0,0,0,0,0.0000,0 +2016-12-27,12.0000,0,0.0000,0,0,0.0000,0.0000 +2016-12-28,12.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..80b6d03478 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b1c301a414 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0d75ffecaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..627c883eba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f6d3926355 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f6d3926355 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f6d3926355 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9d23c3f64e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" +2016-12-22,0,0,0,16.74638889,0,16.94166667,0 +2016-12-23,0,0,0,24.00000000,0,16.30180556,0 +2016-12-24,0,0,0,24.00000000,0,24.00000000,0 +2016-12-25,0,0,0,24.00000000,0,11.30155556,0 +2016-12-26,0,0,0,24.00000000,0,13.35208333,0 +2016-12-27,103.87259259,0,0,18.01625000,0,24.91425926,3.21666667 +2016-12-28,23.39817558,5.11274929,0,32.02948718,4.70055556,43.35951567,24.00000000 +2016-12-29,31.24421888,13.00927766,4.34454545,11.06724359,50.53201389,39.47018162,1.27936230 +2016-12-30,33.89972306,13.19797834,9.68358547,5.37832698,4.08397301,1.48685926,0.33097065 +2016-12-31,16.25349374,12.51093474,15.93161523,12.94794271,5.40183243,1.53228783,0.37017739 +2017-01-01,13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..365940c0f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" +2016-12,59.91741394,22.90902738,16.77843434,14.23923287,8.07149077,2.91895910,0.36183462 +2017-01,13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6dc4f413cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" +"2016 Q4",59.91741394,22.90902738,16.77843434,14.23923287,8.07149077,2.91895910,0.36183462 +"2017 Q1",13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..21efb1bc79 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" +2016,59.91741394,22.90902738,16.77843434,14.23923287,8.07149077,2.91895910,0.36183462 +2017,13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..523793d5c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..523793d5c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..523793d5c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..523793d5c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bfc5dd5b1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +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)","[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/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..48cfa69fe6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,27.5440,11.2471,11.0909,9.0258,8.4469,1.7194,1.1430 +2017-01,32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..582d33a807 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",27.5440,11.2471,11.0909,9.0258,8.4469,1.7194,1.1430 +"2017 Q1",32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..82f6119b78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,27.5440,11.2471,11.0909,9.0258,8.4469,1.7194,1.1430 +2017,32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ebe37b0921 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Biological Sciences",23.22531746,3.3791413016727105 +"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 +Engineering,8.29298478,0.8262094447522345 +Humanities/Arts,4.87037458,0.44747381160758987 +Geosciences,4.20178504,0.10235707106304519 +"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 +"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ebe37b0921 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Biological Sciences",23.22531746,3.3791413016727105 +"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 +Engineering,8.29298478,0.8262094447522345 +Humanities/Arts,4.87037458,0.44747381160758987 +Geosciences,4.20178504,0.10235707106304519 +"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 +"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ebe37b0921 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Biological Sciences",23.22531746,3.3791413016727105 +"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 +Engineering,8.29298478,0.8262094447522345 +Humanities/Arts,4.87037458,0.44747381160758987 +Geosciences,4.20178504,0.10235707106304519 +"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 +"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ebe37b0921 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Biological Sciences",23.22531746,3.3791413016727105 +"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 +Engineering,8.29298478,0.8262094447522345 +Humanities/Arts,4.87037458,0.44747381160758987 +Geosciences,4.20178504,0.10235707106304519 +"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 +"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..467e03aaf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" +2016-12-22,0.00027778,9.33222222,0,0,0,0,0 +2016-12-23,0.00000000,9.59638889,0,0,0,0,0 +2016-12-24,0.00000000,0.00000000,0,0,0,0,0 +2016-12-25,0.00000000,36.96185185,0,0,0,0,0 +2016-12-26,0.00000000,0.00066667,0,0,0,0,0 +2016-12-27,202.60396825,12.44448611,103.71148148,0,0,0.00000000,0 +2016-12-28,280.72700000,18.33165509,8.21878931,0,0.00027778,0.00000000,0.04097293 +2016-12-29,12.05893162,39.51646368,3.35201389,0.87133838,8.57675926,7.71266385,0.04345597 +2016-12-30,14.31103283,35.41370328,1.28882479,5.77518519,2.45399724,1.34893024,0.32917740 +2016-12-31,80.03162037,0.66458122,14.92100248,0.00000000,6.31360942,2.80449242,0.35112299 +2017-01-01,11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0f5ec62122 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" +2016-12,33.49072683,22.31151628,9.25718519,4.87037458,3.58140917,2.14923636,0.22278137 +2017-01,11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a0f8564a61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" +"2016 Q4",33.49072683,22.31151628,9.25718519,4.87037458,3.58140917,2.14923636,0.22278137 +"2017 Q1",11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..02290d49fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" +2016,33.49072683,22.31151628,9.25718519,4.87037458,3.58140917,2.14923636,0.22278137 +2017,11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..15020a9074 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Engineering,32.29722077, +"Computer and Information Science and Engineering",25.30770717, +Humanities/Arts,17.27322391, +"Biological Sciences",6.21035170,0.4195997254250178 +Geosciences,5.41253102,0.0390852045071304 +"Mathematical and Physical Sciences",1.37350189,0.05067553106484687 +"Social, Behavioral, and Economic Sciences",0.28820096,0.0031231359871834977 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ae55a4a004 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Engineering,32.29722077,1.1156835781855632 +"Computer and Information Science and Engineering",25.30770717,0.10903555194264934 +Humanities/Arts,17.27322391,1.2812633375632778 +"Biological Sciences",6.21035170,0.9872353046375569 +Geosciences,5.41253102,0.08730703376986411 +"Mathematical and Physical Sciences",1.37350189,0.08794526811918975 +"Social, Behavioral, and Economic Sciences",0.28820096,0.004430889448528951 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ae55a4a004 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Engineering,32.29722077,1.1156835781855632 +"Computer and Information Science and Engineering",25.30770717,0.10903555194264934 +Humanities/Arts,17.27322391,1.2812633375632778 +"Biological Sciences",6.21035170,0.9872353046375569 +Geosciences,5.41253102,0.08730703376986411 +"Mathematical and Physical Sciences",1.37350189,0.08794526811918975 +"Social, Behavioral, and Economic Sciences",0.28820096,0.004430889448528951 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ae55a4a004 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Engineering,32.29722077,1.1156835781855632 +"Computer and Information Science and Engineering",25.30770717,0.10903555194264934 +Humanities/Arts,17.27322391,1.2812633375632778 +"Biological Sciences",6.21035170,0.9872353046375569 +Geosciences,5.41253102,0.08730703376986411 +"Mathematical and Physical Sciences",1.37350189,0.08794526811918975 +"Social, Behavioral, and Economic Sciences",0.28820096,0.004430889448528951 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1060304a70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" +2016-12-22,0,0,0,16.74638889,0,16.94166667,0 +2016-12-23,0,0,0,24.00000000,0,16.30180556,0 +2016-12-24,0,0,0,24.00000000,0,24.00000000,0 +2016-12-25,0,0,0,24.00000000,0,11.30155556,0 +2016-12-26,0,0,0,24.00000000,0,13.35208333,0 +2016-12-27,12.98407407,0,0,14.69149306,0,12.48275000,3.21666667 +2016-12-28,13.52655521,5.11274929,0,19.10641026,4.70055556,14.21502137,24.00000000 +2016-12-29,16.83184733,13.00927766,4.34454545,8.48262821,14.96611111,14.75875356,1.18189040 +2016-12-30,18.95314451,13.19673760,9.68358547,4.19858095,3.99121069,0.65498804,0.31886620 +2016-12-31,9.47680621,12.51093474,15.93161523,7.41091146,5.36329308,0.87636759,0.36858846 +2017-01-01,9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a1e97382a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" +2016-12,33.36889379,22.90818519,16.77843434,10.37271157,7.84480993,1.28661758,0.35467017 +2017-01,9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f98166c86e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" +"2016 Q4",33.36889379,22.90818519,16.77843434,10.37271157,7.84480993,1.28661758,0.35467017 +"2017 Q1",9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cf509ce774 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" +2016,33.36889379,22.90818519,16.77843434,10.37271157,7.84480993,1.28661758,0.35467017 +2017,9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e8a2c4ccbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","User Expansion Factor" +"Mathematical and Physical Sciences",8.2892 +"Social, Behavioral, and Economic Sciences",7.5872 +"Biological Sciences",5.9152 +Geosciences,1.8672 +Engineering,1.5836 +Humanities/Arts,1.2820 +"Computer and Information Science and Engineering",1.0082 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e8a2c4ccbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","User Expansion Factor" +"Mathematical and Physical Sciences",8.2892 +"Social, Behavioral, and Economic Sciences",7.5872 +"Biological Sciences",5.9152 +Geosciences,1.8672 +Engineering,1.5836 +Humanities/Arts,1.2820 +"Computer and Information Science and Engineering",1.0082 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e8a2c4ccbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","User Expansion Factor" +"Mathematical and Physical Sciences",8.2892 +"Social, Behavioral, and Economic Sciences",7.5872 +"Biological Sciences",5.9152 +Geosciences,1.8672 +Engineering,1.5836 +Humanities/Arts,1.2820 +"Computer and Information Science and Engineering",1.0082 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e8a2c4ccbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","User Expansion Factor" +"Mathematical and Physical Sciences",8.2892 +"Social, Behavioral, and Economic Sciences",7.5872 +"Biological Sciences",5.9152 +Geosciences,1.8672 +Engineering,1.5836 +Humanities/Arts,1.2820 +"Computer and Information Science and Engineering",1.0082 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dd7964b9be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" +2016-12-22,1.0495,0,1.0000,0,0,0,0 +2016-12-23,1.0525,0,1.0000,0,0,0,0 +2016-12-24,1.0552,0,1.0000,0,0,0,0 +2016-12-25,1.1158,0,1.0000,0,0,0,0 +2016-12-26,1.2076,0,1.0000,0,0,0,0 +2016-12-27,1.6540,1.0000,2.9970,0,2.5533,0,0 +2016-12-28,1.2374,1.0000,2.6841,1.0000,1.7584,0,1.0014 +2016-12-29,1.5169,3.5135,2.3663,2.8342,1.6577,1.0436,1.0012 +2016-12-30,24.3083,5.1671,6.5484,1.2462,1.4851,1.4225,1.0026 +2016-12-31,1.5676,8.2251,4.5106,1.5960,1.6434,1.1163,1.0186 +2017-01-01,1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76a1c12bce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" +2016-12,8.7685,6.7861,4.1471,1.4970,1.6127,1.2872,1.0081 +2017-01,1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..58615c3d7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" +"2016 Q4",8.7685,6.7861,4.1471,1.4970,1.6127,1.2872,1.0081 +"2017 Q1",1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ccfc093bb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" +2016,8.7685,6.7861,4.1471,1.4970,1.6127,1.2872,1.0081 +2017,1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b323209538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Ended" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b323209538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Ended" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b323209538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Ended" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b323209538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Ended" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..eabe9274db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" +2016-12-22,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0 +2016-12-30,20765,4654,815,88,84,161,39 +2016-12-31,22983,2860,886,1037,330,23,22 +2017-01-01,13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..12dbe9d21d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" +2016-12,43748,7514,1701,1125,414,184,61 +2017-01,13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..878ac6aa6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" +"2016 Q4",43748,7514,1701,1125,414,184,61 +"2017 Q1",13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b916a78410 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" +2016,43748,7514,1701,1125,414,184,61 +2017,13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e8670a7a96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Max (Core Count)" +Engineering,336 +"Biological Sciences",192 +"Mathematical and Physical Sciences",192 +Geosciences,160 +"Computer and Information Science and Engineering",108 +"Social, Behavioral, and Economic Sciences",56 +Humanities/Arts,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e8670a7a96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Max (Core Count)" +Engineering,336 +"Biological Sciences",192 +"Mathematical and Physical Sciences",192 +Geosciences,160 +"Computer and Information Science and Engineering",108 +"Social, Behavioral, and Economic Sciences",56 +Humanities/Arts,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e8670a7a96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Max (Core Count)" +Engineering,336 +"Biological Sciences",192 +"Mathematical and Physical Sciences",192 +Geosciences,160 +"Computer and Information Science and Engineering",108 +"Social, Behavioral, and Economic Sciences",56 +Humanities/Arts,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e8670a7a96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Max (Core Count)" +Engineering,336 +"Biological Sciences",192 +"Mathematical and Physical Sciences",192 +Geosciences,160 +"Computer and Information Science and Engineering",108 +"Social, Behavioral, and Economic Sciences",56 +Humanities/Arts,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1ca92a38b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" +2016-12-22,0,12,12,0,0,0,0 +2016-12-23,0,12,12,0,0,0,0 +2016-12-24,0,12,12,0,0,0,0 +2016-12-25,0,12,24,0,0,0,0 +2016-12-26,0,12,24,0,0,0,0 +2016-12-27,96,64,144,0,0,1,0 +2016-12-28,96,64,192,20,8,1,0 +2016-12-29,112,64,192,160,8,56,12 +2016-12-30,336,192,192,160,108,56,12 +2016-12-31,336,192,192,60,12,48,12 +2017-01-01,96,192,72,160,8,48,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fa1e58c2a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" +2016-12,336,192,192,160,108,56,12 +2017-01,96,192,72,160,8,48,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..72f297bff7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,108,56,12 +"2017 Q1",96,192,72,160,8,48,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fb3915905e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" +2016,336,192,192,160,108,56,12 +2017,96,192,72,160,8,48,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c14f8a3734 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Min (Core Count)" +"Biological Sciences",1 +"Computer and Information Science and Engineering",1 +Engineering,1 +Geosciences,1 +Humanities/Arts,1 +"Mathematical and Physical Sciences",1 +"Social, Behavioral, and Economic Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c14f8a3734 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Min (Core Count)" +"Biological Sciences",1 +"Computer and Information Science and Engineering",1 +Engineering,1 +Geosciences,1 +Humanities/Arts,1 +"Mathematical and Physical Sciences",1 +"Social, Behavioral, and Economic Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c14f8a3734 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Min (Core Count)" +"Biological Sciences",1 +"Computer and Information Science and Engineering",1 +Engineering,1 +Geosciences,1 +Humanities/Arts,1 +"Mathematical and Physical Sciences",1 +"Social, Behavioral, and Economic Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c14f8a3734 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Min (Core Count)" +"Biological Sciences",1 +"Computer and Information Science and Engineering",1 +Engineering,1 +Geosciences,1 +Humanities/Arts,1 +"Mathematical and Physical Sciences",1 +"Social, Behavioral, and Economic Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..91ef9f8b62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" +2016-12-22,12,0,0,0,0,12,0 +2016-12-23,12,0,0,0,0,1,0 +2016-12-24,12,0,0,0,0,1,0 +2016-12-25,12,0,0,0,0,1,0 +2016-12-26,12,0,0,0,0,1,0 +2016-12-27,8,0,96,0,0,1,1 +2016-12-28,8,1,1,20,0,1,1 +2016-12-29,1,1,1,5,4,1,1 +2016-12-30,1,1,1,1,1,1,1 +2016-12-31,1,1,1,1,1,1,1 +2017-01-01,1,1,1,1,4,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9bc4416c22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" +2016-12,1,1,1,1,1,1,1 +2017-01,1,1,1,1,4,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..bbd7bed9ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" +"2016 Q4",1,1,1,1,1,1,1 +"2017 Q1",1,1,1,1,4,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0419087bdf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" +2016,1,1,1,1,1,1,1 +2017,1,1,1,1,4,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..1d3c11ff28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +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 +"Mathematical and Physical Sciences",0.053645246 +Geosciences,0.047546749 +"Social, Behavioral, and Economic Sciences",0.045246083 +"Computer and Information Science and Engineering",0.028814663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e0644fb69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e0644fb69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e0644fb69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e0644fb69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..9ac89accba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +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)","[Geosciences] Job Size: Normalized (% of Total Cores)","[Social, Behavioral, and Economic 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.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,0.025000000,0 +2016-12-28,0.161538462,0,0.244907407,0.256250000,0.500000000,0.025000000,0.029487179 +2016-12-29,0.045000000,0.140909091,0.096679198,0.189383013,0.468750000,0.059678988,0.027854230 +2016-12-30,0.304000000,0.140000000,0.121752266,0.042305188,0.014194479,0.042276790,0.029449405 +2016-12-31,0.470312500,0.136111111,0.078579812,0.046537151,0.011121703,0.047710969,0.027981928 +2017-01-01,0.400650289,0.130000000,0.108176101,0.057665245,0.141732885,0.045808971,0.027484787 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..90280c68f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +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)","[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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1fc6c9063e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,0.344300518,0.138636364,0.093725490,0.014328643,0.045129182,0.042234449,0.028575758 +2017-01,0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..957f3b608f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",0.344300518,0.138636364,0.093725490,0.014328643,0.045129182,0.042234449,0.028575758 +"2017 Q1",0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c55eda040a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,0.344300518,0.138636364,0.093725490,0.014328643,0.045129182,0.042234449,0.028575758 +2017,0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64b1a46262 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Running" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..64b1a46262 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Running" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..64b1a46262 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Running" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..64b1a46262 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Running" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e3b0ae3973 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" +2016-12-22,0,1,0,0,0,1,0 +2016-12-23,0,2,0,0,0,1,0 +2016-12-24,0,2,0,0,0,1,0 +2016-12-25,0,5,0,0,0,1,0 +2016-12-26,0,10,0,0,0,1,0 +2016-12-27,1,30,0,0,3,8,0 +2016-12-28,1,78,195,1,162,13,0 +2016-12-29,257,156,981,4,266,65,11 +2016-12-30,21034,4761,1680,809,331,175,65 +2016-12-31,23475,2934,1660,1049,426,32,27 +2017-01-01,13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a3e864c9f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" +2016-12,44240,7588,2475,1137,510,193,66 +2017-01,13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..edd0093187 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" +"2016 Q4",44240,7588,2475,1137,510,193,66 +"2017 Q1",13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b0bb08cb92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" +2016,44240,7588,2475,1137,510,193,66 +2017,13956,469,986,818,159,173,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d47823526f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Started" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d47823526f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Started" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d47823526f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Started" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d47823526f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Started" +"Social, Behavioral, and Economic Sciences",57704 +"Mathematical and Physical Sciences",7983 +"Computer and Information Science and Engineering",2687 +Geosciences,1943 +Engineering,573 +"Biological Sciences",357 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7a7373f631 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" +2016-12-22,0,1,0,0,0,1,0 +2016-12-23,0,1,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0 +2016-12-25,0,3,0,0,0,0,0 +2016-12-26,0,5,0,0,0,0,0 +2016-12-27,1,20,0,0,3,7,0 +2016-12-28,0,48,195,1,159,5,0 +2016-12-29,256,78,786,3,104,52,11 +2016-12-30,20777,4605,699,805,65,110,54 +2016-12-31,23206,2827,795,328,179,18,1 +2017-01-01,13464,395,212,806,63,164,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..06a1f904a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" +2016-12,44240,7588,2475,1137,510,193,66 +2017-01,13464,395,212,806,63,164,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9fb5789e09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" +"2016 Q4",44240,7588,2475,1137,510,193,66 +"2017 Q1",13464,395,212,806,63,164,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f685ea7158 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" +2016,44240,7588,2475,1137,510,193,66 +2017,13464,395,212,806,63,164,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..17f78a27df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Submitted" +"Social, Behavioral, and Economic Sciences",52367 +"Mathematical and Physical Sciences",7107 +"Computer and Information Science and Engineering",2644 +Geosciences,1596 +Engineering,448 +"Biological Sciences",223 +Humanities/Arts,31 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5f64ed38aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Submitted" +"Social, Behavioral, and Economic Sciences",55774 +"Mathematical and Physical Sciences",7982 +"Computer and Information Science and Engineering",2687 +Geosciences,1879 +Engineering,573 +"Biological Sciences",282 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5f64ed38aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Submitted" +"Social, Behavioral, and Economic Sciences",55774 +"Mathematical and Physical Sciences",7982 +"Computer and Information Science and Engineering",2687 +Geosciences,1879 +Engineering,573 +"Biological Sciences",282 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5f64ed38aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Number of Jobs Submitted" +"Social, Behavioral, and Economic Sciences",55774 +"Mathematical and Physical Sciences",7982 +"Computer and Information Science and Engineering",2687 +Geosciences,1879 +Engineering,573 +"Biological Sciences",282 +Humanities/Arts,66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c51fb0b4c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,1,0 +2016-12-23,0,1,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0 +2016-12-25,0,1,0,0,0,0,0 +2016-12-26,0,5,0,0,0,0,0 +2016-12-27,1,16,0,0,0,1,0 +2016-12-28,0,36,195,1,147,0,0 +2016-12-29,206,54,786,2,97,50,11 +2016-12-30,20182,3828,699,804,59,69,19 +2016-12-31,20444,2772,752,47,82,13,1 +2017-01-01,11534,394,212,742,63,89,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8973852316 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" +2016-12,44240,7588,2475,1137,510,193,66 +2017-01,11534,394,212,742,63,89,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..87b9f58bdf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" +"2016 Q4",44240,7588,2475,1137,510,193,66 +"2017 Q1",11534,394,212,742,63,89,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..070363d279 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" +2016,44240,7588,2475,1137,510,193,66 +2017,11534,394,212,742,63,89,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dfc86a43d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Total" +"Mathematical and Physical Sciences",317888.2653 +Engineering,216832.5278 +"Social, Behavioral, and Economic Sciences",163292.7964 +"Computer and Information Science and Engineering",74500.2678 +Geosciences,33498.1631 +"Biological Sciences",22127.0556 +Humanities/Arts,12416.7611 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dfc86a43d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Total" +"Mathematical and Physical Sciences",317888.2653 +Engineering,216832.5278 +"Social, Behavioral, and Economic Sciences",163292.7964 +"Computer and Information Science and Engineering",74500.2678 +Geosciences,33498.1631 +"Biological Sciences",22127.0556 +Humanities/Arts,12416.7611 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dfc86a43d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Total" +"Mathematical and Physical Sciences",317888.2653 +Engineering,216832.5278 +"Social, Behavioral, and Economic Sciences",163292.7964 +"Computer and Information Science and Engineering",74500.2678 +Geosciences,33498.1631 +"Biological Sciences",22127.0556 +Humanities/Arts,12416.7611 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dfc86a43d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Total" +"Mathematical and Physical Sciences",317888.2653 +Engineering,216832.5278 +"Social, Behavioral, and Economic Sciences",163292.7964 +"Computer and Information Science and Engineering",74500.2678 +Geosciences,33498.1631 +"Biological Sciences",22127.0556 +Humanities/Arts,12416.7611 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6e723d47b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" +2016-12-22,203.3000,0,0,0,0,200.9567,0 +2016-12-23,296.6036,0,0,0,0,288.0000,0 +2016-12-24,312.0000,0,0,0,0,288.0000,0 +2016-12-25,490.2700,0,0,0,0,288.0000,0 +2016-12-26,1968.3333,0,0,0,0,288.0000,0 +2016-12-27,10481.8525,3739.4133,3.2167,0,0,1328.6622,0 +2016-12-28,53148.2378,23894.7644,24.0000,1304.6303,94.0111,3523.0667,0 +2016-12-29,91312.3128,56943.5956,1901.3108,13943.3047,2329.2153,4315.9531,516.0911 +2016-12-30,94225.0861,75804.5158,63888.1919,24507.1108,5069.4642,4653.8469,6971.0514 +2016-12-31,50138.7325,45772.2297,88804.5933,22598.4800,6887.4083,3398.5161,4629.6697 +2017-01-01,15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fa28f127d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" +2016-12,302576.7286,206154.5189,154621.3128,62353.5258,14380.0989,18573.0017,12116.8122 +2017-01,15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e95ee302f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" +"2016 Q4",302576.7286,206154.5189,154621.3128,62353.5258,14380.0989,18573.0017,12116.8122 +"2017 Q1",15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3ba94e38df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" +2016,302576.7286,206154.5189,154621.3128,62353.5258,14380.0989,18573.0017,12116.8122 +2017,15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9a13c6ba8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0.0000,0 +2016-12-23,48.0000,0,0,0,0,0.0000,0 +2016-12-24,48.0000,0,0,0,0,0.0000,0 +2016-12-25,48.0000,0,0,0,0,0.0000,0 +2016-12-26,48.0000,0,0,0,0,0.0000,0 +2016-12-27,48.0000,0,0.0000,0,0,0.0000,0.0000 +2016-12-28,48.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1cd4a6e071 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..90a465292e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9c88a5b018 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9230cb19b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Total" +"Computer and Information Science and Engineering",68003.8936 +Engineering,32639.6983 +"Mathematical and Physical Sciences",23625.9678 +"Social, Behavioral, and Economic Sciences",16956.7717 +Geosciences,10774.6956 +"Biological Sciences",3162.6878 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9230cb19b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Total" +"Computer and Information Science and Engineering",68003.8936 +Engineering,32639.6983 +"Mathematical and Physical Sciences",23625.9678 +"Social, Behavioral, and Economic Sciences",16956.7717 +Geosciences,10774.6956 +"Biological Sciences",3162.6878 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9230cb19b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Total" +"Computer and Information Science and Engineering",68003.8936 +Engineering,32639.6983 +"Mathematical and Physical Sciences",23625.9678 +"Social, Behavioral, and Economic Sciences",16956.7717 +Geosciences,10774.6956 +"Biological Sciences",3162.6878 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9230cb19b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Total" +"Computer and Information Science and Engineering",68003.8936 +Engineering,32639.6983 +"Mathematical and Physical Sciences",23625.9678 +"Social, Behavioral, and Economic Sciences",16956.7717 +Geosciences,10774.6956 +"Biological Sciences",3162.6878 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0d79eff31f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" +2016-12-22,0,0,16.9417,0,0,16.7464,0 +2016-12-23,0,0,32.6036,0,0,24.0000,0 +2016-12-24,0,0,48.0000,0,0,24.0000,0 +2016-12-25,0,0,56.5078,0,0,24.0000,0 +2016-12-26,0,0,133.5208,0,0,24.0000,0 +2016-12-27,0,311.6178,747.4278,3.2167,0,144.1300,0 +2016-12-28,996.9861,3790.5044,3382.0422,24.0000,4.7006,416.3833,0 +2016-12-29,12762.1014,8310.9622,6157.3483,328.7961,202.1281,719.3708,47.7900 +2016-12-30,22172.6036,11220.8083,7078.9369,6961.6367,3303.9342,941.2072,629.4331 +2016-12-31,20768.1517,6923.9883,4495.7325,8689.9142,5666.5222,414.3342,430.1536 +2017-01-01,11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..534ce8c75a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" +2016-12,56699.8428,30557.8811,22149.0617,16007.5636,9177.2850,2748.1719,1107.3767 +2017-01,11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..312c547914 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" +"2016 Q4",56699.8428,30557.8811,22149.0617,16007.5636,9177.2850,2748.1719,1107.3767 +"2017 Q1",11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a605fbb2c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" +2016,56699.8428,30557.8811,22149.0617,16007.5636,9177.2850,2748.1719,1107.3767 +2017,11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..809da632ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Total" +"Mathematical and Physical Sciences",169343.4094 +"Social, Behavioral, and Economic Sciences",114914.2053 +"Biological Sciences",8291.4383 +Geosciences,8164.0683 +Engineering,4751.8803 +"Computer and Information Science and Engineering",558.9144 +Humanities/Arts,321.4447 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..809da632ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Total" +"Mathematical and Physical Sciences",169343.4094 +"Social, Behavioral, and Economic Sciences",114914.2053 +"Biological Sciences",8291.4383 +Geosciences,8164.0683 +Engineering,4751.8803 +"Computer and Information Science and Engineering",558.9144 +Humanities/Arts,321.4447 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..809da632ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Total" +"Mathematical and Physical Sciences",169343.4094 +"Social, Behavioral, and Economic Sciences",114914.2053 +"Biological Sciences",8291.4383 +Geosciences,8164.0683 +Engineering,4751.8803 +"Computer and Information Science and Engineering",558.9144 +Humanities/Arts,321.4447 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..809da632ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wait Hours: Total" +"Mathematical and Physical Sciences",169343.4094 +"Social, Behavioral, and Economic Sciences",114914.2053 +"Biological Sciences",8291.4383 +Geosciences,8164.0683 +Engineering,4751.8803 +"Computer and Information Science and Engineering",558.9144 +Humanities/Arts,321.4447 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dd78dd2798 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" +2016-12-22,9.3322,0,0.0003,0,0,0,0 +2016-12-23,9.5964,0,0.0000,0,0,0,0 +2016-12-24,0.0000,0,0.0000,0,0,0,0 +2016-12-25,110.8856,0,0.0000,0,0,0,0 +2016-12-26,0.0033,0,0.0000,0,0,0,0 +2016-12-27,248.8897,0.0000,1418.2278,0,311.1344,0,0 +2016-12-28,879.9194,0.0000,1403.6350,0.0003,1306.7875,7.9897,0 +2016-12-29,3082.2842,1974.4419,627.0644,25.7303,348.6094,34.1564,9.5847 +2016-12-30,163080.1036,28026.7236,1574.2136,1975.4678,83.7736,230.0950,311.8600 +2016-12-31,1878.7711,65081.0511,1440.5692,2070.8639,2670.8594,279.1428,0.0000 +2017-01-01,43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b59a2b22e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" +2016-12,169299.7856,95082.2167,6463.7103,4072.0622,4721.1644,551.3839,321.4447 +2017-01,43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..34f4a1406c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" +"2016 Q4",169299.7856,95082.2167,6463.7103,4072.0622,4721.1644,551.3839,321.4447 +"2017 Q1",43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ef9f54ac74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" +2016,169299.7856,95082.2167,6463.7103,4072.0622,4721.1644,551.3839,321.4447 +2017,43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1ce61bb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Total" +"Computer and Information Science and Engineering",68001.8092 +Engineering,18506.3075 +"Social, Behavioral, and Economic Sciences",16630.3481 +"Mathematical and Physical Sciences",10964.6656 +Geosciences,10516.5478 +"Biological Sciences",2217.0956 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1ce61bb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Total" +"Computer and Information Science and Engineering",68001.8092 +Engineering,18506.3075 +"Social, Behavioral, and Economic Sciences",16630.3481 +"Mathematical and Physical Sciences",10964.6656 +Geosciences,10516.5478 +"Biological Sciences",2217.0956 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1ce61bb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Total" +"Computer and Information Science and Engineering",68001.8092 +Engineering,18506.3075 +"Social, Behavioral, and Economic Sciences",16630.3481 +"Mathematical and Physical Sciences",10964.6656 +Geosciences,10516.5478 +"Biological Sciences",2217.0956 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1ce61bb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Wall Hours: Total" +"Computer and Information Science and Engineering",68001.8092 +Engineering,18506.3075 +"Social, Behavioral, and Economic Sciences",16630.3481 +"Mathematical and Physical Sciences",10964.6656 +Geosciences,10516.5478 +"Biological Sciences",2217.0956 +Humanities/Arts,1140.0328 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f5bbdcc673 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" +2016-12-22,0,0,0,16.9417,0,16.7464,0 +2016-12-23,0,0,0,32.6036,0,24.0000,0 +2016-12-24,0,0,0,48.0000,0,24.0000,0 +2016-12-25,0,0,0,56.5078,0,24.0000,0 +2016-12-26,0,0,0,133.5208,0,24.0000,0 +2016-12-27,0,38.9522,3.2167,374.4825,0,117.5319,0 +2016-12-28,996.9861,2191.3019,24.0000,1108.7717,4.7006,248.3833,0 +2016-12-29,12762.1014,4477.2714,303.7458,2302.3656,59.8644,551.3708,47.7900 +2016-12-30,22170.5192,6273.4908,6707.0317,3118.3981,3228.8894,734.7517,629.4331 +2016-12-31,20768.1517,4037.1194,8652.6142,2571.2625,5626.0944,237.1492,430.1536 +2017-01-01,11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6183051fbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" +2016-12,56697.7583,17018.1358,15690.6083,9762.8542,8919.5489,2001.9333,1107.3767 +2017-01,11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7b33fa2fc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" +"2016 Q4",56697.7583,17018.1358,15690.6083,9762.8542,8919.5489,2001.9333,1107.3767 +"2017 Q1",11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..290de0c1bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" +2016,56697.7583,17018.1358,15690.6083,9762.8542,8919.5489,2001.9333,1107.3767 +2017,11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a603317019 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Screwdriver CPU Utilization (%)" +Engineering,8.0667 +"Mathematical and Physical Sciences",7.1986 +"Computer and Information Science and Engineering",7.0549 +"Social, Behavioral, and Economic Sciences",3.6978 +Geosciences,1.2032 +"Biological Sciences",1.0477 +Humanities/Arts,0.7186 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f41473c3ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Screwdriver CPU Utilization (%)" +Engineering,1.7509 +"Mathematical and Physical Sciences",1.5997 +"Computer and Information Science and Engineering",1.5217 +"Social, Behavioral, and Economic Sciences",0.8217 +Geosciences,0.2684 +"Biological Sciences",0.2505 +Humanities/Arts,0.1470 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c22f37f754 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Screwdriver CPU Utilization (%)" +Engineering,0.7381 +"Computer and Information Science and Engineering",0.7055 +"Mathematical and Physical Sciences",0.6596 +"Social, Behavioral, and Economic Sciences",0.3388 +Geosciences,0.1137 +"Biological Sciences",0.1098 +Humanities/Arts,0.0628 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1fa8f2e056 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Screwdriver CPU Utilization (%)" +"Computer and Information Science and Engineering",0.2016 +Engineering,0.1997 +"Mathematical and Physical Sciences",0.1764 +"Social, Behavioral, and Economic Sciences",0.0906 +Geosciences,0.0308 +"Biological Sciences",0.0303 +Humanities/Arts,0.0171 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f5cbe46e58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" +2016-12-22,0,0.2118,0,0,0,0.2093,0 +2016-12-23,0,0.3090,0,0,0,0.3000,0 +2016-12-24,0,0.3250,0,0,0,0.3000,0 +2016-12-25,0,0.5107,0,0,0,0.3000,0 +2016-12-26,0,1.0252,0,0,0,0.3000,0 +2016-12-27,3.8952,2.7296,0,0.0034,0,0.6920,0 +2016-12-28,24.8904,13.8407,1.3590,0.0250,0.0979,1.8349,0 +2016-12-29,19.7721,23.7792,14.5243,0.4951,0.8088,2.2479,0.2688 +2016-12-30,26.3210,19.6302,25.5282,13.3100,1.7602,2.4239,3.6308 +2016-12-31,15.8931,10.4456,23.5401,18.5010,2.3915,1.7701,2.4113 +2017-01-01,3.7076,3.1899,12.6529,1.8066,9.9573,1.8511,0.1562 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..93590cc5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" +2016-12,5.9651,6.0612,3.2476,3.0974,0.4048,0.6449,0.4854 +2017-01,0.1196,0.1029,0.4082,0.0583,0.3212,0.0597,0.0050 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4a53db39cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Engineering] Screwdriver CPU Utilization (%)","[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" +"2016 Q4",5.9651,3.2476,6.0612,3.0974,0.4048,0.6449,0.4854 +"2017 Q1",0.0412,0.1406,0.0354,0.0201,0.1106,0.0206,0.0017 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9696a1384f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" +2016,3.2476,5.9651,6.0612,3.0974,0.4048,0.6449,0.4854 +2017,0.0347,0.0102,0.0087,0.0049,0.0273,0.0051,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7c30552d78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Users: Active" +"Astronomical Sciences",11 +Chemistry,6 +"Electrical and Communication Systems",6 +"Social and Economic Science",6 +"Earth Sciences",5 +"Molecular Biosciences",5 +"Mechanical and Structural Systems",4 +"Microelectronic Information Processing Systems",4 +Arts,3 +"Materials Research",3 +"Mathematical Sciences",3 +"Polar Programs",3 +"Design and Manufacturing Systems",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7c30552d78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Users: Active" +"Astronomical Sciences",11 +Chemistry,6 +"Electrical and Communication Systems",6 +"Social and Economic Science",6 +"Earth Sciences",5 +"Molecular Biosciences",5 +"Mechanical and Structural Systems",4 +"Microelectronic Information Processing Systems",4 +Arts,3 +"Materials Research",3 +"Mathematical Sciences",3 +"Polar Programs",3 +"Design and Manufacturing Systems",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7c30552d78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Users: Active" +"Astronomical Sciences",11 +Chemistry,6 +"Electrical and Communication Systems",6 +"Social and Economic Science",6 +"Earth Sciences",5 +"Molecular Biosciences",5 +"Mechanical and Structural Systems",4 +"Microelectronic Information Processing Systems",4 +Arts,3 +"Materials Research",3 +"Mathematical Sciences",3 +"Polar Programs",3 +"Design and Manufacturing Systems",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7c30552d78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Users: Active" +"Astronomical Sciences",11 +Chemistry,6 +"Electrical and Communication Systems",6 +"Social and Economic Science",6 +"Earth Sciences",5 +"Molecular Biosciences",5 +"Mechanical and Structural Systems",4 +"Microelectronic Information Processing Systems",4 +Arts,3 +"Materials Research",3 +"Mathematical Sciences",3 +"Polar Programs",3 +"Design and Manufacturing Systems",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9aee54cb69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" +2016-12-22,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,1,2,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-27,4,2,1,1,0,4,0,0,0,2,2,0,0,0,0,0,0,0 +2016-12-28,4,5,1,1,1,4,0,2,0,2,3,0,1,0,0,0,0,1 +2016-12-29,7,5,4,3,2,5,1,3,2,3,3,1,1,1,0,1,0,1 +2016-12-30,11,6,6,6,5,5,4,4,3,3,3,2,1,1,1,1,1,1 +2016-12-31,10,6,6,4,3,4,4,3,3,2,2,3,2,0,1,1,1,0 +2017-01-01,5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9fabaffb83 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" +2016-12,11,6,6,6,5,5,4,4,3,3,3,3,2,1,1,1,1,1 +2017-01,5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..914f8568f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" +"2016 Q4",11,6,6,6,5,5,4,4,3,3,3,3,2,1,1,1,1,1 +"2017 Q1",5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..81f031f65c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" +2016,11,6,6,6,5,5,4,4,3,3,3,3,2,1,1,1,1,1 +2017,5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e7789f8ef2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of PIs: Active" +"Earth Sciences",5 +"Social and Economic Science",4 +"Astronomical Sciences",3 +"Electrical and Communication Systems",3 +"Mathematical Sciences",3 +"Microelectronic Information Processing Systems",3 +"Molecular Biosciences",3 +"Polar Programs",3 +Chemistry,2 +"Design and Manufacturing Systems",2 +"Materials Research",2 +"Mechanical and Structural Systems",2 +Arts,1 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e7789f8ef2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of PIs: Active" +"Earth Sciences",5 +"Social and Economic Science",4 +"Astronomical Sciences",3 +"Electrical and Communication Systems",3 +"Mathematical Sciences",3 +"Microelectronic Information Processing Systems",3 +"Molecular Biosciences",3 +"Polar Programs",3 +Chemistry,2 +"Design and Manufacturing Systems",2 +"Materials Research",2 +"Mechanical and Structural Systems",2 +Arts,1 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e7789f8ef2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of PIs: Active" +"Earth Sciences",5 +"Social and Economic Science",4 +"Astronomical Sciences",3 +"Electrical and Communication Systems",3 +"Mathematical Sciences",3 +"Microelectronic Information Processing Systems",3 +"Molecular Biosciences",3 +"Polar Programs",3 +Chemistry,2 +"Design and Manufacturing Systems",2 +"Materials Research",2 +"Mechanical and Structural Systems",2 +Arts,1 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e7789f8ef2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of PIs: Active" +"Earth Sciences",5 +"Social and Economic Science",4 +"Astronomical Sciences",3 +"Electrical and Communication Systems",3 +"Mathematical Sciences",3 +"Microelectronic Information Processing Systems",3 +"Molecular Biosciences",3 +"Polar Programs",3 +Chemistry,2 +"Design and Manufacturing Systems",2 +"Materials Research",2 +"Mechanical and Structural Systems",2 +Arts,1 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Environmental Biology",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fd738c89d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" +2016-12-22,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0 +2016-12-27,0,1,2,1,2,0,3,0,1,0,1,0,0,0,0,0,0,0 +2016-12-28,1,1,2,1,3,2,3,0,2,1,1,0,0,0,0,0,0,1 +2016-12-29,2,2,2,3,3,2,3,1,2,1,2,1,1,1,0,1,0,1 +2016-12-30,5,4,3,3,3,3,3,2,2,1,2,2,1,1,1,1,1,1 +2016-12-31,3,3,3,3,2,2,3,3,2,2,2,2,1,0,1,1,1,0 +2017-01-01,2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e3262f2186 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" +2016-12,5,4,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1 +2017-01,2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..732bf2f8e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" +"2016 Q4",5,4,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1 +"2017 Q1",2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a460afc588 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" +2016,5,4,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1 +2017,2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dd459d5fc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Resources: Active" +"Social and Economic Science",5 +Chemistry,4 +"Astronomical Sciences",3 +"Materials Research",3 +"Polar Programs",3 +Arts,2 +"Earth Sciences",2 +"Electrical and Communication Systems",2 +"Mathematical Sciences",2 +"Molecular Biosciences",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Environmental Biology",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dd459d5fc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Resources: Active" +"Social and Economic Science",5 +Chemistry,4 +"Astronomical Sciences",3 +"Materials Research",3 +"Polar Programs",3 +Arts,2 +"Earth Sciences",2 +"Electrical and Communication Systems",2 +"Mathematical Sciences",2 +"Molecular Biosciences",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Environmental Biology",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dd459d5fc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Resources: Active" +"Social and Economic Science",5 +Chemistry,4 +"Astronomical Sciences",3 +"Materials Research",3 +"Polar Programs",3 +Arts,2 +"Earth Sciences",2 +"Electrical and Communication Systems",2 +"Mathematical Sciences",2 +"Molecular Biosciences",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Environmental Biology",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dd459d5fc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Resources: Active" +"Social and Economic Science",5 +Chemistry,4 +"Astronomical Sciences",3 +"Materials Research",3 +"Polar Programs",3 +Arts,2 +"Earth Sciences",2 +"Electrical and Communication Systems",2 +"Mathematical Sciences",2 +"Molecular Biosciences",2 +"Atmospheric Sciences",1 +"Chemical, Thermal Systems",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Environmental Biology",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +Physics,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..61509e4a85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" +2016-12-22,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-23,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-24,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-25,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-26,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +2016-12-27,1,2,3,1,0,0,0,1,2,2,0,0,0,0,0,0,0,0 +2016-12-28,1,3,3,2,0,0,1,1,2,2,0,0,0,1,0,0,1,1 +2016-12-29,4,3,3,3,1,2,2,2,2,2,1,0,1,1,0,1,1,1 +2016-12-30,5,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2016-12-31,5,4,2,2,3,2,1,2,2,2,0,1,1,1,1,1,1,0 +2017-01-01,5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..75ca8d9f96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" +2016-12,5,4,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5eedf721c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" +"2016 Q4",5,4,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3a28a5d13a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" +2016,5,4,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..94579d8e09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e9b9cde087 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e9b9cde087 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e9b9cde087 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a44bfbc2eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Department" +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","[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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..64f20303ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Department" +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","[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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7c7fc5dd0d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Department" +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","[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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..68f4eefe90 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Department" +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","[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/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9b76c8902b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0 +2016-12-27,6.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0.00000000 +2016-12-28,3.69230769,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000 +2016-12-29,0.73846154,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.56470588,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,2.18181818,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +2017-01-01,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3aa4290c0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +2016-12,5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74c9a62d72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +"2016 Q4",5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3ced5c691c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +2016,5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c857a095b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,0.2500,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 +2016-12-28,0.1538,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 +2016-12-29,0.0308,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0235,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0909,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e77c58952e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +2016-12,0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..52ce68583a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +"2016 Q4",0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0a73cb0dc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +2016,0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..76c17d3a33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By CPU Hours (Core Count)" +"Chemical, Thermal Systems",326.9898 +"Atmospheric Sciences",160.0000 +Chemistry,128.2687 +"Mechanical and Structural Systems",111.3630 +"Electrical and Communication Systems",94.4593 +"Materials Research",65.7034 +"Environmental Biology",57.7053 +"Astronomical Sciences",47.1669 +"Molecular Biosciences",29.3971 +"Polar Programs",14.5813 +"Mathematical Sciences",13.5488 +Physics,12.0000 +Arts,11.8252 +"Social and Economic Science",10.8677 +"Design and Manufacturing Systems",6.6809 +"Earth Sciences",6.2418 +"Microelectronic Information Processing Systems",1.7650 +"Computer and Computation Research",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..76c17d3a33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By CPU Hours (Core Count)" +"Chemical, Thermal Systems",326.9898 +"Atmospheric Sciences",160.0000 +Chemistry,128.2687 +"Mechanical and Structural Systems",111.3630 +"Electrical and Communication Systems",94.4593 +"Materials Research",65.7034 +"Environmental Biology",57.7053 +"Astronomical Sciences",47.1669 +"Molecular Biosciences",29.3971 +"Polar Programs",14.5813 +"Mathematical Sciences",13.5488 +Physics,12.0000 +Arts,11.8252 +"Social and Economic Science",10.8677 +"Design and Manufacturing Systems",6.6809 +"Earth Sciences",6.2418 +"Microelectronic Information Processing Systems",1.7650 +"Computer and Computation Research",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..76c17d3a33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By CPU Hours (Core Count)" +"Chemical, Thermal Systems",326.9898 +"Atmospheric Sciences",160.0000 +Chemistry,128.2687 +"Mechanical and Structural Systems",111.3630 +"Electrical and Communication Systems",94.4593 +"Materials Research",65.7034 +"Environmental Biology",57.7053 +"Astronomical Sciences",47.1669 +"Molecular Biosciences",29.3971 +"Polar Programs",14.5813 +"Mathematical Sciences",13.5488 +Physics,12.0000 +Arts,11.8252 +"Social and Economic Science",10.8677 +"Design and Manufacturing Systems",6.6809 +"Earth Sciences",6.2418 +"Microelectronic Information Processing Systems",1.7650 +"Computer and Computation Research",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..76c17d3a33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By CPU Hours (Core Count)" +"Chemical, Thermal Systems",326.9898 +"Atmospheric Sciences",160.0000 +Chemistry,128.2687 +"Mechanical and Structural Systems",111.3630 +"Electrical and Communication Systems",94.4593 +"Materials Research",65.7034 +"Environmental Biology",57.7053 +"Astronomical Sciences",47.1669 +"Molecular Biosciences",29.3971 +"Polar Programs",14.5813 +"Mathematical Sciences",13.5488 +Physics,12.0000 +Arts,11.8252 +"Social and Economic Science",10.8677 +"Design and Manufacturing Systems",6.6809 +"Earth Sciences",6.2418 +"Microelectronic Information Processing Systems",1.7650 +"Computer and Computation Research",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dde65078f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,0,12.0000,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,12.0000,0,0,0,0,1.0000,12.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,12.0000,0,0,0,0,1.0000,12.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,15.9210,0,0,0,0,1.0000,12.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,20.0000,0,0,0,0,1.0000,12.0000,0,16.0000,0,0,0,0,0,0,0 +2016-12-27,0,0,22.5565,0,96.0000,110.0862,0,58.2272,19.8357,0,15.9632,0,0,1.0000,0,0,0,0 +2016-12-28,0,0,146.7685,0,96.0000,87.9948,0,43.0772,33.0691,0,15.3614,12.0000,0,1.0000,1.0000,20.0000,2.8865,0 +2016-12-29,0,160.0000,141.7754,112.0000,95.9456,65.2945,0,47.7147,28.0857,40.0000,14.9544,12.0000,11.5552,10.2034,1.0000,18.5337,1.6782,1.0000 +2016-12-30,320.0517,160.0000,138.9738,111.6728,94.9365,54.3936,65.8038,40.9495,28.3785,36.0526,15.0028,12.0000,11.8713,10.9005,1.0000,4.0431,1.9041,1.0000 +2016-12-31,336.0000,0,99.3288,111.0872,90.9081,37.7420,95.7214,50.6854,34.6323,34.2349,11.9136,0,11.8540,10.8898,13.5207,6.2480,1.7162,1.0000 +2017-01-01,0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d6f1af4aea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,326.9898,160.0000,132.5250,111.5740,94.6650,65.7034,71.6000,46.2364,28.5024,37.1250,14.0136,12.0000,11.8512,10.8841,5.4428,6.2382,1.8060,1.0000 +2017-01,0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e90ccbe7ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",326.9898,160.0000,132.5250,111.5740,94.6650,65.7034,71.6000,46.2364,28.5024,37.1250,14.0136,12.0000,11.8512,10.8841,5.4428,6.2382,1.8060,1.0000 +"2017 Q1",0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4ecb19b74c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" +2016,326.9898,160.0000,132.5250,111.5740,94.6650,65.7034,71.6000,46.2364,28.5024,37.1250,14.0136,12.0000,11.8512,10.8841,5.4428,6.2382,1.8060,1.0000 +2017,0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..91d6b102b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,12.0000,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 +2016-12-28,12.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fe408b10ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74da5e79d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..83c979fb0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9158b6ffca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bef0ae140a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bef0ae140a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bef0ae140a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Department" +parameters + +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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a9f081b985 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Department" +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","[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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3bfb48928c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3c6a53e903 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..02031bcb99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0350a801f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +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/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0350a801f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +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/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0350a801f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +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/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0350a801f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +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/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f35c2d242a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Department" +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)","[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/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76f3c57b8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,224.0000,160.0000,48.8800,24.9310,21.3595,12.0000,11.0909,10.9231,14.8750,3.0909,9.0258,8.5125,5.1703,4.6022,1.6678,1.4181,1.1442,1.0000 +2017-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/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..667273b18b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",224.0000,160.0000,48.8800,24.9310,21.3595,12.0000,11.0909,10.9231,14.8750,3.0909,9.0258,8.5125,5.1703,4.6022,1.6678,1.4181,1.1442,1.0000 +"2017 Q1",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/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4bf55734e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,224.0000,160.0000,48.8800,24.9310,21.3595,12.0000,11.0909,10.9231,14.8750,3.0909,9.0258,8.5125,5.1703,4.6022,1.6678,1.4181,1.1442,1.0000 +2017,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/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f7af99c4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Astronomical Sciences",206.38288882,2.4291502902979274 +"Molecular Biosciences",44.58446092,9.807106639983111 +"Materials Research",33.61029775,1.730173782416776 +"Atmospheric Sciences",31.02180556,3.7428536858056267 +"Electrical and Communication Systems",29.16013458,2.208287142540563 +"Environmental Biology",12.67979893,0.790292910753799 +"Chemical, Thermal Systems",6.67768519,0.98851049021015 +Arts,4.87037458,0.44747381160758987 +"Polar Programs",4.57691764,0.1895661574730915 +"Earth Sciences",3.81717768,0.08631664004435641 +Physics,3.72481481,0.0007211928415468717 +"Social and Economic Science",1.99144263,0.025430337208220542 +"Mathematical Sciences",1.30868803,0.25716865971163017 +"Computer and Computation Research",0.32390278,0.2312398274998169 +"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 +"Design and Manufacturing Systems",0.11687785,0.028203321818092885 +Chemistry,0.06359074,0.014028715326432175 +"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f7af99c4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Astronomical Sciences",206.38288882,2.4291502902979274 +"Molecular Biosciences",44.58446092,9.807106639983111 +"Materials Research",33.61029775,1.730173782416776 +"Atmospheric Sciences",31.02180556,3.7428536858056267 +"Electrical and Communication Systems",29.16013458,2.208287142540563 +"Environmental Biology",12.67979893,0.790292910753799 +"Chemical, Thermal Systems",6.67768519,0.98851049021015 +Arts,4.87037458,0.44747381160758987 +"Polar Programs",4.57691764,0.1895661574730915 +"Earth Sciences",3.81717768,0.08631664004435641 +Physics,3.72481481,0.0007211928415468717 +"Social and Economic Science",1.99144263,0.025430337208220542 +"Mathematical Sciences",1.30868803,0.25716865971163017 +"Computer and Computation Research",0.32390278,0.2312398274998169 +"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 +"Design and Manufacturing Systems",0.11687785,0.028203321818092885 +Chemistry,0.06359074,0.014028715326432175 +"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f7af99c4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Astronomical Sciences",206.38288882,2.4291502902979274 +"Molecular Biosciences",44.58446092,9.807106639983111 +"Materials Research",33.61029775,1.730173782416776 +"Atmospheric Sciences",31.02180556,3.7428536858056267 +"Electrical and Communication Systems",29.16013458,2.208287142540563 +"Environmental Biology",12.67979893,0.790292910753799 +"Chemical, Thermal Systems",6.67768519,0.98851049021015 +Arts,4.87037458,0.44747381160758987 +"Polar Programs",4.57691764,0.1895661574730915 +"Earth Sciences",3.81717768,0.08631664004435641 +Physics,3.72481481,0.0007211928415468717 +"Social and Economic Science",1.99144263,0.025430337208220542 +"Mathematical Sciences",1.30868803,0.25716865971163017 +"Computer and Computation Research",0.32390278,0.2312398274998169 +"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 +"Design and Manufacturing Systems",0.11687785,0.028203321818092885 +Chemistry,0.06359074,0.014028715326432175 +"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f7af99c4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Astronomical Sciences",206.38288882,2.4291502902979274 +"Molecular Biosciences",44.58446092,9.807106639983111 +"Materials Research",33.61029775,1.730173782416776 +"Atmospheric Sciences",31.02180556,3.7428536858056267 +"Electrical and Communication Systems",29.16013458,2.208287142540563 +"Environmental Biology",12.67979893,0.790292910753799 +"Chemical, Thermal Systems",6.67768519,0.98851049021015 +Arts,4.87037458,0.44747381160758987 +"Polar Programs",4.57691764,0.1895661574730915 +"Earth Sciences",3.81717768,0.08631664004435641 +Physics,3.72481481,0.0007211928415468717 +"Social and Economic Science",1.99144263,0.025430337208220542 +"Mathematical Sciences",1.30868803,0.25716865971163017 +"Computer and Computation Research",0.32390278,0.2312398274998169 +"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 +"Design and Manufacturing Systems",0.11687785,0.028203321818092885 +Chemistry,0.06359074,0.014028715326432175 +"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3a487637b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" +2016-12-22,0,0.00027778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.33222222,0 +2016-12-23,9.59638889,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0 +2016-12-24,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0 +2016-12-25,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.96185185,0 +2016-12-26,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0.00000000,0 +2016-12-27,12.68148148,202.60396825,57.59064815,0,103.71148148,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00288889,0 +2016-12-28,36.87611111,280.72700000,80.35419753,0,108.01750000,0,0,0,0,0.00027778,3.72481481,0.00000000,3.31159722,0,0.04097293,0.07195578,2.82994444,0 +2016-12-29,135.82563889,12.05893162,15.12413889,25.72861111,28.72319444,0,0,0.87133838,0.00166667,0.00000000,0.00000000,7.71266385,4.46097222,0.01788889,0.04361965,0.04464331,1.33660948,0.00062500 +2016-12-30,222.28495351,20.19094444,31.96192488,0.00000000,4.72822650,13.00438580,6.67768519,5.77518519,1.70461755,2.52425159,0.00000000,1.34893024,0.38944444,0.42590741,0.32705612,0.13344771,0.02573029,0.00015625 +2016-12-31,2.86747685,175.87315972,33.49272778,0,25.24681217,3.35838889,0.00000000,0.00000000,0.02094444,7.18759066,0,2.80449242,0.00626263,0.00000000,0.35112299,0.43350242,0.03718570,0.00010913 +2017-01-01,1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..98170bb911 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" +2016-12,207.94704539,56.55625448,33.61029775,25.72861111,32.16831034,12.03978611,6.67768519,4.87037458,1.07689141,3.82833875,3.72481481,2.14923636,1.30868803,0.32390278,0.22195757,0.12320749,0.06183072,0.00016493 +2017-01,1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..45e97dc0ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" +"2016 Q4",207.94704539,56.55625448,33.61029775,25.72861111,32.16831034,12.03978611,6.67768519,4.87037458,1.07689141,3.82833875,3.72481481,2.14923636,1.30868803,0.32390278,0.22195757,0.12320749,0.06183072,0.00016493 +"2017 Q1",1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f44c89bbcc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" +2016,207.94704539,56.55625448,33.61029775,25.72861111,32.16831034,12.03978611,6.67768519,4.87037458,1.07689141,3.82833875,3.72481481,2.14923636,1.30868803,0.32390278,0.22195757,0.12320749,0.06183072,0.00016493 +2017,1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..129b1df1e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.15940063, +Physics,44.13648148, +"Microelectronic Information Processing Systems",25.45968035, +"Molecular Biosciences",18.40561205, +Arts,17.27322391, +"Electrical and Communication Systems",16.57502415, +"Chemical, Thermal Systems",15.43750000,2.949516142225878 +"Materials Research",9.15687182,0.6454421230974878 +"Earth Sciences",8.48227702, +"Computer and Computation Research",5.04208333,1.412736659063767 +"Atmospheric Sciences",4.51402778,1.3866381241776238 +"Mechanical and Structural Systems",2.25963164,0.3305676586108775 +"Astronomical Sciences",2.09553699,0.18634770348231622 +"Polar Programs",1.95093933,0.05491474812292802 +Chemistry,0.64439083,0.03401091518206925 +"Social and Economic Science",0.28820096,0.0031231359871834977 +"Environmental Biology",0.18926081,0.027954377835160745 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1c948e9883 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.15940063,1.0910353513705056 +Physics,44.13648148,3.8863777173028686 +"Microelectronic Information Processing Systems",25.45968035,0.10340711182738624 +"Molecular Biosciences",18.40561205,2.6523848250332356 +Arts,17.27322391,1.2812633375632778 +"Electrical and Communication Systems",16.57502415,1.675444082244451 +"Chemical, Thermal Systems",15.43750000,9.334819660458281 +"Materials Research",9.15687182,1.3644148657479764 +"Earth Sciences",8.48227702,0.06190189958135605 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Atmospheric Sciences",4.51402778,3.1765790052054 +"Mechanical and Structural Systems",2.25963164,0.45223146995766755 +"Astronomical Sciences",2.09553699,0.37523899443145664 +"Polar Programs",1.95093933,0.06980480406246423 +Chemistry,0.64439083,0.06267511493298365 +"Social and Economic Science",0.28820096,0.004430889448528951 +"Environmental Biology",0.18926081,0.027954377835160745 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1c948e9883 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.15940063,1.0910353513705056 +Physics,44.13648148,3.8863777173028686 +"Microelectronic Information Processing Systems",25.45968035,0.10340711182738624 +"Molecular Biosciences",18.40561205,2.6523848250332356 +Arts,17.27322391,1.2812633375632778 +"Electrical and Communication Systems",16.57502415,1.675444082244451 +"Chemical, Thermal Systems",15.43750000,9.334819660458281 +"Materials Research",9.15687182,1.3644148657479764 +"Earth Sciences",8.48227702,0.06190189958135605 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Atmospheric Sciences",4.51402778,3.1765790052054 +"Mechanical and Structural Systems",2.25963164,0.45223146995766755 +"Astronomical Sciences",2.09553699,0.37523899443145664 +"Polar Programs",1.95093933,0.06980480406246423 +Chemistry,0.64439083,0.06267511493298365 +"Social and Economic Science",0.28820096,0.004430889448528951 +"Environmental Biology",0.18926081,0.027954377835160745 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1c948e9883 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.15940063,1.0910353513705056 +Physics,44.13648148,3.8863777173028686 +"Microelectronic Information Processing Systems",25.45968035,0.10340711182738624 +"Molecular Biosciences",18.40561205,2.6523848250332356 +Arts,17.27322391,1.2812633375632778 +"Electrical and Communication Systems",16.57502415,1.675444082244451 +"Chemical, Thermal Systems",15.43750000,9.334819660458281 +"Materials Research",9.15687182,1.3644148657479764 +"Earth Sciences",8.48227702,0.06190189958135605 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Atmospheric Sciences",4.51402778,3.1765790052054 +"Mechanical and Structural Systems",2.25963164,0.45223146995766755 +"Astronomical Sciences",2.09553699,0.37523899443145664 +"Polar Programs",1.95093933,0.06980480406246423 +Chemistry,0.64439083,0.06267511493298365 +"Social and Economic Science",0.28820096,0.004430889448528951 +"Environmental Biology",0.18926081,0.027954377835160745 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..aa1bb64aca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" +2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0 +2016-12-23,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,8.60361111,0,24.00000000,0,0 +2016-12-24,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,24.00000000,0,0 +2016-12-25,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,8.12694444,0,0 +2016-12-26,2.70416667,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,24.00000000,0,0 +2016-12-27,20.78689815,0,0,0,14.69149306,0,12.98407407,0,20.49703704,0,0,0,0,10.42293651,0,8.23638889,3.21666667,0 +2016-12-28,7.55612179,13.35268330,5.03972222,5.11274929,19.10641026,0,15.23050000,0,14.10152778,4.70055556,0,0,0,22.59725694,0,18.86886015,24.00000000,0 +2016-12-29,23.92517593,16.60273286,24.00000000,13.06557690,8.48262821,4.34454545,20.77597737,0,13.66271701,17.20041667,2.01966667,6.48888889,3.66944444,9.35722222,18.97472222,12.91112875,1.18189040,0 +2016-12-30,17.43217014,21.71949405,15.09675926,13.30626941,8.49330392,9.68358547,16.53400000,9.78120370,5.30866235,4.19277326,4.10559722,2.51750000,3.04096451,0.91902722,1.88721825,0.33013860,0.31886620,0.14245370 +2016-12-31,23.19598639,11.02771149,0,12.51327322,10.71203283,15.93161523,8.15699612,16.96888889,2.21777116,5.54529872,8.63138889,0,1.76819444,6.16083333,0.88861789,0.34603937,0.36858846,0.14844444 +2017-01-01,11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6066ff3f57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" +2016-12,42.25983761,47.81582215,44.13648148,23.05373388,21.37234468,16.77843434,17.53085249,15.43750000,9.15687182,8.50197775,5.04208333,9.00638889,2.82398003,2.01048779,1.70466667,0.59275076,0.35467017,0.14305278 +2017-01,11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cdb1c436b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" +"2016 Q4",42.25983761,47.81582215,44.13648148,23.05373388,21.37234468,16.77843434,17.53085249,15.43750000,9.15687182,8.50197775,5.04208333,9.00638889,2.82398003,2.01048779,1.70466667,0.59275076,0.35467017,0.14305278 +"2017 Q1",11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c0524b1ea6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" +2016,42.25983761,47.81582215,44.13648148,23.05373388,21.37234468,16.77843434,17.53085249,15.43750000,9.15687182,8.50197775,5.04208333,9.00638889,2.82398003,2.01048779,1.70466667,0.59275076,0.35467017,0.14305278 +2017,11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..86dba5f1d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"User Expansion Factor" +"Environmental Biology",69.2703 +"Astronomical Sciences",49.2958 +"Atmospheric Sciences",7.8723 +"Social and Economic Science",7.5872 +"Polar Programs",3.2814 +"Materials Research",2.7638 +"Molecular Biosciences",2.7490 +"Electrical and Communication Systems",2.2611 +"Earth Sciences",1.4482 +"Chemical, Thermal Systems",1.3348 +Arts,1.2820 +Physics,1.0844 +"Computer and Computation Research",1.0642 +Chemistry,1.0463 +"Mathematical Sciences",1.0259 +"Microelectronic Information Processing Systems",1.0081 +"Design and Manufacturing Systems",1.0036 +"Mechanical and Structural Systems",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..86dba5f1d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"User Expansion Factor" +"Environmental Biology",69.2703 +"Astronomical Sciences",49.2958 +"Atmospheric Sciences",7.8723 +"Social and Economic Science",7.5872 +"Polar Programs",3.2814 +"Materials Research",2.7638 +"Molecular Biosciences",2.7490 +"Electrical and Communication Systems",2.2611 +"Earth Sciences",1.4482 +"Chemical, Thermal Systems",1.3348 +Arts,1.2820 +Physics,1.0844 +"Computer and Computation Research",1.0642 +Chemistry,1.0463 +"Mathematical Sciences",1.0259 +"Microelectronic Information Processing Systems",1.0081 +"Design and Manufacturing Systems",1.0036 +"Mechanical and Structural Systems",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..86dba5f1d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"User Expansion Factor" +"Environmental Biology",69.2703 +"Astronomical Sciences",49.2958 +"Atmospheric Sciences",7.8723 +"Social and Economic Science",7.5872 +"Polar Programs",3.2814 +"Materials Research",2.7638 +"Molecular Biosciences",2.7490 +"Electrical and Communication Systems",2.2611 +"Earth Sciences",1.4482 +"Chemical, Thermal Systems",1.3348 +Arts,1.2820 +Physics,1.0844 +"Computer and Computation Research",1.0642 +Chemistry,1.0463 +"Mathematical Sciences",1.0259 +"Microelectronic Information Processing Systems",1.0081 +"Design and Manufacturing Systems",1.0036 +"Mechanical and Structural Systems",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..86dba5f1d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"User Expansion Factor" +"Environmental Biology",69.2703 +"Astronomical Sciences",49.2958 +"Atmospheric Sciences",7.8723 +"Social and Economic Science",7.5872 +"Polar Programs",3.2814 +"Materials Research",2.7638 +"Molecular Biosciences",2.7490 +"Electrical and Communication Systems",2.2611 +"Earth Sciences",1.4482 +"Chemical, Thermal Systems",1.3348 +Arts,1.2820 +Physics,1.0844 +"Computer and Computation Research",1.0642 +Chemistry,1.0463 +"Mathematical Sciences",1.0259 +"Microelectronic Information Processing Systems",1.0081 +"Design and Manufacturing Systems",1.0036 +"Mechanical and Structural Systems",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..19572a18ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" +2016-12-22,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,1.0495,0,0,0,0 +2016-12-23,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.0495,0,0,0,0 +2016-12-24,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.0495,0,0,0,0 +2016-12-25,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.1562,0,0,0,0 +2016-12-26,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.2735,1.0000,0,0,0 +2016-12-27,0,1.7724,0,1.0000,0,1.9856,2.9970,2.5533,0,0,0,0,0,1.2277,1.0000,0,0,0 +2016-12-28,0,1.5437,0,1.0000,0,2.1159,2.6841,2.5716,1.0000,0,0,1.0866,0,1.0169,1.0175,1.0014,1.0013,0 +2016-12-29,0,3.5124,3.8567,3.5135,1.0000,2.0971,2.3663,2.2683,1.0000,0,1.0436,1.0866,1.0011,1.0285,1.0515,1.0012,1.0011,1.0000 +2016-12-30,82.2879,144.6787,3.8567,5.1671,1.7535,2.6830,2.1869,2.1328,1.1782,1.4992,1.4225,1.0801,1.0787,1.0357,1.0535,1.0023,1.0011,1.0000 +2016-12-31,30.3841,1.2803,0,8.2251,1.0129,8.1155,3.8407,2.3853,1.6005,1.1213,1.1163,0,1.0006,1.0953,1.0103,1.0186,1.0085,1.0000 +2017-01-01,66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bdc3ac9407 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" +2016-12,73.4926,53.7276,3.8567,6.7861,1.4969,2.7638,2.5543,2.2965,1.4485,1.3348,1.2872,1.0844,1.0642,1.0455,1.0298,1.0080,1.0027,1.0000 +2017-01,66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6c99b12a1f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" +"2016 Q4",73.4926,53.7276,3.8567,6.7861,1.4969,2.7638,2.5543,2.2965,1.4485,1.3348,1.2872,1.0844,1.0642,1.0455,1.0298,1.0080,1.0027,1.0000 +"2017 Q1",66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a5519f0e94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" +2016,73.4926,53.7276,3.8567,6.7861,1.4969,2.7638,2.5543,2.2965,1.4485,1.3348,1.2872,1.0844,1.0642,1.0455,1.0298,1.0080,1.0027,1.0000 +2017,66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1c5b6ea184 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Ended" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1c5b6ea184 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Ended" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1c5b6ea184 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Ended" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1c5b6ea184 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Ended" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..583620b165 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" +2016-12-22,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 +2016-12-24,0,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 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,20765,3827,796,18,69,739,34,90,16,69,71,32,39,16,19,2,3,1 +2016-12-31,22983,2732,885,1008,29,43,180,10,117,84,13,32,22,1,1,1,0,0 +2017-01-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b4b715cd66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" +2016-12,43748,6559,1681,1026,98,782,214,100,133,153,84,64,61,17,20,3,3,1 +2017-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b7e795485e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" +"2016 Q4",43748,6559,1681,1026,98,782,214,100,133,153,84,64,61,17,20,3,3,1 +"2017 Q1",13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..da1ca5c96f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" +2016,43748,6559,1681,1026,98,782,214,100,133,153,84,64,61,17,20,3,3,1 +2017,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..36e66fd1bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Max (Core Count)" +"Chemical, Thermal Systems",336 +Chemistry,192 +"Environmental Biology",192 +"Atmospheric Sciences",160 +"Materials Research",144 +"Mechanical and Structural Systems",112 +"Microelectronic Information Processing Systems",108 +"Electrical and Communication Systems",96 +"Astronomical Sciences",72 +"Molecular Biosciences",64 +"Earth Sciences",60 +"Social and Economic Science",56 +"Polar Programs",40 +"Design and Manufacturing Systems",24 +"Mathematical Sciences",16 +Arts,12 +Physics,12 +"Computer and Computation Research",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..36e66fd1bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Max (Core Count)" +"Chemical, Thermal Systems",336 +Chemistry,192 +"Environmental Biology",192 +"Atmospheric Sciences",160 +"Materials Research",144 +"Mechanical and Structural Systems",112 +"Microelectronic Information Processing Systems",108 +"Electrical and Communication Systems",96 +"Astronomical Sciences",72 +"Molecular Biosciences",64 +"Earth Sciences",60 +"Social and Economic Science",56 +"Polar Programs",40 +"Design and Manufacturing Systems",24 +"Mathematical Sciences",16 +Arts,12 +Physics,12 +"Computer and Computation Research",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..36e66fd1bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Max (Core Count)" +"Chemical, Thermal Systems",336 +Chemistry,192 +"Environmental Biology",192 +"Atmospheric Sciences",160 +"Materials Research",144 +"Mechanical and Structural Systems",112 +"Microelectronic Information Processing Systems",108 +"Electrical and Communication Systems",96 +"Astronomical Sciences",72 +"Molecular Biosciences",64 +"Earth Sciences",60 +"Social and Economic Science",56 +"Polar Programs",40 +"Design and Manufacturing Systems",24 +"Mathematical Sciences",16 +Arts,12 +Physics,12 +"Computer and Computation Research",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..36e66fd1bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Max (Core Count)" +"Chemical, Thermal Systems",336 +Chemistry,192 +"Environmental Biology",192 +"Atmospheric Sciences",160 +"Materials Research",144 +"Mechanical and Structural Systems",112 +"Microelectronic Information Processing Systems",108 +"Electrical and Communication Systems",96 +"Astronomical Sciences",72 +"Molecular Biosciences",64 +"Earth Sciences",60 +"Social and Economic Science",56 +"Polar Programs",40 +"Design and Manufacturing Systems",24 +"Mathematical Sciences",16 +Arts,12 +Physics,12 +"Computer and Computation Research",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3c0a281b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" +2016-12-22,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0 +2016-12-23,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0 +2016-12-24,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0 +2016-12-25,0,24,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0 +2016-12-26,0,24,0,0,0,0,0,0,1,12,0,0,0,0,16,0,0,0 +2016-12-27,0,32,0,0,144,0,0,96,72,64,0,1,0,0,16,0,0,0 +2016-12-28,0,192,0,0,144,0,8,96,72,64,20,1,0,1,16,0,12,0 +2016-12-29,0,192,0,160,144,112,8,96,72,64,20,56,40,1,16,12,12,1 +2016-12-30,336,192,192,160,144,112,108,96,72,64,60,56,40,1,16,12,12,1 +2016-12-31,336,192,192,0,72,112,12,96,72,64,60,48,40,24,16,12,0,1 +2017-01-01,0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b442976501 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" +2016-12,336,192,192,160,144,112,108,96,72,64,60,56,40,24,16,12,12,1 +2017-01,0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c1653a9016 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,144,112,108,96,72,64,60,56,40,24,16,12,12,1 +"2017 Q1",0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..294954ecad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" +2016,336,192,192,160,144,112,108,96,72,64,60,56,40,24,16,12,12,1 +2017,0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..968201ea7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Min (Core Count)" +"Atmospheric Sciences",160 +"Chemical, Thermal Systems",48 +"Materials Research",12 +Physics,12 +Chemistry,8 +"Environmental Biology",8 +Arts,1 +"Astronomical Sciences",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Earth Sciences",1 +"Electrical and Communication Systems",1 +"Mathematical Sciences",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +"Molecular Biosciences",1 +"Polar Programs",1 +"Social and Economic Science",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..968201ea7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Min (Core Count)" +"Atmospheric Sciences",160 +"Chemical, Thermal Systems",48 +"Materials Research",12 +Physics,12 +Chemistry,8 +"Environmental Biology",8 +Arts,1 +"Astronomical Sciences",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Earth Sciences",1 +"Electrical and Communication Systems",1 +"Mathematical Sciences",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +"Molecular Biosciences",1 +"Polar Programs",1 +"Social and Economic Science",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..968201ea7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Min (Core Count)" +"Atmospheric Sciences",160 +"Chemical, Thermal Systems",48 +"Materials Research",12 +Physics,12 +Chemistry,8 +"Environmental Biology",8 +Arts,1 +"Astronomical Sciences",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Earth Sciences",1 +"Electrical and Communication Systems",1 +"Mathematical Sciences",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +"Molecular Biosciences",1 +"Polar Programs",1 +"Social and Economic Science",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..968201ea7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Min (Core Count)" +"Atmospheric Sciences",160 +"Chemical, Thermal Systems",48 +"Materials Research",12 +Physics,12 +Chemistry,8 +"Environmental Biology",8 +Arts,1 +"Astronomical Sciences",1 +"Computer and Computation Research",1 +"Design and Manufacturing Systems",1 +"Earth Sciences",1 +"Electrical and Communication Systems",1 +"Mathematical Sciences",1 +"Mechanical and Structural Systems",1 +"Microelectronic Information Processing Systems",1 +"Molecular Biosciences",1 +"Polar Programs",1 +"Social and Economic Science",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..45d655cf3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,12,0,0 +2016-12-23,0,0,0,0,12,0,0,1,0,0,0,0,0,0,0,12,0,0 +2016-12-24,0,0,0,0,12,0,0,1,0,0,0,0,0,0,0,12,0,0 +2016-12-25,0,0,0,0,12,0,0,1,0,0,0,0,0,0,0,12,0,0 +2016-12-26,0,0,0,0,12,0,0,1,0,0,0,0,16,0,0,12,0,0 +2016-12-27,0,0,32,0,8,0,0,1,0,0,0,96,1,0,0,8,0,1 +2016-12-28,0,0,12,12,8,0,0,1,0,1,20,96,1,0,1,8,0,1 +2016-12-29,160,0,12,12,8,0,4,1,1,1,5,1,1,112,1,1,40,1 +2016-12-30,160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,0,336,12,0,8,12,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01-01,160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..35f414d2bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" +2016-12,160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b74a57a009 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" +"2016 Q4",160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5a0cabf0d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" +2016,160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 +2017,160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7face4f4f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters + +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/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7face4f4f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters + +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/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7face4f4f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters + +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/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7face4f4f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters + +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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..56c481a096 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +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)","[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,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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..979e5856f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +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)","[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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..671dadcbb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +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)","[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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..98ac938abe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Department" +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)","[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/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d8b52fb50d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Running" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d8b52fb50d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Running" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d8b52fb50d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Running" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d8b52fb50d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Running" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7510f274af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" +2016-12-22,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-23,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-24,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-25,0,4,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-26,0,4,0,0,0,1,0,0,0,0,1,0,0,5,0,0,0,0 +2016-12-27,1,14,0,0,0,7,0,0,3,3,8,0,0,6,0,0,0,0 +2016-12-28,1,29,195,1,0,8,147,0,15,12,13,0,0,26,0,0,3,0 +2016-12-29,257,63,976,2,1,28,235,0,27,32,65,4,11,30,5,0,3,1 +2016-12-30,21034,3872,1660,738,70,751,252,90,40,103,85,36,65,32,20,3,3,1 +2016-12-31,23475,2753,1659,1008,41,48,264,10,129,84,22,32,27,49,1,1,0,0 +2017-01-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..588676f3c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" +2016-12,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +2017-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..63e5355b3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" +"2016 Q4",44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +"2017 Q1",13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8ef2bdc30b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" +2016,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +2017,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ca5c703bec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Started" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ca5c703bec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Started" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ca5c703bec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Started" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ca5c703bec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Started" +"Social and Economic Science",57704 +Chemistry,6969 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",912 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",239 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a9b4876b7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" +2016-12-22,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,1,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 +2016-12-25,0,3,0,0,0,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,5,0,0,0,0 +2016-12-27,1,10,0,0,0,6,0,0,3,3,7,0,0,1,0,0,0,0 +2016-12-28,0,15,195,1,0,1,147,0,12,9,5,0,0,20,0,0,3,0 +2016-12-29,256,34,781,1,1,20,88,0,12,20,52,4,11,4,5,0,0,1 +2016-12-30,20777,3809,684,736,69,723,17,90,13,71,20,32,54,2,15,3,0,0 +2016-12-31,23206,2708,795,288,40,36,46,10,105,50,8,28,1,33,0,0,0,0 +2017-01-01,13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e959079f36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" +2016-12,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +2017-01,13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8fb4ca50f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" +"2016 Q4",44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +"2017 Q1",13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ce14d4f8a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" +2016,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +2017,13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eca476acb0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Submitted" +"Social and Economic Science",52367 +Chemistry,6952 +"Microelectronic Information Processing Systems",2624 +"Polar Programs",848 +"Earth Sciences",748 +"Design and Manufacturing Systems",317 +"Environmental Biology",123 +"Molecular Biosciences",100 +"Mechanical and Structural Systems",92 +"Astronomical Sciences",71 +"Mathematical Sciences",61 +"Electrical and Communication Systems",39 +Arts,31 +"Computer and Computation Research",20 +"Materials Research",20 +Physics,3 +"Atmospheric Sciences",0 +"Chemical, Thermal Systems",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c45f45bf15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Submitted" +"Social and Economic Science",55774 +Chemistry,6968 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",849 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",164 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c45f45bf15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Submitted" +"Social and Economic Science",55774 +Chemistry,6968 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",849 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",164 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c45f45bf15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Number of Jobs Submitted" +"Social and Economic Science",55774 +Chemistry,6968 +"Microelectronic Information Processing Systems",2667 +"Earth Sciences",1029 +"Polar Programs",849 +"Astronomical Sciences",793 +"Design and Manufacturing Systems",317 +"Environmental Biology",164 +"Electrical and Communication Systems",161 +"Materials Research",153 +"Molecular Biosciences",118 +"Mechanical and Structural Systems",92 +Arts,66 +"Mathematical Sciences",65 +"Computer and Computation Research",20 +"Chemical, Thermal Systems",3 +Physics,3 +"Atmospheric Sciences",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..600a9c5507 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,1,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 +2016-12-25,0,1,0,0,0,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,5,0,0,0,0,0,0,0 +2016-12-27,1,10,0,0,0,0,0,1,0,5,1,0,0,0,0,0,0,0 +2016-12-28,0,13,195,0,1,147,0,0,0,0,20,0,0,0,0,3,0,0 +2016-12-29,206,32,781,1,1,88,0,50,4,5,0,5,11,5,17,0,0,0 +2016-12-30,20182,3805,684,68,736,17,50,19,32,20,2,10,19,15,1,0,0,0 +2016-12-31,20444,2703,752,40,7,46,9,4,28,34,33,8,1,0,2,0,0,0 +2017-01-01,11534,388,212,739,3,19,64,25,28,6,0,16,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..506d5d7680 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted" +2016-12,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +2017-01,11534,388,212,3,739,6,19,64,16,0,25,28,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d6fb52911d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted" +"2016 Q4",44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +"2017 Q1",11534,388,212,3,739,6,19,64,16,0,25,28,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0b28e486e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted" +2016,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 +2017,11534,388,212,3,739,6,19,64,16,0,25,28,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f16a9d0ae9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Total" +Chemistry,188505.5578 +"Electrical and Communication Systems",168887.4169 +"Social and Economic Science",163292.7964 +"Microelectronic Information Processing Systems",74399.4261 +"Materials Research",51837.5633 +"Mathematical Sciences",40095.7789 +"Astronomical Sciences",35860.4519 +"Polar Programs",21267.5019 +"Design and Manufacturing Systems",20616.3914 +"Molecular Biosciences",20608.9078 +"Mechanical and Structural Systems",14222.7461 +"Chemical, Thermal Systems",13105.9733 +Arts,12416.7611 +"Earth Sciences",10786.1722 +Physics,1588.9133 +"Environmental Biology",1518.1478 +"Atmospheric Sciences",1444.4889 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f16a9d0ae9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Total" +Chemistry,188505.5578 +"Electrical and Communication Systems",168887.4169 +"Social and Economic Science",163292.7964 +"Microelectronic Information Processing Systems",74399.4261 +"Materials Research",51837.5633 +"Mathematical Sciences",40095.7789 +"Astronomical Sciences",35860.4519 +"Polar Programs",21267.5019 +"Design and Manufacturing Systems",20616.3914 +"Molecular Biosciences",20608.9078 +"Mechanical and Structural Systems",14222.7461 +"Chemical, Thermal Systems",13105.9733 +Arts,12416.7611 +"Earth Sciences",10786.1722 +Physics,1588.9133 +"Environmental Biology",1518.1478 +"Atmospheric Sciences",1444.4889 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f16a9d0ae9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Total" +Chemistry,188505.5578 +"Electrical and Communication Systems",168887.4169 +"Social and Economic Science",163292.7964 +"Microelectronic Information Processing Systems",74399.4261 +"Materials Research",51837.5633 +"Mathematical Sciences",40095.7789 +"Astronomical Sciences",35860.4519 +"Polar Programs",21267.5019 +"Design and Manufacturing Systems",20616.3914 +"Molecular Biosciences",20608.9078 +"Mechanical and Structural Systems",14222.7461 +"Chemical, Thermal Systems",13105.9733 +Arts,12416.7611 +"Earth Sciences",10786.1722 +Physics,1588.9133 +"Environmental Biology",1518.1478 +"Atmospheric Sciences",1444.4889 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f16a9d0ae9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Total" +Chemistry,188505.5578 +"Electrical and Communication Systems",168887.4169 +"Social and Economic Science",163292.7964 +"Microelectronic Information Processing Systems",74399.4261 +"Materials Research",51837.5633 +"Mathematical Sciences",40095.7789 +"Astronomical Sciences",35860.4519 +"Polar Programs",21267.5019 +"Design and Manufacturing Systems",20616.3914 +"Molecular Biosciences",20608.9078 +"Mechanical and Structural Systems",14222.7461 +"Chemical, Thermal Systems",13105.9733 +Arts,12416.7611 +"Earth Sciences",10786.1722 +Physics,1588.9133 +"Environmental Biology",1518.1478 +"Atmospheric Sciences",1444.4889 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7fa78d72f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" +2016-12-22,203.3000,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0 +2016-12-23,288.0000,0,0,0,0,0,8.6036,0,0,288.0000,0,0,0,0,0,0,0,0 +2016-12-24,288.0000,0,0,0,0,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0,0 +2016-12-25,466.2700,0,0,0,0,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0,0 +2016-12-26,1728.0000,0,0,0,0,216.3333,24.0000,0,0,288.0000,0,0,0,0,0,0,0,0 +2016-12-27,2293.7600,3739.4133,3.2167,0,4298.8089,1924.7214,1964.5622,0,0,1328.6622,0,0,0,0,0,0,0,0 +2016-12-28,39422.3022,21931.9200,24.0000,1304.6303,6587.9644,2671.1944,4285.3467,0,1962.8444,3523.0667,0,0,0,94.0111,181.4300,0,0,0 +2016-12-29,55290.2700,51398.0422,1901.3108,13933.2064,17862.8422,10260.0844,7035.1161,758.9889,3901.6422,4315.9531,1643.9111,0,516.0911,532.0042,864.0000,0,1038.2222,10.0983 +2016-12-30,56377.7367,53688.2303,63888.1919,24424.9989,18930.7533,7995.6400,10377.4728,1068.1136,5473.3125,4131.6792,9238.5464,7404.4267,6971.0514,3598.5506,543.4833,522.1678,402.8000,82.1119 +2016-12-31,25351.0100,30521.7450,88804.5933,22589.8486,4157.1944,12068.8131,8561.7150,358.6408,6235.8008,3273.0428,3313.1372,5701.5467,4629.6697,6528.7675,0,125.4733,0,8.6314 +2017-01-01,6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..518e3f5047 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" +2016-12,181708.6489,161279.3508,154621.3128,62252.6842,51837.5633,35136.7867,32304.8164,2185.7433,17573.6000,17925.3606,14195.5947,13105.9733,12116.8122,10753.3333,1588.9133,647.6411,1441.0222,100.8417 +2017-01,6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..15269c15e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" +"2016 Q4",181708.6489,161279.3508,154621.3128,62252.6842,51837.5633,35136.7867,32304.8164,2185.7433,17573.6000,17925.3606,14195.5947,13105.9733,12116.8122,10753.3333,1588.9133,647.6411,1441.0222,100.8417 +"2017 Q1",6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a900372bd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" +2016,181708.6489,161279.3508,154621.3128,62252.6842,51837.5633,35136.7867,32304.8164,2185.7433,17573.6000,17925.3606,14195.5947,13105.9733,12116.8122,10753.3333,1588.9133,647.6411,1441.0222,100.8417 +2017,6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7bca8f21ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,48.0000,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 +2016-12-28,48.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5178b00241 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..26b34dbc6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..333811d0e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8cc26509db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Total" +"Microelectronic Information Processing Systems",67903.0519 +"Social and Economic Science",16956.7717 +"Design and Manufacturing Systems",15812.9842 +"Electrical and Communication Systems",14769.1036 +Chemistry,12905.5581 +"Earth Sciences",8764.5286 +"Materials Research",3900.2250 +"Astronomical Sciences",3409.0411 +"Mathematical Sciences",3278.7342 +"Molecular Biosciences",3012.1539 +"Polar Programs",1829.6058 +Arts,1140.0328 +"Chemical, Thermal Systems",1092.1644 +"Mechanical and Structural Systems",965.4461 +"Atmospheric Sciences",180.5611 +"Environmental Biology",150.5339 +Physics,132.4094 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8cc26509db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Total" +"Microelectronic Information Processing Systems",67903.0519 +"Social and Economic Science",16956.7717 +"Design and Manufacturing Systems",15812.9842 +"Electrical and Communication Systems",14769.1036 +Chemistry,12905.5581 +"Earth Sciences",8764.5286 +"Materials Research",3900.2250 +"Astronomical Sciences",3409.0411 +"Mathematical Sciences",3278.7342 +"Molecular Biosciences",3012.1539 +"Polar Programs",1829.6058 +Arts,1140.0328 +"Chemical, Thermal Systems",1092.1644 +"Mechanical and Structural Systems",965.4461 +"Atmospheric Sciences",180.5611 +"Environmental Biology",150.5339 +Physics,132.4094 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8cc26509db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Total" +"Microelectronic Information Processing Systems",67903.0519 +"Social and Economic Science",16956.7717 +"Design and Manufacturing Systems",15812.9842 +"Electrical and Communication Systems",14769.1036 +Chemistry,12905.5581 +"Earth Sciences",8764.5286 +"Materials Research",3900.2250 +"Astronomical Sciences",3409.0411 +"Mathematical Sciences",3278.7342 +"Molecular Biosciences",3012.1539 +"Polar Programs",1829.6058 +Arts,1140.0328 +"Chemical, Thermal Systems",1092.1644 +"Mechanical and Structural Systems",965.4461 +"Atmospheric Sciences",180.5611 +"Environmental Biology",150.5339 +Physics,132.4094 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8cc26509db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Total" +"Microelectronic Information Processing Systems",67903.0519 +"Social and Economic Science",16956.7717 +"Design and Manufacturing Systems",15812.9842 +"Electrical and Communication Systems",14769.1036 +Chemistry,12905.5581 +"Earth Sciences",8764.5286 +"Materials Research",3900.2250 +"Astronomical Sciences",3409.0411 +"Mathematical Sciences",3278.7342 +"Molecular Biosciences",3012.1539 +"Polar Programs",1829.6058 +Arts,1140.0328 +"Chemical, Thermal Systems",1092.1644 +"Mechanical and Structural Systems",965.4461 +"Atmospheric Sciences",180.5611 +"Environmental Biology",150.5339 +Physics,132.4094 +"Computer and Computation Research",100.8417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b2166ddadf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" +2016-12-22,0,0,0,0,16.9417,0,0,0,0,16.7464,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,24.0000,0,0,8.6036,0,24.0000,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,24.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,32.5078,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,96.0000,0,0,24.0000,13.5208,24.0000,0,0,0,0,0,0,0,0 +2016-12-27,0,3.2167,0,311.6178,115.3094,0,331.1156,176.2814,124.7214,144.1300,0,0,0,0,0,0,0,0 +2016-12-28,996.9861,24.0000,1962.8444,1827.6600,2303.1100,4.7006,502.6856,364.6683,196.4592,416.3833,0,0,0,0,0,0,15.1192,0 +2016-12-29,12752.0031,328.7961,3901.6422,4306.5756,3405.4136,34.4008,1333.3297,628.8497,717.7553,719.3708,37.9494,47.7900,0,102.7444,129.7778,0,72.0000,10.0983 +2016-12-30,22090.4917,6961.6367,5473.3125,4527.5222,3909.1153,3097.4789,1436.3486,1130.3533,557.8294,889.9586,156.1053,629.4331,617.0356,602.9381,50.3500,51.2486,45.2903,82.1119 +2016-12-31,20759.5203,8689.9142,3060.8175,3155.4297,2322.6839,5622.7144,296.7456,739.6997,1136.6033,403.8781,43.8078,430.1536,475.1289,232.6122,0,10.4561,0,8.6314 +2017-01-01,11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3049a2e72f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" +2016-12,56599.0011,16007.5636,14398.6167,14128.8053,12249.0817,8759.2947,3900.2250,3120.4561,2746.8894,2686.4672,237.8625,1107.3767,1092.1644,938.2947,180.1278,61.7047,132.4094,100.8417 +2017-01,11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9bc3a88835 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" +"2016 Q4",56599.0011,16007.5636,14398.6167,14128.8053,12249.0817,8759.2947,3900.2250,3120.4561,2746.8894,2686.4672,237.8625,1107.3767,1092.1644,938.2947,180.1278,61.7047,132.4094,100.8417 +"2017 Q1",11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5425ace7a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" +2016,56599.0011,16007.5636,14398.6167,14128.8053,12249.0817,8759.2947,3900.2250,3120.4561,2746.8894,2686.4672,237.8625,1107.3767,1092.1644,938.2947,180.1278,61.7047,132.4094,100.8417 +2017,11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5954f2b27c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Total" +"Astronomical Sciences",163661.6308 +"Social and Economic Science",114914.2053 +"Molecular Biosciences",5260.9664 +"Materials Research",5142.3756 +"Electrical and Communication Systems",4694.7817 +"Polar Programs",4174.1489 +"Earth Sciences",3927.8758 +"Environmental Biology",3030.4719 +"Microelectronic Information Processing Systems",552.4364 +Chemistry,443.1639 +Arts,321.4447 +"Mathematical Sciences",85.0647 +"Atmospheric Sciences",62.0436 +"Design and Manufacturing Systems",37.0503 +"Chemical, Thermal Systems",20.0331 +Physics,11.1744 +"Computer and Computation Research",6.4781 +"Mechanical and Structural Systems",0.0153 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5954f2b27c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Total" +"Astronomical Sciences",163661.6308 +"Social and Economic Science",114914.2053 +"Molecular Biosciences",5260.9664 +"Materials Research",5142.3756 +"Electrical and Communication Systems",4694.7817 +"Polar Programs",4174.1489 +"Earth Sciences",3927.8758 +"Environmental Biology",3030.4719 +"Microelectronic Information Processing Systems",552.4364 +Chemistry,443.1639 +Arts,321.4447 +"Mathematical Sciences",85.0647 +"Atmospheric Sciences",62.0436 +"Design and Manufacturing Systems",37.0503 +"Chemical, Thermal Systems",20.0331 +Physics,11.1744 +"Computer and Computation Research",6.4781 +"Mechanical and Structural Systems",0.0153 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5954f2b27c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Total" +"Astronomical Sciences",163661.6308 +"Social and Economic Science",114914.2053 +"Molecular Biosciences",5260.9664 +"Materials Research",5142.3756 +"Electrical and Communication Systems",4694.7817 +"Polar Programs",4174.1489 +"Earth Sciences",3927.8758 +"Environmental Biology",3030.4719 +"Microelectronic Information Processing Systems",552.4364 +Chemistry,443.1639 +Arts,321.4447 +"Mathematical Sciences",85.0647 +"Atmospheric Sciences",62.0436 +"Design and Manufacturing Systems",37.0503 +"Chemical, Thermal Systems",20.0331 +Physics,11.1744 +"Computer and Computation Research",6.4781 +"Mechanical and Structural Systems",0.0153 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5954f2b27c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wait Hours: Total" +"Astronomical Sciences",163661.6308 +"Social and Economic Science",114914.2053 +"Molecular Biosciences",5260.9664 +"Materials Research",5142.3756 +"Electrical and Communication Systems",4694.7817 +"Polar Programs",4174.1489 +"Earth Sciences",3927.8758 +"Environmental Biology",3030.4719 +"Microelectronic Information Processing Systems",552.4364 +Chemistry,443.1639 +Arts,321.4447 +"Mathematical Sciences",85.0647 +"Atmospheric Sciences",62.0436 +"Design and Manufacturing Systems",37.0503 +"Chemical, Thermal Systems",20.0331 +Physics,11.1744 +"Computer and Computation Research",6.4781 +"Mechanical and Structural Systems",0.0153 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fe78a0613d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" +2016-12-22,0,0,0.0003,0,0,0,0,0,0,9.3322,0,0,0,0,0,0,0,0 +2016-12-23,9.5964,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-24,0.0000,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-25,0.0000,0,0.0000,0,0,0,0,0,0,110.8856,0,0,0,0,0,0,0,0 +2016-12-26,0.0000,0,0.0000,0,0,0,0,0,0,0.0000,0,0.0033,0,0,0,0,0,0 +2016-12-27,76.0889,0.0000,1418.2278,172.7719,311.1344,0,0,0,0,0.0289,0,0.0000,0,0,0,0,0,0 +2016-12-28,36.8761,0.0000,1403.6350,723.1878,1296.2100,0,0.0003,0,7.9897,42.4492,0,66.2319,0,10.5775,0,11.1744,0,0 +2016-12-29,2716.5128,1974.4419,627.0644,302.4828,344.6783,0.0017,0.0000,0,34.0669,45.4447,9.5847,17.8439,25.7286,3.9286,0,0.0000,0.0894,0.0025 +2016-12-30,160712.0214,28026.7236,403.8189,2269.2967,61.4669,117.6186,1857.8492,1170.3947,223.7064,98.0067,311.8600,0.7789,0.0000,2.2686,20.0331,0.0000,6.3886,0.0050 +2016-12-31,103.2292,65081.0511,1406.9853,1674.6364,2650.9153,0.8378,2070.0261,33.5839,279.1428,100.6989,0.0000,0.2067,0,19.9411,0.0000,0,0.0000,0.0031 +2017-01-01,7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e037730709 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" +2016-12,163654.3247,95082.2167,5259.7317,5142.3756,4664.4050,118.4581,3927.8756,1203.9786,544.9058,406.8461,321.4447,85.0647,25.7286,36.7158,20.0331,11.1744,6.4781,0.0106 +2017-01,7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5659a691e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" +"2016 Q4",163654.3247,95082.2167,5259.7317,5142.3756,4664.4050,118.4581,3927.8756,1203.9786,544.9058,406.8461,321.4447,85.0647,25.7286,36.7158,20.0331,11.1744,6.4781,0.0106 +"2017 Q1",7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..584ebc5295 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" +2016,163654.3247,95082.2167,5259.7317,5142.3756,4664.4050,118.4581,3927.8756,1203.9786,544.9058,406.8461,321.4447,85.0647,25.7286,36.7158,20.0331,11.1744,6.4781,0.0106 +2017,7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fe6cd4704b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Total" +"Microelectronic Information Processing Systems",67900.9675 +"Social and Economic Science",16630.3481 +"Design and Manufacturing Systems",15583.5300 +"Earth Sciences",8728.2631 +Chemistry,4490.7597 +"Mathematical Sciences",3278.7342 +"Electrical and Communication Systems",2668.5789 +"Molecular Biosciences",2171.8622 +"Polar Programs",1779.2567 +"Astronomical Sciences",1661.7608 +"Materials Research",1401.0014 +Arts,1140.0328 +"Mechanical and Structural Systems",207.8861 +Physics,132.4094 +"Computer and Computation Research",100.8417 +"Chemical, Thermal Systems",46.3125 +"Environmental Biology",45.2333 +"Atmospheric Sciences",9.0281 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fe6cd4704b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Total" +"Microelectronic Information Processing Systems",67900.9675 +"Social and Economic Science",16630.3481 +"Design and Manufacturing Systems",15583.5300 +"Earth Sciences",8728.2631 +Chemistry,4490.7597 +"Mathematical Sciences",3278.7342 +"Electrical and Communication Systems",2668.5789 +"Molecular Biosciences",2171.8622 +"Polar Programs",1779.2567 +"Astronomical Sciences",1661.7608 +"Materials Research",1401.0014 +Arts,1140.0328 +"Mechanical and Structural Systems",207.8861 +Physics,132.4094 +"Computer and Computation Research",100.8417 +"Chemical, Thermal Systems",46.3125 +"Environmental Biology",45.2333 +"Atmospheric Sciences",9.0281 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fe6cd4704b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Total" +"Microelectronic Information Processing Systems",67900.9675 +"Social and Economic Science",16630.3481 +"Design and Manufacturing Systems",15583.5300 +"Earth Sciences",8728.2631 +Chemistry,4490.7597 +"Mathematical Sciences",3278.7342 +"Electrical and Communication Systems",2668.5789 +"Molecular Biosciences",2171.8622 +"Polar Programs",1779.2567 +"Astronomical Sciences",1661.7608 +"Materials Research",1401.0014 +Arts,1140.0328 +"Mechanical and Structural Systems",207.8861 +Physics,132.4094 +"Computer and Computation Research",100.8417 +"Chemical, Thermal Systems",46.3125 +"Environmental Biology",45.2333 +"Atmospheric Sciences",9.0281 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fe6cd4704b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Wall Hours: Total" +"Microelectronic Information Processing Systems",67900.9675 +"Social and Economic Science",16630.3481 +"Design and Manufacturing Systems",15583.5300 +"Earth Sciences",8728.2631 +Chemistry,4490.7597 +"Mathematical Sciences",3278.7342 +"Electrical and Communication Systems",2668.5789 +"Molecular Biosciences",2171.8622 +"Polar Programs",1779.2567 +"Astronomical Sciences",1661.7608 +"Materials Research",1401.0014 +Arts,1140.0328 +"Mechanical and Structural Systems",207.8861 +Physics,132.4094 +"Computer and Computation Research",100.8417 +"Chemical, Thermal Systems",46.3125 +"Environmental Biology",45.2333 +"Atmospheric Sciences",9.0281 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..14f0421d66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" +2016-12-22,0,0,0,0,16.9417,0,0,16.7464,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,24.0000,0,0,24.0000,0,8.6036,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,24.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,32.5078,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,96.0000,13.5208,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 +2016-12-27,0,3.2167,0,0,115.3094,124.7214,38.9522,117.5319,0,72.9606,61.4911,0,0,0,0,0,0,0 +2016-12-28,996.9861,24.0000,1962.8444,4.7006,547.1969,196.4592,228.4575,248.3833,0,180.7781,169.2183,0,0,15.1192,0,0,0,0 +2016-12-29,12752.0031,303.7458,3901.6422,34.4008,813.4011,717.7553,560.9514,551.3708,18.9747,262.0022,437.2069,47.7900,14.6778,72.0000,10.0983,0,0,6.4889 +2016-12-30,22088.4072,6707.0317,5473.3125,3094.2667,1278.2967,557.8294,661.3600,721.9308,132.1053,690.1894,546.7922,629.4331,109.4747,45.2903,82.1119,29.3436,12.8208,2.5175 +2016-12-31,20759.5203,8652.6142,2911.3158,5589.6611,952.6464,1136.6033,1052.2525,235.6647,36.4333,295.7200,186.2928,430.1536,56.5822,0,8.6314,16.9689,1.4844,0 +2017-01-01,11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cc39cfb575 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" +2016-12,56596.9167,15690.6083,14249.1150,8723.0292,3900.3000,2746.8894,2541.9736,1987.6281,187.5133,1582.2539,1401.0014,1107.3767,180.7347,132.4094,100.8417,46.3125,14.3053,9.0064 +2017-01,11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7eb2bdca54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" +"2016 Q4",56596.9167,15690.6083,14249.1150,8723.0292,3900.3000,2746.8894,2541.9736,1987.6281,187.5133,1582.2539,1401.0014,1107.3767,180.7347,132.4094,100.8417,46.3125,14.3053,9.0064 +"2017 Q1",11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..345a66caca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" +2016,56596.9167,15690.6083,14249.1150,8723.0292,3900.3000,2746.8894,2541.9736,1987.6281,187.5133,1582.2539,1401.0014,1107.3767,180.7347,132.4094,100.8417,46.3125,14.3053,9.0064 +2017,11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3562c3eeef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Screwdriver CPU Utilization (%)" +"Electrical and Communication Systems",7.9966 +"Microelectronic Information Processing Systems",7.0454 +Chemistry,5.0349 +"Social and Economic Science",3.6978 +"Mechanical and Structural Systems",2.4692 +"Mathematical Sciences",2.3204 +"Design and Manufacturing Systems",1.9523 +"Materials Research",1.9285 +"Astronomical Sciences",1.3341 +"Chemical, Thermal Systems",1.2411 +"Molecular Biosciences",0.9758 +"Polar Programs",0.7639 +Arts,0.7186 +"Earth Sciences",0.6242 +Physics,0.1505 +"Environmental Biology",0.1438 +"Atmospheric Sciences",0.1368 +"Computer and Computation Research",0.0095 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..44471bc26e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Screwdriver CPU Utilization (%)" +"Electrical and Communication Systems",1.8917 +"Microelectronic Information Processing Systems",1.5196 +Chemistry,1.1551 +"Social and Economic Science",0.8217 +"Mathematical Sciences",0.4746 +"Design and Manufacturing Systems",0.4211 +"Materials Research",0.4186 +"Mechanical and Structural Systems",0.4115 +"Astronomical Sciences",0.2896 +"Chemical, Thermal Systems",0.2677 +"Molecular Biosciences",0.2333 +"Polar Programs",0.1704 +Arts,0.1470 +"Earth Sciences",0.1277 +Physics,0.0325 +"Environmental Biology",0.0310 +"Atmospheric Sciences",0.0295 +"Computer and Computation Research",0.0021 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b50aaa69f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Screwdriver CPU Utilization (%)" +"Electrical and Communication Systems",0.8338 +"Microelectronic Information Processing Systems",0.7045 +Chemistry,0.4836 +"Social and Economic Science",0.3388 +"Mathematical Sciences",0.2027 +"Design and Manufacturing Systems",0.1952 +"Materials Research",0.1765 +"Mechanical and Structural Systems",0.1560 +"Chemical, Thermal Systems",0.1241 +"Astronomical Sciences",0.1221 +"Molecular Biosciences",0.1022 +"Polar Programs",0.0722 +Arts,0.0628 +"Earth Sciences",0.0545 +Physics,0.0150 +"Environmental Biology",0.0144 +"Atmospheric Sciences",0.0137 +"Computer and Computation Research",0.0010 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a5c344a12c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Screwdriver CPU Utilization (%)" +"Electrical and Communication Systems",0.2312 +"Microelectronic Information Processing Systems",0.2013 +Chemistry,0.1304 +"Social and Economic Science",0.0906 +"Design and Manufacturing Systems",0.0558 +"Mathematical Sciences",0.0552 +"Materials Research",0.0477 +"Mechanical and Structural Systems",0.0400 +"Chemical, Thermal Systems",0.0355 +"Astronomical Sciences",0.0330 +"Molecular Biosciences",0.0282 +"Polar Programs",0.0196 +Arts,0.0171 +"Earth Sciences",0.0149 +Physics,0.0043 +"Environmental Biology",0.0041 +"Atmospheric Sciences",0.0039 +"Computer and Computation Research",0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6962f806b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0.2118,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0 +2016-12-23,0,0,0.3000,0,0,0,0,0,0.0090,0,0.3000,0,0,0,0,0,0,0 +2016-12-24,0,0,0.3000,0,0,0,0,0,0.0250,0,0.3000,0,0,0,0,0,0,0 +2016-12-25,0,0,0.4857,0,0,0,0,0,0.0250,0,0.3000,0,0,0,0,0,0,0 +2016-12-26,0,0,1.8000,0,0,0.2253,0,0,0.0250,0,0.3000,0,0,0,0,0,0,0 +2016-12-27,3.8952,0,1.1947,0.0034,0,1.0025,0,4.4779,0.6821,0,0.6920,0,0,0,0,0,0,0 +2016-12-28,22.8458,1.3590,13.6883,0.0250,0,1.3912,2.0446,3.4312,1.4880,0,1.8349,0,0,0.0979,0.1890,0,0,0 +2016-12-29,26.7698,14.5138,19.1980,0.4951,1.7124,5.3438,4.0642,6.2024,2.4427,0,2.2479,0.7906,0.2688,0.2771,0.9000,0,1.0815,0.0105 +2016-12-30,27.9626,25.4427,14.6817,13.3100,9.6235,4.1644,5.7014,6.5732,3.6033,7.7129,2.1519,0.5563,3.6308,1.8742,0.5661,0.5439,0.4196,0.0855 +2016-12-31,15.8967,23.5311,6.6018,18.5010,3.4512,6.2858,6.4956,2.1652,4.4592,5.9391,1.7047,0.1245,2.4113,6.8008,0,0.1307,0,0.0090 +2017-01-01,3.9625,12.6529,1.7700,1.8066,0.0283,2.5828,3.1696,0,1.8519,0,1.3977,9.9384,0.1562,0.0342,0,0.9068,0.0036,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ee5aae1346 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" +2016-12,5.4193,3.2423,4.1148,3.0974,1.4077,0.9153,1.4999,2.9574,0.9347,0.6826,0.6224,0.0615,0.4854,0.4308,0.0828,0.0337,0.0751,0.0053 +2017-01,0.1278,0.4082,0.0571,0.0583,0.0833,0.1022,0,0.0009,0.0597,0,0.0451,0.3206,0.0050,0.0011,0,0.0293,0.0001,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b10567dcde --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" +"2016 Q4",5.4193,3.2423,4.1148,3.0974,1.4077,0.9153,1.4999,2.9574,0.6826,0.9347,0.6224,0.0615,0.4854,0.4308,0.0828,0.0337,0.0751,0.0053 +"2017 Q1",0.0440,0.1406,0.0197,0.0201,0.0287,0.0352,0,0.0003,0,0.0206,0.0155,0.1104,0.0017,0.0004,0,0.0101,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..88bf9b9d08 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" +2016,5.4193,3.2423,4.1148,3.0974,0.9153,1.4077,1.4999,2.9574,0.6826,0.9347,0.6224,0.0615,0.4854,0.4308,0.0828,0.0337,0.0751,0.0053 +2017,0.0109,0.0347,0.0048,0.0049,0.0087,0.0071,0,0.0001,0,0.0051,0.0038,0.0272,0.0004,0.0001,0,0.0025,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a08d34ab38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Users: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a08d34ab38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Users: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a08d34ab38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Users: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a08d34ab38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Users: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..948e6b2a2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" +2016-12-22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-27,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0 +2016-12-28,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,1,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,1,1,1,0,0 +2016-12-29,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,1,0 +2016-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1 +2017-01-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5fde984947 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a0b3bca868 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3da0b5835d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3c952c9d5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of PIs: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3c952c9d5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of PIs: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3c952c9d5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of PIs: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3c952c9d5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of PIs: Active" +"Auk, Little",1 +"Bunting, Black-headed",1 +"Bunting, Reed",1 +"Bunting, Yellow-breasted",1 +"Bunting, Yellow-browed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Crane, Sandhill",1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, Caspian",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Shag,1 +"Shearwater, Cory's",1 +"Shrike, Long-tailed",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Stint, Little",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Thrush, Mistle",1 +"Thrush, Swainson's",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Sardinian",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..df3142c666 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" +2016-12-22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-27,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0 +2016-12-28,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,1,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,1,1,1,0,0 +2016-12-29,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,1,0 +2016-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1 +2017-01-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e9006d05ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..59b7cc826e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e45c0e1257 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..764bf95e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Resources: Active" +Honey-buzzard,5 +"Bunting, Reed",3 +"Crane, Sandhill",3 +"Bunting, Yellow-breasted",2 +"Bunting, Yellow-browed",2 +"Plover, Caspian",2 +"Scoter, Velvet",2 +Shag,2 +"Shrike, Long-tailed",2 +"Stint, Little",2 +"Thrush, Grey-cheeked",2 +"Thrush, Swainson's",2 +"Warbler, Sardinian",2 +"Auk, Little",1 +"Bunting, Black-headed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Shearwater, Cory's",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Mistle",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..764bf95e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Resources: Active" +Honey-buzzard,5 +"Bunting, Reed",3 +"Crane, Sandhill",3 +"Bunting, Yellow-breasted",2 +"Bunting, Yellow-browed",2 +"Plover, Caspian",2 +"Scoter, Velvet",2 +Shag,2 +"Shrike, Long-tailed",2 +"Stint, Little",2 +"Thrush, Grey-cheeked",2 +"Thrush, Swainson's",2 +"Warbler, Sardinian",2 +"Auk, Little",1 +"Bunting, Black-headed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Shearwater, Cory's",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Mistle",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..764bf95e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Resources: Active" +Honey-buzzard,5 +"Bunting, Reed",3 +"Crane, Sandhill",3 +"Bunting, Yellow-breasted",2 +"Bunting, Yellow-browed",2 +"Plover, Caspian",2 +"Scoter, Velvet",2 +Shag,2 +"Shrike, Long-tailed",2 +"Stint, Little",2 +"Thrush, Grey-cheeked",2 +"Thrush, Swainson's",2 +"Warbler, Sardinian",2 +"Auk, Little",1 +"Bunting, Black-headed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Shearwater, Cory's",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Mistle",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..764bf95e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Resources: Active" +Honey-buzzard,5 +"Bunting, Reed",3 +"Crane, Sandhill",3 +"Bunting, Yellow-breasted",2 +"Bunting, Yellow-browed",2 +"Plover, Caspian",2 +"Scoter, Velvet",2 +Shag,2 +"Shrike, Long-tailed",2 +"Stint, Little",2 +"Thrush, Grey-cheeked",2 +"Thrush, Swainson's",2 +"Warbler, Sardinian",2 +"Auk, Little",1 +"Bunting, Black-headed",1 +Chaffinch,1 +Coot,1 +Crane,1 +"Dove, Turtle",1 +"Duck, Ferruginous",1 +Dunlin,1 +"Egret, Cattle",1 +Fieldfare,1 +"Gallinule, Allen's",1 +"Goose, Egyptian",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +"Ibis, Glossy",1 +Jackdaw,1 +Lapwing,1 +"Martin, Crag",1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +Ovenbird,1 +"Partridge, Red-legged",1 +Peregrine,1 +"Pipit, Meadow",1 +"Plover, White-tailed",1 +"Redpoll, Lesser",1 +Roller,1 +"Sandpiper, Spotted",1 +"Sapsucker, Yellow-bellied",1 +"Scaup, Lesser",1 +"Shearwater, Cory's",1 +Siskin,1 +Smew,1 +"Sparrow, Savannah",1 +"Sparrow, White-throated",1 +"Swift, Alpine",1 +"Tern, Sandwich",1 +"Thrush, Mistle",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Hooded",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +Whimbrel,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7da97e2b57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0 +2016-12-27,1,2,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0 +2016-12-28,1,2,2,1,0,0,1,2,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,1,1,1,0,1,0,1,1,0,0 +2016-12-29,4,3,3,2,1,0,1,2,1,0,1,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,0,1,0,1,1,1,0 +2016-12-30,5,3,3,2,2,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,5,3,2,1,1,1,0,2,2,1,2,1,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1 +2017-01-01,5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..eaee7bc86e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" +2016-12,5,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..de5dfd42ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" +"2016 Q4",5,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9284193c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" +2016,5,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d269925257 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7a3f651866 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7a3f651866 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7a3f651866 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e056525627 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ddc656859b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c2dc7cbdd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c836c4e25c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dec7ab4864 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,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,48.00000000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0.00000000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0.00000000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0 +2016-12-28,48.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0 +2016-12-29,48.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,9.60000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000 +2017-01-01,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ced4fdb804 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dd49037a3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b4f55273ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..905ec08d0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,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,2.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 +2016-12-27,2.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 +2016-12-28,2.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,2.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 +2017-01-01,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dca72b91de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ee68b1b058 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1dbe848624 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4f680eae6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By CPU Hours (Core Count)" +"Warbler, Dusky",326.9898 +"Scaup, Lesser",186.5633 +"Warbler, Yellow-browed",160.0000 +"Scoter, Velvet",142.8578 +"Goose, Egyptian",112.0000 +"Gallinule, Allen's",108.0000 +Crane,96.0000 +"Pipit, Meadow",96.0000 +Smew,72.0000 +Chaffinch,64.0000 +Whimbrel,62.4269 +Siskin,62.4000 +"Swift, Alpine",60.5835 +"Duck, Ferruginous",60.0000 +Peregrine,60.0000 +Dunlin,57.7053 +"Grosbeak, Evening",56.0000 +Roller,55.6816 +"Warbler, Sardinian",53.2119 +"Thrush, Swainson's",45.0823 +"Bunting, Yellow-browed",39.9999 +"Warbler, Golden-winged",29.2166 +"Bunting, Reed",25.1805 +"Crane, Sandhill",25.0565 +Shag,24.1804 +"Sparrow, White-throated",23.2563 +"Ibis, Glossy",20.0000 +"Martin, Crag",20.0000 +"Shrike, Long-tailed",18.6116 +Ovenbird,16.0000 +"Partridge, Red-legged",16.0000 +"Warbler, Garden",13.8060 +"Stint, Little",13.7425 +"Plover, Caspian",12.0000 +"Plover, White-tailed",12.0000 +"Sandpiper, Spotted",12.0000 +"Thrush, Mistle",12.0000 +"Oriole, Baltimore",11.8318 +"Bunting, Yellow-breasted",11.7604 +Honey-buzzard,10.5343 +"Warbler, Booted",10.0459 +"Auk, Little",9.9744 +"Dove, Turtle",9.1143 +"Warbler, Hooded",8.6041 +"Treecreeper, Short-toed",8.0019 +Fieldfare,8.0000 +"Shearwater, Cory's",8.0000 +"Thrush, Grey-cheeked",4.5532 +"Redpoll, Lesser",4.0000 +"Sapsucker, Yellow-bellied",4.0000 +"Bunting, Black-headed",1.0000 +Coot,1.0000 +"Egret, Cattle",1.0000 +"Grebe, Pied-billed",1.0000 +"Grey, Great",1.0000 +"Grey, Lesser",1.0000 +"Grey, Southern",1.0000 +"Gull, Ring-billed",1.0000 +"Harrier, Hen",1.0000 +Jackdaw,1.0000 +Lapwing,1.0000 +"Martin, Purple",1.0000 +Moorhen,1.0000 +"Sparrow, Savannah",1.0000 +"Tern, Sandwich",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4f680eae6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By CPU Hours (Core Count)" +"Warbler, Dusky",326.9898 +"Scaup, Lesser",186.5633 +"Warbler, Yellow-browed",160.0000 +"Scoter, Velvet",142.8578 +"Goose, Egyptian",112.0000 +"Gallinule, Allen's",108.0000 +Crane,96.0000 +"Pipit, Meadow",96.0000 +Smew,72.0000 +Chaffinch,64.0000 +Whimbrel,62.4269 +Siskin,62.4000 +"Swift, Alpine",60.5835 +"Duck, Ferruginous",60.0000 +Peregrine,60.0000 +Dunlin,57.7053 +"Grosbeak, Evening",56.0000 +Roller,55.6816 +"Warbler, Sardinian",53.2119 +"Thrush, Swainson's",45.0823 +"Bunting, Yellow-browed",39.9999 +"Warbler, Golden-winged",29.2166 +"Bunting, Reed",25.1805 +"Crane, Sandhill",25.0565 +Shag,24.1804 +"Sparrow, White-throated",23.2563 +"Ibis, Glossy",20.0000 +"Martin, Crag",20.0000 +"Shrike, Long-tailed",18.6116 +Ovenbird,16.0000 +"Partridge, Red-legged",16.0000 +"Warbler, Garden",13.8060 +"Stint, Little",13.7425 +"Plover, Caspian",12.0000 +"Plover, White-tailed",12.0000 +"Sandpiper, Spotted",12.0000 +"Thrush, Mistle",12.0000 +"Oriole, Baltimore",11.8318 +"Bunting, Yellow-breasted",11.7604 +Honey-buzzard,10.5343 +"Warbler, Booted",10.0459 +"Auk, Little",9.9744 +"Dove, Turtle",9.1143 +"Warbler, Hooded",8.6041 +"Treecreeper, Short-toed",8.0019 +Fieldfare,8.0000 +"Shearwater, Cory's",8.0000 +"Thrush, Grey-cheeked",4.5532 +"Redpoll, Lesser",4.0000 +"Sapsucker, Yellow-bellied",4.0000 +"Bunting, Black-headed",1.0000 +Coot,1.0000 +"Egret, Cattle",1.0000 +"Grebe, Pied-billed",1.0000 +"Grey, Great",1.0000 +"Grey, Lesser",1.0000 +"Grey, Southern",1.0000 +"Gull, Ring-billed",1.0000 +"Harrier, Hen",1.0000 +Jackdaw,1.0000 +Lapwing,1.0000 +"Martin, Purple",1.0000 +Moorhen,1.0000 +"Sparrow, Savannah",1.0000 +"Tern, Sandwich",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4f680eae6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By CPU Hours (Core Count)" +"Warbler, Dusky",326.9898 +"Scaup, Lesser",186.5633 +"Warbler, Yellow-browed",160.0000 +"Scoter, Velvet",142.8578 +"Goose, Egyptian",112.0000 +"Gallinule, Allen's",108.0000 +Crane,96.0000 +"Pipit, Meadow",96.0000 +Smew,72.0000 +Chaffinch,64.0000 +Whimbrel,62.4269 +Siskin,62.4000 +"Swift, Alpine",60.5835 +"Duck, Ferruginous",60.0000 +Peregrine,60.0000 +Dunlin,57.7053 +"Grosbeak, Evening",56.0000 +Roller,55.6816 +"Warbler, Sardinian",53.2119 +"Thrush, Swainson's",45.0823 +"Bunting, Yellow-browed",39.9999 +"Warbler, Golden-winged",29.2166 +"Bunting, Reed",25.1805 +"Crane, Sandhill",25.0565 +Shag,24.1804 +"Sparrow, White-throated",23.2563 +"Ibis, Glossy",20.0000 +"Martin, Crag",20.0000 +"Shrike, Long-tailed",18.6116 +Ovenbird,16.0000 +"Partridge, Red-legged",16.0000 +"Warbler, Garden",13.8060 +"Stint, Little",13.7425 +"Plover, Caspian",12.0000 +"Plover, White-tailed",12.0000 +"Sandpiper, Spotted",12.0000 +"Thrush, Mistle",12.0000 +"Oriole, Baltimore",11.8318 +"Bunting, Yellow-breasted",11.7604 +Honey-buzzard,10.5343 +"Warbler, Booted",10.0459 +"Auk, Little",9.9744 +"Dove, Turtle",9.1143 +"Warbler, Hooded",8.6041 +"Treecreeper, Short-toed",8.0019 +Fieldfare,8.0000 +"Shearwater, Cory's",8.0000 +"Thrush, Grey-cheeked",4.5532 +"Redpoll, Lesser",4.0000 +"Sapsucker, Yellow-bellied",4.0000 +"Bunting, Black-headed",1.0000 +Coot,1.0000 +"Egret, Cattle",1.0000 +"Grebe, Pied-billed",1.0000 +"Grey, Great",1.0000 +"Grey, Lesser",1.0000 +"Grey, Southern",1.0000 +"Gull, Ring-billed",1.0000 +"Harrier, Hen",1.0000 +Jackdaw,1.0000 +Lapwing,1.0000 +"Martin, Purple",1.0000 +Moorhen,1.0000 +"Sparrow, Savannah",1.0000 +"Tern, Sandwich",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4f680eae6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By CPU Hours (Core Count)" +"Warbler, Dusky",326.9898 +"Scaup, Lesser",186.5633 +"Warbler, Yellow-browed",160.0000 +"Scoter, Velvet",142.8578 +"Goose, Egyptian",112.0000 +"Gallinule, Allen's",108.0000 +Crane,96.0000 +"Pipit, Meadow",96.0000 +Smew,72.0000 +Chaffinch,64.0000 +Whimbrel,62.4269 +Siskin,62.4000 +"Swift, Alpine",60.5835 +"Duck, Ferruginous",60.0000 +Peregrine,60.0000 +Dunlin,57.7053 +"Grosbeak, Evening",56.0000 +Roller,55.6816 +"Warbler, Sardinian",53.2119 +"Thrush, Swainson's",45.0823 +"Bunting, Yellow-browed",39.9999 +"Warbler, Golden-winged",29.2166 +"Bunting, Reed",25.1805 +"Crane, Sandhill",25.0565 +Shag,24.1804 +"Sparrow, White-throated",23.2563 +"Ibis, Glossy",20.0000 +"Martin, Crag",20.0000 +"Shrike, Long-tailed",18.6116 +Ovenbird,16.0000 +"Partridge, Red-legged",16.0000 +"Warbler, Garden",13.8060 +"Stint, Little",13.7425 +"Plover, Caspian",12.0000 +"Plover, White-tailed",12.0000 +"Sandpiper, Spotted",12.0000 +"Thrush, Mistle",12.0000 +"Oriole, Baltimore",11.8318 +"Bunting, Yellow-breasted",11.7604 +Honey-buzzard,10.5343 +"Warbler, Booted",10.0459 +"Auk, Little",9.9744 +"Dove, Turtle",9.1143 +"Warbler, Hooded",8.6041 +"Treecreeper, Short-toed",8.0019 +Fieldfare,8.0000 +"Shearwater, Cory's",8.0000 +"Thrush, Grey-cheeked",4.5532 +"Redpoll, Lesser",4.0000 +"Sapsucker, Yellow-bellied",4.0000 +"Bunting, Black-headed",1.0000 +Coot,1.0000 +"Egret, Cattle",1.0000 +"Grebe, Pied-billed",1.0000 +"Grey, Great",1.0000 +"Grey, Lesser",1.0000 +"Grey, Southern",1.0000 +"Gull, Ring-billed",1.0000 +"Harrier, Hen",1.0000 +Jackdaw,1.0000 +Lapwing,1.0000 +"Martin, Purple",1.0000 +Moorhen,1.0000 +"Sparrow, Savannah",1.0000 +"Tern, Sandwich",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d1ed0899f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (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,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 +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,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 +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,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 +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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,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 +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,24.0000,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,12.0000,0,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 +2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,72.0000,0,0,0,0,0,0,0,0,0,0,26.0962,32.0000,0,0,0,0,0,16.0000,0,16.0000,0,0,0,0,0,12.0000,16.0000,1.0000,12.0000,0,12.0000,0,8.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,1.0000 +2016-12-28,0,186.6783,0,144.0000,0,0,0,96.0000,0,64.0000,0,65.7129,0,0,0,0,0,0,32.0000,0,0,0,29.7503,26.1953,22.7149,0,20.0000,0,0,16.0000,0,16.0000,0,0,12.0000,0,12.0000,12.0000,16.0000,1.0000,12.0000,0,12.0000,8.0000,8.0000,0,0,0,0,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,186.5631,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,0,62.4000,0,60.0000,60.0000,0,56.0000,0,32.0000,62.5102,40.0000,0,29.9515,29.0661,25.2228,0,20.0000,0,1.0000,16.0000,0,16.0000,0,0,12.0000,12.0000,12.0000,12.0000,13.7716,8.9965,12.0000,5.0000,11.1580,8.0000,8.0000,0,8.0000,2.0000,4.0000,4.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,320.0517,186.5631,160.0000,125.4037,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,72.0000,49.8936,53.8643,60.0000,60.0000,65.8038,56.0000,45.1553,46.9959,35.2172,39.9998,41.1565,23.7785,21.6195,22.6717,0,20.0000,20.0000,1.2886,16.0000,16.0000,16.0000,13.1826,0,12.0000,12.0000,12.0000,12.0000,9.9283,10.1263,2.3934,5.0000,8.1287,8.4439,8.0083,8.0000,8.0000,11.1559,4.0000,4.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,1.0000 +2016-12-31,336.0000,186.2295,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,61.2589,48.0000,64.0000,60.0000,60.0000,95.7214,0,59.2199,72.7559,64.0000,40.0000,24.3207,11.7947,16.5130,25.4705,23.4747,0,0,19.9996,16.0000,0,11.9114,16.0000,12.0000,0,12.0000,12.0000,12.1378,8.0000,10.8526,1.0000,11.1429,8.0000,9.8229,8.0000,8.0000,8.0000,2.0000,4.0000,4.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.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..331c78421a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +2017-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ea3f0df904 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +"2017 Q1",0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..09ba8bad65 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (Core Count)" +2016,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +2017,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..094330012b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,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,12.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 +2016-12-28,12.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 +2017-01-01,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0cd1eb6c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74a6604c2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4a13d2298d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..93305385ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6a721af0dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6a721af0dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6a721af0dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by User" +parameters + +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/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..20706dcfde --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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,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/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ac40b1022 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..467b8cebd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0c3043ab42 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c5b6464efe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +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/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c5b6464efe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +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/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c5b6464efe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +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/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c5b6464efe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +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/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..347c0b02fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by User" +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)","[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/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..748256d6b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +2017-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/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e914016b04 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +"2017 Q1",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/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..aaf5f2ef20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +2017,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/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2ed0606aad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Treecreeper, Short-toed",233.46900253,27.708500592959215 +"Thrush, Swainson's",229.08833216,0.3165144562337443 +"Pipit, Meadow",81.66292824,7.183771270440662 +Siskin,56.48111111,13.862828445162263 +"Bunting, Yellow-browed",52.74111111,37.29241880267786 +"Scoter, Velvet",39.39500000,27.85548955209239 +"Crane, Sandhill",35.06708719,1.6947647788562477 +"Warbler, Yellow-browed",31.02180556,3.7428536858056267 +"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 +Ovenbird,18.86933333,16.876685792814378 +"Tern, Sandwich",14.27555556,3.3086704803020535 +Peregrine,13.04694444,0.5705177028327323 +Dunlin,12.67979893,0.790292910753799 +"Warbler, Booted",8.19083333,2.9697909176657884 +"Warbler, Dusky",6.67768519,0.98851049021015 +"Plover, Caspian",5.36508929,0.1678514684969954 +"Sandpiper, Spotted",5.35740741,0.44586416880536145 +"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 +"Thrush, Mistle",4.41189394,0.6571458545780616 +"Grey, Lesser",3.92752472,0.08635320372070841 +"Plover, White-tailed",3.72481481,0.0007211928415468717 +Whimbrel,2.29753968,1.159786159539825 +"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 +"Sparrow, White-throated",2.15222222,0.6988290975119311 +Honey-buzzard,2.05241888,0.0266461444300528 +Smew,1.98928571,0.9136179906052265 +Crane,1.88463542,0.5086144929601321 +Shag,1.36358586,1.050607504263938 +"Grosbeak, Evening",0.98805556,0.13847507798236555 +"Grey, Great",0.74185808,0.00745478946523104 +"Warbler, Garden",0.68931866,0.18792064181649992 +"Warbler, Sardinian",0.68493210,0.20891751003386838 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Warbler, Hooded",0.30899471,0.06608296019883089 +"Warbler, Golden-winged",0.29952899,0.12719098377944033 +Moorhen,0.20714974,0.015675479418422043 +"Gallinule, Allen's",0.09777778,0 +"Stint, Little",0.09015152,0.047849695531533384 +"Grey, Southern",0.08220238,0.011574714004551338 +"Shearwater, Cory's",0.07831597,0.019809027302287216 +"Bunting, Reed",0.06252201,0.016249488196930326 +Lapwing,0.05740350,0.004593062258338075 +"Oriole, Baltimore",0.04120370,0.015935275751000608 +Roller,0.04034722,0.034861577990454876 +"Duck, Ferruginous",0.03111111,0 +"Dove, Turtle",0.02859810,0.009599314670761935 +"Auk, Little",0.01747222,0.00747562396751627 +"Bunting, Black-headed",0.01408333,0.0026920235401535287 +"Sparrow, Savannah",0.01404915,0.002043989277526459 +"Grebe, Pied-billed",0.01099444,0.004697248275110087 +"Gull, Ring-billed",0.00750000,0 +"Shrike, Long-tailed",0.00178819,0.001340063838980952 +"Martin, Crag",0.00105159,0.00005735857833479565 +"Goose, Egyptian",0.00059028,0.000142636082683637 +Fieldfare,0.00055556,0.00022680460581325724 +"Ibis, Glossy",0.00027778,0 +"Scaup, Lesser",0.00018519,0.000043648566827207465 +"Swift, Alpine",0.00015625,0.00004891244648257224 +Coot,0.00015046,0.000032651062689513116 +"Redpoll, Lesser",0.00013889,0.00009820927516479828 +"Egret, Cattle",0.00012731,0.00002825196474708646 +"Martin, Purple",0.00010802,0.00002506891552546276 +Chaffinch,0.00000000,0 +Jackdaw,0.00000000,0 +"Partridge, Red-legged",0.00000000,0 +"Warbler, Moltoni's",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2ed0606aad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Treecreeper, Short-toed",233.46900253,27.708500592959215 +"Thrush, Swainson's",229.08833216,0.3165144562337443 +"Pipit, Meadow",81.66292824,7.183771270440662 +Siskin,56.48111111,13.862828445162263 +"Bunting, Yellow-browed",52.74111111,37.29241880267786 +"Scoter, Velvet",39.39500000,27.85548955209239 +"Crane, Sandhill",35.06708719,1.6947647788562477 +"Warbler, Yellow-browed",31.02180556,3.7428536858056267 +"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 +Ovenbird,18.86933333,16.876685792814378 +"Tern, Sandwich",14.27555556,3.3086704803020535 +Peregrine,13.04694444,0.5705177028327323 +Dunlin,12.67979893,0.790292910753799 +"Warbler, Booted",8.19083333,2.9697909176657884 +"Warbler, Dusky",6.67768519,0.98851049021015 +"Plover, Caspian",5.36508929,0.1678514684969954 +"Sandpiper, Spotted",5.35740741,0.44586416880536145 +"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 +"Thrush, Mistle",4.41189394,0.6571458545780616 +"Grey, Lesser",3.92752472,0.08635320372070841 +"Plover, White-tailed",3.72481481,0.0007211928415468717 +Whimbrel,2.29753968,1.159786159539825 +"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 +"Sparrow, White-throated",2.15222222,0.6988290975119311 +Honey-buzzard,2.05241888,0.0266461444300528 +Smew,1.98928571,0.9136179906052265 +Crane,1.88463542,0.5086144929601321 +Shag,1.36358586,1.050607504263938 +"Grosbeak, Evening",0.98805556,0.13847507798236555 +"Grey, Great",0.74185808,0.00745478946523104 +"Warbler, Garden",0.68931866,0.18792064181649992 +"Warbler, Sardinian",0.68493210,0.20891751003386838 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Warbler, Hooded",0.30899471,0.06608296019883089 +"Warbler, Golden-winged",0.29952899,0.12719098377944033 +Moorhen,0.20714974,0.015675479418422043 +"Gallinule, Allen's",0.09777778,0 +"Stint, Little",0.09015152,0.047849695531533384 +"Grey, Southern",0.08220238,0.011574714004551338 +"Shearwater, Cory's",0.07831597,0.019809027302287216 +"Bunting, Reed",0.06252201,0.016249488196930326 +Lapwing,0.05740350,0.004593062258338075 +"Oriole, Baltimore",0.04120370,0.015935275751000608 +Roller,0.04034722,0.034861577990454876 +"Duck, Ferruginous",0.03111111,0 +"Dove, Turtle",0.02859810,0.009599314670761935 +"Auk, Little",0.01747222,0.00747562396751627 +"Bunting, Black-headed",0.01408333,0.0026920235401535287 +"Sparrow, Savannah",0.01404915,0.002043989277526459 +"Grebe, Pied-billed",0.01099444,0.004697248275110087 +"Gull, Ring-billed",0.00750000,0 +"Shrike, Long-tailed",0.00178819,0.001340063838980952 +"Martin, Crag",0.00105159,0.00005735857833479565 +"Goose, Egyptian",0.00059028,0.000142636082683637 +Fieldfare,0.00055556,0.00022680460581325724 +"Ibis, Glossy",0.00027778,0 +"Scaup, Lesser",0.00018519,0.000043648566827207465 +"Swift, Alpine",0.00015625,0.00004891244648257224 +Coot,0.00015046,0.000032651062689513116 +"Redpoll, Lesser",0.00013889,0.00009820927516479828 +"Egret, Cattle",0.00012731,0.00002825196474708646 +"Martin, Purple",0.00010802,0.00002506891552546276 +Chaffinch,0.00000000,0 +Jackdaw,0.00000000,0 +"Partridge, Red-legged",0.00000000,0 +"Warbler, Moltoni's",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2ed0606aad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Treecreeper, Short-toed",233.46900253,27.708500592959215 +"Thrush, Swainson's",229.08833216,0.3165144562337443 +"Pipit, Meadow",81.66292824,7.183771270440662 +Siskin,56.48111111,13.862828445162263 +"Bunting, Yellow-browed",52.74111111,37.29241880267786 +"Scoter, Velvet",39.39500000,27.85548955209239 +"Crane, Sandhill",35.06708719,1.6947647788562477 +"Warbler, Yellow-browed",31.02180556,3.7428536858056267 +"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 +Ovenbird,18.86933333,16.876685792814378 +"Tern, Sandwich",14.27555556,3.3086704803020535 +Peregrine,13.04694444,0.5705177028327323 +Dunlin,12.67979893,0.790292910753799 +"Warbler, Booted",8.19083333,2.9697909176657884 +"Warbler, Dusky",6.67768519,0.98851049021015 +"Plover, Caspian",5.36508929,0.1678514684969954 +"Sandpiper, Spotted",5.35740741,0.44586416880536145 +"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 +"Thrush, Mistle",4.41189394,0.6571458545780616 +"Grey, Lesser",3.92752472,0.08635320372070841 +"Plover, White-tailed",3.72481481,0.0007211928415468717 +Whimbrel,2.29753968,1.159786159539825 +"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 +"Sparrow, White-throated",2.15222222,0.6988290975119311 +Honey-buzzard,2.05241888,0.0266461444300528 +Smew,1.98928571,0.9136179906052265 +Crane,1.88463542,0.5086144929601321 +Shag,1.36358586,1.050607504263938 +"Grosbeak, Evening",0.98805556,0.13847507798236555 +"Grey, Great",0.74185808,0.00745478946523104 +"Warbler, Garden",0.68931866,0.18792064181649992 +"Warbler, Sardinian",0.68493210,0.20891751003386838 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Warbler, Hooded",0.30899471,0.06608296019883089 +"Warbler, Golden-winged",0.29952899,0.12719098377944033 +Moorhen,0.20714974,0.015675479418422043 +"Gallinule, Allen's",0.09777778,0 +"Stint, Little",0.09015152,0.047849695531533384 +"Grey, Southern",0.08220238,0.011574714004551338 +"Shearwater, Cory's",0.07831597,0.019809027302287216 +"Bunting, Reed",0.06252201,0.016249488196930326 +Lapwing,0.05740350,0.004593062258338075 +"Oriole, Baltimore",0.04120370,0.015935275751000608 +Roller,0.04034722,0.034861577990454876 +"Duck, Ferruginous",0.03111111,0 +"Dove, Turtle",0.02859810,0.009599314670761935 +"Auk, Little",0.01747222,0.00747562396751627 +"Bunting, Black-headed",0.01408333,0.0026920235401535287 +"Sparrow, Savannah",0.01404915,0.002043989277526459 +"Grebe, Pied-billed",0.01099444,0.004697248275110087 +"Gull, Ring-billed",0.00750000,0 +"Shrike, Long-tailed",0.00178819,0.001340063838980952 +"Martin, Crag",0.00105159,0.00005735857833479565 +"Goose, Egyptian",0.00059028,0.000142636082683637 +Fieldfare,0.00055556,0.00022680460581325724 +"Ibis, Glossy",0.00027778,0 +"Scaup, Lesser",0.00018519,0.000043648566827207465 +"Swift, Alpine",0.00015625,0.00004891244648257224 +Coot,0.00015046,0.000032651062689513116 +"Redpoll, Lesser",0.00013889,0.00009820927516479828 +"Egret, Cattle",0.00012731,0.00002825196474708646 +"Martin, Purple",0.00010802,0.00002506891552546276 +Chaffinch,0.00000000,0 +Jackdaw,0.00000000,0 +"Partridge, Red-legged",0.00000000,0 +"Warbler, Moltoni's",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2ed0606aad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Treecreeper, Short-toed",233.46900253,27.708500592959215 +"Thrush, Swainson's",229.08833216,0.3165144562337443 +"Pipit, Meadow",81.66292824,7.183771270440662 +Siskin,56.48111111,13.862828445162263 +"Bunting, Yellow-browed",52.74111111,37.29241880267786 +"Scoter, Velvet",39.39500000,27.85548955209239 +"Crane, Sandhill",35.06708719,1.6947647788562477 +"Warbler, Yellow-browed",31.02180556,3.7428536858056267 +"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 +Ovenbird,18.86933333,16.876685792814378 +"Tern, Sandwich",14.27555556,3.3086704803020535 +Peregrine,13.04694444,0.5705177028327323 +Dunlin,12.67979893,0.790292910753799 +"Warbler, Booted",8.19083333,2.9697909176657884 +"Warbler, Dusky",6.67768519,0.98851049021015 +"Plover, Caspian",5.36508929,0.1678514684969954 +"Sandpiper, Spotted",5.35740741,0.44586416880536145 +"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 +"Thrush, Mistle",4.41189394,0.6571458545780616 +"Grey, Lesser",3.92752472,0.08635320372070841 +"Plover, White-tailed",3.72481481,0.0007211928415468717 +Whimbrel,2.29753968,1.159786159539825 +"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 +"Sparrow, White-throated",2.15222222,0.6988290975119311 +Honey-buzzard,2.05241888,0.0266461444300528 +Smew,1.98928571,0.9136179906052265 +Crane,1.88463542,0.5086144929601321 +Shag,1.36358586,1.050607504263938 +"Grosbeak, Evening",0.98805556,0.13847507798236555 +"Grey, Great",0.74185808,0.00745478946523104 +"Warbler, Garden",0.68931866,0.18792064181649992 +"Warbler, Sardinian",0.68493210,0.20891751003386838 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Warbler, Hooded",0.30899471,0.06608296019883089 +"Warbler, Golden-winged",0.29952899,0.12719098377944033 +Moorhen,0.20714974,0.015675479418422043 +"Gallinule, Allen's",0.09777778,0 +"Stint, Little",0.09015152,0.047849695531533384 +"Grey, Southern",0.08220238,0.011574714004551338 +"Shearwater, Cory's",0.07831597,0.019809027302287216 +"Bunting, Reed",0.06252201,0.016249488196930326 +Lapwing,0.05740350,0.004593062258338075 +"Oriole, Baltimore",0.04120370,0.015935275751000608 +Roller,0.04034722,0.034861577990454876 +"Duck, Ferruginous",0.03111111,0 +"Dove, Turtle",0.02859810,0.009599314670761935 +"Auk, Little",0.01747222,0.00747562396751627 +"Bunting, Black-headed",0.01408333,0.0026920235401535287 +"Sparrow, Savannah",0.01404915,0.002043989277526459 +"Grebe, Pied-billed",0.01099444,0.004697248275110087 +"Gull, Ring-billed",0.00750000,0 +"Shrike, Long-tailed",0.00178819,0.001340063838980952 +"Martin, Crag",0.00105159,0.00005735857833479565 +"Goose, Egyptian",0.00059028,0.000142636082683637 +Fieldfare,0.00055556,0.00022680460581325724 +"Ibis, Glossy",0.00027778,0 +"Scaup, Lesser",0.00018519,0.000043648566827207465 +"Swift, Alpine",0.00015625,0.00004891244648257224 +Coot,0.00015046,0.000032651062689513116 +"Redpoll, Lesser",0.00013889,0.00009820927516479828 +"Egret, Cattle",0.00012731,0.00002825196474708646 +"Martin, Purple",0.00010802,0.00002506891552546276 +Chaffinch,0.00000000,0 +Jackdaw,0.00000000,0 +"Partridge, Red-legged",0.00000000,0 +"Warbler, Moltoni's",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..658c8ca9f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait 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,0,0.00027778,0,0,9.33222222,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,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,55.41111111,0,0.00000000,0,0,0.06333333,0,0,0,0,0,0,0,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.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,273.48105556,0,103.71148148,76.08611111,0,78.78861111,46.99166667,0,0,0.00062500,0.00000000,0,0,50.82250000,0,0,0,0,0,0,0,0,0.00027778,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00288889,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000 +2016-12-28,280.72700000,0,108.01750000,36.87611111,0,0.00000000,80.35419753,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0.00000000,0,0,6.82972222,0,0,1.68000000,2.73787037,0,0.46633333,0,0.02977924,0,0,0,0,20.57444444,0.07195578,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00027778,0.00018519,0,0,0,0,0,0.00000000,0,0,0.00000000 +2016-12-29,313.25736111,206.22965812,47.74488095,0.00000000,0.00166667,0.00000000,22.19675214,25.72861111,0.00444444,0.00000000,18.95472222,11.68527778,0,0.00000000,0,0,0.95844444,0.00019841,0.00000000,0,0.00000000,0,1.21402778,0,7.95825941,1.98928571,3.47907407,0.00111111,0.79222222,0,4.46097222,0.29993056,0.01788889,0.07572222,0,0.04237662,0,0,0,0.17638889,3.66268519,0.04464331,0.00000000,0,0.03111111,0.01715686,0.00000000,0,0,0.01099444,0,0.02250000,0,0.00062500,0,0.00000000,0.00000000,0,0,0.00027778,0,0,0.00000000,0,0,0.00000000 +2016-12-30,55.29648148,229.51285040,0.00000000,0.00000000,105.48055556,0.00138889,32.41850397,0.00000000,18.02518519,0.00000000,0.00000000,13.72777778,13.00438580,5.14571429,6.67768519,0,6.23720000,1.80364583,0.38944444,2.58369031,0.00000000,17.26194444,8.09833333,0,1.39451717,0.00000000,1.47605556,0.22282407,1.18388889,0.84512711,0.00000000,0.55871032,0.42590741,0.41231481,0.59636111,0.32754774,0.09777778,0.00369048,0.17850082,0.02000000,0.02257879,0.13344771,0.00000000,0.05370370,0.00000000,0.01009512,0.00000000,0.01437500,0.01586806,0.00000000,0.00750000,0.00092593,0.00105159,0.00055556,0.00083333,0.00000000,0.00000000,0.00020833,0.00010417,0.00000000,0.00006944,0.00011574,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,351.74604167,0.00000000,0.00000000,0.00000000,0.00000000,0,33.49272778,0,27.32576747,94.34416667,0,0.00000000,3.35838889,0.00000000,0.00000000,0.02019097,0.00000000,25.71842593,0.00000000,7.36601918,0,0.95052083,0.00000000,2.15222222,2.89868538,0.00000000,0.07819444,0.00097222,0,0.55391509,0.00626263,1.74513889,0.00000000,0.26094444,0.33598291,0.35169374,0,0.24145833,0.02144676,0.00000000,0.03538140,0.01543544,0.00027778,0.00000000,0.00000000,0.04029733,0.02496032,0.01388889,0.01362745,0,0.00000000,0.00074074,0,0.00000000,0.00083333,0,0.00000000,0.00013889,0.00013889,0.00000000,0.00010417,0.00009259,0.00000000,0.00000000,0,0 +2017-01-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7a692c7a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait Hours: Per Job" +2016-12,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0be2401900 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait Hours: Per Job" +"2016 Q4",233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..767f42d9f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait Hours: Per Job" +2016,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..970a83c76e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Chaffinch,120.00722222, +"Tern, Sandwich",87.43875000, +Ovenbird,82.76488889, +"Warbler, Moltoni's",72.00694444, +"Scaup, Lesser",72.00432099, +Siskin,70.03500000, +"Duck, Ferruginous",70.00777778, +"Pipit, Meadow",63.57475694, +"Warbler, Garden",52.33125262, +Lapwing,49.85089556, +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667, +"Treecreeper, Short-toed",46.66083333, +"Plover, White-tailed",44.13648148, +"Thrush, Mistle",39.37916667, +"Bunting, Yellow-breasted",38.73828704, +"Scoter, Velvet",37.18166667, +Smew,36.49007937, +"Gull, Ring-billed",31.90972222, +"Shearwater, Cory's",27.37690972, +"Sparrow, White-throated",25.49490741, +Moorhen,25.48654262, +"Bunting, Yellow-browed",25.17486111, +Peregrine,24.84777778, +Jackdaw,21.84694444, +"Warbler, Hooded",21.83599206, +Shag,20.71641414, +"Redpoll, Lesser",18.89791667, +"Sandpiper, Spotted",16.91415278, +"Warbler, Booted",16.76537037, +"Goose, Egyptian",15.78250000, +"Warbler, Dusky",15.43750000,2.949516142225878 +Fieldfare,14.37398148, +Crane,12.67826389, +"Grosbeak, Evening",10.08083333,5.736664622204642 +"Grebe, Pied-billed",10.00406111, +"Warbler, Sardinian",9.41403086,1.0834302290958004 +"Oriole, Baltimore",9.12110185,1.9524242496702076 +"Grey, Lesser",8.59051583, +"Thrush, Grey-cheeked",7.94699670,0.252707620848999 +"Crane, Sandhill",7.43894097,0.6293211331105432 +"Auk, Little",7.02769444,1.7557857088278381 +Whimbrel,6.17696429,0.650411636248519 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.412736659063767 +Roller,4.58416667,1.0571325984155044 +"Warbler, Yellow-browed",4.51402778,1.3866381241776238 +"Shrike, Long-tailed",3.89088542,1.5421931694132969 +"Plover, Caspian",2.10733760,0.04730850999433886 +"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 +"Warbler, Golden-winged",0.81574879,0.33900408606509713 +"Swift, Alpine",0.66013889,0.2379191991153246 +"Thrush, Swainson's",0.56853008,0.041637228742746606 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.026000891408928004 +Honey-buzzard,0.28378820,0.002129439336752145 +"Gallinule, Allen's",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +"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/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6eead250f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Chaffinch,120.00722222, +"Tern, Sandwich",87.43875000,49.35183032798893 +Ovenbird,82.76488889,11.31277811706417 +"Warbler, Moltoni's",72.00694444,0 +"Scaup, Lesser",72.00432099,0.0007574156507426745 +Siskin,70.03500000,0.00019641855032959655 +"Duck, Ferruginous",70.00777778, +"Pipit, Meadow",63.57475694,3.13824008219319 +"Warbler, Garden",52.33125262, +Lapwing,49.85089556,1.1100595034642202 +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667,0 +"Treecreeper, Short-toed",46.66083333,5.055266467272984 +"Plover, White-tailed",44.13648148,3.8863777173028686 +"Thrush, Mistle",39.37916667,3.5074678840012607 +"Bunting, Yellow-breasted",38.73828704,7.964502386031587 +"Scoter, Velvet",37.18166667,24.625975747573168 +Smew,36.49007937,2.407916402194818 +"Gull, Ring-billed",31.90972222,0 +"Shearwater, Cory's",27.37690972,4.572758943516918 +"Sparrow, White-throated",25.49490741, +Moorhen,25.48654262,0.09521527865289223 +"Bunting, Yellow-browed",25.17486111,17.80092216999551 +Peregrine,24.84777778,1.3792526019750193 +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 +"Goose, Egyptian",15.78250000,1.4182317241819407 +"Warbler, Dusky",15.43750000,9.334819660458281 +Fieldfare,14.37398148, +Crane,12.67826389,0.43082354975761517 +"Grosbeak, Evening",10.08083333,7.102298361367882 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Warbler, Sardinian",9.41403086,1.7878256710905893 +"Oriole, Baltimore",9.12110185,7.611190913212397 +"Grey, Lesser",8.59051583,0.027937647321332644 +"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 +"Crane, Sandhill",7.43894097,1.2737613363617315 +"Auk, Little",7.02769444,2.431694700689441 +Whimbrel,6.17696429,0.6904442871805476 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +Roller,4.58416667,1.606624250847252 +"Warbler, Yellow-browed",4.51402778,3.1765790052054 +"Shrike, Long-tailed",3.89088542,2.2654968346862243 +"Plover, Caspian",2.10733760,0.04730850999433886 +"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 +"Warbler, Golden-winged",0.81574879,0.33900408606509713 +"Swift, Alpine",0.66013889,0.2379191991153246 +"Thrush, Swainson's",0.56853008,0.0672666690107468 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.0457046053323436 +Honey-buzzard,0.28378820,0.0027004215312930553 +"Gallinule, Allen's",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +"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/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6eead250f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Chaffinch,120.00722222, +"Tern, Sandwich",87.43875000,49.35183032798893 +Ovenbird,82.76488889,11.31277811706417 +"Warbler, Moltoni's",72.00694444,0 +"Scaup, Lesser",72.00432099,0.0007574156507426745 +Siskin,70.03500000,0.00019641855032959655 +"Duck, Ferruginous",70.00777778, +"Pipit, Meadow",63.57475694,3.13824008219319 +"Warbler, Garden",52.33125262, +Lapwing,49.85089556,1.1100595034642202 +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667,0 +"Treecreeper, Short-toed",46.66083333,5.055266467272984 +"Plover, White-tailed",44.13648148,3.8863777173028686 +"Thrush, Mistle",39.37916667,3.5074678840012607 +"Bunting, Yellow-breasted",38.73828704,7.964502386031587 +"Scoter, Velvet",37.18166667,24.625975747573168 +Smew,36.49007937,2.407916402194818 +"Gull, Ring-billed",31.90972222,0 +"Shearwater, Cory's",27.37690972,4.572758943516918 +"Sparrow, White-throated",25.49490741, +Moorhen,25.48654262,0.09521527865289223 +"Bunting, Yellow-browed",25.17486111,17.80092216999551 +Peregrine,24.84777778,1.3792526019750193 +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 +"Goose, Egyptian",15.78250000,1.4182317241819407 +"Warbler, Dusky",15.43750000,9.334819660458281 +Fieldfare,14.37398148, +Crane,12.67826389,0.43082354975761517 +"Grosbeak, Evening",10.08083333,7.102298361367882 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Warbler, Sardinian",9.41403086,1.7878256710905893 +"Oriole, Baltimore",9.12110185,7.611190913212397 +"Grey, Lesser",8.59051583,0.027937647321332644 +"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 +"Crane, Sandhill",7.43894097,1.2737613363617315 +"Auk, Little",7.02769444,2.431694700689441 +Whimbrel,6.17696429,0.6904442871805476 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +Roller,4.58416667,1.606624250847252 +"Warbler, Yellow-browed",4.51402778,3.1765790052054 +"Shrike, Long-tailed",3.89088542,2.2654968346862243 +"Plover, Caspian",2.10733760,0.04730850999433886 +"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 +"Warbler, Golden-winged",0.81574879,0.33900408606509713 +"Swift, Alpine",0.66013889,0.2379191991153246 +"Thrush, Swainson's",0.56853008,0.0672666690107468 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.0457046053323436 +Honey-buzzard,0.28378820,0.0027004215312930553 +"Gallinule, Allen's",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +"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/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6eead250f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +Chaffinch,120.00722222, +"Tern, Sandwich",87.43875000,49.35183032798893 +Ovenbird,82.76488889,11.31277811706417 +"Warbler, Moltoni's",72.00694444,0 +"Scaup, Lesser",72.00432099,0.0007574156507426745 +Siskin,70.03500000,0.00019641855032959655 +"Duck, Ferruginous",70.00777778, +"Pipit, Meadow",63.57475694,3.13824008219319 +"Warbler, Garden",52.33125262, +Lapwing,49.85089556,1.1100595034642202 +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667,0 +"Treecreeper, Short-toed",46.66083333,5.055266467272984 +"Plover, White-tailed",44.13648148,3.8863777173028686 +"Thrush, Mistle",39.37916667,3.5074678840012607 +"Bunting, Yellow-breasted",38.73828704,7.964502386031587 +"Scoter, Velvet",37.18166667,24.625975747573168 +Smew,36.49007937,2.407916402194818 +"Gull, Ring-billed",31.90972222,0 +"Shearwater, Cory's",27.37690972,4.572758943516918 +"Sparrow, White-throated",25.49490741, +Moorhen,25.48654262,0.09521527865289223 +"Bunting, Yellow-browed",25.17486111,17.80092216999551 +Peregrine,24.84777778,1.3792526019750193 +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 +"Goose, Egyptian",15.78250000,1.4182317241819407 +"Warbler, Dusky",15.43750000,9.334819660458281 +Fieldfare,14.37398148, +Crane,12.67826389,0.43082354975761517 +"Grosbeak, Evening",10.08083333,7.102298361367882 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Warbler, Sardinian",9.41403086,1.7878256710905893 +"Oriole, Baltimore",9.12110185,7.611190913212397 +"Grey, Lesser",8.59051583,0.027937647321332644 +"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 +"Crane, Sandhill",7.43894097,1.2737613363617315 +"Auk, Little",7.02769444,2.431694700689441 +Whimbrel,6.17696429,0.6904442871805476 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +Roller,4.58416667,1.606624250847252 +"Warbler, Yellow-browed",4.51402778,3.1765790052054 +"Shrike, Long-tailed",3.89088542,2.2654968346862243 +"Plover, Caspian",2.10733760,0.04730850999433886 +"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 +"Warbler, Golden-winged",0.81574879,0.33900408606509713 +"Swift, Alpine",0.66013889,0.2379191991153246 +"Thrush, Swainson's",0.56853008,0.0672666690107468 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.0457046053323436 +Honey-buzzard,0.28378820,0.0027004215312930553 +"Gallinule, Allen's",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +"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/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3bd3f41842 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall 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,16.74638889,0,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,0,0,0 +2016-12-23,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,0,0,0,0,0,0,0,0,24.00000000,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 +2016-12-24,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,0,0,0,0,0,0,0,0,24.00000000,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 +2016-12-25,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,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0,0,0 +2016-12-26,0,24.00000000,0,0,0,0,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,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0 +2016-12-27,3.79972222,24.00000000,4.93666667,4.72138889,0,20.66416667,0,12.98407407,24.00000000,0,0,0,13.96533333,0,0,8.54972222,20.81333333,0,0,0,0,0,0,0,0,0,0,0,0,19.90555556,0,0,0,0,0,0,0,24.00000000,0,0,20.33888889,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0,0,0 +2016-12-28,24.00000000,24.00000000,24.00000000,24.00000000,17.86320988,18.38902778,0,15.23050000,9.02631944,13.35268330,0,4.70055556,17.63833333,5.03972222,3.11533951,24.00000000,24.00000000,0,0,0,0,5.01598392,0,0,0,8.78983333,10.70500000,0,0,24.00000000,0,0,0,0,0,0,8.32944444,24.00000000,0,0,13.20166667,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0,0,0 +2016-12-29,24.00000000,19.56861111,24.00000000,24.00000000,24.00000000,24.00000000,3.00194444,23.45363636,23.88776389,16.60273286,19.85234127,24.00000000,20.53074074,24.00000000,24.00000000,8.50644444,24.00000000,11.55011905,0,4.96462963,0,13.10756221,18.97472222,23.43805556,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,3.66944444,0,0,6.36972222,1.92694444,4.66003889,16.72988095,24.00000000,0,3.62000000,13.84817130,10.40083333,0,0,2.01966667,0,6.48888889,22.24222222,0,3.53675439,0,0,0,0,0,0,0.76098291,0,14.25164444,0.65402610,0,0,0,0,0,0 +2016-12-30,24.00000000,3.56833333,24.00000000,19.28555556,24.00000000,12.68527778,24.00000000,22.20438131,18.92284722,21.71949405,19.44072222,19.30611111,12.82591049,15.09675926,14.55335859,18.07555556,2.77500000,21.78416667,17.79750000,17.98229167,0,13.31263065,12.00027778,8.15601852,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,10.28048611,9.78120370,8.00444444,7.97656250,9.11736111,5.34402222,3.83073016,24.00000000,4.25015531,16.84687500,4.13567080,13.60638889,9.48777778,3.48631944,4.10559722,1.45518519,2.51750000,3.96541667,0,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.48461111,0.13409722,0.53023103,0.43603175,0.13315301,0.32887293,0.26055556,0.14245370,0.08049603,0.06500000,0.02760417,0.02405133 +2016-12-31,24.00000000,0,16.57072222,0,6.14111111,9.25722222,24.00000000,12.06362573,23.17923611,10.83064379,19.04313725,0,14.97629630,0,24.00000000,16.29814815,0,22.09055556,14.11222222,24.00000000,16.61129630,12.53390738,7.37444444,24.00000000,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,7.33458333,16.96888889,19.78805556,10.17785714,0,0,14.33632716,4.84750000,5.54019436,7.28581633,1.97834003,6.47384921,4.70839506,7.65398148,8.63138889,4.84500000,0,1.29611111,0.19661458,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,1.49565171,2.06152778,17.41444444,0.15326389,0.13894731,0.36784723,0,0.14844444,0,0,0.02281046,0.01479010 +2017-01-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4920817a67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall Hours: Per Job" +2016-12,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +2017-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..03cdcfdafe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall Hours: Per Job" +"2016 Q4",99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +"2017 Q1",20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d3b24d6880 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall Hours: Per Job" +2016,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +2017,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0f3cf94580 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"User Expansion Factor" +"Thrush, Swainson's",297.8504 +Dunlin,69.2703 +"Grey, Great",36.7227 +Honey-buzzard,8.0226 +"Warbler, Yellow-browed",7.8723 +"Treecreeper, Short-toed",6.0105 +"Crane, Sandhill",4.9154 +"Thrush, Grey-cheeked",4.3697 +"Plover, Caspian",3.5459 +"Pipit, Meadow",2.2845 +"Scoter, Velvet",2.0824 +"Bunting, Yellow-browed",2.0475 +Siskin,1.8065 +"Sparrow, Savannah",1.5760 +Peregrine,1.5251 +"Warbler, Booted",1.4886 +"Grey, Lesser",1.4572 +"Warbler, Golden-winged",1.4161 +Whimbrel,1.3852 +"Gallinule, Allen's",1.3753 +"Warbler, Dusky",1.3348 +"Sandpiper, Spotted",1.3167 +"Stint, Little",1.2706 +Ovenbird,1.2280 +"Bunting, Reed",1.2101 +"Tern, Sandwich",1.1633 +Crane,1.1487 +"Thrush, Mistle",1.1120 +"Sapsucker, Yellow-bellied",1.1023 +"Grosbeak, Evening",1.0980 +"Grey, Southern",1.0932 +"Warbler, Sardinian",1.0922 +"Plover, White-tailed",1.0844 +"Sparrow, White-throated",1.0844 +Shag,1.0658 +"Harrier, Hen",1.0642 +"Bunting, Yellow-breasted",1.0557 +Smew,1.0545 +"Dove, Turtle",1.0197 +Roller,1.0148 +"Warbler, Hooded",1.0142 +"Warbler, Garden",1.0132 +"Martin, Crag",1.0131 +Moorhen,1.0081 +"Oriole, Baltimore",1.0045 +"Shearwater, Cory's",1.0029 +"Auk, Little",1.0025 +"Bunting, Black-headed",1.0024 +Lapwing,1.0012 +"Grebe, Pied-billed",1.0011 +"Shrike, Long-tailed",1.0005 +"Duck, Ferruginous",1.0004 +Coot,1.0002 +"Gull, Ring-billed",1.0002 +"Swift, Alpine",1.0002 +"Egret, Cattle",1.0001 +"Martin, Purple",1.0001 +Chaffinch,1.0000 +Fieldfare,1.0000 +"Goose, Egyptian",1.0000 +"Ibis, Glossy",1.0000 +Jackdaw,1.0000 +"Partridge, Red-legged",1.0000 +"Redpoll, Lesser",1.0000 +"Scaup, Lesser",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0f3cf94580 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"User Expansion Factor" +"Thrush, Swainson's",297.8504 +Dunlin,69.2703 +"Grey, Great",36.7227 +Honey-buzzard,8.0226 +"Warbler, Yellow-browed",7.8723 +"Treecreeper, Short-toed",6.0105 +"Crane, Sandhill",4.9154 +"Thrush, Grey-cheeked",4.3697 +"Plover, Caspian",3.5459 +"Pipit, Meadow",2.2845 +"Scoter, Velvet",2.0824 +"Bunting, Yellow-browed",2.0475 +Siskin,1.8065 +"Sparrow, Savannah",1.5760 +Peregrine,1.5251 +"Warbler, Booted",1.4886 +"Grey, Lesser",1.4572 +"Warbler, Golden-winged",1.4161 +Whimbrel,1.3852 +"Gallinule, Allen's",1.3753 +"Warbler, Dusky",1.3348 +"Sandpiper, Spotted",1.3167 +"Stint, Little",1.2706 +Ovenbird,1.2280 +"Bunting, Reed",1.2101 +"Tern, Sandwich",1.1633 +Crane,1.1487 +"Thrush, Mistle",1.1120 +"Sapsucker, Yellow-bellied",1.1023 +"Grosbeak, Evening",1.0980 +"Grey, Southern",1.0932 +"Warbler, Sardinian",1.0922 +"Plover, White-tailed",1.0844 +"Sparrow, White-throated",1.0844 +Shag,1.0658 +"Harrier, Hen",1.0642 +"Bunting, Yellow-breasted",1.0557 +Smew,1.0545 +"Dove, Turtle",1.0197 +Roller,1.0148 +"Warbler, Hooded",1.0142 +"Warbler, Garden",1.0132 +"Martin, Crag",1.0131 +Moorhen,1.0081 +"Oriole, Baltimore",1.0045 +"Shearwater, Cory's",1.0029 +"Auk, Little",1.0025 +"Bunting, Black-headed",1.0024 +Lapwing,1.0012 +"Grebe, Pied-billed",1.0011 +"Shrike, Long-tailed",1.0005 +"Duck, Ferruginous",1.0004 +Coot,1.0002 +"Gull, Ring-billed",1.0002 +"Swift, Alpine",1.0002 +"Egret, Cattle",1.0001 +"Martin, Purple",1.0001 +Chaffinch,1.0000 +Fieldfare,1.0000 +"Goose, Egyptian",1.0000 +"Ibis, Glossy",1.0000 +Jackdaw,1.0000 +"Partridge, Red-legged",1.0000 +"Redpoll, Lesser",1.0000 +"Scaup, Lesser",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0f3cf94580 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"User Expansion Factor" +"Thrush, Swainson's",297.8504 +Dunlin,69.2703 +"Grey, Great",36.7227 +Honey-buzzard,8.0226 +"Warbler, Yellow-browed",7.8723 +"Treecreeper, Short-toed",6.0105 +"Crane, Sandhill",4.9154 +"Thrush, Grey-cheeked",4.3697 +"Plover, Caspian",3.5459 +"Pipit, Meadow",2.2845 +"Scoter, Velvet",2.0824 +"Bunting, Yellow-browed",2.0475 +Siskin,1.8065 +"Sparrow, Savannah",1.5760 +Peregrine,1.5251 +"Warbler, Booted",1.4886 +"Grey, Lesser",1.4572 +"Warbler, Golden-winged",1.4161 +Whimbrel,1.3852 +"Gallinule, Allen's",1.3753 +"Warbler, Dusky",1.3348 +"Sandpiper, Spotted",1.3167 +"Stint, Little",1.2706 +Ovenbird,1.2280 +"Bunting, Reed",1.2101 +"Tern, Sandwich",1.1633 +Crane,1.1487 +"Thrush, Mistle",1.1120 +"Sapsucker, Yellow-bellied",1.1023 +"Grosbeak, Evening",1.0980 +"Grey, Southern",1.0932 +"Warbler, Sardinian",1.0922 +"Plover, White-tailed",1.0844 +"Sparrow, White-throated",1.0844 +Shag,1.0658 +"Harrier, Hen",1.0642 +"Bunting, Yellow-breasted",1.0557 +Smew,1.0545 +"Dove, Turtle",1.0197 +Roller,1.0148 +"Warbler, Hooded",1.0142 +"Warbler, Garden",1.0132 +"Martin, Crag",1.0131 +Moorhen,1.0081 +"Oriole, Baltimore",1.0045 +"Shearwater, Cory's",1.0029 +"Auk, Little",1.0025 +"Bunting, Black-headed",1.0024 +Lapwing,1.0012 +"Grebe, Pied-billed",1.0011 +"Shrike, Long-tailed",1.0005 +"Duck, Ferruginous",1.0004 +Coot,1.0002 +"Gull, Ring-billed",1.0002 +"Swift, Alpine",1.0002 +"Egret, Cattle",1.0001 +"Martin, Purple",1.0001 +Chaffinch,1.0000 +Fieldfare,1.0000 +"Goose, Egyptian",1.0000 +"Ibis, Glossy",1.0000 +Jackdaw,1.0000 +"Partridge, Red-legged",1.0000 +"Redpoll, Lesser",1.0000 +"Scaup, Lesser",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0f3cf94580 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"User Expansion Factor" +"Thrush, Swainson's",297.8504 +Dunlin,69.2703 +"Grey, Great",36.7227 +Honey-buzzard,8.0226 +"Warbler, Yellow-browed",7.8723 +"Treecreeper, Short-toed",6.0105 +"Crane, Sandhill",4.9154 +"Thrush, Grey-cheeked",4.3697 +"Plover, Caspian",3.5459 +"Pipit, Meadow",2.2845 +"Scoter, Velvet",2.0824 +"Bunting, Yellow-browed",2.0475 +Siskin,1.8065 +"Sparrow, Savannah",1.5760 +Peregrine,1.5251 +"Warbler, Booted",1.4886 +"Grey, Lesser",1.4572 +"Warbler, Golden-winged",1.4161 +Whimbrel,1.3852 +"Gallinule, Allen's",1.3753 +"Warbler, Dusky",1.3348 +"Sandpiper, Spotted",1.3167 +"Stint, Little",1.2706 +Ovenbird,1.2280 +"Bunting, Reed",1.2101 +"Tern, Sandwich",1.1633 +Crane,1.1487 +"Thrush, Mistle",1.1120 +"Sapsucker, Yellow-bellied",1.1023 +"Grosbeak, Evening",1.0980 +"Grey, Southern",1.0932 +"Warbler, Sardinian",1.0922 +"Plover, White-tailed",1.0844 +"Sparrow, White-throated",1.0844 +Shag,1.0658 +"Harrier, Hen",1.0642 +"Bunting, Yellow-breasted",1.0557 +Smew,1.0545 +"Dove, Turtle",1.0197 +Roller,1.0148 +"Warbler, Hooded",1.0142 +"Warbler, Garden",1.0132 +"Martin, Crag",1.0131 +Moorhen,1.0081 +"Oriole, Baltimore",1.0045 +"Shearwater, Cory's",1.0029 +"Auk, Little",1.0025 +"Bunting, Black-headed",1.0024 +Lapwing,1.0012 +"Grebe, Pied-billed",1.0011 +"Shrike, Long-tailed",1.0005 +"Duck, Ferruginous",1.0004 +Coot,1.0002 +"Gull, Ring-billed",1.0002 +"Swift, Alpine",1.0002 +"Egret, Cattle",1.0001 +"Martin, Purple",1.0001 +Chaffinch,1.0000 +Fieldfare,1.0000 +"Goose, Egyptian",1.0000 +"Ibis, Glossy",1.0000 +Jackdaw,1.0000 +"Partridge, Red-legged",1.0000 +"Redpoll, Lesser",1.0000 +"Scaup, Lesser",1.0000 +"Warbler, Moltoni's",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..26e4ccef61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" +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,1.0495,0,0,0,0,0,1.0000,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.6127,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0454,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,0,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,0,0,0,0,1.5220,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,1.0000,0,4.9152,1.6524,0,0,2.5533,2.0942,0,2.0864,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.3723,1.0610,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,1.0000 +2016-12-28,0,0,0,1.0000,0,4.8768,2.1450,0,0,2.5716,2.0942,0,1.8919,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.0942,1.0610,0,1.1095,0,0,0,1.0771,1.0866,0,1.1209,0,1.0000,0,1.0250,0,1.0107,1.0025,0,1.0010,1.0000,0,0,0,1.0013,0,0,0,0,0,0,0,0,1.0000,0,0,1.0000,0,0,0,1.0000,1.0000 +2016-12-29,42.4492,0,0,6.0683,3.8567,4.9177,3.0158,1.0001,0,2.3143,2.0942,1.0000,1.8065,0,1.3890,1.7260,0,0,0,0,0,1.0513,0,1.0000,1.1847,1.4529,1.2430,1.1207,1.0000,1.0394,0,1.0561,1.0866,0,1.0778,1.0011,1.0057,1.0379,1.0201,0,1.0101,1.0228,0,1.0011,1.0000,1.0071,1.0000,0,1.0011,1.0011,1.0006,1.0004,0,0,0,0,0,1.0000,0,1.0000,1.0000,0,0,1.0000,1.0000,1.0000 +2016-12-30,361.2347,82.2879,36.1385,5.3347,3.8567,5.2630,5.9186,1.8025,0,2.2784,1.8784,3.1975,1.5568,1.5748,1.7197,1.4078,1.1806,2.1933,2.7189,1.3753,1.4992,1.4642,1.0085,1.0000,1.2290,1.4170,1.1539,1.1173,1.0160,1.1042,1.1123,1.0488,1.0801,0,1.0671,1.0787,1.0778,1.0500,1.0094,1.0094,1.0112,1.0292,1.0131,1.0022,1.0000,1.0032,1.0000,1.0041,1.0011,1.0011,1.0008,1.0004,1.0001,1.0002,1.0014,1.0001,1.0001,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.9179,30.3841,38.4517,8.5117,0,7.3737,13.7412,4.7123,1.0162,1.9224,0,1.0000,1.5265,1.5974,1.4660,1.2386,1.6099,1.2202,1.1623,0,1.1213,1.1316,2.5754,1.2516,1.2538,0,1.0513,1.0205,1.2604,0,1.0199,1.1407,0,1.0760,1.0379,1.0006,1.0874,1.1462,1.0368,1.0172,1.0269,1.0100,0,1.0187,1.0002,1.0017,1.0039,1.0018,1.0012,0,1.0006,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0 +2017-01-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a4ba6afd3d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" +2016-12,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ae45fc0f00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" +"2016 Q4",297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..913a3054b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" +2016,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..198bea0fbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Ended" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..198bea0fbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Ended" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..198bea0fbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Ended" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..198bea0fbd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Ended" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7eae544e0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" +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,0,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,0,0,0,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-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,0,0,0,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-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,0,0,0,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-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,0,0,0,0,0,0,0,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-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19043,3457,1698,788,1,333,0,712,34,90,68,61,3,20,36,5,50,28,12,0,8,8,8,3,10,5,19,1,5,2,4,4,11,14,0,5,7,10,1,4,0,0,4,6,3,0,2,1,1,2,3,2,1,2,1,2,1,2,1,0,0,1,0,1,1,1 +2016-12-31,22020,2365,933,869,999,341,4,1,180,10,24,83,97,24,20,1,0,8,12,4,17,8,8,12,5,16,1,6,4,0,3,4,4,0,7,5,4,0,7,6,9,0,4,1,3,4,2,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0 +2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a731a32f28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" +2016-12,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,9,2,7,8,15,14,7,10,11,10,8,10,9,0,8,7,6,4,4,3,1,2,3,3,2,2,1,2,2,2,1,0,0,1,1,1,1,1 +2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e73c6b3ee0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" +"2016 Q4",41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,9,2,7,8,15,14,7,10,11,10,8,10,9,0,8,7,6,4,4,3,1,2,3,3,2,2,1,2,2,2,1,0,0,1,1,1,1,1 +"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..31cdadaf84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" +2016,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,9,2,7,8,15,14,7,10,11,10,8,10,9,0,8,7,6,4,4,3,1,2,3,3,2,2,1,2,2,2,1,0,0,1,1,1,1,1 +2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..99b4151ade --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Max (Core Count)" +"Warbler, Dusky",336 +Dunlin,192 +"Scaup, Lesser",192 +"Warbler, Yellow-browed",160 +"Scoter, Velvet",144 +"Goose, Egyptian",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Warbler, Sardinian",96 +Siskin,72 +Smew,72 +Whimbrel,72 +Chaffinch,64 +"Swift, Alpine",64 +"Thrush, Swainson's",64 +"Duck, Ferruginous",60 +Peregrine,60 +Roller,60 +"Grosbeak, Evening",56 +"Warbler, Golden-winged",48 +"Bunting, Yellow-browed",40 +"Bunting, Reed",32 +"Crane, Sandhill",32 +"Oriole, Baltimore",32 +Shag,32 +"Treecreeper, Short-toed",32 +"Sparrow, White-throated",24 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Shrike, Long-tailed",20 +"Bunting, Yellow-breasted",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Stint, Little",16 +"Warbler, Garden",16 +"Auk, Little",12 +"Dove, Turtle",12 +Honey-buzzard,12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +"Thrush, Grey-cheeked",12 +"Thrush, Mistle",12 +"Warbler, Booted",12 +"Warbler, Hooded",12 +Fieldfare,8 +"Shearwater, Cory's",8 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..99b4151ade --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Max (Core Count)" +"Warbler, Dusky",336 +Dunlin,192 +"Scaup, Lesser",192 +"Warbler, Yellow-browed",160 +"Scoter, Velvet",144 +"Goose, Egyptian",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Warbler, Sardinian",96 +Siskin,72 +Smew,72 +Whimbrel,72 +Chaffinch,64 +"Swift, Alpine",64 +"Thrush, Swainson's",64 +"Duck, Ferruginous",60 +Peregrine,60 +Roller,60 +"Grosbeak, Evening",56 +"Warbler, Golden-winged",48 +"Bunting, Yellow-browed",40 +"Bunting, Reed",32 +"Crane, Sandhill",32 +"Oriole, Baltimore",32 +Shag,32 +"Treecreeper, Short-toed",32 +"Sparrow, White-throated",24 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Shrike, Long-tailed",20 +"Bunting, Yellow-breasted",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Stint, Little",16 +"Warbler, Garden",16 +"Auk, Little",12 +"Dove, Turtle",12 +Honey-buzzard,12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +"Thrush, Grey-cheeked",12 +"Thrush, Mistle",12 +"Warbler, Booted",12 +"Warbler, Hooded",12 +Fieldfare,8 +"Shearwater, Cory's",8 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..99b4151ade --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Max (Core Count)" +"Warbler, Dusky",336 +Dunlin,192 +"Scaup, Lesser",192 +"Warbler, Yellow-browed",160 +"Scoter, Velvet",144 +"Goose, Egyptian",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Warbler, Sardinian",96 +Siskin,72 +Smew,72 +Whimbrel,72 +Chaffinch,64 +"Swift, Alpine",64 +"Thrush, Swainson's",64 +"Duck, Ferruginous",60 +Peregrine,60 +Roller,60 +"Grosbeak, Evening",56 +"Warbler, Golden-winged",48 +"Bunting, Yellow-browed",40 +"Bunting, Reed",32 +"Crane, Sandhill",32 +"Oriole, Baltimore",32 +Shag,32 +"Treecreeper, Short-toed",32 +"Sparrow, White-throated",24 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Shrike, Long-tailed",20 +"Bunting, Yellow-breasted",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Stint, Little",16 +"Warbler, Garden",16 +"Auk, Little",12 +"Dove, Turtle",12 +Honey-buzzard,12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +"Thrush, Grey-cheeked",12 +"Thrush, Mistle",12 +"Warbler, Booted",12 +"Warbler, Hooded",12 +Fieldfare,8 +"Shearwater, Cory's",8 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..99b4151ade --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Max (Core Count)" +"Warbler, Dusky",336 +Dunlin,192 +"Scaup, Lesser",192 +"Warbler, Yellow-browed",160 +"Scoter, Velvet",144 +"Goose, Egyptian",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Warbler, Sardinian",96 +Siskin,72 +Smew,72 +Whimbrel,72 +Chaffinch,64 +"Swift, Alpine",64 +"Thrush, Swainson's",64 +"Duck, Ferruginous",60 +Peregrine,60 +Roller,60 +"Grosbeak, Evening",56 +"Warbler, Golden-winged",48 +"Bunting, Yellow-browed",40 +"Bunting, Reed",32 +"Crane, Sandhill",32 +"Oriole, Baltimore",32 +Shag,32 +"Treecreeper, Short-toed",32 +"Sparrow, White-throated",24 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Shrike, Long-tailed",20 +"Bunting, Yellow-breasted",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Stint, Little",16 +"Warbler, Garden",16 +"Auk, Little",12 +"Dove, Turtle",12 +Honey-buzzard,12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +"Thrush, Grey-cheeked",12 +"Thrush, Mistle",12 +"Warbler, Booted",12 +"Warbler, Hooded",12 +Fieldfare,8 +"Shearwater, Cory's",8 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6ab8277472 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (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,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,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,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,24,0,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,24,0,12,0,0,0,0,0,0,0,0,0,0,16,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-27,0,0,0,0,144,0,0,0,96,0,72,0,0,64,0,0,0,0,0,0,0,0,32,32,12,0,8,0,0,0,0,16,16,0,0,16,0,12,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2016-12-28,0,0,192,0,144,0,0,0,96,32,72,0,0,64,0,0,0,0,0,0,0,0,32,32,12,32,8,0,20,0,0,16,16,0,0,16,0,12,1,0,12,0,0,12,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1 +2016-12-29,0,0,192,160,144,112,0,96,96,32,72,72,0,64,0,64,60,60,0,56,0,40,32,32,12,32,8,0,20,0,1,16,16,0,0,16,5,12,12,0,12,12,2,12,12,8,0,8,4,4,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,1 +2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,12,32,32,0,20,20,20,16,16,16,16,16,5,12,12,0,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,336,192,192,0,0,112,0,96,96,96,48,72,72,64,64,64,60,60,60,0,48,40,16,20,32,32,8,24,0,0,20,8,16,0,16,16,12,8,12,12,0,12,2,12,1,12,8,8,4,4,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0 +2017-01-01,0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8f728da976 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (Core Count)" +2016-12,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ae39be36a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..873052ebbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (Core Count)" +2016,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..56c4f7af4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Min (Core Count)" +"Warbler, Yellow-browed",160 +"Goose, Egyptian",112 +"Scaup, Lesser",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Scoter, Velvet",80 +Smew,72 +Chaffinch,64 +"Duck, Ferruginous",60 +Peregrine,60 +"Grosbeak, Evening",56 +Siskin,48 +"Warbler, Dusky",48 +Whimbrel,36 +"Swift, Alpine",32 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Bunting, Yellow-browed",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Sparrow, White-throated",16 +"Crane, Sandhill",12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +Shag,12 +"Stint, Little",12 +"Thrush, Mistle",12 +"Warbler, Sardinian",12 +"Bunting, Reed",8 +"Bunting, Yellow-breasted",8 +"Dove, Turtle",8 +Dunlin,8 +Fieldfare,8 +"Shearwater, Cory's",8 +"Warbler, Hooded",8 +"Auk, Little",5 +Roller,5 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Thrush, Swainson's",4 +"Thrush, Grey-cheeked",2 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +"Shrike, Long-tailed",1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..56c4f7af4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Min (Core Count)" +"Warbler, Yellow-browed",160 +"Goose, Egyptian",112 +"Scaup, Lesser",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Scoter, Velvet",80 +Smew,72 +Chaffinch,64 +"Duck, Ferruginous",60 +Peregrine,60 +"Grosbeak, Evening",56 +Siskin,48 +"Warbler, Dusky",48 +Whimbrel,36 +"Swift, Alpine",32 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Bunting, Yellow-browed",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Sparrow, White-throated",16 +"Crane, Sandhill",12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +Shag,12 +"Stint, Little",12 +"Thrush, Mistle",12 +"Warbler, Sardinian",12 +"Bunting, Reed",8 +"Bunting, Yellow-breasted",8 +"Dove, Turtle",8 +Dunlin,8 +Fieldfare,8 +"Shearwater, Cory's",8 +"Warbler, Hooded",8 +"Auk, Little",5 +Roller,5 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Thrush, Swainson's",4 +"Thrush, Grey-cheeked",2 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +"Shrike, Long-tailed",1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..56c4f7af4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Min (Core Count)" +"Warbler, Yellow-browed",160 +"Goose, Egyptian",112 +"Scaup, Lesser",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Scoter, Velvet",80 +Smew,72 +Chaffinch,64 +"Duck, Ferruginous",60 +Peregrine,60 +"Grosbeak, Evening",56 +Siskin,48 +"Warbler, Dusky",48 +Whimbrel,36 +"Swift, Alpine",32 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Bunting, Yellow-browed",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Sparrow, White-throated",16 +"Crane, Sandhill",12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +Shag,12 +"Stint, Little",12 +"Thrush, Mistle",12 +"Warbler, Sardinian",12 +"Bunting, Reed",8 +"Bunting, Yellow-breasted",8 +"Dove, Turtle",8 +Dunlin,8 +Fieldfare,8 +"Shearwater, Cory's",8 +"Warbler, Hooded",8 +"Auk, Little",5 +Roller,5 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Thrush, Swainson's",4 +"Thrush, Grey-cheeked",2 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +"Shrike, Long-tailed",1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..56c4f7af4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Min (Core Count)" +"Warbler, Yellow-browed",160 +"Goose, Egyptian",112 +"Scaup, Lesser",112 +"Gallinule, Allen's",108 +Crane,96 +"Pipit, Meadow",96 +"Scoter, Velvet",80 +Smew,72 +Chaffinch,64 +"Duck, Ferruginous",60 +Peregrine,60 +"Grosbeak, Evening",56 +Siskin,48 +"Warbler, Dusky",48 +Whimbrel,36 +"Swift, Alpine",32 +"Ibis, Glossy",20 +"Martin, Crag",20 +"Bunting, Yellow-browed",16 +Ovenbird,16 +"Partridge, Red-legged",16 +"Sparrow, White-throated",16 +"Crane, Sandhill",12 +"Plover, Caspian",12 +"Plover, White-tailed",12 +"Sandpiper, Spotted",12 +Shag,12 +"Stint, Little",12 +"Thrush, Mistle",12 +"Warbler, Sardinian",12 +"Bunting, Reed",8 +"Bunting, Yellow-breasted",8 +"Dove, Turtle",8 +Dunlin,8 +Fieldfare,8 +"Shearwater, Cory's",8 +"Warbler, Hooded",8 +"Auk, Little",5 +Roller,5 +"Redpoll, Lesser",4 +"Sapsucker, Yellow-bellied",4 +"Thrush, Swainson's",4 +"Thrush, Grey-cheeked",2 +"Bunting, Black-headed",1 +Coot,1 +"Egret, Cattle",1 +"Grebe, Pied-billed",1 +"Grey, Great",1 +"Grey, Lesser",1 +"Grey, Southern",1 +"Gull, Ring-billed",1 +"Harrier, Hen",1 +Honey-buzzard,1 +Jackdaw,1 +Lapwing,1 +"Martin, Purple",1 +Moorhen,1 +"Oriole, Baltimore",1 +"Shrike, Long-tailed",1 +"Sparrow, Savannah",1 +"Tern, Sandwich",1 +"Treecreeper, Short-toed",1 +"Warbler, Booted",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e1cf15da7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (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,12,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,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,12,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,0,0,1,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,12,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,0,0,1,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,24,0,12,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,0,0,1,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,0,0,0,0,0,0,0,24,0,12,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,0,0,1,0,0,16,0,0 +2016-12-27,0,0,0,0,0,96,144,0,64,0,0,0,72,0,0,0,0,0,0,16,0,0,32,0,0,0,0,0,0,0,8,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,12,0,0,1,8,12,16,0,1 +2016-12-28,0,0,112,0,0,96,144,0,64,0,0,0,48,0,0,0,20,0,0,16,0,0,12,0,12,0,12,0,12,32,8,16,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,12,0,0,1,8,12,16,0,1 +2016-12-29,160,112,112,0,96,96,144,72,64,60,60,56,48,0,0,0,20,0,40,16,0,0,12,0,12,12,12,0,12,32,8,8,8,0,0,8,8,5,0,4,4,4,2,0,0,0,1,0,0,0,0,1,1,0,1,0,1,12,1,0,1,8,12,16,0,1 +2016-12-30,160,112,112,108,96,96,80,72,64,60,60,56,48,48,72,32,20,20,16,16,16,0,12,0,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,12,1,1,1,1,1,16,1,1 +2016-12-31,0,112,112,0,96,96,0,72,64,60,60,0,48,336,36,64,0,0,40,16,0,16,12,12,0,12,12,16,12,12,8,8,8,12,8,8,8,8,5,4,4,64,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,8,1,1,0,8,1,1,12,0 +2017-01-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2171a80e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (Core Count)" +2016-12,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +2017-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1eba667a9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (Core Count)" +"2016 Q4",160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +"2017 Q1",160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fea950c9bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (Core Count)" +2016,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +2017,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fa89dcf3f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +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/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fa89dcf3f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +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/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fa89dcf3f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +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/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fa89dcf3f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +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/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..05724ffa9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +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)","[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/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..190efde6b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +2017-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/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74aa57de96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +"2017 Q1",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/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..29802fd608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +2017,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/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e4c71ffb55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Running" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e4c71ffb55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Running" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e4c71ffb55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Running" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e4c71ffb55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Running" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..682e448322 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-25,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-26,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2016-12-27,1,12,0,0,0,2,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1 +2016-12-28,1,13,0,190,0,2,0,0,147,0,0,11,0,0,0,16,0,3,0,1,0,0,0,15,10,5,0,0,0,0,0,0,1,0,0,2,0,9,0,0,9,0,0,0,1,4,0,0,0,0,3,0,0,0,0,1,2,1,0,1,0,0,0,1,0,1 +2016-12-29,249,25,0,960,0,19,0,13,235,0,0,24,1,0,10,20,50,7,0,1,0,0,0,22,12,10,5,7,3,6,1,0,1,0,0,3,0,9,1,0,9,0,4,7,5,4,0,0,0,1,3,0,1,1,1,1,2,2,1,1,1,0,0,1,0,1 +2016-12-30,19298,3466,1698,1635,719,349,0,713,252,90,68,94,4,20,60,20,50,35,12,1,8,8,8,22,18,16,20,15,8,8,4,4,15,14,1,9,7,11,1,4,9,0,8,7,6,4,4,3,1,3,3,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1 +2016-12-31,22499,2368,933,1637,999,357,16,1,255,10,24,83,98,26,24,48,0,9,12,5,17,8,8,19,12,16,1,17,7,6,3,4,4,0,9,6,4,1,7,6,9,9,4,1,3,5,2,2,1,1,0,1,1,0,1,0,1,0,0,1,1,0,1,0,0,0 +2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9951882fdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" +2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1f59300528 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" +"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c5d2da1ea3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" +2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9479d9ae94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Started" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9479d9ae94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Started" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9479d9ae94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Started" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9479d9ae94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Started" +Honey-buzzard,54983 +"Bunting, Reed",5906 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Plover, Caspian",756 +"Thrush, Swainson's",713 +Lapwing,308 +Dunlin,239 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +"Warbler, Yellow-browed",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..09503ecc08 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1 +2016-12-28,0,1,0,190,0,0,0,0,147,0,0,9,0,0,0,11,0,3,0,0,0,0,0,12,5,5,0,0,0,0,0,0,0,0,0,2,0,9,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0 +2016-12-29,248,12,0,770,0,17,0,13,88,0,0,13,1,0,10,4,50,4,0,0,0,0,0,7,2,5,5,7,3,6,1,0,0,0,0,1,0,0,1,0,0,0,4,7,4,0,0,0,0,1,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0 +2016-12-30,19049,3441,1698,675,719,330,0,700,17,90,68,70,3,20,50,0,0,28,12,0,8,8,8,0,6,6,15,8,5,2,3,4,14,14,1,6,7,2,0,4,0,0,4,0,1,0,4,3,1,2,0,3,1,1,0,1,0,0,0,0,0,1,1,0,1,0 +2016-12-31,22244,2359,933,790,281,341,16,0,37,10,24,50,97,26,0,33,0,2,12,4,17,8,8,0,4,5,0,3,4,0,3,4,0,0,8,2,4,0,7,6,0,9,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..27a01f8ac0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" +2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4a94877141 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" +"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..149e77edae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" +2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..844a1eed79 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Submitted" +Honey-buzzard,49649 +"Bunting, Reed",5892 +"Grey, Great",2631 +Moorhen,2586 +"Dove, Turtle",981 +"Grey, Lesser",719 +"Plover, Caspian",693 +Lapwing,308 +"Grey, Southern",154 +Dunlin,123 +"Warbler, Golden-winged",69 +"Grebe, Pied-billed",50 +"Warbler, Garden",49 +"Warbler, Sardinian",44 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +"Sandpiper, Spotted",25 +Coot,24 +"Egret, Cattle",24 +"Warbler, Hooded",21 +"Harrier, Hen",20 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Sapsucker, Yellow-bellied",15 +"Martin, Crag",14 +"Warbler, Booted",14 +"Crane, Sandhill",12 +Whimbrel,12 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +Shag,10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",5 +"Treecreeper, Short-toed",5 +Jackdaw,4 +Ovenbird,4 +Roller,4 +Fieldfare,3 +"Plover, White-tailed",3 +"Grosbeak, Evening",2 +"Pipit, Meadow",2 +"Redpoll, Lesser",2 +"Bunting, Yellow-browed",1 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +Peregrine,1 +"Scoter, Velvet",1 +"Tern, Sandwich",1 +"Thrush, Grey-cheeked",1 +"Warbler, Moltoni's",1 +Siskin,0 +"Thrush, Swainson's",0 +"Warbler, Dusky",0 +"Warbler, Yellow-browed",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e25909404a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Submitted" +Honey-buzzard,53053 +"Bunting, Reed",5905 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Thrush, Swainson's",713 +"Plover, Caspian",693 +Lapwing,308 +Dunlin,164 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e25909404a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Submitted" +Honey-buzzard,53053 +"Bunting, Reed",5905 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Thrush, Swainson's",713 +"Plover, Caspian",693 +Lapwing,308 +Dunlin,164 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e25909404a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Number of Jobs Submitted" +Honey-buzzard,53053 +"Bunting, Reed",5905 +"Grey, Great",2631 +Moorhen,2629 +"Grey, Lesser",1000 +"Dove, Turtle",982 +"Thrush, Swainson's",713 +"Plover, Caspian",693 +Lapwing,308 +Dunlin,164 +"Grey, Southern",154 +"Crane, Sandhill",144 +"Thrush, Grey-cheeked",101 +"Warbler, Golden-winged",69 +"Sandpiper, Spotted",60 +"Warbler, Garden",53 +"Grebe, Pied-billed",50 +"Warbler, Sardinian",45 +"Martin, Purple",36 +"Oriole, Baltimore",30 +"Sparrow, Savannah",26 +Coot,24 +"Egret, Cattle",24 +"Pipit, Meadow",24 +"Treecreeper, Short-toed",22 +"Warbler, Hooded",21 +"Harrier, Hen",20 +"Sapsucker, Yellow-bellied",18 +Crane,16 +"Shearwater, Cory's",16 +"Shrike, Long-tailed",16 +"Swift, Alpine",16 +"Warbler, Booted",15 +"Martin, Crag",14 +Whimbrel,14 +Shag,11 +"Stint, Little",11 +"Thrush, Mistle",11 +"Auk, Little",10 +"Bunting, Black-headed",10 +"Scaup, Lesser",9 +"Sparrow, White-throated",9 +"Goose, Egyptian",8 +Smew,7 +"Bunting, Yellow-breasted",6 +Ovenbird,5 +Jackdaw,4 +Roller,4 +Fieldfare,3 +Peregrine,3 +"Plover, White-tailed",3 +"Warbler, Dusky",3 +"Bunting, Yellow-browed",2 +"Grosbeak, Evening",2 +"Redpoll, Lesser",2 +"Scoter, Velvet",2 +Siskin,2 +"Tern, Sandwich",2 +Chaffinch,1 +"Duck, Ferruginous",1 +"Gallinule, Allen's",1 +"Gull, Ring-billed",1 +"Ibis, Glossy",1 +"Partridge, Red-legged",1 +"Warbler, Moltoni's",1 +"Warbler, Yellow-browed",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0e8c629883 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +2016-12-28,0,0,0,190,0,0,0,147,0,0,0,0,11,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2016-12-29,198,10,0,770,17,0,0,88,0,0,0,50,0,4,0,0,0,10,0,0,5,5,3,6,1,0,7,0,0,10,0,0,0,1,0,1,0,0,4,7,4,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +2016-12-30,18454,3437,1698,675,330,719,0,17,68,50,20,0,0,28,12,0,8,15,8,8,6,15,5,2,3,4,8,14,14,0,0,7,2,0,4,6,0,0,4,0,0,5,4,0,3,1,0,1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0 +2016-12-31,19485,2355,933,747,341,0,16,37,24,9,26,0,33,1,12,4,17,0,8,8,5,0,4,0,3,4,0,0,0,2,7,4,0,7,6,2,0,9,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,11511,80,0,204,292,0,677,19,62,64,23,0,0,8,12,25,1,0,8,8,0,0,4,8,9,8,0,0,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2cd8b98369 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" +2016-12,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..afb7a874ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" +"2016 Q4",41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..07d3307659 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" +2016,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..767ddd3c05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Total" +Honey-buzzard,157078.4431 +"Pipit, Meadow",146476.2400 +"Scaup, Lesser",118663.3556 +Moorhen,67004.1206 +"Bunting, Reed",35441.0778 +"Warbler, Garden",34825.7219 +"Crane, Sandhill",22888.9811 +Crane,19473.8133 +"Plover, Caspian",19117.7667 +Smew,18391.0000 +"Warbler, Sardinian",16661.9989 +Lapwing,15354.0758 +"Goose, Egyptian",14141.1200 +"Warbler, Dusky",13105.9733 +"Dove, Turtle",12550.4967 +"Sandpiper, Spotted",12178.1900 +"Scoter, Velvet",10557.5822 +"Grey, Lesser",8590.5158 +Siskin,8404.1933 +"Treecreeper, Short-toed",8206.8872 +Chaffinch,7680.4622 +Ovenbird,6621.1911 +"Sparrow, White-throated",5262.3156 +"Thrush, Mistle",5198.0500 +Whimbrel,4918.4700 +Shag,4577.8556 +"Thrush, Swainson's",4528.0644 +Peregrine,4472.6000 +"Duck, Ferruginous",4200.4667 +"Warbler, Hooded",3862.9211 +"Sapsucker, Yellow-bellied",3582.6789 +"Shearwater, Cory's",3504.2444 +"Oriole, Baltimore",3199.8106 +"Bunting, Yellow-breasted",2430.7267 +"Thrush, Grey-cheeked",2039.1683 +"Bunting, Yellow-browed",2013.9756 +"Plover, White-tailed",1588.9133 +Dunlin,1518.1478 +"Warbler, Golden-winged",1446.9428 +"Warbler, Yellow-browed",1444.4889 +"Grosbeak, Evening",1129.0533 +"Warbler, Booted",1021.5447 +"Ibis, Glossy",960.1333 +"Auk, Little",622.6494 +"Swift, Alpine",610.7733 +Roller,590.3347 +"Shrike, Long-tailed",521.3100 +"Grebe, Pied-billed",500.2031 +Fieldfare,344.9756 +"Tern, Sandwich",174.8775 +"Redpoll, Lesser",151.1833 +"Grey, Southern",135.7597 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +"Warbler, Moltoni's",72.0069 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +"Stint, Little",49.3589 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +"Gallinule, Allen's",28.1400 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Martin, Crag",22.5389 +"Partridge, Red-legged",1.0400 +"Sparrow, Savannah",0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..767ddd3c05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Total" +Honey-buzzard,157078.4431 +"Pipit, Meadow",146476.2400 +"Scaup, Lesser",118663.3556 +Moorhen,67004.1206 +"Bunting, Reed",35441.0778 +"Warbler, Garden",34825.7219 +"Crane, Sandhill",22888.9811 +Crane,19473.8133 +"Plover, Caspian",19117.7667 +Smew,18391.0000 +"Warbler, Sardinian",16661.9989 +Lapwing,15354.0758 +"Goose, Egyptian",14141.1200 +"Warbler, Dusky",13105.9733 +"Dove, Turtle",12550.4967 +"Sandpiper, Spotted",12178.1900 +"Scoter, Velvet",10557.5822 +"Grey, Lesser",8590.5158 +Siskin,8404.1933 +"Treecreeper, Short-toed",8206.8872 +Chaffinch,7680.4622 +Ovenbird,6621.1911 +"Sparrow, White-throated",5262.3156 +"Thrush, Mistle",5198.0500 +Whimbrel,4918.4700 +Shag,4577.8556 +"Thrush, Swainson's",4528.0644 +Peregrine,4472.6000 +"Duck, Ferruginous",4200.4667 +"Warbler, Hooded",3862.9211 +"Sapsucker, Yellow-bellied",3582.6789 +"Shearwater, Cory's",3504.2444 +"Oriole, Baltimore",3199.8106 +"Bunting, Yellow-breasted",2430.7267 +"Thrush, Grey-cheeked",2039.1683 +"Bunting, Yellow-browed",2013.9756 +"Plover, White-tailed",1588.9133 +Dunlin,1518.1478 +"Warbler, Golden-winged",1446.9428 +"Warbler, Yellow-browed",1444.4889 +"Grosbeak, Evening",1129.0533 +"Warbler, Booted",1021.5447 +"Ibis, Glossy",960.1333 +"Auk, Little",622.6494 +"Swift, Alpine",610.7733 +Roller,590.3347 +"Shrike, Long-tailed",521.3100 +"Grebe, Pied-billed",500.2031 +Fieldfare,344.9756 +"Tern, Sandwich",174.8775 +"Redpoll, Lesser",151.1833 +"Grey, Southern",135.7597 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +"Warbler, Moltoni's",72.0069 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +"Stint, Little",49.3589 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +"Gallinule, Allen's",28.1400 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Martin, Crag",22.5389 +"Partridge, Red-legged",1.0400 +"Sparrow, Savannah",0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..767ddd3c05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Total" +Honey-buzzard,157078.4431 +"Pipit, Meadow",146476.2400 +"Scaup, Lesser",118663.3556 +Moorhen,67004.1206 +"Bunting, Reed",35441.0778 +"Warbler, Garden",34825.7219 +"Crane, Sandhill",22888.9811 +Crane,19473.8133 +"Plover, Caspian",19117.7667 +Smew,18391.0000 +"Warbler, Sardinian",16661.9989 +Lapwing,15354.0758 +"Goose, Egyptian",14141.1200 +"Warbler, Dusky",13105.9733 +"Dove, Turtle",12550.4967 +"Sandpiper, Spotted",12178.1900 +"Scoter, Velvet",10557.5822 +"Grey, Lesser",8590.5158 +Siskin,8404.1933 +"Treecreeper, Short-toed",8206.8872 +Chaffinch,7680.4622 +Ovenbird,6621.1911 +"Sparrow, White-throated",5262.3156 +"Thrush, Mistle",5198.0500 +Whimbrel,4918.4700 +Shag,4577.8556 +"Thrush, Swainson's",4528.0644 +Peregrine,4472.6000 +"Duck, Ferruginous",4200.4667 +"Warbler, Hooded",3862.9211 +"Sapsucker, Yellow-bellied",3582.6789 +"Shearwater, Cory's",3504.2444 +"Oriole, Baltimore",3199.8106 +"Bunting, Yellow-breasted",2430.7267 +"Thrush, Grey-cheeked",2039.1683 +"Bunting, Yellow-browed",2013.9756 +"Plover, White-tailed",1588.9133 +Dunlin,1518.1478 +"Warbler, Golden-winged",1446.9428 +"Warbler, Yellow-browed",1444.4889 +"Grosbeak, Evening",1129.0533 +"Warbler, Booted",1021.5447 +"Ibis, Glossy",960.1333 +"Auk, Little",622.6494 +"Swift, Alpine",610.7733 +Roller,590.3347 +"Shrike, Long-tailed",521.3100 +"Grebe, Pied-billed",500.2031 +Fieldfare,344.9756 +"Tern, Sandwich",174.8775 +"Redpoll, Lesser",151.1833 +"Grey, Southern",135.7597 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +"Warbler, Moltoni's",72.0069 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +"Stint, Little",49.3589 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +"Gallinule, Allen's",28.1400 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Martin, Crag",22.5389 +"Partridge, Red-legged",1.0400 +"Sparrow, Savannah",0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..767ddd3c05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Total" +Honey-buzzard,157078.4431 +"Pipit, Meadow",146476.2400 +"Scaup, Lesser",118663.3556 +Moorhen,67004.1206 +"Bunting, Reed",35441.0778 +"Warbler, Garden",34825.7219 +"Crane, Sandhill",22888.9811 +Crane,19473.8133 +"Plover, Caspian",19117.7667 +Smew,18391.0000 +"Warbler, Sardinian",16661.9989 +Lapwing,15354.0758 +"Goose, Egyptian",14141.1200 +"Warbler, Dusky",13105.9733 +"Dove, Turtle",12550.4967 +"Sandpiper, Spotted",12178.1900 +"Scoter, Velvet",10557.5822 +"Grey, Lesser",8590.5158 +Siskin,8404.1933 +"Treecreeper, Short-toed",8206.8872 +Chaffinch,7680.4622 +Ovenbird,6621.1911 +"Sparrow, White-throated",5262.3156 +"Thrush, Mistle",5198.0500 +Whimbrel,4918.4700 +Shag,4577.8556 +"Thrush, Swainson's",4528.0644 +Peregrine,4472.6000 +"Duck, Ferruginous",4200.4667 +"Warbler, Hooded",3862.9211 +"Sapsucker, Yellow-bellied",3582.6789 +"Shearwater, Cory's",3504.2444 +"Oriole, Baltimore",3199.8106 +"Bunting, Yellow-breasted",2430.7267 +"Thrush, Grey-cheeked",2039.1683 +"Bunting, Yellow-browed",2013.9756 +"Plover, White-tailed",1588.9133 +Dunlin,1518.1478 +"Warbler, Golden-winged",1446.9428 +"Warbler, Yellow-browed",1444.4889 +"Grosbeak, Evening",1129.0533 +"Warbler, Booted",1021.5447 +"Ibis, Glossy",960.1333 +"Auk, Little",622.6494 +"Swift, Alpine",610.7733 +Roller,590.3347 +"Shrike, Long-tailed",521.3100 +"Grebe, Pied-billed",500.2031 +Fieldfare,344.9756 +"Tern, Sandwich",174.8775 +"Redpoll, Lesser",151.1833 +"Grey, Southern",135.7597 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +"Warbler, Moltoni's",72.0069 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +"Stint, Little",49.3589 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +"Gallinule, Allen's",28.1400 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Martin, Crag",22.5389 +"Partridge, Red-legged",1.0400 +"Sparrow, Savannah",0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7b0639ace --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0,0,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6036,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,152.3533,0,0,0,0,0,0,0,0,0,313.9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,1152.0000,216.3333,0,0,0,0,0,0,0,0,576.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,3.2167,3739.4133,0,0,1717.7600,1920.0000,1301.6889,0,0,0,0,0,0,0,576.0000,0,2997.1200,0,1487.8200,558.6133,243.1822,315.9467,0,0,0,0,0,0,0,0,0,0,288.0000,136.7956,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,24.0000,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,24.0000,21931.9200,29467.4711,953.0369,8192.9511,2310.7378,3131.9644,0,0,0,799.6267,1962.8444,0,0,576.0000,0,3456.0000,0,2341.3467,1411.0667,1536.0000,1536.0000,0,336.4567,0,386.2533,0,0,0,351.5933,0,0,288.0000,384.0000,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,1237.5364,49534.0800,39552.0000,12583.2597,10099.5600,7644.0844,8585.5822,1834.4800,0,5821.2600,3747.4933,3901.6422,1643.9111,0,729.5867,487.3967,3456.0000,0,2880.0000,1970.9511,1536.0000,1536.0000,0,2592.0000,0,1161.6300,461.3211,1406.2833,180.1167,1111.6444,555.8656,238.3022,288.0000,532.2578,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,22.2422,233.0019,0,39.1372,28.6944,0,10.0983,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,61332.1356,46895.6533,39552.0000,21766.1511,7632.3833,6055.3111,7303.0711,6126.0000,0,10979.2200,4526.2344,5473.3125,9211.3156,7404.4267,3076.4911,6875.1400,648.4622,3055.8617,1250.6800,1841.5117,1536.0000,1536.0000,0,1921.0433,683.1200,1564.5567,2952.2189,1468.0833,1440.0000,1479.8411,1166.4433,1150.8667,288.0000,986.5178,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1021.1444,198.9664,386.1222,68.0319,26.0711,65.9958,16.0939,267.2011,64.0356,7.1367,52.5422,108.1047,82.1119,43.3692,19.2856,13.9453,40.8392,39.5500,11.6692,17.7975,28.1400,7.7811,7.7806,22.5389,1.0400,0.2208 +2016-12-31,86581.6175,22004.0533,10091.8844,20518.0064,3452.2700,11780.8131,2566.6744,6839.5200,37.7500,1590.5200,6955.7733,2761.8142,3285.8933,5701.5467,2976.8089,4561.6667,0,5534.6542,444.3467,1437.7244,1536.0000,1325.6578,3473.9867,288.0000,2349.9100,1346.5222,1114.5244,1440.0000,1440.0000,919.8422,1294.9333,1152.0000,291.6067,391.1556,1428.0200,294.9778,0,125.4733,914.2433,0,0,7.7117,0,491.1800,527.7511,502.9333,77.7350,0,158.3044,0,23.9844,25.9131,8.6314,44.0186,0,45.9239,13.7992,9.8089,11.6819,14.1122,0,7.7850,7.7769,0,0,0.3878 +2017-01-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3280454e93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" +2016-12,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +2017-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1d3cb065a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" +"2016 Q4",149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +"2017 Q1",7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dc5146c925 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" +2016,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +2017,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..eb3ade498d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,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,48.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 +2016-12-28,48.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 +2017-01-01,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..abc8dc0dd9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e572b45bf3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cfa6ba8617 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..78fbf919ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Pipit, Meadow",12206.3533 +"Grey, Lesser",8590.5158 +"Scaup, Lesser",7416.4597 +"Warbler, Garden",2773.5564 +"Warbler, Sardinian",2004.2244 +"Bunting, Reed",1757.5094 +Crane,1622.8178 +"Plover, Caspian",1593.1472 +Smew,1532.5833 +"Crane, Sandhill",1494.1239 +"Dove, Turtle",1423.1372 +"Warbler, Dusky",1092.1644 +"Treecreeper, Short-toed",1026.5661 +"Sandpiper, Spotted",1014.8492 +Chaffinch,960.0578 +"Sapsucker, Yellow-bellied",895.6697 +"Goose, Egyptian",883.8200 +"Scoter, Velvet",873.5178 +Siskin,840.4200 +"Thrush, Grey-cheeked",802.6467 +"Thrush, Swainson's",550.6928 +"Grebe, Pied-billed",500.2031 +"Sparrow, White-throated",458.9083 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +Ovenbird,413.8244 +Whimbrel,409.8725 +Peregrine,372.7167 +"Duck, Ferruginous",350.0389 +"Grosbeak, Evening",282.2633 +"Oriole, Baltimore",273.8464 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +Shag,227.8806 +"Warbler, Yellow-browed",180.5611 +"Tern, Sandwich",174.8775 +Dunlin,150.5339 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Warbler, Golden-winged",120.6086 +"Harrier, Hen",100.8417 +"Bunting, Yellow-browed",100.6989 +Jackdaw,87.3878 +"Swift, Alpine",76.3467 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +Roller,54.6022 +"Ibis, Glossy",48.0067 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Stint, Little",3.6653 +"Gallinule, Allen's",2.3450 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..78fbf919ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Pipit, Meadow",12206.3533 +"Grey, Lesser",8590.5158 +"Scaup, Lesser",7416.4597 +"Warbler, Garden",2773.5564 +"Warbler, Sardinian",2004.2244 +"Bunting, Reed",1757.5094 +Crane,1622.8178 +"Plover, Caspian",1593.1472 +Smew,1532.5833 +"Crane, Sandhill",1494.1239 +"Dove, Turtle",1423.1372 +"Warbler, Dusky",1092.1644 +"Treecreeper, Short-toed",1026.5661 +"Sandpiper, Spotted",1014.8492 +Chaffinch,960.0578 +"Sapsucker, Yellow-bellied",895.6697 +"Goose, Egyptian",883.8200 +"Scoter, Velvet",873.5178 +Siskin,840.4200 +"Thrush, Grey-cheeked",802.6467 +"Thrush, Swainson's",550.6928 +"Grebe, Pied-billed",500.2031 +"Sparrow, White-throated",458.9083 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +Ovenbird,413.8244 +Whimbrel,409.8725 +Peregrine,372.7167 +"Duck, Ferruginous",350.0389 +"Grosbeak, Evening",282.2633 +"Oriole, Baltimore",273.8464 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +Shag,227.8806 +"Warbler, Yellow-browed",180.5611 +"Tern, Sandwich",174.8775 +Dunlin,150.5339 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Warbler, Golden-winged",120.6086 +"Harrier, Hen",100.8417 +"Bunting, Yellow-browed",100.6989 +Jackdaw,87.3878 +"Swift, Alpine",76.3467 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +Roller,54.6022 +"Ibis, Glossy",48.0067 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Stint, Little",3.6653 +"Gallinule, Allen's",2.3450 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..78fbf919ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Pipit, Meadow",12206.3533 +"Grey, Lesser",8590.5158 +"Scaup, Lesser",7416.4597 +"Warbler, Garden",2773.5564 +"Warbler, Sardinian",2004.2244 +"Bunting, Reed",1757.5094 +Crane,1622.8178 +"Plover, Caspian",1593.1472 +Smew,1532.5833 +"Crane, Sandhill",1494.1239 +"Dove, Turtle",1423.1372 +"Warbler, Dusky",1092.1644 +"Treecreeper, Short-toed",1026.5661 +"Sandpiper, Spotted",1014.8492 +Chaffinch,960.0578 +"Sapsucker, Yellow-bellied",895.6697 +"Goose, Egyptian",883.8200 +"Scoter, Velvet",873.5178 +Siskin,840.4200 +"Thrush, Grey-cheeked",802.6467 +"Thrush, Swainson's",550.6928 +"Grebe, Pied-billed",500.2031 +"Sparrow, White-throated",458.9083 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +Ovenbird,413.8244 +Whimbrel,409.8725 +Peregrine,372.7167 +"Duck, Ferruginous",350.0389 +"Grosbeak, Evening",282.2633 +"Oriole, Baltimore",273.8464 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +Shag,227.8806 +"Warbler, Yellow-browed",180.5611 +"Tern, Sandwich",174.8775 +Dunlin,150.5339 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Warbler, Golden-winged",120.6086 +"Harrier, Hen",100.8417 +"Bunting, Yellow-browed",100.6989 +Jackdaw,87.3878 +"Swift, Alpine",76.3467 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +Roller,54.6022 +"Ibis, Glossy",48.0067 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Stint, Little",3.6653 +"Gallinule, Allen's",2.3450 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..78fbf919ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Pipit, Meadow",12206.3533 +"Grey, Lesser",8590.5158 +"Scaup, Lesser",7416.4597 +"Warbler, Garden",2773.5564 +"Warbler, Sardinian",2004.2244 +"Bunting, Reed",1757.5094 +Crane,1622.8178 +"Plover, Caspian",1593.1472 +Smew,1532.5833 +"Crane, Sandhill",1494.1239 +"Dove, Turtle",1423.1372 +"Warbler, Dusky",1092.1644 +"Treecreeper, Short-toed",1026.5661 +"Sandpiper, Spotted",1014.8492 +Chaffinch,960.0578 +"Sapsucker, Yellow-bellied",895.6697 +"Goose, Egyptian",883.8200 +"Scoter, Velvet",873.5178 +Siskin,840.4200 +"Thrush, Grey-cheeked",802.6467 +"Thrush, Swainson's",550.6928 +"Grebe, Pied-billed",500.2031 +"Sparrow, White-throated",458.9083 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +Ovenbird,413.8244 +Whimbrel,409.8725 +Peregrine,372.7167 +"Duck, Ferruginous",350.0389 +"Grosbeak, Evening",282.2633 +"Oriole, Baltimore",273.8464 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +Shag,227.8806 +"Warbler, Yellow-browed",180.5611 +"Tern, Sandwich",174.8775 +Dunlin,150.5339 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Warbler, Golden-winged",120.6086 +"Harrier, Hen",100.8417 +"Bunting, Yellow-browed",100.6989 +Jackdaw,87.3878 +"Swift, Alpine",76.3467 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Grey, Great",54.6383 +Roller,54.6022 +"Ibis, Glossy",48.0067 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Stint, Little",3.6653 +"Gallinule, Allen's",2.3450 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d1daa933ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,8.6036,0,0,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-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-25,0,0,0,0,0,0,0,0,6.3481,0,0,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-26,0,0,0,0,0,0,13.5208,0,48.0000,0,0,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-27,0,3.2167,0,311.6178,0,0,120.0000,0,67.3094,0,0,0,81.3556,48.0000,0,69.8267,0,30.3978,0,0,249.7600,123.9850,0,0,0,0,0,0,0,19.7467,0,0,0,0,24.0000,19.9056,8.5497,0,0,24.0000,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,144.4211,99.9533,292.0297,0,0,0,214.6856,48.0000,0,176.3833,0,192.0000,0,0,288.0000,220.6683,0,0,0,0,43.9492,0,28.0381,96.0000,0,0,0,0,24.0000,24.0000,24.0000,21.4100,0,24.0000,0,0,15.1192,0,0,0,0,0,24.0000,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,12583.2597,162.8525,3901.6422,4127.8400,0,2472.0000,477.7553,453.1217,356.2911,152.8733,0,485.1050,560.2247,67.1983,0,246.3689,40.6164,192.0000,138.9664,102.7444,288.0000,288.0000,3.6200,30.9803,233.0019,0,138.9556,29.7878,216.0000,96.0000,0,117.1903,15.0097,26.9772,24.0000,24.0000,42.5322,56.8025,129.7778,39.1372,0,0,72.0000,0,10.0983,37.9494,0,0,24.0000,10.4008,22.2422,0,0,0,24.0000,0,7.1736,0,0,0,0,0,0,0,0,0 +2016-12-30,21766.1511,6346.5897,5473.3125,3907.9711,3055.8617,2472.0000,378.4569,506.1717,461.5083,510.5000,0,914.9350,473.6558,380.4372,617.0356,230.8942,572.9283,192.0000,291.6108,575.7072,47.7578,152.2233,67.3875,450.0547,267.2011,0,178.1372,143.8583,160.0869,96.0000,56.9267,122.3403,120.0000,255.2861,24.0000,175.8633,108.4533,85.7392,50.3500,7.1367,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,43.3692,3.2589,19.2856,13.6064,15.8617,13.9453,40.8392,7.5778,19.3061,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,3.0522,2.3450,1.1269,0.2208,0.0650 +2016-12-31,20518.0064,8276.1947,2761.8142,1833.6711,5534.6542,630.7428,1112.6033,865.8689,329.0272,569.9600,3.1458,132.5433,164.2022,372.1011,475.1289,179.7156,380.1389,192.0000,323.7333,205.3683,0,55.5433,714.0100,69.6578,0,299.0033,97.5139,144.0000,24.0000,82.8536,195.8258,120.0000,120.0000,0,24.4508,7.7117,48.8944,58.9750,0,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,44.0186,65.9689,0,45.3169,3.8883,45.9239,13.7992,42.7433,0,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0.6131,0,0,0.3878,0 +2017-01-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..50d6a337d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" +2016-12,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +2017-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad7892eceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" +"2016 Q4",55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +"2017 Q1",11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..322df961a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" +2016,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +2017,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c3f627dba2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Total" +"Thrush, Swainson's",163339.9808 +Honey-buzzard,112848.1472 +"Treecreeper, Short-toed",5136.3181 +"Crane, Sandhill",5049.6606 +"Plover, Caspian",4056.0075 +"Grey, Lesser",3927.5247 +Dunlin,3030.4719 +"Thrush, Grey-cheeked",2704.6794 +"Pipit, Meadow",1959.9103 +"Grey, Great",1951.8286 +Moorhen,544.5967 +"Bunting, Reed",369.2550 +"Sandpiper, Spotted",321.4444 +"Warbler, Booted",122.8625 +Siskin,112.9622 +"Bunting, Yellow-browed",105.4822 +Ovenbird,94.3467 +"Sapsucker, Yellow-bellied",91.5858 +"Scoter, Velvet",78.7900 +"Warbler, Yellow-browed",62.0436 +"Thrush, Mistle",48.5308 +Peregrine,39.1408 +"Warbler, Garden",36.5339 +Whimbrel,32.1656 +"Warbler, Sardinian",30.8219 +Crane,30.1542 +"Tern, Sandwich",28.5511 +"Dove, Turtle",28.0833 +"Warbler, Golden-winged",20.6675 +"Warbler, Dusky",20.0331 +"Sparrow, White-throated",19.3700 +Lapwing,17.6803 +Shag,14.9994 +Smew,13.9250 +"Bunting, Yellow-breasted",12.9547 +"Grey, Southern",12.6592 +"Plover, White-tailed",11.1744 +"Warbler, Hooded",6.4889 +"Harrier, Hen",6.4781 +"Grosbeak, Evening",1.9761 +"Shearwater, Cory's",1.2531 +"Oriole, Baltimore",1.2361 +"Stint, Little",0.9917 +"Grebe, Pied-billed",0.5497 +"Sparrow, Savannah",0.3653 +"Auk, Little",0.1747 +Roller,0.1614 +"Bunting, Black-headed",0.1408 +"Gallinule, Allen's",0.0978 +"Duck, Ferruginous",0.0311 +"Shrike, Long-tailed",0.0286 +"Martin, Crag",0.0147 +"Gull, Ring-billed",0.0075 +"Goose, Egyptian",0.0047 +"Martin, Purple",0.0039 +Coot,0.0036 +"Egret, Cattle",0.0031 +"Swift, Alpine",0.0025 +Fieldfare,0.0017 +"Scaup, Lesser",0.0017 +"Ibis, Glossy",0.0003 +"Redpoll, Lesser",0.0003 +Chaffinch,0.0000 +Jackdaw,0.0000 +"Partridge, Red-legged",0.0000 +"Warbler, Moltoni's",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c3f627dba2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Total" +"Thrush, Swainson's",163339.9808 +Honey-buzzard,112848.1472 +"Treecreeper, Short-toed",5136.3181 +"Crane, Sandhill",5049.6606 +"Plover, Caspian",4056.0075 +"Grey, Lesser",3927.5247 +Dunlin,3030.4719 +"Thrush, Grey-cheeked",2704.6794 +"Pipit, Meadow",1959.9103 +"Grey, Great",1951.8286 +Moorhen,544.5967 +"Bunting, Reed",369.2550 +"Sandpiper, Spotted",321.4444 +"Warbler, Booted",122.8625 +Siskin,112.9622 +"Bunting, Yellow-browed",105.4822 +Ovenbird,94.3467 +"Sapsucker, Yellow-bellied",91.5858 +"Scoter, Velvet",78.7900 +"Warbler, Yellow-browed",62.0436 +"Thrush, Mistle",48.5308 +Peregrine,39.1408 +"Warbler, Garden",36.5339 +Whimbrel,32.1656 +"Warbler, Sardinian",30.8219 +Crane,30.1542 +"Tern, Sandwich",28.5511 +"Dove, Turtle",28.0833 +"Warbler, Golden-winged",20.6675 +"Warbler, Dusky",20.0331 +"Sparrow, White-throated",19.3700 +Lapwing,17.6803 +Shag,14.9994 +Smew,13.9250 +"Bunting, Yellow-breasted",12.9547 +"Grey, Southern",12.6592 +"Plover, White-tailed",11.1744 +"Warbler, Hooded",6.4889 +"Harrier, Hen",6.4781 +"Grosbeak, Evening",1.9761 +"Shearwater, Cory's",1.2531 +"Oriole, Baltimore",1.2361 +"Stint, Little",0.9917 +"Grebe, Pied-billed",0.5497 +"Sparrow, Savannah",0.3653 +"Auk, Little",0.1747 +Roller,0.1614 +"Bunting, Black-headed",0.1408 +"Gallinule, Allen's",0.0978 +"Duck, Ferruginous",0.0311 +"Shrike, Long-tailed",0.0286 +"Martin, Crag",0.0147 +"Gull, Ring-billed",0.0075 +"Goose, Egyptian",0.0047 +"Martin, Purple",0.0039 +Coot,0.0036 +"Egret, Cattle",0.0031 +"Swift, Alpine",0.0025 +Fieldfare,0.0017 +"Scaup, Lesser",0.0017 +"Ibis, Glossy",0.0003 +"Redpoll, Lesser",0.0003 +Chaffinch,0.0000 +Jackdaw,0.0000 +"Partridge, Red-legged",0.0000 +"Warbler, Moltoni's",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c3f627dba2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Total" +"Thrush, Swainson's",163339.9808 +Honey-buzzard,112848.1472 +"Treecreeper, Short-toed",5136.3181 +"Crane, Sandhill",5049.6606 +"Plover, Caspian",4056.0075 +"Grey, Lesser",3927.5247 +Dunlin,3030.4719 +"Thrush, Grey-cheeked",2704.6794 +"Pipit, Meadow",1959.9103 +"Grey, Great",1951.8286 +Moorhen,544.5967 +"Bunting, Reed",369.2550 +"Sandpiper, Spotted",321.4444 +"Warbler, Booted",122.8625 +Siskin,112.9622 +"Bunting, Yellow-browed",105.4822 +Ovenbird,94.3467 +"Sapsucker, Yellow-bellied",91.5858 +"Scoter, Velvet",78.7900 +"Warbler, Yellow-browed",62.0436 +"Thrush, Mistle",48.5308 +Peregrine,39.1408 +"Warbler, Garden",36.5339 +Whimbrel,32.1656 +"Warbler, Sardinian",30.8219 +Crane,30.1542 +"Tern, Sandwich",28.5511 +"Dove, Turtle",28.0833 +"Warbler, Golden-winged",20.6675 +"Warbler, Dusky",20.0331 +"Sparrow, White-throated",19.3700 +Lapwing,17.6803 +Shag,14.9994 +Smew,13.9250 +"Bunting, Yellow-breasted",12.9547 +"Grey, Southern",12.6592 +"Plover, White-tailed",11.1744 +"Warbler, Hooded",6.4889 +"Harrier, Hen",6.4781 +"Grosbeak, Evening",1.9761 +"Shearwater, Cory's",1.2531 +"Oriole, Baltimore",1.2361 +"Stint, Little",0.9917 +"Grebe, Pied-billed",0.5497 +"Sparrow, Savannah",0.3653 +"Auk, Little",0.1747 +Roller,0.1614 +"Bunting, Black-headed",0.1408 +"Gallinule, Allen's",0.0978 +"Duck, Ferruginous",0.0311 +"Shrike, Long-tailed",0.0286 +"Martin, Crag",0.0147 +"Gull, Ring-billed",0.0075 +"Goose, Egyptian",0.0047 +"Martin, Purple",0.0039 +Coot,0.0036 +"Egret, Cattle",0.0031 +"Swift, Alpine",0.0025 +Fieldfare,0.0017 +"Scaup, Lesser",0.0017 +"Ibis, Glossy",0.0003 +"Redpoll, Lesser",0.0003 +Chaffinch,0.0000 +Jackdaw,0.0000 +"Partridge, Red-legged",0.0000 +"Warbler, Moltoni's",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c3f627dba2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wait Hours: Total" +"Thrush, Swainson's",163339.9808 +Honey-buzzard,112848.1472 +"Treecreeper, Short-toed",5136.3181 +"Crane, Sandhill",5049.6606 +"Plover, Caspian",4056.0075 +"Grey, Lesser",3927.5247 +Dunlin,3030.4719 +"Thrush, Grey-cheeked",2704.6794 +"Pipit, Meadow",1959.9103 +"Grey, Great",1951.8286 +Moorhen,544.5967 +"Bunting, Reed",369.2550 +"Sandpiper, Spotted",321.4444 +"Warbler, Booted",122.8625 +Siskin,112.9622 +"Bunting, Yellow-browed",105.4822 +Ovenbird,94.3467 +"Sapsucker, Yellow-bellied",91.5858 +"Scoter, Velvet",78.7900 +"Warbler, Yellow-browed",62.0436 +"Thrush, Mistle",48.5308 +Peregrine,39.1408 +"Warbler, Garden",36.5339 +Whimbrel,32.1656 +"Warbler, Sardinian",30.8219 +Crane,30.1542 +"Tern, Sandwich",28.5511 +"Dove, Turtle",28.0833 +"Warbler, Golden-winged",20.6675 +"Warbler, Dusky",20.0331 +"Sparrow, White-throated",19.3700 +Lapwing,17.6803 +Shag,14.9994 +Smew,13.9250 +"Bunting, Yellow-breasted",12.9547 +"Grey, Southern",12.6592 +"Plover, White-tailed",11.1744 +"Warbler, Hooded",6.4889 +"Harrier, Hen",6.4781 +"Grosbeak, Evening",1.9761 +"Shearwater, Cory's",1.2531 +"Oriole, Baltimore",1.2361 +"Stint, Little",0.9917 +"Grebe, Pied-billed",0.5497 +"Sparrow, Savannah",0.3653 +"Auk, Little",0.1747 +Roller,0.1614 +"Bunting, Black-headed",0.1408 +"Gallinule, Allen's",0.0978 +"Duck, Ferruginous",0.0311 +"Shrike, Long-tailed",0.0286 +"Martin, Crag",0.0147 +"Gull, Ring-billed",0.0075 +"Goose, Egyptian",0.0047 +"Martin, Purple",0.0039 +Coot,0.0036 +"Egret, Cattle",0.0031 +"Swift, Alpine",0.0025 +Fieldfare,0.0017 +"Scaup, Lesser",0.0017 +"Ibis, Glossy",0.0003 +"Redpoll, Lesser",0.0003 +Chaffinch,0.0000 +Jackdaw,0.0000 +"Partridge, Red-legged",0.0000 +"Warbler, Moltoni's",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3e7248b2d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" +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,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,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,9.5964,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-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.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-25,0,0,0,0,0,0,0,0,0,0,0,110.8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0633,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-26,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0033,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-27,0,0.0000,1367.4053,93.9833,0,0,0,0,311.1344,0,0,0.0289,0,50.8225,76.0861,0,0.0025,0,78.7886,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,20.5744,0,0.0000,36.8761,0,0.0000,0,0.0000,0,47.7519,0,18.4800,0,8.2136,0,0.0000,0.0000,0,0,0,10.5775,13.6594,0,0.0000,0,11.1744,2.3317,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0003,0,0.0000,0,0,0.0000 +2016-12-29,2680.9856,1973.6483,626.5147,288.5578,0,0,0,0.0044,334.2142,0,32.6300,43.9522,9.5844,0.0000,0.0000,0.0017,0.0000,0.0014,0.0000,25.7286,0.0000,11.6853,17.8439,0,1.1997,10.4372,18.9547,0.2917,0,0,0,3.9286,0.0011,13.9250,4.8561,0,0.0000,0.3786,0.0894,0.7922,1.0583,0.0000,0,0.5497,0,0.0000,0,0,0,0.0311,0.0225,0,0,0.0025,0,0,0,0,0,0.0000,0.0000,0.0003,0.0000,0,0,0.0000 +2016-12-30,160658.9953,26564.1575,331.7789,2269.2953,0,1857.6733,1170.3947,54.0756,0.0000,1435.0258,221.0947,77.6936,311.8600,72.0400,0.0000,105.4806,0.0000,14.4292,0.0014,0.0000,0.7789,27.4556,0.0000,17.2619,15.6439,7.3803,0.0000,3.3314,11.9272,20.0331,0,2.2686,1.3369,0.0000,8.0983,12.1381,0.0000,2.4739,6.3886,1.1839,0.0400,0.0000,0.0258,0.0000,0.1269,0.0000,0.1611,0.0575,0.0978,0.0000,0.0028,0.0147,0.0075,0.0022,0.0014,0.0008,0.0006,0.0008,0.0008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,64478.3575,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0000,516.8028,277.8381,83.4647,0.0000,0.0000,0.0000,0.0000,94.3442,77.1553,0,0,0.0000,0.0000,0.2067,7.6042,3.4903,0.3128,0,13.7414,8.7356,0.0000,19.3700,0.5711,0.0019,0.0000,0.0000,0.5147,0,1.3047,0.0000,0,0.0000,0.0011,0.9658,0,0.2317,0.1747,0.0000,0.0833,0,0.0000,0.0022,0,0.0000,0.0000,0.0011,0.0011,0.0008,0.0006,0.0008,0.0000,0,0.0000,0.0000,0.0000,0,0 +2017-01-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3969ec0577 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" +2016-12,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +2017-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c2c82ffcaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" +"2016 Q4",163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7570145c53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" +2016,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +2017,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3f9df8cba8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Grey, Lesser",8590.5158 +"Warbler, Garden",2773.5564 +"Bunting, Reed",1757.5094 +"Plover, Caspian",1593.1472 +"Pipit, Meadow",1525.7942 +"Dove, Turtle",1423.1372 +"Crane, Sandhill",1071.2075 +"Treecreeper, Short-toed",1026.5383 +"Sandpiper, Spotted",1014.8492 +"Sapsucker, Yellow-bellied",895.6697 +"Thrush, Grey-cheeked",802.6467 +"Scaup, Lesser",648.0389 +"Grebe, Pied-billed",500.2031 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +"Warbler, Sardinian",423.6314 +Ovenbird,413.8244 +"Thrush, Swainson's",405.3619 +"Oriole, Baltimore",273.6331 +Smew,255.4306 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +"Sparrow, White-throated",229.4542 +Shag,227.8806 +Crane,202.8522 +"Tern, Sandwich",174.8775 +Siskin,140.0700 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Goose, Egyptian",126.2600 +Chaffinch,120.0072 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +Whimbrel,86.4775 +Peregrine,74.5433 +"Scoter, Velvet",74.3633 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Duck, Ferruginous",70.0078 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Warbler, Golden-winged",56.2867 +"Grey, Great",54.6383 +"Bunting, Yellow-browed",50.3497 +"Ibis, Glossy",48.0067 +"Warbler, Dusky",46.3125 +Dunlin,45.2333 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Grosbeak, Evening",20.1617 +Roller,18.3367 +"Swift, Alpine",10.5622 +"Warbler, Yellow-browed",9.0281 +"Stint, Little",3.6653 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Gallinule, Allen's",0.2606 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3f9df8cba8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Grey, Lesser",8590.5158 +"Warbler, Garden",2773.5564 +"Bunting, Reed",1757.5094 +"Plover, Caspian",1593.1472 +"Pipit, Meadow",1525.7942 +"Dove, Turtle",1423.1372 +"Crane, Sandhill",1071.2075 +"Treecreeper, Short-toed",1026.5383 +"Sandpiper, Spotted",1014.8492 +"Sapsucker, Yellow-bellied",895.6697 +"Thrush, Grey-cheeked",802.6467 +"Scaup, Lesser",648.0389 +"Grebe, Pied-billed",500.2031 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +"Warbler, Sardinian",423.6314 +Ovenbird,413.8244 +"Thrush, Swainson's",405.3619 +"Oriole, Baltimore",273.6331 +Smew,255.4306 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +"Sparrow, White-throated",229.4542 +Shag,227.8806 +Crane,202.8522 +"Tern, Sandwich",174.8775 +Siskin,140.0700 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Goose, Egyptian",126.2600 +Chaffinch,120.0072 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +Whimbrel,86.4775 +Peregrine,74.5433 +"Scoter, Velvet",74.3633 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Duck, Ferruginous",70.0078 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Warbler, Golden-winged",56.2867 +"Grey, Great",54.6383 +"Bunting, Yellow-browed",50.3497 +"Ibis, Glossy",48.0067 +"Warbler, Dusky",46.3125 +Dunlin,45.2333 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Grosbeak, Evening",20.1617 +Roller,18.3367 +"Swift, Alpine",10.5622 +"Warbler, Yellow-browed",9.0281 +"Stint, Little",3.6653 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Gallinule, Allen's",0.2606 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3f9df8cba8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Grey, Lesser",8590.5158 +"Warbler, Garden",2773.5564 +"Bunting, Reed",1757.5094 +"Plover, Caspian",1593.1472 +"Pipit, Meadow",1525.7942 +"Dove, Turtle",1423.1372 +"Crane, Sandhill",1071.2075 +"Treecreeper, Short-toed",1026.5383 +"Sandpiper, Spotted",1014.8492 +"Sapsucker, Yellow-bellied",895.6697 +"Thrush, Grey-cheeked",802.6467 +"Scaup, Lesser",648.0389 +"Grebe, Pied-billed",500.2031 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +"Warbler, Sardinian",423.6314 +Ovenbird,413.8244 +"Thrush, Swainson's",405.3619 +"Oriole, Baltimore",273.6331 +Smew,255.4306 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +"Sparrow, White-throated",229.4542 +Shag,227.8806 +Crane,202.8522 +"Tern, Sandwich",174.8775 +Siskin,140.0700 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Goose, Egyptian",126.2600 +Chaffinch,120.0072 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +Whimbrel,86.4775 +Peregrine,74.5433 +"Scoter, Velvet",74.3633 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Duck, Ferruginous",70.0078 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Warbler, Golden-winged",56.2867 +"Grey, Great",54.6383 +"Bunting, Yellow-browed",50.3497 +"Ibis, Glossy",48.0067 +"Warbler, Dusky",46.3125 +Dunlin,45.2333 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Grosbeak, Evening",20.1617 +Roller,18.3367 +"Swift, Alpine",10.5622 +"Warbler, Yellow-browed",9.0281 +"Stint, Little",3.6653 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Gallinule, Allen's",0.2606 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3f9df8cba8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Wall Hours: Total" +Moorhen,67004.1206 +Honey-buzzard,15603.5267 +Lapwing,15354.0758 +"Grey, Lesser",8590.5158 +"Warbler, Garden",2773.5564 +"Bunting, Reed",1757.5094 +"Plover, Caspian",1593.1472 +"Pipit, Meadow",1525.7942 +"Dove, Turtle",1423.1372 +"Crane, Sandhill",1071.2075 +"Treecreeper, Short-toed",1026.5383 +"Sandpiper, Spotted",1014.8492 +"Sapsucker, Yellow-bellied",895.6697 +"Thrush, Grey-cheeked",802.6467 +"Scaup, Lesser",648.0389 +"Grebe, Pied-billed",500.2031 +"Warbler, Hooded",458.5558 +"Shearwater, Cory's",438.0306 +"Thrush, Mistle",433.1708 +"Warbler, Sardinian",423.6314 +Ovenbird,413.8244 +"Thrush, Swainson's",405.3619 +"Oriole, Baltimore",273.6331 +Smew,255.4306 +"Warbler, Booted",251.4806 +"Bunting, Yellow-breasted",232.4297 +"Sparrow, White-throated",229.4542 +Shag,227.8806 +Crane,202.8522 +"Tern, Sandwich",174.8775 +Siskin,140.0700 +"Grey, Southern",135.7597 +"Plover, White-tailed",132.4094 +"Goose, Egyptian",126.2600 +Chaffinch,120.0072 +"Harrier, Hen",100.8417 +Jackdaw,87.3878 +Whimbrel,86.4775 +Peregrine,74.5433 +"Scoter, Velvet",74.3633 +"Warbler, Moltoni's",72.0069 +"Auk, Little",70.2769 +"Duck, Ferruginous",70.0078 +"Shrike, Long-tailed",62.2542 +"Bunting, Black-headed",59.8692 +"Warbler, Golden-winged",56.2867 +"Grey, Great",54.6383 +"Bunting, Yellow-browed",50.3497 +"Ibis, Glossy",48.0067 +"Warbler, Dusky",46.3125 +Dunlin,45.2333 +Fieldfare,43.1219 +"Redpoll, Lesser",37.7958 +"Martin, Purple",34.9861 +"Gull, Ring-billed",31.9097 +Coot,23.3244 +"Egret, Cattle",23.3156 +"Grosbeak, Evening",20.1617 +Roller,18.3367 +"Swift, Alpine",10.5622 +"Warbler, Yellow-browed",9.0281 +"Stint, Little",3.6653 +"Martin, Crag",1.1269 +"Sparrow, Savannah",0.6342 +"Gallinule, Allen's",0.2606 +"Partridge, Red-legged",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..50106c38a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,8.6036,0,0,0,0,0,0,0,0,0,0,0,0,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-24,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,6.3481,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,13.5208,48.0000,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.2167,0,0,120.0000,67.3094,0,38.9522,48.0000,40.6778,69.8267,0,0,0,0,0,0,0,0,0,19.7467,0,24.0000,0,19.9056,8.5497,0,0,0,24.0000,20.6642,0,0,0,3.7997,0,0,0,0,20.8133,4.7214,0,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-28,953.0369,24.0000,1962.8444,0,144.4211,292.0297,0,228.4575,48.0000,145.2183,176.3833,0,0,0,160.7689,0,43.9492,0,28.0381,24.9883,96.0000,0,24.0000,0,24.0000,24.0000,0,21.4100,0,24.0000,36.7781,0,15.1192,0,24.0000,0,0,0,0,24.0000,24.0000,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,12583.2597,162.8525,3901.6422,0,477.7553,356.2911,0,515.9800,67.1983,332.3561,246.3689,40.6164,138.9664,3.6200,216.0000,233.0019,138.9556,29.7878,216.0000,117.1092,96.0000,9.8928,24.0000,80.8508,24.0000,42.5322,0,56.8025,19.1092,39.1372,48.0000,0,72.0000,14.6778,24.0000,10.0983,0,0,23.4381,24.0000,24.0000,10.4008,3.0019,22.2422,0,0,0,18.9747,24.0000,0,0,0,7.1736,0,0,0,0,1.9269,0,0,6.4889,0,0,0,0,0 +2016-12-30,21766.1511,6346.5897,5473.3125,3055.8617,378.4569,461.5083,0,488.4964,380.4372,388.7531,230.8664,572.9283,291.6108,67.3875,216.0000,267.2011,178.1372,143.8583,160.0869,134.0756,96.0000,378.0547,24.0000,152.4892,175.8633,108.4533,0,85.7392,63.8125,7.1367,25.3706,108.1047,45.2903,82.2439,24.0000,82.1119,43.3692,9.4878,24.4681,5.5500,19.2856,13.6064,24.0000,15.8617,13.9453,9.6922,40.8392,24.0006,19.3061,29.3436,12.8208,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,18.2347,4.3656,0.5364,2.5175,3.0522,1.1269,0.2208,0.2606,0.0650 +2016-12-31,20518.0064,8276.1947,2761.8142,5534.6542,1112.6033,329.0272,3.1458,229.2089,372.1011,164.2022,179.7156,380.1389,323.7333,714.0100,55.2700,0,97.5139,144.0000,24.0000,129.0269,82.8536,17.4144,24.2375,22.0906,7.7117,48.8944,149.5017,58.9750,71.2450,0,9.2572,25.9131,0,29.3383,24.0000,8.6314,44.0186,42.3756,24.0000,0,0,45.3169,24.0000,3.8883,45.9239,38.8869,13.7992,7.3744,0,16.9689,1.4844,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0,9.6900,8.2461,0,0.6131,0,0.3878,0,0 +2017-01-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b048801e89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" +2016-12,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +2017-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad774b9a8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" +"2016 Q4",55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +"2017 Q1",11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..69c58688c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" +2016,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +2017,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9f54471983 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Screwdriver CPU Utilization (%)" +"Scaup, Lesser",20.6013 +"Pipit, Meadow",13.8709 +Moorhen,6.3451 +"Warbler, Garden",5.1824 +Honey-buzzard,3.5570 +"Goose, Egyptian",2.4551 +Crane,1.8441 +Smew,1.7416 +Lapwing,1.4540 +"Bunting, Reed",1.3185 +"Warbler, Dusky",1.2411 +"Dove, Turtle",1.1885 +"Sandpiper, Spotted",1.1532 +"Plover, Caspian",1.1064 +"Crane, Sandhill",0.8515 +"Grey, Lesser",0.8135 +Siskin,0.7959 +"Warbler, Sardinian",0.7889 +"Treecreeper, Short-toed",0.7772 +Chaffinch,0.7273 +Ovenbird,0.6270 +"Scoter, Velvet",0.4999 +"Sparrow, White-throated",0.4983 +"Thrush, Mistle",0.4922 +Whimbrel,0.4658 +Peregrine,0.4235 +"Duck, Ferruginous",0.3978 +"Warbler, Hooded",0.3658 +"Sapsucker, Yellow-bellied",0.3393 +"Shearwater, Cory's",0.3318 +"Oriole, Baltimore",0.3030 +Shag,0.2168 +"Thrush, Swainson's",0.2144 +"Plover, White-tailed",0.1505 +"Bunting, Yellow-breasted",0.1489 +Dunlin,0.1438 +"Ibis, Glossy",0.1429 +"Warbler, Golden-winged",0.1370 +"Warbler, Yellow-browed",0.1368 +"Grosbeak, Evening",0.1069 +"Warbler, Booted",0.0967 +"Thrush, Grey-cheeked",0.0966 +"Bunting, Yellow-browed",0.0954 +"Auk, Little",0.0590 +"Swift, Alpine",0.0578 +Roller,0.0559 +"Grebe, Pied-billed",0.0474 +Fieldfare,0.0327 +"Shrike, Long-tailed",0.0247 +"Redpoll, Lesser",0.0225 +"Tern, Sandwich",0.0166 +Jackdaw,0.0130 +"Grey, Southern",0.0129 +"Harrier, Hen",0.0095 +"Warbler, Moltoni's",0.0068 +"Martin, Purple",0.0061 +"Bunting, Black-headed",0.0057 +"Grey, Great",0.0052 +Coot,0.0040 +"Egret, Cattle",0.0040 +"Martin, Crag",0.0034 +"Gull, Ring-billed",0.0030 +"Gallinule, Allen's",0.0027 +"Stint, Little",0.0023 +"Partridge, Red-legged",0.0001 +"Sparrow, Savannah",0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..14e9e7db5e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Screwdriver CPU Utilization (%)" +"Scaup, Lesser",3.4335 +"Pipit, Meadow",2.9918 +Moorhen,1.3685 +"Warbler, Garden",0.9805 +Honey-buzzard,0.7905 +"Goose, Egyptian",0.4092 +Crane,0.3977 +Smew,0.3756 +Lapwing,0.3136 +"Dove, Turtle",0.3113 +"Bunting, Reed",0.2862 +"Warbler, Dusky",0.2677 +"Sandpiper, Spotted",0.2487 +"Plover, Caspian",0.2263 +Chaffinch,0.1951 +"Warbler, Sardinian",0.1866 +"Crane, Sandhill",0.1848 +"Grey, Lesser",0.1755 +Siskin,0.1717 +"Treecreeper, Short-toed",0.1676 +Ovenbird,0.1642 +"Scoter, Velvet",0.1183 +"Sparrow, White-throated",0.1075 +"Thrush, Mistle",0.1062 +Whimbrel,0.1005 +Peregrine,0.0914 +"Sapsucker, Yellow-bellied",0.0889 +"Duck, Ferruginous",0.0858 +"Oriole, Baltimore",0.0813 +"Warbler, Hooded",0.0789 +"Shearwater, Cory's",0.0716 +Shag,0.0513 +"Thrush, Swainson's",0.0507 +"Bunting, Yellow-breasted",0.0325 +"Plover, White-tailed",0.0325 +Dunlin,0.0310 +"Warbler, Golden-winged",0.0296 +"Warbler, Yellow-browed",0.0295 +"Ibis, Glossy",0.0270 +"Grosbeak, Evening",0.0231 +"Thrush, Grey-cheeked",0.0228 +"Bunting, Yellow-browed",0.0226 +"Warbler, Booted",0.0209 +"Swift, Alpine",0.0155 +"Auk, Little",0.0127 +Roller,0.0121 +"Grebe, Pied-billed",0.0102 +Fieldfare,0.0086 +"Shrike, Long-tailed",0.0058 +"Redpoll, Lesser",0.0043 +"Tern, Sandwich",0.0043 +"Grey, Southern",0.0028 +Jackdaw,0.0025 +"Harrier, Hen",0.0021 +"Warbler, Moltoni's",0.0015 +"Bunting, Black-headed",0.0012 +"Grey, Great",0.0011 +"Martin, Purple",0.0010 +Coot,0.0007 +"Egret, Cattle",0.0007 +"Gull, Ring-billed",0.0007 +"Gallinule, Allen's",0.0006 +"Martin, Crag",0.0006 +"Stint, Little",0.0006 +"Partridge, Red-legged",0.0000 +"Sparrow, Savannah",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c715ff32ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Screwdriver CPU Utilization (%)" +"Pipit, Meadow",1.3871 +"Scaup, Lesser",1.3011 +Moorhen,0.6345 +"Warbler, Garden",0.3779 +Honey-buzzard,0.3259 +Crane,0.1844 +Smew,0.1742 +"Goose, Egyptian",0.1551 +Lapwing,0.1454 +"Dove, Turtle",0.1294 +"Warbler, Dusky",0.1241 +"Bunting, Reed",0.1206 +"Sandpiper, Spotted",0.1153 +"Plover, Caspian",0.0967 +"Warbler, Sardinian",0.0823 +"Grey, Lesser",0.0813 +Chaffinch,0.0800 +Siskin,0.0796 +"Crane, Sandhill",0.0779 +"Treecreeper, Short-toed",0.0777 +Ovenbird,0.0683 +"Scoter, Velvet",0.0521 +"Sparrow, White-throated",0.0498 +"Thrush, Mistle",0.0492 +Whimbrel,0.0466 +Peregrine,0.0424 +"Duck, Ferruginous",0.0398 +"Sapsucker, Yellow-bellied",0.0370 +"Warbler, Hooded",0.0366 +"Oriole, Baltimore",0.0333 +"Shearwater, Cory's",0.0332 +Shag,0.0226 +"Thrush, Swainson's",0.0224 +"Plover, White-tailed",0.0150 +Dunlin,0.0144 +"Warbler, Golden-winged",0.0137 +"Warbler, Yellow-browed",0.0137 +"Bunting, Yellow-breasted",0.0129 +"Grosbeak, Evening",0.0107 +"Ibis, Glossy",0.0104 +"Thrush, Grey-cheeked",0.0101 +"Bunting, Yellow-browed",0.0099 +"Warbler, Booted",0.0097 +"Swift, Alpine",0.0064 +"Auk, Little",0.0059 +Roller,0.0056 +"Grebe, Pied-billed",0.0047 +Fieldfare,0.0036 +"Shrike, Long-tailed",0.0026 +"Tern, Sandwich",0.0018 +"Redpoll, Lesser",0.0016 +"Grey, Southern",0.0013 +"Harrier, Hen",0.0010 +Jackdaw,0.0009 +"Warbler, Moltoni's",0.0007 +"Bunting, Black-headed",0.0006 +"Grey, Great",0.0005 +"Martin, Purple",0.0004 +Coot,0.0003 +"Egret, Cattle",0.0003 +"Gallinule, Allen's",0.0003 +"Gull, Ring-billed",0.0003 +"Martin, Crag",0.0002 +"Stint, Little",0.0002 +"Partridge, Red-legged",0.0000 +"Sparrow, Savannah",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d284e672b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Screwdriver CPU Utilization (%)" +"Pipit, Meadow",0.3963 +"Scaup, Lesser",0.3341 +Moorhen,0.1813 +"Warbler, Garden",0.0978 +Honey-buzzard,0.0872 +Crane,0.0527 +Smew,0.0498 +Lapwing,0.0415 +"Goose, Egyptian",0.0398 +"Warbler, Dusky",0.0355 +"Dove, Turtle",0.0348 +"Sandpiper, Spotted",0.0329 +"Bunting, Reed",0.0326 +"Plover, Caspian",0.0263 +"Grey, Lesser",0.0232 +"Warbler, Sardinian",0.0228 +Siskin,0.0227 +"Treecreeper, Short-toed",0.0222 +Chaffinch,0.0213 +"Crane, Sandhill",0.0211 +Ovenbird,0.0183 +"Scoter, Velvet",0.0145 +"Sparrow, White-throated",0.0142 +"Thrush, Mistle",0.0141 +Whimbrel,0.0133 +Peregrine,0.0121 +"Duck, Ferruginous",0.0114 +"Warbler, Hooded",0.0105 +"Sapsucker, Yellow-bellied",0.0099 +"Shearwater, Cory's",0.0095 +"Oriole, Baltimore",0.0089 +Shag,0.0063 +"Thrush, Swainson's",0.0062 +"Plover, White-tailed",0.0043 +Dunlin,0.0041 +"Warbler, Golden-winged",0.0039 +"Warbler, Yellow-browed",0.0039 +"Bunting, Yellow-breasted",0.0034 +"Grosbeak, Evening",0.0031 +"Bunting, Yellow-browed",0.0028 +"Thrush, Grey-cheeked",0.0028 +"Warbler, Booted",0.0028 +"Ibis, Glossy",0.0027 +"Auk, Little",0.0017 +"Swift, Alpine",0.0017 +Roller,0.0016 +"Grebe, Pied-billed",0.0014 +Fieldfare,0.0010 +"Shrike, Long-tailed",0.0007 +"Tern, Sandwich",0.0005 +"Grey, Southern",0.0004 +"Redpoll, Lesser",0.0004 +"Harrier, Hen",0.0003 +"Bunting, Black-headed",0.0002 +Jackdaw,0.0002 +"Warbler, Moltoni's",0.0002 +Coot,0.0001 +"Egret, Cattle",0.0001 +"Gallinule, Allen's",0.0001 +"Grey, Great",0.0001 +"Gull, Ring-billed",0.0001 +"Martin, Crag",0.0001 +"Martin, Purple",0.0001 +"Stint, Little",0.0001 +"Partridge, Red-legged",0.0000 +"Sparrow, Savannah",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..54fac44cac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0090,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,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.1587,0,0.3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.2253,0,0,0,0,0,1.2000,0,0.6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.8952,0,2.0000,0.0034,0,0,0,0,0.8947,0,0.6000,0,0,1.3559,0,1.5498,0,0.5819,0.2533,0.3291,3.1220,0,0,0,0,0,0,0,0,0.3000,0,0,0,0.1425,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0049,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,0,0,0,2.0446,4.2672,0,0.6000,0,0,1.6312,0,2.4389,0.8329,1.4699,1.6000,1.6000,3.6000,0,0.3505,0,0,0,0.3662,0,0,0.3000,0.2012,0,0.1890,0.4000,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,41.2000,51.5980,13.1076,7.9626,0.3223,1.7124,1.9109,6.0638,4.0642,3.5068,0,0.7600,0.5077,0,2.9811,0,3.0000,3.9036,2.0531,1.6000,1.6000,3.6000,0,2.7000,0,1.4649,0.1876,1.1580,0.5790,0.2482,0.3000,0.6050,0.2403,0.9000,0.2772,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0.2427,0,0.0232,0.0299,0.0408,0,0,0.0105,0.0250,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,41.2000,48.8496,22.6731,6.3076,12.7775,9.5951,6.3813,11.4367,5.7014,2.6501,7.7129,3.2047,7.1616,0,2.5358,3.1832,1.3028,2.3574,1.9182,1.6000,1.6000,0.3377,0,2.0011,0.7116,1.5293,1.5000,1.5415,1.2150,1.1988,0.3000,0.8149,1.5376,0.5661,0.5138,0.5439,0.4022,0.3402,0.4196,1.0637,0.2073,0.2962,0.5000,0.0709,0.0272,0.0687,0.2783,0.0667,0.0084,0.0547,0.0074,0.0452,0.1126,0.0855,0.0201,0.0122,0.0145,0.0425,0.0081,0.0081,0.0235,0.0185,0.0293,0.0206,0.0011,0.0002 +2016-12-31,10.5124,22.9209,21.3729,12.2717,18.0378,3.4228,7.1245,1.6568,2.8769,1.1987,5.9391,3.1008,4.7517,0.0393,1.3368,5.7653,0.4629,3.6228,1.4976,1.6000,1.3809,0,3.6187,0.3000,2.4478,1.5000,1.5000,0.9582,1.3489,1.2000,0.3038,0.7013,1.1610,0,0.4075,0.1307,0,0.9523,0,0,0.0080,0.7438,0.3073,0.5116,0.5497,0.5239,0,0.1649,0.0405,0.0250,0,0.0459,0.0270,0.0090,0,0.0122,0.0478,0.0144,0.0081,0.0081,0,0.0147,0,0.0102,0,0.0004 +2017-01-01,0,2.4699,11.6497,5.1025,1.6458,0,4.8686,0,1.3067,1.5843,0,3.0692,0.2646,9.9375,0,0,0,0.6592,1.0281,1.3472,0.3871,0,1.8628,0.0631,1.9640,0.1648,1.1879,0,0.5890,1.0032,0.4200,0.1238,0,0,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0593,0.0223,0,0.1277,0.4221,0.0479,0,0,0.0018,0,0,0.0121,0,0,0.0081,0.0081,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cfd245d179 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" +2016-12,24.7215,7.5055,2.9073,5.1957,2.9884,2.9461,0.7708,0.9579,0.7344,0.9095,0.9375,0.6826,0.6211,0.0066,0.6653,0.5386,0.6623,0.4474,0.4377,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.2857,0.1594,0.2913,0.2012,0.1324,0.1498,0.1522,0.1583,0.0828,0.0337,0.0646,0.0751,0.1667,0.0588,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0183,0.0166,0.0070,0.0152,0.0053,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0017,0.0015,0.0039,0.0017,0.0001,0.0001 +2017-01,0,0.0797,0.3758,0.1646,0.0531,0,0.1571,0,0.0422,0.0990,0.0511,0,0.0085,0.3206,0.0435,0.0213,0,0,0,0.0332,0.0125,0,0.0601,0.0020,0.0634,0.0053,0.0190,0.0383,0.0135,0,0.0324,0.0040,0,0,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0019,0.0004,0.0007,0,0.0041,0.0136,0.0015,0,0.0001,0,0,0,0,0,0.0004,0.0003,0.0003,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..53e5a6ff38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" +"2016 Q4",7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,2.9461,0.7344,0.9095,0.6826,0.9375,0.6211,0.0066,0.5386,0.4474,0.6653,0.4377,0.6623,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2857,0.2012,0.2913,0.1324,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.1667,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0152,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0015,0.0017,0.0039,0.0017,0.0001,0.0001 +"2017 Q1",0.0274,0,0.1294,0.0567,0.0183,0.0541,0,0,0.0145,0.0341,0,0.0176,0.0029,0.1104,0.0073,0,0.0150,0,0,0.0114,0.0043,0,0.0207,0.0007,0.0218,0.0018,0.0132,0.0065,0,0.0047,0.0111,0.0014,0,0,0.0101,0.0024,0.0000,0,0,0,0.0004,0,0,0.0007,0.0001,0.0002,0,0.0014,0.0047,0,0.0005,0.0000,0,0,0,0,0,0.0001,0.0001,0.0001,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8b47ca7e29 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" +2016,7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,0.7344,2.9461,0.6826,0.9095,0.6211,0.9375,0.0066,0.4474,0.5386,0.4377,0.3760,0.6653,0.6623,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2012,0.2857,0.1324,0.2913,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.0677,0.0673,0.0532,0.1667,0.0318,0.0577,0.0296,0.0261,0.0211,0.0039,0.0166,0.0070,0.0183,0.0053,0.0031,0.0152,0.0038,0.0032,0.0032,0.0015,0.0028,0.0017,0.0039,0.0049,0.0017,0.0001,0.0001 +2017,0.0068,0,0.0319,0.0140,0.0045,0.0133,0,0.0036,0,0,0.0084,0.0007,0.0043,0.0272,0,0.0018,0,0.0028,0.0037,0,0.0011,0,0.0051,0.0002,0.0054,0.0005,0.0033,0,0.0016,0.0027,0.0012,0.0003,0,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0,0.0000,0.0002,0.0001,0,0.0003,0.0012,0,0.0000,0.0001,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3b8da22250 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Users: Active" +"Tern, Caspian",6 +Fieldfare,4 +"Lark, Calandra",4 +"White, Great",4 +"Dowitcher, Short-billed",3 +Jackdaw,3 +Chaffinch,2 +"Flycatcher, Taiga",2 +Fulmar,2 +"Scaup, Lesser",2 +"Shearwater, Balearic",2 +"Warbler, Cetti's",2 +"Warbler, Hooded",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +"Chiffchaff, Iberian",1 +Dotterel,1 +Dunlin,1 +"Egret, Snowy",1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Savi's",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3b8da22250 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Users: Active" +"Tern, Caspian",6 +Fieldfare,4 +"Lark, Calandra",4 +"White, Great",4 +"Dowitcher, Short-billed",3 +Jackdaw,3 +Chaffinch,2 +"Flycatcher, Taiga",2 +Fulmar,2 +"Scaup, Lesser",2 +"Shearwater, Balearic",2 +"Warbler, Cetti's",2 +"Warbler, Hooded",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +"Chiffchaff, Iberian",1 +Dotterel,1 +Dunlin,1 +"Egret, Snowy",1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Savi's",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3b8da22250 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Users: Active" +"Tern, Caspian",6 +Fieldfare,4 +"Lark, Calandra",4 +"White, Great",4 +"Dowitcher, Short-billed",3 +Jackdaw,3 +Chaffinch,2 +"Flycatcher, Taiga",2 +Fulmar,2 +"Scaup, Lesser",2 +"Shearwater, Balearic",2 +"Warbler, Cetti's",2 +"Warbler, Hooded",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +"Chiffchaff, Iberian",1 +Dotterel,1 +Dunlin,1 +"Egret, Snowy",1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Savi's",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3b8da22250 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Users: Active" +"Tern, Caspian",6 +Fieldfare,4 +"Lark, Calandra",4 +"White, Great",4 +"Dowitcher, Short-billed",3 +Jackdaw,3 +Chaffinch,2 +"Flycatcher, Taiga",2 +Fulmar,2 +"Scaup, Lesser",2 +"Shearwater, Balearic",2 +"Warbler, Cetti's",2 +"Warbler, Hooded",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +"Chiffchaff, Iberian",1 +Dotterel,1 +Dunlin,1 +"Egret, Snowy",1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Savi's",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7f42c9d17 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" +2016-12-22,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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-24,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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-25,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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-26,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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-27,3,1,2,1,0,0,2,1,1,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +2016-12-28,3,1,4,1,0,0,2,1,1,1,2,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0 +2016-12-29,4,2,4,3,0,2,2,2,2,1,2,1,2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,0 +2016-12-30,6,4,4,4,3,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,5,4,4,4,3,3,2,2,1,2,1,1,2,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0 +2017-01-01,2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..92714cc6ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" +2016-12,6,4,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..67bb6dff7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" +"2016 Q4",6,4,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c9cccea98e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" +2016,6,4,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e455ac4021 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of PIs: Active" +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +"Egret, Snowy",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +Jackdaw,1 +"Kestrel, Lesser",1 +"Lark, Calandra",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Scaup, Lesser",1 +"Shearwater, Balearic",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Tern, Caspian",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"Warbler, Savi's",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e455ac4021 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of PIs: Active" +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +"Egret, Snowy",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +Jackdaw,1 +"Kestrel, Lesser",1 +"Lark, Calandra",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Scaup, Lesser",1 +"Shearwater, Balearic",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Tern, Caspian",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"Warbler, Savi's",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e455ac4021 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of PIs: Active" +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +"Egret, Snowy",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +Jackdaw,1 +"Kestrel, Lesser",1 +"Lark, Calandra",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Scaup, Lesser",1 +"Shearwater, Balearic",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Tern, Caspian",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"Warbler, Savi's",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e455ac4021 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of PIs: Active" +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +"Egret, Snowy",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +Jackdaw,1 +"Kestrel, Lesser",1 +"Lark, Calandra",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Scaup, Lesser",1 +"Shearwater, Balearic",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Tern, Caspian",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"Warbler, Savi's",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..038e25221b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" +2016-12-22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-26,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2016-12-27,0,0,0,1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0 +2016-12-28,0,0,0,1,1,0,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0,0,1,0,1,0,1,0,1,0 +2016-12-29,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,1,1,1,1,1,0 +2016-12-30,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0 +2017-01-01,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a7eca33768 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d602b03ef2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6fe65e0f29 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eb064633d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Resources: Active" +"Flycatcher, Taiga",5 +"Lark, Calandra",3 +"Shearwater, Balearic",3 +"Tern, Caspian",3 +"Chiffchaff, Iberian",2 +"Egret, Snowy",2 +Fieldfare,2 +Jackdaw,2 +"Scaup, Lesser",2 +"Warbler, Savi's",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eb064633d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Resources: Active" +"Flycatcher, Taiga",5 +"Lark, Calandra",3 +"Shearwater, Balearic",3 +"Tern, Caspian",3 +"Chiffchaff, Iberian",2 +"Egret, Snowy",2 +Fieldfare,2 +Jackdaw,2 +"Scaup, Lesser",2 +"Warbler, Savi's",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eb064633d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Resources: Active" +"Flycatcher, Taiga",5 +"Lark, Calandra",3 +"Shearwater, Balearic",3 +"Tern, Caspian",3 +"Chiffchaff, Iberian",2 +"Egret, Snowy",2 +Fieldfare,2 +Jackdaw,2 +"Scaup, Lesser",2 +"Warbler, Savi's",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eb064633d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Resources: Active" +"Flycatcher, Taiga",5 +"Lark, Calandra",3 +"Shearwater, Balearic",3 +"Tern, Caspian",3 +"Chiffchaff, Iberian",2 +"Egret, Snowy",2 +Fieldfare,2 +Jackdaw,2 +"Scaup, Lesser",2 +"Warbler, Savi's",2 +"Accentor, Alpine",1 +Bittern,1 +Blackbird,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +"Bunting, Ortolan",1 +Chaffinch,1 +Dotterel,1 +"Dowitcher, Short-billed",1 +Dunlin,1 +Fulmar,1 +"Goose, Red-breasted",1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Harrier, Hen",1 +"Kestrel, Lesser",1 +"Martin, Sand",1 +Moorhen,1 +Nuthatch,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +Smew,1 +"Spotted, Great",1 +"Swift, Little",1 +"Thrush, Hermit",1 +"Warbler, Blackpoll",1 +"Warbler, Cetti's",1 +"Warbler, Hooded",1 +"White, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..841756a8ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" +2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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-24,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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-25,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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-26,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,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-27,1,2,1,2,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0 +2016-12-28,1,2,2,2,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,1,1,0 +2016-12-29,4,3,3,3,1,0,1,2,1,1,0,0,0,1,1,1,1,1,0,0,1,0,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,0 +2016-12-30,5,3,3,3,2,0,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,5,3,2,1,2,1,2,2,2,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0 +2017-01-01,5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0934adec46 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" +2016-12,5,3,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..019f435643 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" +"2016 Q4",5,3,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ba808d85f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" +2016,5,3,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f9704fd048 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c016061023 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c016061023 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c016061023 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2be4ccf74c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..faf832d7d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..38748cc48e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..31e4e04cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..957bf7aa23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-27,24.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0.00000000,0 +2016-12-28,24.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0 +2016-12-29,24.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,24.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,8.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2017-01-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5cdf865fd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +2016-12,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..eb7dda2139 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +"2016 Q4",77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a9dcf360a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +2016,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fd03339839 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,1.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 +2016-12-28,1.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 +2016-12-29,1.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,1.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.3333,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d8b9a8d88a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +2016-12,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9b14168029 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +"2016 Q4",0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0f968e56a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +2016,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2831b2f07c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By CPU Hours (Core Count)" +"Thrush, Hermit",326.9898 +"Scaup, Lesser",185.9182 +"Gull, Yellow-legged",160.0000 +Nuthatch,112.0000 +"Gull, Glaucous-winged",108.0000 +"Bunting, Ortolan",96.0000 +Fieldfare,95.4997 +Smew,72.0000 +"Shearwater, Balearic",62.2411 +"White, Great",61.4597 +Dunlin,57.7053 +"Swift, Little",55.6816 +"Warbler, Cetti's",53.4612 +Chaffinch,48.6577 +"Warbler, Savi's",39.9999 +"Goose, Red-breasted",29.2166 +"Lark, Calandra",28.9482 +"Tern, Caspian",24.5939 +"Accentor, Alpine",23.2563 +Blackbird,20.0000 +Dotterel,20.0000 +"Yellowthroat, Common",16.0000 +"Bluetail, Red-flanked",13.8060 +"Egret, Snowy",12.0000 +"Kestrel, Lesser",12.0000 +"Warbler, Blackpoll",12.0000 +Jackdaw,11.8252 +"Flycatcher, Taiga",10.3886 +"Petrel, Fea's",10.0459 +"Martin, Sand",9.9744 +"Warbler, Hooded",8.3168 +Fulmar,7.5996 +"Chiffchaff, Iberian",4.5532 +Bittern,1.0000 +Bufflehead,1.0000 +"Dowitcher, Short-billed",1.0000 +"Harrier, Hen",1.0000 +Moorhen,1.0000 +"Shearwater, Great",1.0000 +"Shearwater, Macaronesian",1.0000 +"Spotted, Great",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2831b2f07c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By CPU Hours (Core Count)" +"Thrush, Hermit",326.9898 +"Scaup, Lesser",185.9182 +"Gull, Yellow-legged",160.0000 +Nuthatch,112.0000 +"Gull, Glaucous-winged",108.0000 +"Bunting, Ortolan",96.0000 +Fieldfare,95.4997 +Smew,72.0000 +"Shearwater, Balearic",62.2411 +"White, Great",61.4597 +Dunlin,57.7053 +"Swift, Little",55.6816 +"Warbler, Cetti's",53.4612 +Chaffinch,48.6577 +"Warbler, Savi's",39.9999 +"Goose, Red-breasted",29.2166 +"Lark, Calandra",28.9482 +"Tern, Caspian",24.5939 +"Accentor, Alpine",23.2563 +Blackbird,20.0000 +Dotterel,20.0000 +"Yellowthroat, Common",16.0000 +"Bluetail, Red-flanked",13.8060 +"Egret, Snowy",12.0000 +"Kestrel, Lesser",12.0000 +"Warbler, Blackpoll",12.0000 +Jackdaw,11.8252 +"Flycatcher, Taiga",10.3886 +"Petrel, Fea's",10.0459 +"Martin, Sand",9.9744 +"Warbler, Hooded",8.3168 +Fulmar,7.5996 +"Chiffchaff, Iberian",4.5532 +Bittern,1.0000 +Bufflehead,1.0000 +"Dowitcher, Short-billed",1.0000 +"Harrier, Hen",1.0000 +Moorhen,1.0000 +"Shearwater, Great",1.0000 +"Shearwater, Macaronesian",1.0000 +"Spotted, Great",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2831b2f07c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By CPU Hours (Core Count)" +"Thrush, Hermit",326.9898 +"Scaup, Lesser",185.9182 +"Gull, Yellow-legged",160.0000 +Nuthatch,112.0000 +"Gull, Glaucous-winged",108.0000 +"Bunting, Ortolan",96.0000 +Fieldfare,95.4997 +Smew,72.0000 +"Shearwater, Balearic",62.2411 +"White, Great",61.4597 +Dunlin,57.7053 +"Swift, Little",55.6816 +"Warbler, Cetti's",53.4612 +Chaffinch,48.6577 +"Warbler, Savi's",39.9999 +"Goose, Red-breasted",29.2166 +"Lark, Calandra",28.9482 +"Tern, Caspian",24.5939 +"Accentor, Alpine",23.2563 +Blackbird,20.0000 +Dotterel,20.0000 +"Yellowthroat, Common",16.0000 +"Bluetail, Red-flanked",13.8060 +"Egret, Snowy",12.0000 +"Kestrel, Lesser",12.0000 +"Warbler, Blackpoll",12.0000 +Jackdaw,11.8252 +"Flycatcher, Taiga",10.3886 +"Petrel, Fea's",10.0459 +"Martin, Sand",9.9744 +"Warbler, Hooded",8.3168 +Fulmar,7.5996 +"Chiffchaff, Iberian",4.5532 +Bittern,1.0000 +Bufflehead,1.0000 +"Dowitcher, Short-billed",1.0000 +"Harrier, Hen",1.0000 +Moorhen,1.0000 +"Shearwater, Great",1.0000 +"Shearwater, Macaronesian",1.0000 +"Spotted, Great",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2831b2f07c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By CPU Hours (Core Count)" +"Thrush, Hermit",326.9898 +"Scaup, Lesser",185.9182 +"Gull, Yellow-legged",160.0000 +Nuthatch,112.0000 +"Gull, Glaucous-winged",108.0000 +"Bunting, Ortolan",96.0000 +Fieldfare,95.4997 +Smew,72.0000 +"Shearwater, Balearic",62.2411 +"White, Great",61.4597 +Dunlin,57.7053 +"Swift, Little",55.6816 +"Warbler, Cetti's",53.4612 +Chaffinch,48.6577 +"Warbler, Savi's",39.9999 +"Goose, Red-breasted",29.2166 +"Lark, Calandra",28.9482 +"Tern, Caspian",24.5939 +"Accentor, Alpine",23.2563 +Blackbird,20.0000 +Dotterel,20.0000 +"Yellowthroat, Common",16.0000 +"Bluetail, Red-flanked",13.8060 +"Egret, Snowy",12.0000 +"Kestrel, Lesser",12.0000 +"Warbler, Blackpoll",12.0000 +Jackdaw,11.8252 +"Flycatcher, Taiga",10.3886 +"Petrel, Fea's",10.0459 +"Martin, Sand",9.9744 +"Warbler, Hooded",8.3168 +Fulmar,7.5996 +"Chiffchaff, Iberian",4.5532 +Bittern,1.0000 +Bufflehead,1.0000 +"Dowitcher, Short-billed",1.0000 +"Harrier, Hen",1.0000 +Moorhen,1.0000 +"Shearwater, Great",1.0000 +"Shearwater, Macaronesian",1.0000 +"Spotted, Great",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..71d523e4bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,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,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,12.0000,0,0,12.0000,1.0000,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-24,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,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,12.0000,0,0,15.9210,1.0000,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,20.0000,1.0000,0,0,0,0,16.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,96.0000,0,110.0862,72.0000,0,0,0,35.8063,0,0,22.5565,15.2449,0,0,0,0,16.0000,0,0,0,0,1.0000,12.0000,0,0,8.0000,0,0,0,0,0,0,1.0000,0,0 +2016-12-28,0,186.6783,0,0,0,0,96.0000,0,87.9948,65.7129,0,0,0,55.7895,0,0,28.6309,15.8148,0,0,20.0000,0,16.0000,0,12.0000,12.0000,0,1.0000,12.0000,0,8.0000,8.0000,0,0,1.0000,0,0,1.0000,1.0000,0,0 +2016-12-29,0,186.5631,160.0000,112.0000,0,96.0000,95.9574,72.0000,62.0528,61.5476,0,0,56.0000,55.7895,40.0000,0,29.2190,23.6626,0,0,20.0000,0,16.0000,0,12.0000,12.0000,11.5552,7.4478,12.0000,5.0000,8.0000,7.2600,2.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0 +2016-12-30,320.0517,186.4757,160.0000,112.0000,108.0000,96.0000,95.8117,72.0000,30.0833,59.0825,65.8038,45.1553,53.8849,55.7895,39.9998,41.1565,27.0648,25.1498,0,20.0000,20.0000,16.0000,16.0000,0,12.0000,12.0000,11.8713,10.0119,2.3934,5.0000,8.2497,7.1202,11.1559,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,180.1552,0,112.0000,0,96.0000,95.0483,72.0000,16.5130,59.5816,95.7214,59.2199,1.0000,55.7250,40.0000,24.3207,41.0622,33.7236,23.4747,0,0,0,11.9114,12.0000,12.0000,0,11.8540,10.7516,1.0000,11.1429,8.8093,8.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000 +2017-01-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7ff15cee6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3905,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f0492198ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3905,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bf88faf116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" +2016,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3905,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bf7a94f2e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 +2016-12-28,12.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 +2016-12-29,12.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3e46c255dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b18c5cbffa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..811df61f07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1d4d778b92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..09e9ca6b34 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..09e9ca6b34 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..09e9ca6b34 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Per Job: by PI" +parameters + +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/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b63a6c9e30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e9a4d89d9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7e6d8f3b8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c864b6cd37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by PI" +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","[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/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1dd643cf93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Per Job (Core Count): by PI" +parameters + +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/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1dd643cf93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Per Job (Core Count): by PI" +parameters + +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/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1dd643cf93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Per Job (Core Count): by PI" +parameters + +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/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1dd643cf93 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Per Job (Core Count): by PI" +parameters + +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/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bdcbce68f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by PI" +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)","[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/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..39cdd700ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by PI" +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)","[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/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0859fff7c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by PI" +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)","[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/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c11f491dc4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by PI" +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)","[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/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a428ee0418 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Tern, Caspian",214.25581950,2.0529931333004057 +Fulmar,71.34538580,15.241596218036447 +"Warbler, Savi's",52.74111111,37.29241880267786 +Fieldfare,44.54427399,7.275316793106799 +"Shearwater, Balearic",35.12637367,1.715055012550036 +"Gull, Yellow-legged",31.02180556,3.7428536858056267 +"Chiffchaff, Iberian",26.77900440,0.3093136712992847 +Dunlin,12.67979893,0.790292910753799 +"White, Great",9.21498611,3.9691829026306045 +"Petrel, Fea's",8.19083333,2.9697909176657884 +"Thrush, Hermit",6.67768519,0.98851049021015 +"Egret, Snowy",5.36508929,0.1678514684969954 +Jackdaw,4.87037458,0.44747381160758987 +"Kestrel, Lesser",4.41189394,0.6571458545780616 +"Shearwater, Macaronesian",3.92752472,0.08635320372070841 +"Warbler, Blackpoll",3.72481481,0.0007211928415468717 +"Accentor, Alpine",2.15222222,0.6988290975119311 +"Flycatcher, Taiga",2.05341236,0.02664920179778262 +Smew,1.98928571,0.9136179906052265 +"Bunting, Ortolan",1.88463542,0.5086144929601321 +"Warbler, Cetti's",0.74204509,0.007451042072537693 +"Bluetail, Red-flanked",0.68931866,0.18792064181649992 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Goose, Red-breasted",0.29952899,0.12719098377944033 +"Warbler, Hooded",0.20924174,0.04281469020992288 +Moorhen,0.20714974,0.015675479418422043 +"Gull, Glaucous-winged",0.09777778,0 +Bittern,0.08220238,0.011574714004551338 +"Lark, Calandra",0.06381908,0.014079147600380438 +Bufflehead,0.05740350,0.004593062258338075 +"Swift, Little",0.04034722,0.034861577990454876 +Chaffinch,0.03987455,0.015476567200768681 +"Martin, Sand",0.01747222,0.00747562396751627 +"Spotted, Great",0.01408333,0.0026920235401535287 +Blackbird,0.00105159,0.00005735857833479565 +Nuthatch,0.00059028,0.000142636082683637 +Dotterel,0.00027778,0 +"Scaup, Lesser",0.00016667,0.00003513641844631532 +"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 +"Shearwater, Great",0.00000000,0 +"Yellowthroat, Common",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a428ee0418 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Tern, Caspian",214.25581950,2.0529931333004057 +Fulmar,71.34538580,15.241596218036447 +"Warbler, Savi's",52.74111111,37.29241880267786 +Fieldfare,44.54427399,7.275316793106799 +"Shearwater, Balearic",35.12637367,1.715055012550036 +"Gull, Yellow-legged",31.02180556,3.7428536858056267 +"Chiffchaff, Iberian",26.77900440,0.3093136712992847 +Dunlin,12.67979893,0.790292910753799 +"White, Great",9.21498611,3.9691829026306045 +"Petrel, Fea's",8.19083333,2.9697909176657884 +"Thrush, Hermit",6.67768519,0.98851049021015 +"Egret, Snowy",5.36508929,0.1678514684969954 +Jackdaw,4.87037458,0.44747381160758987 +"Kestrel, Lesser",4.41189394,0.6571458545780616 +"Shearwater, Macaronesian",3.92752472,0.08635320372070841 +"Warbler, Blackpoll",3.72481481,0.0007211928415468717 +"Accentor, Alpine",2.15222222,0.6988290975119311 +"Flycatcher, Taiga",2.05341236,0.02664920179778262 +Smew,1.98928571,0.9136179906052265 +"Bunting, Ortolan",1.88463542,0.5086144929601321 +"Warbler, Cetti's",0.74204509,0.007451042072537693 +"Bluetail, Red-flanked",0.68931866,0.18792064181649992 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Goose, Red-breasted",0.29952899,0.12719098377944033 +"Warbler, Hooded",0.20924174,0.04281469020992288 +Moorhen,0.20714974,0.015675479418422043 +"Gull, Glaucous-winged",0.09777778,0 +Bittern,0.08220238,0.011574714004551338 +"Lark, Calandra",0.06381908,0.014079147600380438 +Bufflehead,0.05740350,0.004593062258338075 +"Swift, Little",0.04034722,0.034861577990454876 +Chaffinch,0.03987455,0.015476567200768681 +"Martin, Sand",0.01747222,0.00747562396751627 +"Spotted, Great",0.01408333,0.0026920235401535287 +Blackbird,0.00105159,0.00005735857833479565 +Nuthatch,0.00059028,0.000142636082683637 +Dotterel,0.00027778,0 +"Scaup, Lesser",0.00016667,0.00003513641844631532 +"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 +"Shearwater, Great",0.00000000,0 +"Yellowthroat, Common",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a428ee0418 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Tern, Caspian",214.25581950,2.0529931333004057 +Fulmar,71.34538580,15.241596218036447 +"Warbler, Savi's",52.74111111,37.29241880267786 +Fieldfare,44.54427399,7.275316793106799 +"Shearwater, Balearic",35.12637367,1.715055012550036 +"Gull, Yellow-legged",31.02180556,3.7428536858056267 +"Chiffchaff, Iberian",26.77900440,0.3093136712992847 +Dunlin,12.67979893,0.790292910753799 +"White, Great",9.21498611,3.9691829026306045 +"Petrel, Fea's",8.19083333,2.9697909176657884 +"Thrush, Hermit",6.67768519,0.98851049021015 +"Egret, Snowy",5.36508929,0.1678514684969954 +Jackdaw,4.87037458,0.44747381160758987 +"Kestrel, Lesser",4.41189394,0.6571458545780616 +"Shearwater, Macaronesian",3.92752472,0.08635320372070841 +"Warbler, Blackpoll",3.72481481,0.0007211928415468717 +"Accentor, Alpine",2.15222222,0.6988290975119311 +"Flycatcher, Taiga",2.05341236,0.02664920179778262 +Smew,1.98928571,0.9136179906052265 +"Bunting, Ortolan",1.88463542,0.5086144929601321 +"Warbler, Cetti's",0.74204509,0.007451042072537693 +"Bluetail, Red-flanked",0.68931866,0.18792064181649992 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Goose, Red-breasted",0.29952899,0.12719098377944033 +"Warbler, Hooded",0.20924174,0.04281469020992288 +Moorhen,0.20714974,0.015675479418422043 +"Gull, Glaucous-winged",0.09777778,0 +Bittern,0.08220238,0.011574714004551338 +"Lark, Calandra",0.06381908,0.014079147600380438 +Bufflehead,0.05740350,0.004593062258338075 +"Swift, Little",0.04034722,0.034861577990454876 +Chaffinch,0.03987455,0.015476567200768681 +"Martin, Sand",0.01747222,0.00747562396751627 +"Spotted, Great",0.01408333,0.0026920235401535287 +Blackbird,0.00105159,0.00005735857833479565 +Nuthatch,0.00059028,0.000142636082683637 +Dotterel,0.00027778,0 +"Scaup, Lesser",0.00016667,0.00003513641844631532 +"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 +"Shearwater, Great",0.00000000,0 +"Yellowthroat, Common",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a428ee0418 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"Tern, Caspian",214.25581950,2.0529931333004057 +Fulmar,71.34538580,15.241596218036447 +"Warbler, Savi's",52.74111111,37.29241880267786 +Fieldfare,44.54427399,7.275316793106799 +"Shearwater, Balearic",35.12637367,1.715055012550036 +"Gull, Yellow-legged",31.02180556,3.7428536858056267 +"Chiffchaff, Iberian",26.77900440,0.3093136712992847 +Dunlin,12.67979893,0.790292910753799 +"White, Great",9.21498611,3.9691829026306045 +"Petrel, Fea's",8.19083333,2.9697909176657884 +"Thrush, Hermit",6.67768519,0.98851049021015 +"Egret, Snowy",5.36508929,0.1678514684969954 +Jackdaw,4.87037458,0.44747381160758987 +"Kestrel, Lesser",4.41189394,0.6571458545780616 +"Shearwater, Macaronesian",3.92752472,0.08635320372070841 +"Warbler, Blackpoll",3.72481481,0.0007211928415468717 +"Accentor, Alpine",2.15222222,0.6988290975119311 +"Flycatcher, Taiga",2.05341236,0.02664920179778262 +Smew,1.98928571,0.9136179906052265 +"Bunting, Ortolan",1.88463542,0.5086144929601321 +"Warbler, Cetti's",0.74204509,0.007451042072537693 +"Bluetail, Red-flanked",0.68931866,0.18792064181649992 +"Harrier, Hen",0.32390278,0.2312398274998169 +"Goose, Red-breasted",0.29952899,0.12719098377944033 +"Warbler, Hooded",0.20924174,0.04281469020992288 +Moorhen,0.20714974,0.015675479418422043 +"Gull, Glaucous-winged",0.09777778,0 +Bittern,0.08220238,0.011574714004551338 +"Lark, Calandra",0.06381908,0.014079147600380438 +Bufflehead,0.05740350,0.004593062258338075 +"Swift, Little",0.04034722,0.034861577990454876 +Chaffinch,0.03987455,0.015476567200768681 +"Martin, Sand",0.01747222,0.00747562396751627 +"Spotted, Great",0.01408333,0.0026920235401535287 +Blackbird,0.00105159,0.00005735857833479565 +Nuthatch,0.00059028,0.000142636082683637 +Dotterel,0.00027778,0 +"Scaup, Lesser",0.00016667,0.00003513641844631532 +"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 +"Shearwater, Great",0.00000000,0 +"Yellowthroat, Common",0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b6c55758f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait 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,9.33222222,0,0,0.00027778,0,0,0,0,0,0,0,0,0 +2016-12-23,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,0.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,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,0.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,36.96185185,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-27,0.00055556,273.48105556,0,103.71148148,57.59064815,0,0,0,76.08611111,50.82250000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0.00288889,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0 +2016-12-28,0.00000000,280.72700000,0,108.01750000,80.35419753,0,0,0,36.87611111,0.00000000,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0,0,1.68000000,0,0,0.46633333,0.02977924,0,0,7.07458333,0.07195578,0,0.00000000,0,0,0,0,0.00027778,0.00018519,0,0.00000000,0 +2016-12-29,150.26646605,12.05893162,0.00166667,41.77958333,22.19675214,25.72861111,0.00444444,0,5.85819444,0.00000000,0,0,0.87133838,0.00000000,0,0.00000000,0,7.73980283,1.98928571,3.47907407,0.79222222,4.46097222,0.01788889,0,0.13063131,0.04237662,0,0,1.33660948,0.04464331,0,0.00000000,0.00000000,0,0,0.00062500,0.00000000,0.00000000,0,0.00000000,0 +2016-12-30,224.39559552,55.29648148,105.48055556,0.00222222,31.96192488,0.00000000,18.02518519,13.00438580,14.90583333,5.14571429,6.67768519,0,5.77518519,0.38944444,2.58369031,0.00000000,0,1.39468892,0.00000000,1.47605556,0.84532650,0.00000000,0.42590741,0.59636111,0.31423611,0.32754774,0.09777778,0.17850082,0.02575712,0.13344771,0.05370370,0.00000000,0.00000000,0.01437500,0.00105159,0.00055556,0.00000000,0.00020833,0.00009921,0.00000000,0.00000000 +2016-12-31,4.34280303,351.74604167,0.00000000,0.00076389,33.49272778,0,27.32576747,3.35838889,0.95052083,0.00000000,0.00000000,0.02019097,0.00000000,0.00000000,7.36601918,0,2.15222222,2.90176261,0.00000000,0.07819444,0.55391509,0.00626263,0.00000000,0.33598291,0.26094444,0.35169374,0,0.02144676,0.03724051,0.01543544,0.00000000,0.00027778,0.02496032,0.01388889,0,0.00000000,0,0.00013889,0.00010913,0,0 +2017-01-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6369dd72af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait Hours: Per Job" +2016-12,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.68931866,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000,0.00000000 +2017-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..aad85fbe0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait Hours: Per Job" +"2016 Q4",214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.68931866,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000,0.00000000 +"2017 Q1",0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c7bc4611a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait Hours: Per Job" +2016,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.68931866,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000,0.00000000 +2017,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ae1368a45f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Shearwater, Great",72.00694444, +"Bluetail, Red-flanked",52.33125262, +Bufflehead,49.85089556, +Dotterel,48.00666667, +"Warbler, Blackpoll",44.13648148, +"Kestrel, Lesser",39.37916667, +Fieldfare,37.79727273, +Smew,36.49007937, +"Scaup, Lesser",26.34404444, +"Accentor, Alpine",25.49490741, +Moorhen,25.48654262, +"Warbler, Savi's",25.17486111, +"Warbler, Hooded",24.23206456, +Fulmar,21.20474151, +"White, Great",18.55493056, +Jackdaw,17.27322391, +"Petrel, Fea's",16.76537037, +Nuthatch,15.78250000, +"Thrush, Hermit",15.43750000,2.949516142225878 +Chaffinch,12.69807348,1.9501880028878633 +"Bunting, Ortolan",12.67826389, +"Shearwater, Macaronesian",8.59051583, +"Chiffchaff, Iberian",7.94699670,0.252707620848999 +"Shearwater, Balearic",7.84637557,0.6422820715080719 +"Martin, Sand",7.02769444,1.7557857088278381 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.412736659063767 +"Swift, Little",4.58416667,1.0571325984155044 +"Gull, Yellow-legged",4.51402778,1.3866381241776238 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.61309706,0.16764615169441738 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Goose, Red-breasted",0.81574879,0.33900408606509713 +"Lark, Calandra",0.55186616,0.029985935034615736 +"Flycatcher, Taiga",0.29997993,0.003221245083552797 +"Gull, Glaucous-winged",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +"Warbler, Cetti's",0.02840866,0.006969739306507408 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..39e75564b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Shearwater, Great",72.00694444,0 +"Bluetail, Red-flanked",52.33125262, +Bufflehead,49.85089556,1.1100595034642202 +Dotterel,48.00666667,0 +"Warbler, Blackpoll",44.13648148,3.8863777173028686 +"Kestrel, Lesser",39.37916667,3.5074678840012607 +Fieldfare,37.79727273,4.7120666811720895 +Smew,36.49007937,2.407916402194818 +"Scaup, Lesser",26.34404444,6.8507338965077675 +"Accentor, Alpine",25.49490741, +Moorhen,25.48654262,0.09521527865289223 +"Warbler, Savi's",25.17486111,17.80092216999551 +"Warbler, Hooded",24.23206456,3.046402847031802 +Fulmar,21.20474151,2.519140001248213 +"White, Great",18.55493056,4.578065909633193 +Jackdaw,17.27322391,1.2812633375632778 +"Petrel, Fea's",16.76537037,3.911305555603074 +Nuthatch,15.78250000,1.4182317241819407 +"Thrush, Hermit",15.43750000,9.334819660458281 +Chaffinch,12.69807348,7.9017703608261565 +"Bunting, Ortolan",12.67826389,0.43082354975761517 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +"Chiffchaff, Iberian",7.94699670,0.4591933087881705 +"Shearwater, Balearic",7.84637557,1.3319104362573686 +"Martin, Sand",7.02769444,2.431694700689441 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Swift, Little",4.58416667,1.606624250847252 +"Gull, Yellow-legged",4.51402778,3.1765790052054 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.61309706,0.3572919275210631 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Goose, Red-breasted",0.81574879,0.33900408606509713 +"Lark, Calandra",0.55186616,0.0548134687339129 +"Flycatcher, Taiga",0.29997993,0.00460726351698731 +"Gull, Glaucous-winged",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +"Warbler, Cetti's",0.02840866,0.007661173777721356 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..39e75564b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Shearwater, Great",72.00694444,0 +"Bluetail, Red-flanked",52.33125262, +Bufflehead,49.85089556,1.1100595034642202 +Dotterel,48.00666667,0 +"Warbler, Blackpoll",44.13648148,3.8863777173028686 +"Kestrel, Lesser",39.37916667,3.5074678840012607 +Fieldfare,37.79727273,4.7120666811720895 +Smew,36.49007937,2.407916402194818 +"Scaup, Lesser",26.34404444,6.8507338965077675 +"Accentor, Alpine",25.49490741, +Moorhen,25.48654262,0.09521527865289223 +"Warbler, Savi's",25.17486111,17.80092216999551 +"Warbler, Hooded",24.23206456,3.046402847031802 +Fulmar,21.20474151,2.519140001248213 +"White, Great",18.55493056,4.578065909633193 +Jackdaw,17.27322391,1.2812633375632778 +"Petrel, Fea's",16.76537037,3.911305555603074 +Nuthatch,15.78250000,1.4182317241819407 +"Thrush, Hermit",15.43750000,9.334819660458281 +Chaffinch,12.69807348,7.9017703608261565 +"Bunting, Ortolan",12.67826389,0.43082354975761517 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +"Chiffchaff, Iberian",7.94699670,0.4591933087881705 +"Shearwater, Balearic",7.84637557,1.3319104362573686 +"Martin, Sand",7.02769444,2.431694700689441 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Swift, Little",4.58416667,1.606624250847252 +"Gull, Yellow-legged",4.51402778,3.1765790052054 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.61309706,0.3572919275210631 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Goose, Red-breasted",0.81574879,0.33900408606509713 +"Lark, Calandra",0.55186616,0.0548134687339129 +"Flycatcher, Taiga",0.29997993,0.00460726351698731 +"Gull, Glaucous-winged",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +"Warbler, Cetti's",0.02840866,0.007661173777721356 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..39e75564b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"Shearwater, Great",72.00694444,0 +"Bluetail, Red-flanked",52.33125262, +Bufflehead,49.85089556,1.1100595034642202 +Dotterel,48.00666667,0 +"Warbler, Blackpoll",44.13648148,3.8863777173028686 +"Kestrel, Lesser",39.37916667,3.5074678840012607 +Fieldfare,37.79727273,4.7120666811720895 +Smew,36.49007937,2.407916402194818 +"Scaup, Lesser",26.34404444,6.8507338965077675 +"Accentor, Alpine",25.49490741, +Moorhen,25.48654262,0.09521527865289223 +"Warbler, Savi's",25.17486111,17.80092216999551 +"Warbler, Hooded",24.23206456,3.046402847031802 +Fulmar,21.20474151,2.519140001248213 +"White, Great",18.55493056,4.578065909633193 +Jackdaw,17.27322391,1.2812633375632778 +"Petrel, Fea's",16.76537037,3.911305555603074 +Nuthatch,15.78250000,1.4182317241819407 +"Thrush, Hermit",15.43750000,9.334819660458281 +Chaffinch,12.69807348,7.9017703608261565 +"Bunting, Ortolan",12.67826389,0.43082354975761517 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +"Chiffchaff, Iberian",7.94699670,0.4591933087881705 +"Shearwater, Balearic",7.84637557,1.3319104362573686 +"Martin, Sand",7.02769444,2.431694700689441 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Swift, Little",4.58416667,1.606624250847252 +"Gull, Yellow-legged",4.51402778,3.1765790052054 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.61309706,0.3572919275210631 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Goose, Red-breasted",0.81574879,0.33900408606509713 +"Lark, Calandra",0.55186616,0.0548134687339129 +"Flycatcher, Taiga",0.29997993,0.00460726351698731 +"Gull, Glaucous-winged",0.26055556,0 +Dunlin,0.18926081,0.027954377835160745 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +"Warbler, Cetti's",0.02840866,0.007661173777721356 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..27a7c4e4e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall 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,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.94166667,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,24.00000000,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,8.12694444,0,0,0,0,0,0 +2016-12-26,0,2.70416667,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,24.00000000,0,0,0,0,0,0 +2016-12-27,4.72138889,24.00000000,0,0,0,0,12.98407407,0,0,0,0,0,0,13.96533333,20.66416667,0,19.90555556,0,0,13.89986111,0,0,0,20.49703704,0,0,0,0,0,0,8.71606481,0,0,0,8.23638889,3.21666667,0,0,0,0,0 +2016-12-28,24.00000000,9.02631944,13.35268330,4.70055556,5.03972222,3.11533951,15.23050000,0,17.86320988,0,5.01598392,0,8.78983333,17.63833333,18.38902778,0,24.00000000,0,0,24.00000000,0,0,0,14.10152778,0,0,0,0,0,0,24.00000000,0,0,0,19.32140278,24.00000000,0,0,0,0,0 +2016-12-29,24.00000000,23.88776389,16.60273286,24.00000000,24.00000000,24.00000000,23.40096618,11.55011905,24.00000000,0,13.10756221,18.97472222,10.54645833,7.73178763,18.61000000,4.34454545,24.00000000,3.66944444,0,24.00000000,6.36972222,0,3.62000000,14.25424444,10.40083333,0,2.01966667,0,6.48888889,0,7.81509259,0,0,0,11.06298354,1.17898003,0,0,0,0,1.92694444 +2016-12-30,19.28555556,18.92284722,21.71949405,19.30611111,15.09675926,14.55335859,18.93428571,21.78416667,16.65664530,0,13.31263065,12.00027778,13.41648148,7.32452206,11.90376984,9.68358547,11.72422222,10.28048611,9.78120370,24.00000000,7.97656250,4.25015531,16.84687500,4.10732350,13.60638889,3.48631944,4.10559722,1.45518519,2.51750000,0,0.80124024,0.97252976,1.58977533,0.48461111,0.27513871,0.34371670,0.26055556,0.14245370,0.08049603,0.06500000,0.03474935 +2016-12-31,0,23.17923611,10.83064379,0,0,24.00000000,11.12489583,22.09055556,4.88585470,16.61129630,12.53390738,7.37444444,10.97790404,14.97629630,8.30273148,15.93161523,1.92791667,7.33458333,16.96888889,8.03958333,10.17785714,5.54019436,7.28581633,1.97834003,6.47384921,7.65398148,8.63138889,4.84500000,0,0.19661458,5.00544444,0.97299603,1.07971065,1.49565171,0.32450010,0.38194742,0,0.14844444,0,0,0.01479010 +2017-01-01,0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..05be93a7d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall Hours: Per Job" +2016-12,72.00694444,42.39165094,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 +2017-01,0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9ed33072b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall Hours: Per Job" +"2016 Q4",72.00694444,42.39165094,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 +"2017 Q1",0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7c29e0c227 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall Hours: Per Job" +2016,72.00694444,42.39165094,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 +2017,0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..51f2ad05f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"User Expansion Factor" +"Tern, Caspian",119.8923 +Dunlin,69.2703 +"Gull, Yellow-legged",7.8723 +"Flycatcher, Taiga",7.6469 +"Warbler, Cetti's",6.8756 +"Chiffchaff, Iberian",4.3697 +Fulmar,4.3693 +"Shearwater, Balearic",3.8702 +"Egret, Snowy",3.5459 +Fieldfare,2.2702 +"Warbler, Savi's",2.0475 +"White, Great",1.5228 +"Petrel, Fea's",1.4886 +"Shearwater, Macaronesian",1.4572 +"Goose, Red-breasted",1.4161 +"Gull, Glaucous-winged",1.3753 +"Thrush, Hermit",1.3348 +Jackdaw,1.2820 +"Bunting, Ortolan",1.1487 +"Kestrel, Lesser",1.1120 +"Lark, Calandra",1.1103 +Bittern,1.0932 +"Accentor, Alpine",1.0844 +"Warbler, Blackpoll",1.0844 +"Harrier, Hen",1.0642 +Smew,1.0545 +"Swift, Little",1.0148 +"Bluetail, Red-flanked",1.0132 +Blackbird,1.0131 +"Warbler, Hooded",1.0086 +Moorhen,1.0081 +"Martin, Sand",1.0025 +"Spotted, Great",1.0024 +Bufflehead,1.0012 +Chaffinch,1.0010 +"Dowitcher, Short-billed",1.0001 +Dotterel,1.0000 +Nuthatch,1.0000 +"Scaup, Lesser",1.0000 +"Shearwater, Great",1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..51f2ad05f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"User Expansion Factor" +"Tern, Caspian",119.8923 +Dunlin,69.2703 +"Gull, Yellow-legged",7.8723 +"Flycatcher, Taiga",7.6469 +"Warbler, Cetti's",6.8756 +"Chiffchaff, Iberian",4.3697 +Fulmar,4.3693 +"Shearwater, Balearic",3.8702 +"Egret, Snowy",3.5459 +Fieldfare,2.2702 +"Warbler, Savi's",2.0475 +"White, Great",1.5228 +"Petrel, Fea's",1.4886 +"Shearwater, Macaronesian",1.4572 +"Goose, Red-breasted",1.4161 +"Gull, Glaucous-winged",1.3753 +"Thrush, Hermit",1.3348 +Jackdaw,1.2820 +"Bunting, Ortolan",1.1487 +"Kestrel, Lesser",1.1120 +"Lark, Calandra",1.1103 +Bittern,1.0932 +"Accentor, Alpine",1.0844 +"Warbler, Blackpoll",1.0844 +"Harrier, Hen",1.0642 +Smew,1.0545 +"Swift, Little",1.0148 +"Bluetail, Red-flanked",1.0132 +Blackbird,1.0131 +"Warbler, Hooded",1.0086 +Moorhen,1.0081 +"Martin, Sand",1.0025 +"Spotted, Great",1.0024 +Bufflehead,1.0012 +Chaffinch,1.0010 +"Dowitcher, Short-billed",1.0001 +Dotterel,1.0000 +Nuthatch,1.0000 +"Scaup, Lesser",1.0000 +"Shearwater, Great",1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..51f2ad05f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"User Expansion Factor" +"Tern, Caspian",119.8923 +Dunlin,69.2703 +"Gull, Yellow-legged",7.8723 +"Flycatcher, Taiga",7.6469 +"Warbler, Cetti's",6.8756 +"Chiffchaff, Iberian",4.3697 +Fulmar,4.3693 +"Shearwater, Balearic",3.8702 +"Egret, Snowy",3.5459 +Fieldfare,2.2702 +"Warbler, Savi's",2.0475 +"White, Great",1.5228 +"Petrel, Fea's",1.4886 +"Shearwater, Macaronesian",1.4572 +"Goose, Red-breasted",1.4161 +"Gull, Glaucous-winged",1.3753 +"Thrush, Hermit",1.3348 +Jackdaw,1.2820 +"Bunting, Ortolan",1.1487 +"Kestrel, Lesser",1.1120 +"Lark, Calandra",1.1103 +Bittern,1.0932 +"Accentor, Alpine",1.0844 +"Warbler, Blackpoll",1.0844 +"Harrier, Hen",1.0642 +Smew,1.0545 +"Swift, Little",1.0148 +"Bluetail, Red-flanked",1.0132 +Blackbird,1.0131 +"Warbler, Hooded",1.0086 +Moorhen,1.0081 +"Martin, Sand",1.0025 +"Spotted, Great",1.0024 +Bufflehead,1.0012 +Chaffinch,1.0010 +"Dowitcher, Short-billed",1.0001 +Dotterel,1.0000 +Nuthatch,1.0000 +"Scaup, Lesser",1.0000 +"Shearwater, Great",1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..51f2ad05f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"User Expansion Factor" +"Tern, Caspian",119.8923 +Dunlin,69.2703 +"Gull, Yellow-legged",7.8723 +"Flycatcher, Taiga",7.6469 +"Warbler, Cetti's",6.8756 +"Chiffchaff, Iberian",4.3697 +Fulmar,4.3693 +"Shearwater, Balearic",3.8702 +"Egret, Snowy",3.5459 +Fieldfare,2.2702 +"Warbler, Savi's",2.0475 +"White, Great",1.5228 +"Petrel, Fea's",1.4886 +"Shearwater, Macaronesian",1.4572 +"Goose, Red-breasted",1.4161 +"Gull, Glaucous-winged",1.3753 +"Thrush, Hermit",1.3348 +Jackdaw,1.2820 +"Bunting, Ortolan",1.1487 +"Kestrel, Lesser",1.1120 +"Lark, Calandra",1.1103 +Bittern,1.0932 +"Accentor, Alpine",1.0844 +"Warbler, Blackpoll",1.0844 +"Harrier, Hen",1.0642 +Smew,1.0545 +"Swift, Little",1.0148 +"Bluetail, Red-flanked",1.0132 +Blackbird,1.0131 +"Warbler, Hooded",1.0086 +Moorhen,1.0081 +"Martin, Sand",1.0025 +"Spotted, Great",1.0024 +Bufflehead,1.0012 +Chaffinch,1.0010 +"Dowitcher, Short-billed",1.0001 +Dotterel,1.0000 +Nuthatch,1.0000 +"Scaup, Lesser",1.0000 +"Shearwater, Great",1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d0aff40064 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 +2016-12-23,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 +2016-12-24,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 +2016-12-25,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 +2016-12-26,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2735,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 +2016-12-27,1.0280,0,0,1.0000,0,0,4.9152,1.9856,0,2.5533,0,2.0864,1.7260,0,0,0,0,0,0,0,1.2277,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0 +2016-12-28,1.0102,0,0,1.0000,0,0,4.8768,2.1159,0,2.5716,0,1.8919,1.7260,0,0,0,0,0,0,1.1095,1.0845,0,0,1.0866,0,0,0,1.0025,0,1.0107,1.0010,0,0,1.0013,1.0000,0,1.0000,0,1.0000,1.0000,0 +2016-12-29,7.2405,0,3.8567,3.7347,1.0394,1.0001,3.0140,2.7029,0,2.3072,1.0000,1.6613,1.7260,0,0,0,0,1.0436,1.2430,1.1207,1.1039,0,0,1.0866,1.0011,1.0379,0,1.0228,0,1.0095,1.0011,1.0000,0,1.0011,1.0000,0,1.0000,1.0000,1.0000,1.0000,0 +2016-12-30,244.8450,82.2879,3.8567,5.1450,5.9358,1.8025,2.9767,5.5485,0,2.2649,3.1975,1.5996,1.4078,1.1806,2.1933,1.3753,1.4992,1.4225,1.1539,1.1173,1.0974,1.1123,0,1.0801,1.0787,1.0500,1.0094,1.0292,1.0131,1.0076,1.0022,1.0000,1.0041,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.4459,30.3841,0,8.2387,38.4517,4.7123,7.3737,13.7412,1.0162,1.9038,1.0000,1.2381,1.2386,1.6099,1.2202,0,1.1213,1.1163,1.0513,1.0205,1.1361,1.0199,1.0760,0,1.0006,1.1462,1.0172,1.0100,0,1.0119,1.0187,1.0039,1.0018,1.0012,1.0000,1.0001,0,1.0000,1.0000,0,0 +2017-01-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..58455365bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" +2016-12,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0149,1.0131,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..36608a2b07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" +"2016 Q4",121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0149,1.0131,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..73da6e6fb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" +2016,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0149,1.0131,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b8870b2ad2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Ended" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b8870b2ad2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Ended" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b8870b2ad2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Ended" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b8870b2ad2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Ended" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5cfc83369a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" +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 +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,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,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,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,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19044,3823,1700,788,1,732,0,34,90,68,63,3,28,60,20,39,5,8,7,0,4,19,3,5,11,14,10,1,4,0,4,6,1,2,3,1,1,1,1,1,1 +2016-12-31,22026,2719,933,869,999,29,4,180,10,24,83,97,28,5,24,22,1,16,16,4,13,1,8,4,4,0,0,7,6,0,4,1,2,1,0,0,1,0,0,0,0 +2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..239642d795 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" +2016-12,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,6,24,23,4,17,20,11,9,15,14,10,8,10,0,8,7,3,3,3,1,2,1,1,1,1 +2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..62a6e142b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" +"2016 Q4",41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,6,24,23,4,17,20,11,9,15,14,10,8,10,0,8,7,3,3,3,1,2,1,1,1,1 +"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0269e78f9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" +2016,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,6,24,23,4,17,20,11,9,15,14,10,8,10,0,8,7,3,3,3,1,2,1,1,1,1 +2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..86310dfaf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Max (Core Count)" +"Thrush, Hermit",336 +Dunlin,192 +"Scaup, Lesser",192 +"Gull, Yellow-legged",160 +"Shearwater, Balearic",144 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Fieldfare,96 +"Lark, Calandra",96 +Smew,72 +"White, Great",72 +Chaffinch,64 +"Tern, Caspian",64 +"Swift, Little",60 +"Warbler, Cetti's",56 +"Goose, Red-breasted",48 +"Warbler, Savi's",40 +Fulmar,32 +"Accentor, Alpine",24 +Blackbird,20 +Dotterel,20 +"Bluetail, Red-flanked",16 +"Yellowthroat, Common",16 +"Chiffchaff, Iberian",12 +"Egret, Snowy",12 +"Flycatcher, Taiga",12 +Jackdaw,12 +"Kestrel, Lesser",12 +"Martin, Sand",12 +"Petrel, Fea's",12 +"Warbler, Blackpoll",12 +"Warbler, Hooded",12 +Bittern,1 +Bufflehead,1 +"Dowitcher, Short-billed",1 +"Harrier, Hen",1 +Moorhen,1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..86310dfaf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Max (Core Count)" +"Thrush, Hermit",336 +Dunlin,192 +"Scaup, Lesser",192 +"Gull, Yellow-legged",160 +"Shearwater, Balearic",144 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Fieldfare,96 +"Lark, Calandra",96 +Smew,72 +"White, Great",72 +Chaffinch,64 +"Tern, Caspian",64 +"Swift, Little",60 +"Warbler, Cetti's",56 +"Goose, Red-breasted",48 +"Warbler, Savi's",40 +Fulmar,32 +"Accentor, Alpine",24 +Blackbird,20 +Dotterel,20 +"Bluetail, Red-flanked",16 +"Yellowthroat, Common",16 +"Chiffchaff, Iberian",12 +"Egret, Snowy",12 +"Flycatcher, Taiga",12 +Jackdaw,12 +"Kestrel, Lesser",12 +"Martin, Sand",12 +"Petrel, Fea's",12 +"Warbler, Blackpoll",12 +"Warbler, Hooded",12 +Bittern,1 +Bufflehead,1 +"Dowitcher, Short-billed",1 +"Harrier, Hen",1 +Moorhen,1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..86310dfaf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Max (Core Count)" +"Thrush, Hermit",336 +Dunlin,192 +"Scaup, Lesser",192 +"Gull, Yellow-legged",160 +"Shearwater, Balearic",144 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Fieldfare,96 +"Lark, Calandra",96 +Smew,72 +"White, Great",72 +Chaffinch,64 +"Tern, Caspian",64 +"Swift, Little",60 +"Warbler, Cetti's",56 +"Goose, Red-breasted",48 +"Warbler, Savi's",40 +Fulmar,32 +"Accentor, Alpine",24 +Blackbird,20 +Dotterel,20 +"Bluetail, Red-flanked",16 +"Yellowthroat, Common",16 +"Chiffchaff, Iberian",12 +"Egret, Snowy",12 +"Flycatcher, Taiga",12 +Jackdaw,12 +"Kestrel, Lesser",12 +"Martin, Sand",12 +"Petrel, Fea's",12 +"Warbler, Blackpoll",12 +"Warbler, Hooded",12 +Bittern,1 +Bufflehead,1 +"Dowitcher, Short-billed",1 +"Harrier, Hen",1 +Moorhen,1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..86310dfaf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Max (Core Count)" +"Thrush, Hermit",336 +Dunlin,192 +"Scaup, Lesser",192 +"Gull, Yellow-legged",160 +"Shearwater, Balearic",144 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Fieldfare,96 +"Lark, Calandra",96 +Smew,72 +"White, Great",72 +Chaffinch,64 +"Tern, Caspian",64 +"Swift, Little",60 +"Warbler, Cetti's",56 +"Goose, Red-breasted",48 +"Warbler, Savi's",40 +Fulmar,32 +"Accentor, Alpine",24 +Blackbird,20 +Dotterel,20 +"Bluetail, Red-flanked",16 +"Yellowthroat, Common",16 +"Chiffchaff, Iberian",12 +"Egret, Snowy",12 +"Flycatcher, Taiga",12 +Jackdaw,12 +"Kestrel, Lesser",12 +"Martin, Sand",12 +"Petrel, Fea's",12 +"Warbler, Blackpoll",12 +"Warbler, Hooded",12 +Bittern,1 +Bufflehead,1 +"Dowitcher, Short-billed",1 +"Harrier, Hen",1 +Moorhen,1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f9ebe97923 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,12,0,0,12,0,0,0,0,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,12,0,0,12,1,0,0,0,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-24,0,0,0,0,0,0,0,0,0,12,0,0,12,1,0,0,0,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-25,0,0,0,0,0,0,0,0,0,24,0,0,12,1,0,0,0,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-26,0,0,0,0,0,0,0,0,0,24,0,0,12,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,144,0,0,0,96,32,0,72,64,16,0,0,0,0,8,0,0,0,16,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,1,0,0 +2016-12-28,0,0,192,0,144,0,0,0,96,32,0,72,64,16,0,0,0,0,8,0,0,20,16,0,0,0,1,0,12,0,12,12,8,0,1,0,0,1,1,0,0 +2016-12-29,0,0,192,160,144,112,0,96,96,32,72,72,64,64,0,56,0,40,8,0,0,20,16,0,2,0,12,12,12,5,12,12,8,0,1,0,1,1,1,0,0 +2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,0,20,20,16,16,12,0,12,12,12,5,12,12,12,1,1,1,1,1,1,1,1 +2016-12-31,336,192,192,0,20,112,0,96,96,96,72,72,64,64,60,1,48,40,8,24,0,0,16,0,2,12,12,12,12,12,1,0,12,1,1,1,1,1,0,1,1 +2017-01-01,0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..42ce9d8049 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" +2016-12,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1,1 +2017-01,0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..db9aad794b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1,1 +"2017 Q1",0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..630f396bc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" +2016,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1,1 +2017,0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..88243657d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Min (Core Count)" +"Gull, Yellow-legged",160 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Smew,72 +"Thrush, Hermit",48 +"White, Great",36 +"Scaup, Lesser",32 +Blackbird,20 +Dotterel,20 +"Accentor, Alpine",16 +"Warbler, Savi's",16 +"Yellowthroat, Common",16 +"Egret, Snowy",12 +"Kestrel, Lesser",12 +"Shearwater, Balearic",12 +"Warbler, Blackpoll",12 +Dunlin,8 +"Lark, Calandra",8 +"Warbler, Hooded",8 +"Martin, Sand",5 +"Swift, Little",5 +"Chiffchaff, Iberian",2 +Bittern,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +Chaffinch,1 +"Dowitcher, Short-billed",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Harrier, Hen",1 +Jackdaw,1 +Moorhen,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +"Tern, Caspian",1 +"Warbler, Cetti's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..88243657d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Min (Core Count)" +"Gull, Yellow-legged",160 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Smew,72 +"Thrush, Hermit",48 +"White, Great",36 +"Scaup, Lesser",32 +Blackbird,20 +Dotterel,20 +"Accentor, Alpine",16 +"Warbler, Savi's",16 +"Yellowthroat, Common",16 +"Egret, Snowy",12 +"Kestrel, Lesser",12 +"Shearwater, Balearic",12 +"Warbler, Blackpoll",12 +Dunlin,8 +"Lark, Calandra",8 +"Warbler, Hooded",8 +"Martin, Sand",5 +"Swift, Little",5 +"Chiffchaff, Iberian",2 +Bittern,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +Chaffinch,1 +"Dowitcher, Short-billed",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Harrier, Hen",1 +Jackdaw,1 +Moorhen,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +"Tern, Caspian",1 +"Warbler, Cetti's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..88243657d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Min (Core Count)" +"Gull, Yellow-legged",160 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Smew,72 +"Thrush, Hermit",48 +"White, Great",36 +"Scaup, Lesser",32 +Blackbird,20 +Dotterel,20 +"Accentor, Alpine",16 +"Warbler, Savi's",16 +"Yellowthroat, Common",16 +"Egret, Snowy",12 +"Kestrel, Lesser",12 +"Shearwater, Balearic",12 +"Warbler, Blackpoll",12 +Dunlin,8 +"Lark, Calandra",8 +"Warbler, Hooded",8 +"Martin, Sand",5 +"Swift, Little",5 +"Chiffchaff, Iberian",2 +Bittern,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +Chaffinch,1 +"Dowitcher, Short-billed",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Harrier, Hen",1 +Jackdaw,1 +Moorhen,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +"Tern, Caspian",1 +"Warbler, Cetti's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..88243657d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Min (Core Count)" +"Gull, Yellow-legged",160 +Nuthatch,112 +"Gull, Glaucous-winged",108 +"Bunting, Ortolan",96 +Smew,72 +"Thrush, Hermit",48 +"White, Great",36 +"Scaup, Lesser",32 +Blackbird,20 +Dotterel,20 +"Accentor, Alpine",16 +"Warbler, Savi's",16 +"Yellowthroat, Common",16 +"Egret, Snowy",12 +"Kestrel, Lesser",12 +"Shearwater, Balearic",12 +"Warbler, Blackpoll",12 +Dunlin,8 +"Lark, Calandra",8 +"Warbler, Hooded",8 +"Martin, Sand",5 +"Swift, Little",5 +"Chiffchaff, Iberian",2 +Bittern,1 +"Bluetail, Red-flanked",1 +Bufflehead,1 +Chaffinch,1 +"Dowitcher, Short-billed",1 +Fieldfare,1 +"Flycatcher, Taiga",1 +Fulmar,1 +"Goose, Red-breasted",1 +"Harrier, Hen",1 +Jackdaw,1 +Moorhen,1 +"Petrel, Fea's",1 +"Shearwater, Great",1 +"Shearwater, Macaronesian",1 +"Spotted, Great",1 +"Tern, Caspian",1 +"Warbler, Cetti's",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e97206aa0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,16,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-27,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,32,0,0,8,0,0,0,0,0,16,0,12,0,96,1,8,0,0,0,0,12,1,0,0,1,0 +2016-12-28,0,0,0,0,0,0,48,112,0,20,0,0,0,0,12,12,12,0,8,8,0,0,0,0,16,1,12,0,96,1,8,0,0,0,1,12,1,0,0,1,0 +2016-12-29,160,112,0,96,72,0,48,112,0,20,0,40,0,0,12,12,12,0,8,8,5,0,2,0,16,1,12,0,1,1,1,0,1,4,1,12,1,0,0,1,56 +2016-12-30,160,112,108,96,72,48,48,32,20,20,0,16,16,0,12,12,12,8,8,8,5,5,2,1,16,1,12,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,0,112,0,96,72,336,36,64,0,0,16,40,0,12,12,12,0,12,8,8,8,5,2,1,1,1,8,1,1,1,8,12,1,1,1,1,0,1,1,1,1 +2017-01-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..10b6971082 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" +2016-12,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6020f1c54e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" +"2016 Q4",160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d5b1590fd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" +2016,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..4554f84b36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv @@ -0,0 +1,50 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters + +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 +"Tern, Caspian",0.052948886 +"Flycatcher, Taiga",0.047068235 +"Petrel, Fea's",0.043333333 +"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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..4554f84b36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv @@ -0,0 +1,50 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters + +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 +"Tern, Caspian",0.052948886 +"Flycatcher, Taiga",0.047068235 +"Petrel, Fea's",0.043333333 +"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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5b29d9d5c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters + +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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5b29d9d5c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters + +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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5b29d9d5c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters + +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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5b29d9d5c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters + +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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv new file mode 100644 index 0000000000..a1d0049831 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..a1d0049831 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bb80fe4441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] 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.025000000,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.300000000,0,0,0,0,0,0.300000000,0.025000000,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.300000000,0,0,0,0,0,0.450000000,0.025000000,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.400000000,0.300000000,0,0,0,0,0,0.450000000,0.025000000,0,0,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.168750000,0.025000000,0.300000000,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.168750000,0.025000000,0.300000000,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.078472222,0.058544922,0.300000000,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.035292793,0.045443743,0.043333333,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.207500000,0.049394653,0.025000000,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.212500000,0.045675831,0,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv new file mode 100644 index 0000000000..a1d0049831 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8b11ff2b1a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..025a28c0a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60f78f7194 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by PI" +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)","[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/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4731c2fcf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Running" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4731c2fcf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Running" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4731c2fcf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Running" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4731c2fcf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Running" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..74f76d749d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" +2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1,14,0,0,0,6,0,0,0,0,3,0,0,5,0,0,5,3,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-28,1,20,0,190,0,6,0,147,0,0,12,0,0,10,0,0,16,15,5,2,9,0,2,0,1,0,9,0,0,0,0,0,0,0,3,0,0,1,0,1,0 +2016-12-29,256,54,1,960,0,24,0,235,0,0,25,1,0,62,0,11,20,23,16,2,9,5,4,3,1,0,9,1,0,0,4,7,0,0,3,1,1,1,0,1,0 +2016-12-30,19313,3859,1700,1635,719,740,0,252,90,68,96,4,28,68,20,65,20,28,24,2,13,20,7,8,15,14,11,1,4,0,8,7,3,3,3,1,2,1,1,1,1 +2016-12-31,22516,2740,933,1637,999,30,16,255,10,24,83,98,28,12,26,27,48,24,22,6,13,1,12,7,4,0,1,7,6,9,4,1,2,1,0,0,1,0,0,0,0 +2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cc1a3f12e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" +2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 +2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2216e5dfbb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" +"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 +"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..632873edd8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" +2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 +2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5cb4bb7075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Started" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5cb4bb7075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Started" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5cb4bb7075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Started" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5cb4bb7075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Started" +"Flycatcher, Taiga",55001 +"Lark, Calandra",6944 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",756 +Bufflehead,308 +Dunlin,239 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Gull, Yellow-legged",2 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2037232cca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" +2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,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-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,0,0 +2016-12-25,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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-27,1,10,0,0,0,5,0,0,0,0,3,0,0,5,0,0,0,3,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016-12-28,0,6,0,190,0,0,0,147,0,0,9,0,0,5,0,0,11,12,5,0,9,0,1,0,0,0,9,0,0,0,0,0,0,0,3,0,0,1,0,0,0 +2016-12-29,255,34,1,770,0,18,0,88,0,0,13,1,0,52,0,11,4,8,11,0,0,5,2,3,0,0,0,1,0,0,4,7,0,0,0,1,1,0,0,0,0 +2016-12-30,19057,3805,1699,675,719,716,0,17,90,68,71,3,28,6,20,54,0,5,8,0,4,15,3,5,14,14,2,0,4,0,4,0,3,3,0,0,1,0,1,0,1 +2016-12-31,22247,2704,933,790,281,22,16,37,10,24,50,97,28,4,26,1,33,4,5,4,4,0,8,4,0,0,0,7,6,9,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d22e29878e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" +2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 +2017-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7cf458b486 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" +"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 +"2017 Q1",13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6e19f5ccd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" +2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 +2017,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dcdb976ad5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Submitted" +"Flycatcher, Taiga",49664 +"Lark, Calandra",6927 +"Warbler, Cetti's",2633 +Moorhen,2586 +"Shearwater, Macaronesian",719 +"Egret, Snowy",693 +Bufflehead,308 +Bittern,154 +Dunlin,123 +"Dowitcher, Short-billed",84 +"Goose, Red-breasted",69 +Fulmar,55 +"Bluetail, Red-flanked",49 +"Tern, Caspian",47 +"Warbler, Hooded",37 +Chaffinch,31 +Jackdaw,31 +"Scaup, Lesser",25 +Fieldfare,22 +"Harrier, Hen",20 +"Bunting, Ortolan",16 +Blackbird,14 +"Petrel, Fea's",14 +"White, Great",14 +"Shearwater, Balearic",13 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Warbler, Blackpoll",3 +"Chiffchaff, Iberian",1 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Shearwater, Great",1 +"Warbler, Savi's",1 +"Yellowthroat, Common",1 +"Gull, Yellow-legged",0 +"Thrush, Hermit",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..79a9351968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Submitted" +"Flycatcher, Taiga",53071 +"Lark, Calandra",6943 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",693 +Bufflehead,308 +Dunlin,164 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..79a9351968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Submitted" +"Flycatcher, Taiga",53071 +"Lark, Calandra",6943 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",693 +Bufflehead,308 +Dunlin,164 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..79a9351968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Number of Jobs Submitted" +"Flycatcher, Taiga",53071 +"Lark, Calandra",6943 +"Warbler, Cetti's",2633 +Moorhen,2629 +"Shearwater, Macaronesian",1000 +"Tern, Caspian",763 +"Egret, Snowy",693 +Bufflehead,308 +Dunlin,164 +Bittern,154 +"Shearwater, Balearic",146 +"Chiffchaff, Iberian",101 +"Dowitcher, Short-billed",84 +Fulmar,72 +"Goose, Red-breasted",69 +Jackdaw,66 +"Bluetail, Red-flanked",53 +Fieldfare,44 +"Warbler, Hooded",37 +Chaffinch,31 +"Scaup, Lesser",25 +"Harrier, Hen",20 +"White, Great",20 +"Bunting, Ortolan",16 +"Petrel, Fea's",15 +Blackbird,14 +"Kestrel, Lesser",11 +"Martin, Sand",10 +"Spotted, Great",10 +"Accentor, Alpine",9 +Nuthatch,8 +Smew,7 +"Swift, Little",4 +"Thrush, Hermit",3 +"Warbler, Blackpoll",3 +"Warbler, Savi's",2 +Dotterel,1 +"Gull, Glaucous-winged",1 +"Gull, Yellow-legged",1 +"Shearwater, Great",1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3d01428008 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,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,1,0,0,0,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-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,0,0 +2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +2016-12-28,0,4,0,190,0,0,147,0,0,0,0,0,11,0,5,0,0,9,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 +2016-12-29,205,32,1,770,0,0,88,0,0,0,0,50,0,4,11,0,11,0,1,5,3,0,0,1,10,0,1,0,0,4,7,0,0,1,0,0,0,1,0,0,0 +2016-12-30,18462,3801,1699,675,719,0,17,68,50,28,20,5,0,15,8,0,19,4,5,15,5,14,14,1,1,2,0,4,0,4,0,3,0,0,0,1,0,0,1,0,0 +2016-12-31,19485,2699,933,747,0,16,37,24,9,28,26,0,33,21,5,4,1,4,4,0,4,0,0,7,2,0,7,6,9,0,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,11511,380,0,204,0,677,19,62,64,28,23,0,0,1,8,25,0,8,12,0,4,0,0,5,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..393d97df8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted" +2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,2,1,1,1,1,1 +2017-01,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9bd6093b42 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted" +"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,2,1,1,1,1,1 +"2017 Q1",11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e24af7e8f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted" +2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,2,1,1,1,1,1 +2017,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f1b003775c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Total" +"Flycatcher, Taiga",160661.1219 +Fieldfare,147374.4353 +"Scaup, Lesser",119274.1289 +"Lark, Calandra",69231.4289 +Moorhen,67004.1206 +"Bluetail, Red-flanked",34825.7219 +"Shearwater, Balearic",33446.5633 +"White, Great",21995.7300 +"Bunting, Ortolan",19473.8133 +"Egret, Snowy",19117.7667 +Smew,18391.0000 +Bufflehead,15354.0758 +Nuthatch,14141.1200 +"Tern, Caspian",13804.8528 +"Thrush, Hermit",13105.9733 +Jackdaw,12416.7611 +Chaffinch,10880.2728 +Fulmar,8707.0903 +"Shearwater, Macaronesian",8590.5158 +"Warbler, Hooded",7367.1656 +"Accentor, Alpine",5262.3156 +"Kestrel, Lesser",5198.0500 +"Chiffchaff, Iberian",2039.1683 +"Warbler, Savi's",2013.9756 +"Warbler, Blackpoll",1588.9133 +Dunlin,1518.1478 +"Goose, Red-breasted",1446.9428 +"Gull, Yellow-legged",1444.4889 +"Warbler, Cetti's",1183.6917 +"Petrel, Fea's",1021.5447 +Dotterel,960.1333 +"Martin, Sand",622.6494 +"Swift, Little",590.3347 +Bittern,135.7597 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Spotted, Great",59.8692 +"Gull, Glaucous-winged",28.1400 +Blackbird,22.5389 +"Yellowthroat, Common",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f1b003775c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Total" +"Flycatcher, Taiga",160661.1219 +Fieldfare,147374.4353 +"Scaup, Lesser",119274.1289 +"Lark, Calandra",69231.4289 +Moorhen,67004.1206 +"Bluetail, Red-flanked",34825.7219 +"Shearwater, Balearic",33446.5633 +"White, Great",21995.7300 +"Bunting, Ortolan",19473.8133 +"Egret, Snowy",19117.7667 +Smew,18391.0000 +Bufflehead,15354.0758 +Nuthatch,14141.1200 +"Tern, Caspian",13804.8528 +"Thrush, Hermit",13105.9733 +Jackdaw,12416.7611 +Chaffinch,10880.2728 +Fulmar,8707.0903 +"Shearwater, Macaronesian",8590.5158 +"Warbler, Hooded",7367.1656 +"Accentor, Alpine",5262.3156 +"Kestrel, Lesser",5198.0500 +"Chiffchaff, Iberian",2039.1683 +"Warbler, Savi's",2013.9756 +"Warbler, Blackpoll",1588.9133 +Dunlin,1518.1478 +"Goose, Red-breasted",1446.9428 +"Gull, Yellow-legged",1444.4889 +"Warbler, Cetti's",1183.6917 +"Petrel, Fea's",1021.5447 +Dotterel,960.1333 +"Martin, Sand",622.6494 +"Swift, Little",590.3347 +Bittern,135.7597 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Spotted, Great",59.8692 +"Gull, Glaucous-winged",28.1400 +Blackbird,22.5389 +"Yellowthroat, Common",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f1b003775c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Total" +"Flycatcher, Taiga",160661.1219 +Fieldfare,147374.4353 +"Scaup, Lesser",119274.1289 +"Lark, Calandra",69231.4289 +Moorhen,67004.1206 +"Bluetail, Red-flanked",34825.7219 +"Shearwater, Balearic",33446.5633 +"White, Great",21995.7300 +"Bunting, Ortolan",19473.8133 +"Egret, Snowy",19117.7667 +Smew,18391.0000 +Bufflehead,15354.0758 +Nuthatch,14141.1200 +"Tern, Caspian",13804.8528 +"Thrush, Hermit",13105.9733 +Jackdaw,12416.7611 +Chaffinch,10880.2728 +Fulmar,8707.0903 +"Shearwater, Macaronesian",8590.5158 +"Warbler, Hooded",7367.1656 +"Accentor, Alpine",5262.3156 +"Kestrel, Lesser",5198.0500 +"Chiffchaff, Iberian",2039.1683 +"Warbler, Savi's",2013.9756 +"Warbler, Blackpoll",1588.9133 +Dunlin,1518.1478 +"Goose, Red-breasted",1446.9428 +"Gull, Yellow-legged",1444.4889 +"Warbler, Cetti's",1183.6917 +"Petrel, Fea's",1021.5447 +Dotterel,960.1333 +"Martin, Sand",622.6494 +"Swift, Little",590.3347 +Bittern,135.7597 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Spotted, Great",59.8692 +"Gull, Glaucous-winged",28.1400 +Blackbird,22.5389 +"Yellowthroat, Common",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f1b003775c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Total" +"Flycatcher, Taiga",160661.1219 +Fieldfare,147374.4353 +"Scaup, Lesser",119274.1289 +"Lark, Calandra",69231.4289 +Moorhen,67004.1206 +"Bluetail, Red-flanked",34825.7219 +"Shearwater, Balearic",33446.5633 +"White, Great",21995.7300 +"Bunting, Ortolan",19473.8133 +"Egret, Snowy",19117.7667 +Smew,18391.0000 +Bufflehead,15354.0758 +Nuthatch,14141.1200 +"Tern, Caspian",13804.8528 +"Thrush, Hermit",13105.9733 +Jackdaw,12416.7611 +Chaffinch,10880.2728 +Fulmar,8707.0903 +"Shearwater, Macaronesian",8590.5158 +"Warbler, Hooded",7367.1656 +"Accentor, Alpine",5262.3156 +"Kestrel, Lesser",5198.0500 +"Chiffchaff, Iberian",2039.1683 +"Warbler, Savi's",2013.9756 +"Warbler, Blackpoll",1588.9133 +Dunlin,1518.1478 +"Goose, Red-breasted",1446.9428 +"Gull, Yellow-legged",1444.4889 +"Warbler, Cetti's",1183.6917 +"Petrel, Fea's",1021.5447 +Dotterel,960.1333 +"Martin, Sand",622.6494 +"Swift, Little",590.3347 +Bittern,135.7597 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Spotted, Great",59.8692 +"Gull, Glaucous-winged",28.1400 +Blackbird,22.5389 +"Yellowthroat, Common",1.0400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ea76832671 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" +2016-12-22,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,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,288.0000,0,0,0,0,0,0,0,0,0,8.6036,0,0,288.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-24,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.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-25,0,0,0,466.2700,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.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-26,0,0,0,1728.0000,0,216.3333,0,0,0,0,0,0,0,24.0000,0,0,288.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-27,3.2167,3739.4133,0,2293.7600,0,1920.0000,4298.8089,1487.8200,0,0,0,0,0,476.7422,0,0,531.1822,558.6133,0,0,0,0,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,4.7214,0,0,0,0 +2016-12-28,24.0000,21931.9200,29467.4711,9954.8311,953.0369,2310.7378,6587.9644,2341.3467,0,0,0,1962.8444,0,1944.0000,0,0,1824.0000,1411.0667,0,351.5933,0,336.4567,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,24.0000,0,0,0,0 +2016-12-29,1793.4019,49556.3222,39552.0000,15738.2700,12583.2597,7644.0844,12041.5822,4466.4000,1834.4800,0,5821.2600,3901.6422,1643.9111,2568.7161,0,516.0911,1824.0000,2203.9531,0,1349.9467,0,2592.0000,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,10.0983,0,24.0000,0,0,0,0 +2016-12-30,62498.5789,46993.5803,39578.0711,16799.6656,21766.1511,6055.3111,7951.5333,4841.8833,6126.0000,0,10979.2200,5473.3125,9211.3156,5521.6442,7404.4267,6971.0514,1824.0000,2108.7128,3055.8617,2630.7078,0,1921.0433,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1061.9836,198.9664,386.1222,68.0319,65.9958,108.1047,82.1119,27.2308,19.2856,13.9453,28.1400,22.5389,1.0400 +2016-12-31,87876.5508,22254.2050,10619.6356,14731.3744,20518.0064,11780.8131,2566.6744,5674.2567,6839.5200,37.7500,1590.5200,2761.8142,3285.8933,2841.5344,5701.5467,4629.6697,1827.6067,1437.7244,5534.6542,2071.8422,3473.9867,288.0000,1428.0200,294.9778,0,125.4733,914.2433,0,13.7992,7.7117,0,491.1800,502.9333,25.9131,8.6314,27.2439,0,45.9239,0,0,0 +2017-01-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..543e3c423f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" +2016-12,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29927.2797,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,72.0069,59.8692,28.1400,22.5389,1.0400 +2017-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..69dcb5c4c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" +"2016 Q4",152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29927.2797,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,72.0069,59.8692,28.1400,22.5389,1.0400 +"2017 Q1",8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bc16870a39 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" +2016,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29927.2797,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,72.0069,59.8692,28.1400,22.5389,1.0400 +2017,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..80ae6f827e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 +2016-12-28,48.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 +2016-12-29,48.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ca06d97ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e369e84cf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ae7b0c790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1955f6ed5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +Fieldfare,12343.6392 +"Shearwater, Macaronesian",8590.5158 +"Scaup, Lesser",7492.8064 +"Lark, Calandra",5412.7517 +"Bluetail, Red-flanked",2773.5564 +"Shearwater, Balearic",2367.6417 +"White, Great",1973.0481 +"Bunting, Ortolan",1622.8178 +"Egret, Snowy",1593.1472 +Smew,1532.5833 +Fulmar,1526.7692 +"Tern, Caspian",1376.1239 +Chaffinch,1233.9042 +Jackdaw,1140.0328 +"Thrush, Hermit",1092.1644 +"Warbler, Hooded",896.5864 +Nuthatch,883.8200 +"Chiffchaff, Iberian",802.6467 +"Accentor, Alpine",458.9083 +"Kestrel, Lesser",433.1708 +"Warbler, Cetti's",336.9017 +"Petrel, Fea's",251.4806 +"Gull, Yellow-legged",180.5611 +Dunlin,150.5339 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +"Goose, Red-breasted",120.6086 +"Harrier, Hen",100.8417 +"Warbler, Savi's",100.6989 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Swift, Little",54.6022 +Dotterel,48.0067 +"Gull, Glaucous-winged",2.3450 +Blackbird,1.1269 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1955f6ed5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +Fieldfare,12343.6392 +"Shearwater, Macaronesian",8590.5158 +"Scaup, Lesser",7492.8064 +"Lark, Calandra",5412.7517 +"Bluetail, Red-flanked",2773.5564 +"Shearwater, Balearic",2367.6417 +"White, Great",1973.0481 +"Bunting, Ortolan",1622.8178 +"Egret, Snowy",1593.1472 +Smew,1532.5833 +Fulmar,1526.7692 +"Tern, Caspian",1376.1239 +Chaffinch,1233.9042 +Jackdaw,1140.0328 +"Thrush, Hermit",1092.1644 +"Warbler, Hooded",896.5864 +Nuthatch,883.8200 +"Chiffchaff, Iberian",802.6467 +"Accentor, Alpine",458.9083 +"Kestrel, Lesser",433.1708 +"Warbler, Cetti's",336.9017 +"Petrel, Fea's",251.4806 +"Gull, Yellow-legged",180.5611 +Dunlin,150.5339 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +"Goose, Red-breasted",120.6086 +"Harrier, Hen",100.8417 +"Warbler, Savi's",100.6989 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Swift, Little",54.6022 +Dotterel,48.0067 +"Gull, Glaucous-winged",2.3450 +Blackbird,1.1269 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1955f6ed5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +Fieldfare,12343.6392 +"Shearwater, Macaronesian",8590.5158 +"Scaup, Lesser",7492.8064 +"Lark, Calandra",5412.7517 +"Bluetail, Red-flanked",2773.5564 +"Shearwater, Balearic",2367.6417 +"White, Great",1973.0481 +"Bunting, Ortolan",1622.8178 +"Egret, Snowy",1593.1472 +Smew,1532.5833 +Fulmar,1526.7692 +"Tern, Caspian",1376.1239 +Chaffinch,1233.9042 +Jackdaw,1140.0328 +"Thrush, Hermit",1092.1644 +"Warbler, Hooded",896.5864 +Nuthatch,883.8200 +"Chiffchaff, Iberian",802.6467 +"Accentor, Alpine",458.9083 +"Kestrel, Lesser",433.1708 +"Warbler, Cetti's",336.9017 +"Petrel, Fea's",251.4806 +"Gull, Yellow-legged",180.5611 +Dunlin,150.5339 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +"Goose, Red-breasted",120.6086 +"Harrier, Hen",100.8417 +"Warbler, Savi's",100.6989 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Swift, Little",54.6022 +Dotterel,48.0067 +"Gull, Glaucous-winged",2.3450 +Blackbird,1.1269 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1955f6ed5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +Fieldfare,12343.6392 +"Shearwater, Macaronesian",8590.5158 +"Scaup, Lesser",7492.8064 +"Lark, Calandra",5412.7517 +"Bluetail, Red-flanked",2773.5564 +"Shearwater, Balearic",2367.6417 +"White, Great",1973.0481 +"Bunting, Ortolan",1622.8178 +"Egret, Snowy",1593.1472 +Smew,1532.5833 +Fulmar,1526.7692 +"Tern, Caspian",1376.1239 +Chaffinch,1233.9042 +Jackdaw,1140.0328 +"Thrush, Hermit",1092.1644 +"Warbler, Hooded",896.5864 +Nuthatch,883.8200 +"Chiffchaff, Iberian",802.6467 +"Accentor, Alpine",458.9083 +"Kestrel, Lesser",433.1708 +"Warbler, Cetti's",336.9017 +"Petrel, Fea's",251.4806 +"Gull, Yellow-legged",180.5611 +Dunlin,150.5339 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +"Goose, Red-breasted",120.6086 +"Harrier, Hen",100.8417 +"Warbler, Savi's",100.6989 +"Dowitcher, Short-billed",81.6261 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Swift, Little",54.6022 +Dotterel,48.0067 +"Gull, Glaucous-winged",2.3450 +Blackbird,1.1269 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0ff6d7828e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" +2016-12-22,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,16.7464,0,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,24.0000,0,0,0,0,0,0,0,8.6036,24.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,0 +2016-12-24,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,24.0000,24.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,0 +2016-12-25,0,0,0,0,0,0,32.5078,0,0,0,0,0,0,0,24.0000,24.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,0 +2016-12-26,0,0,0,0,0,0,96.0000,13.5208,0,0,0,0,0,0,24.0000,24.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,0 +2016-12-27,0,3.2167,0,311.6178,0,0,115.3094,120.0000,331.1156,123.9850,0,0,0,69.8267,52.2964,54.3978,0,0,0,0,0,0,0,0,19.9056,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,461.3931,144.4211,502.6856,220.6683,0,0,0,176.3833,144.0000,216.0000,0,0,43.9492,0,0,0,28.0381,0,24.0000,0,0,0,15.1192,0,0,0,0,24.0000,0,0,0,4.7006,0,0,0 +2016-12-29,12583.2597,301.8189,3901.6422,4150.0822,0,2472.0000,933.4136,477.7553,848.2247,420.2000,152.8733,0,485.1050,479.3708,208.6497,216.0000,47.7900,0,168.7433,102.7444,3.6200,0,216.0000,26.9772,24.0000,129.7778,0,0,72.0000,0,10.0983,37.9494,0,24.0000,10.4008,0,0,24.0000,0,0,0 +2016-12-30,21766.1511,6638.2006,5473.3125,3949.6347,3055.8617,2475.2589,1433.8564,378.4569,521.4136,451.4903,510.5000,0,914.9350,498.0953,664.9178,216.0000,629.4331,617.0356,321.9956,575.7072,67.3875,0,160.0869,296.1253,175.8633,50.3500,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,27.2308,19.2856,13.6064,13.9453,7.5778,19.3061,2.3450,1.1269,0.0650 +2016-12-31,20518.0064,8599.9281,2761.8142,1871.4597,5534.6542,696.7117,1625.9722,1112.6033,164.2022,491.3692,569.9600,3.1458,132.5433,179.7156,202.4067,216.4508,430.1536,475.1289,241.5139,205.3683,714.0100,299.0033,24.0000,13.7992,7.7117,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,27.2439,0,45.3169,45.9239,42.7433,0,0,0,0 +2017-01-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7c27d60e9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" +2016-12,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2246.7575,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,72.0069,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 +2017-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2a507195cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" +"2016 Q4",55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2246.7575,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,72.0069,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 +"2017 Q1",11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..de3e92b9db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" +2016,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2246.7575,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,72.0069,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 +2017,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bedc0ad261 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Total" +"Tern, Caspian",163477.1903 +"Flycatcher, Taiga",112939.7331 +Fulmar,5136.8678 +"Shearwater, Balearic",5128.4506 +"Egret, Snowy",4056.0075 +"Shearwater, Macaronesian",3927.5247 +Dunlin,3030.4719 +"Chiffchaff, Iberian",2704.6794 +Fieldfare,1959.9481 +"Warbler, Cetti's",1953.8047 +Moorhen,544.5967 +"Lark, Calandra",443.1597 +Jackdaw,321.4447 +"White, Great",184.2997 +"Petrel, Fea's",122.8625 +"Warbler, Savi's",105.4822 +"Gull, Yellow-legged",62.0436 +"Kestrel, Lesser",48.5308 +"Bluetail, Red-flanked",36.5339 +"Bunting, Ortolan",30.1542 +"Goose, Red-breasted",20.6675 +"Thrush, Hermit",20.0331 +"Accentor, Alpine",19.3700 +Bufflehead,17.6803 +Smew,13.9250 +Bittern,12.6592 +"Warbler, Blackpoll",11.1744 +"Warbler, Hooded",7.7419 +"Harrier, Hen",6.4781 +Chaffinch,1.2361 +"Martin, Sand",0.1747 +"Swift, Little",0.1614 +"Spotted, Great",0.1408 +"Gull, Glaucous-winged",0.0978 +Blackbird,0.0147 +"Dowitcher, Short-billed",0.0106 +Nuthatch,0.0047 +"Scaup, Lesser",0.0042 +Dotterel,0.0003 +"Shearwater, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bedc0ad261 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Total" +"Tern, Caspian",163477.1903 +"Flycatcher, Taiga",112939.7331 +Fulmar,5136.8678 +"Shearwater, Balearic",5128.4506 +"Egret, Snowy",4056.0075 +"Shearwater, Macaronesian",3927.5247 +Dunlin,3030.4719 +"Chiffchaff, Iberian",2704.6794 +Fieldfare,1959.9481 +"Warbler, Cetti's",1953.8047 +Moorhen,544.5967 +"Lark, Calandra",443.1597 +Jackdaw,321.4447 +"White, Great",184.2997 +"Petrel, Fea's",122.8625 +"Warbler, Savi's",105.4822 +"Gull, Yellow-legged",62.0436 +"Kestrel, Lesser",48.5308 +"Bluetail, Red-flanked",36.5339 +"Bunting, Ortolan",30.1542 +"Goose, Red-breasted",20.6675 +"Thrush, Hermit",20.0331 +"Accentor, Alpine",19.3700 +Bufflehead,17.6803 +Smew,13.9250 +Bittern,12.6592 +"Warbler, Blackpoll",11.1744 +"Warbler, Hooded",7.7419 +"Harrier, Hen",6.4781 +Chaffinch,1.2361 +"Martin, Sand",0.1747 +"Swift, Little",0.1614 +"Spotted, Great",0.1408 +"Gull, Glaucous-winged",0.0978 +Blackbird,0.0147 +"Dowitcher, Short-billed",0.0106 +Nuthatch,0.0047 +"Scaup, Lesser",0.0042 +Dotterel,0.0003 +"Shearwater, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bedc0ad261 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Total" +"Tern, Caspian",163477.1903 +"Flycatcher, Taiga",112939.7331 +Fulmar,5136.8678 +"Shearwater, Balearic",5128.4506 +"Egret, Snowy",4056.0075 +"Shearwater, Macaronesian",3927.5247 +Dunlin,3030.4719 +"Chiffchaff, Iberian",2704.6794 +Fieldfare,1959.9481 +"Warbler, Cetti's",1953.8047 +Moorhen,544.5967 +"Lark, Calandra",443.1597 +Jackdaw,321.4447 +"White, Great",184.2997 +"Petrel, Fea's",122.8625 +"Warbler, Savi's",105.4822 +"Gull, Yellow-legged",62.0436 +"Kestrel, Lesser",48.5308 +"Bluetail, Red-flanked",36.5339 +"Bunting, Ortolan",30.1542 +"Goose, Red-breasted",20.6675 +"Thrush, Hermit",20.0331 +"Accentor, Alpine",19.3700 +Bufflehead,17.6803 +Smew,13.9250 +Bittern,12.6592 +"Warbler, Blackpoll",11.1744 +"Warbler, Hooded",7.7419 +"Harrier, Hen",6.4781 +Chaffinch,1.2361 +"Martin, Sand",0.1747 +"Swift, Little",0.1614 +"Spotted, Great",0.1408 +"Gull, Glaucous-winged",0.0978 +Blackbird,0.0147 +"Dowitcher, Short-billed",0.0106 +Nuthatch,0.0047 +"Scaup, Lesser",0.0042 +Dotterel,0.0003 +"Shearwater, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bedc0ad261 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wait Hours: Total" +"Tern, Caspian",163477.1903 +"Flycatcher, Taiga",112939.7331 +Fulmar,5136.8678 +"Shearwater, Balearic",5128.4506 +"Egret, Snowy",4056.0075 +"Shearwater, Macaronesian",3927.5247 +Dunlin,3030.4719 +"Chiffchaff, Iberian",2704.6794 +Fieldfare,1959.9481 +"Warbler, Cetti's",1953.8047 +Moorhen,544.5967 +"Lark, Calandra",443.1597 +Jackdaw,321.4447 +"White, Great",184.2997 +"Petrel, Fea's",122.8625 +"Warbler, Savi's",105.4822 +"Gull, Yellow-legged",62.0436 +"Kestrel, Lesser",48.5308 +"Bluetail, Red-flanked",36.5339 +"Bunting, Ortolan",30.1542 +"Goose, Red-breasted",20.6675 +"Thrush, Hermit",20.0331 +"Accentor, Alpine",19.3700 +Bufflehead,17.6803 +Smew,13.9250 +Bittern,12.6592 +"Warbler, Blackpoll",11.1744 +"Warbler, Hooded",7.7419 +"Harrier, Hen",6.4781 +Chaffinch,1.2361 +"Martin, Sand",0.1747 +"Swift, Little",0.1614 +"Spotted, Great",0.1408 +"Gull, Glaucous-winged",0.0978 +Blackbird,0.0147 +"Dowitcher, Short-billed",0.0106 +Nuthatch,0.0047 +"Scaup, Lesser",0.0042 +Dotterel,0.0003 +"Shearwater, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b77a145a84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,9.5964,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,0,0,0,0,0,0,0,110.8856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0033,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0.0028,0.0000,1367.4053,172.7719,0,0,0,0,311.1344,0,0,0.0289,0,76.0861,50.8225,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0 +2016-12-28,0.0000,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,42.4475,0,36.8761,0.0000,0,0,47.7519,18.4800,0,0,0,0,10.5775,0,0,11.1744,2.3317,0,0.0000,0,0,0,0,0,0,0,0.0017,0.0003,0.0000,0 +2016-12-29,2704.7964,1973.6497,627.0644,288.5578,0,0,0,0.0044,334.2367,0.7922,32.6300,45.4447,9.5847,11.7164,0.0000,0.0017,25.7286,0.0000,17.8439,10.4372,0,0,0,3.9286,13.9250,0,0.0000,1.4369,0.0894,0.0000,0.0000,0,0,0,0,0,0.0025,0.0000,0.0000,0.0000,0 +2016-12-30,160667.2464,26578.5867,331.7789,2269.2967,0,1857.6733,1170.3947,54.0756,0.0111,1436.2097,221.0947,98.0058,311.8600,44.7175,72.0400,105.4806,0.0000,0.7789,0.0000,7.3803,11.9272,20.0331,0,2.2686,0.0000,12.1381,0.0000,2.5139,6.3886,0.0000,0.0000,0.1611,0.0575,0.0978,0.0147,0.0028,0.0022,0.0008,0.0000,0.0000,0.0000 +2016-12-31,95.5417,64555.5128,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0031,516.8028,277.8381,100.6983,0.0000,7.6042,0.0000,0.0000,0,0.0000,0.2067,0.3128,8.7356,0.0000,19.3700,0.5711,0.0000,0.5147,0,1.3047,0.0000,0.0011,0.1747,0.0000,0.0833,0,0,0.0031,0.0000,0.0006,0,0,0 +2017-01-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..553876a783 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" +2016-12,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000,0.0000 +2017-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1fe9eb6188 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" +"2016 Q4",163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000,0.0000 +"2017 Q1",0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6752fb069a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" +2016,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000,0.0000 +2017,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d7d78f8c8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +"Shearwater, Macaronesian",8590.5158 +"Lark, Calandra",3832.1586 +"Bluetail, Red-flanked",2773.5564 +Fieldfare,1663.0800 +"Egret, Snowy",1593.1472 +Fulmar,1526.7414 +"Tern, Caspian",1230.7931 +"Shearwater, Balearic",1145.5708 +Jackdaw,1140.0328 +"Warbler, Hooded",896.5864 +"Chiffchaff, Iberian",802.6467 +"Scaup, Lesser",658.6011 +"Kestrel, Lesser",433.1708 +Chaffinch,393.6403 +"White, Great",371.0986 +Smew,255.4306 +"Petrel, Fea's",251.4806 +"Accentor, Alpine",229.4542 +"Bunting, Ortolan",202.8522 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +Nuthatch,126.2600 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Warbler, Cetti's",74.8000 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Goose, Red-breasted",56.2867 +"Warbler, Savi's",50.3497 +Dotterel,48.0067 +"Thrush, Hermit",46.3125 +Dunlin,45.2333 +"Swift, Little",18.3367 +"Gull, Yellow-legged",9.0281 +Blackbird,1.1269 +"Gull, Glaucous-winged",0.2606 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d7d78f8c8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +"Shearwater, Macaronesian",8590.5158 +"Lark, Calandra",3832.1586 +"Bluetail, Red-flanked",2773.5564 +Fieldfare,1663.0800 +"Egret, Snowy",1593.1472 +Fulmar,1526.7414 +"Tern, Caspian",1230.7931 +"Shearwater, Balearic",1145.5708 +Jackdaw,1140.0328 +"Warbler, Hooded",896.5864 +"Chiffchaff, Iberian",802.6467 +"Scaup, Lesser",658.6011 +"Kestrel, Lesser",433.1708 +Chaffinch,393.6403 +"White, Great",371.0986 +Smew,255.4306 +"Petrel, Fea's",251.4806 +"Accentor, Alpine",229.4542 +"Bunting, Ortolan",202.8522 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +Nuthatch,126.2600 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Warbler, Cetti's",74.8000 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Goose, Red-breasted",56.2867 +"Warbler, Savi's",50.3497 +Dotterel,48.0067 +"Thrush, Hermit",46.3125 +Dunlin,45.2333 +"Swift, Little",18.3367 +"Gull, Yellow-legged",9.0281 +Blackbird,1.1269 +"Gull, Glaucous-winged",0.2606 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d7d78f8c8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +"Shearwater, Macaronesian",8590.5158 +"Lark, Calandra",3832.1586 +"Bluetail, Red-flanked",2773.5564 +Fieldfare,1663.0800 +"Egret, Snowy",1593.1472 +Fulmar,1526.7414 +"Tern, Caspian",1230.7931 +"Shearwater, Balearic",1145.5708 +Jackdaw,1140.0328 +"Warbler, Hooded",896.5864 +"Chiffchaff, Iberian",802.6467 +"Scaup, Lesser",658.6011 +"Kestrel, Lesser",433.1708 +Chaffinch,393.6403 +"White, Great",371.0986 +Smew,255.4306 +"Petrel, Fea's",251.4806 +"Accentor, Alpine",229.4542 +"Bunting, Ortolan",202.8522 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +Nuthatch,126.2600 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Warbler, Cetti's",74.8000 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Goose, Red-breasted",56.2867 +"Warbler, Savi's",50.3497 +Dotterel,48.0067 +"Thrush, Hermit",46.3125 +Dunlin,45.2333 +"Swift, Little",18.3367 +"Gull, Yellow-legged",9.0281 +Blackbird,1.1269 +"Gull, Glaucous-winged",0.2606 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d7d78f8c8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Wall Hours: Total" +Moorhen,67004.1206 +"Flycatcher, Taiga",16499.1964 +Bufflehead,15354.0758 +"Shearwater, Macaronesian",8590.5158 +"Lark, Calandra",3832.1586 +"Bluetail, Red-flanked",2773.5564 +Fieldfare,1663.0800 +"Egret, Snowy",1593.1472 +Fulmar,1526.7414 +"Tern, Caspian",1230.7931 +"Shearwater, Balearic",1145.5708 +Jackdaw,1140.0328 +"Warbler, Hooded",896.5864 +"Chiffchaff, Iberian",802.6467 +"Scaup, Lesser",658.6011 +"Kestrel, Lesser",433.1708 +Chaffinch,393.6403 +"White, Great",371.0986 +Smew,255.4306 +"Petrel, Fea's",251.4806 +"Accentor, Alpine",229.4542 +"Bunting, Ortolan",202.8522 +Bittern,135.7597 +"Warbler, Blackpoll",132.4094 +Nuthatch,126.2600 +"Harrier, Hen",100.8417 +"Dowitcher, Short-billed",81.6261 +"Warbler, Cetti's",74.8000 +"Shearwater, Great",72.0069 +"Martin, Sand",70.2769 +"Spotted, Great",59.8692 +"Goose, Red-breasted",56.2867 +"Warbler, Savi's",50.3497 +Dotterel,48.0067 +"Thrush, Hermit",46.3125 +Dunlin,45.2333 +"Swift, Little",18.3367 +"Gull, Yellow-legged",9.0281 +Blackbird,1.1269 +"Gull, Glaucous-winged",0.2606 +"Yellowthroat, Common",0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..01b7bba8da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" +2016-12-22,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,16.7464,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,24.0000,0,0,0,0,8.6036,0,0,0,0,0,0,24.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-24,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,24.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-25,0,0,0,0,32.5078,0,0,0,0,24.0000,0,0,0,0,0,0,24.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-26,0,0,0,0,96.0000,13.5208,0,0,0,24.0000,0,0,0,0,0,0,24.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-27,0,3.2167,0,0,115.3094,120.0000,38.9522,0,69.8267,52.2964,61.4911,0,0,0,0,0,27.7997,20.6642,0,19.9056,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,0,386.4281,144.4211,228.4575,0,176.3833,144.0000,169.2183,0,43.9492,0,160.7689,28.0381,48.0000,36.7781,0,24.0000,0,0,0,15.1192,0,0,0,0,24.0000,0,0,0,0,4.7006,0,0,0,0,0,0,0 +2016-12-29,12583.2597,301.8189,3901.6422,0,597.4011,477.7553,538.2222,0,479.3708,187.5622,356.3561,47.7900,168.7433,3.6200,216.0000,216.0000,48.0000,74.4400,80.8508,24.0000,0,19.1092,0,72.0000,14.6778,10.0983,0,1.9269,24.0000,10.4008,0,0,18.9747,24.0000,0,0,0,6.4889,0,0,0 +2016-12-30,21766.1511,6638.2006,5473.3125,3055.8617,1061.7603,378.4569,530.1600,0,498.0675,592.9178,394.3031,629.4331,321.9956,67.3875,216.5364,160.0869,48.0000,83.3264,152.4892,175.8633,0,63.8125,108.1047,45.2903,82.2439,82.1119,27.2308,59.0739,19.2856,13.6064,13.9453,9.6922,24.0006,19.3061,29.3436,12.8208,4.3656,2.5175,1.1269,0.2606,0.0650 +2016-12-31,20518.0064,8599.9281,2761.8142,5534.6542,889.1303,1112.6033,266.9975,3.1458,179.7156,150.1633,164.2022,430.1536,241.5139,714.0100,63.5161,24.0000,48.2375,99.6328,22.0906,7.7117,149.5017,71.2450,25.9131,0,29.3383,8.6314,27.2439,13.7992,0,45.3169,45.9239,38.8869,7.3744,0,16.9689,1.4844,9.6900,0,0,0,0 +2017-01-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e3dfe5528b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" +2016-12,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2246.7575,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,72.0069,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 +2017-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..469abad582 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" +"2016 Q4",55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2246.7575,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,72.0069,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 +"2017 Q1",11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8ad8ad3af8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" +2016,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2246.7575,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,72.0069,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 +2017,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2808649565 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Screwdriver CPU Utilization (%)" +"Scaup, Lesser",7.3085 +Fieldfare,6.9780 +Moorhen,6.3451 +"Bluetail, Red-flanked",5.1824 +"Flycatcher, Taiga",3.6382 +"Lark, Calandra",2.5756 +Nuthatch,2.4551 +"White, Great",2.0829 +"Bunting, Ortolan",1.8441 +Smew,1.7416 +Bufflehead,1.4540 +"Shearwater, Balearic",1.2443 +"Thrush, Hermit",1.2411 +"Egret, Snowy",1.1064 +Chaffinch,1.0303 +Fulmar,0.8245 +"Shearwater, Macaronesian",0.8135 +Jackdaw,0.7186 +"Warbler, Hooded",0.6976 +"Tern, Caspian",0.5136 +"Accentor, Alpine",0.4983 +"Kestrel, Lesser",0.4922 +"Warbler, Blackpoll",0.1505 +Dunlin,0.1438 +Dotterel,0.1429 +"Goose, Red-breasted",0.1370 +"Gull, Yellow-legged",0.1368 +"Warbler, Cetti's",0.1121 +"Petrel, Fea's",0.0967 +"Chiffchaff, Iberian",0.0966 +"Warbler, Savi's",0.0954 +"Martin, Sand",0.0590 +"Swift, Little",0.0559 +"Dowitcher, Short-billed",0.0142 +Bittern,0.0129 +"Harrier, Hen",0.0095 +"Shearwater, Great",0.0068 +"Spotted, Great",0.0057 +Blackbird,0.0034 +"Gull, Glaucous-winged",0.0027 +"Yellowthroat, Common",0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5bc1f2548d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Screwdriver CPU Utilization (%)" +Fieldfare,1.6507 +"Scaup, Lesser",1.6136 +Moorhen,1.3685 +"Bluetail, Red-flanked",0.9805 +"Flycatcher, Taiga",0.8085 +"Lark, Calandra",0.5590 +"White, Great",0.4493 +Nuthatch,0.4092 +"Bunting, Ortolan",0.3977 +Smew,0.3756 +Bufflehead,0.3136 +Chaffinch,0.2764 +"Shearwater, Balearic",0.2701 +"Thrush, Hermit",0.2677 +"Egret, Snowy",0.2263 +Fulmar,0.1778 +"Shearwater, Macaronesian",0.1755 +"Warbler, Hooded",0.1505 +Jackdaw,0.1470 +"Tern, Caspian",0.1115 +"Accentor, Alpine",0.1075 +"Kestrel, Lesser",0.1062 +"Warbler, Blackpoll",0.0325 +Dunlin,0.0310 +"Goose, Red-breasted",0.0296 +"Gull, Yellow-legged",0.0295 +Dotterel,0.0270 +"Warbler, Cetti's",0.0242 +"Chiffchaff, Iberian",0.0228 +"Warbler, Savi's",0.0226 +"Petrel, Fea's",0.0209 +"Martin, Sand",0.0127 +"Swift, Little",0.0121 +Bittern,0.0028 +"Dowitcher, Short-billed",0.0024 +"Harrier, Hen",0.0021 +"Shearwater, Great",0.0015 +"Spotted, Great",0.0012 +Blackbird,0.0006 +"Gull, Glaucous-winged",0.0006 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ea47a6b24d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Screwdriver CPU Utilization (%)" +Fieldfare,0.7276 +"Scaup, Lesser",0.6371 +Moorhen,0.6345 +"Bluetail, Red-flanked",0.3779 +"Flycatcher, Taiga",0.3334 +"Lark, Calandra",0.2357 +"White, Great",0.2083 +"Bunting, Ortolan",0.1844 +Smew,0.1742 +Nuthatch,0.1551 +Bufflehead,0.1454 +"Thrush, Hermit",0.1241 +"Shearwater, Balearic",0.1139 +Chaffinch,0.1133 +"Egret, Snowy",0.0967 +Fulmar,0.0825 +"Shearwater, Macaronesian",0.0813 +"Warbler, Hooded",0.0698 +Jackdaw,0.0628 +"Accentor, Alpine",0.0498 +"Kestrel, Lesser",0.0492 +"Tern, Caspian",0.0470 +"Warbler, Blackpoll",0.0150 +Dunlin,0.0144 +"Goose, Red-breasted",0.0137 +"Gull, Yellow-legged",0.0137 +"Warbler, Cetti's",0.0112 +Dotterel,0.0104 +"Chiffchaff, Iberian",0.0101 +"Warbler, Savi's",0.0099 +"Petrel, Fea's",0.0097 +"Martin, Sand",0.0059 +"Swift, Little",0.0056 +Bittern,0.0013 +"Harrier, Hen",0.0010 +"Dowitcher, Short-billed",0.0009 +"Shearwater, Great",0.0007 +"Spotted, Great",0.0006 +"Gull, Glaucous-winged",0.0003 +Blackbird,0.0002 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d122526ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Screwdriver CPU Utilization (%)" +Fieldfare,0.2017 +Moorhen,0.1813 +"Scaup, Lesser",0.1668 +"Bluetail, Red-flanked",0.0978 +"Flycatcher, Taiga",0.0892 +"Lark, Calandra",0.0638 +"White, Great",0.0595 +"Bunting, Ortolan",0.0527 +Smew,0.0498 +Bufflehead,0.0415 +Nuthatch,0.0398 +"Thrush, Hermit",0.0355 +"Shearwater, Balearic",0.0308 +Chaffinch,0.0302 +"Egret, Snowy",0.0263 +Fulmar,0.0236 +"Shearwater, Macaronesian",0.0232 +"Warbler, Hooded",0.0199 +Jackdaw,0.0171 +"Accentor, Alpine",0.0142 +"Kestrel, Lesser",0.0141 +"Tern, Caspian",0.0127 +"Warbler, Blackpoll",0.0043 +Dunlin,0.0041 +"Goose, Red-breasted",0.0039 +"Gull, Yellow-legged",0.0039 +"Warbler, Cetti's",0.0032 +"Chiffchaff, Iberian",0.0028 +"Petrel, Fea's",0.0028 +"Warbler, Savi's",0.0028 +Dotterel,0.0027 +"Martin, Sand",0.0017 +"Swift, Little",0.0016 +Bittern,0.0004 +"Harrier, Hen",0.0003 +"Dowitcher, Short-billed",0.0002 +"Shearwater, Great",0.0002 +"Spotted, Great",0.0002 +Blackbird,0.0001 +"Gull, Glaucous-winged",0.0001 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e5c3882489 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0.2093,0,0,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.3000,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0090,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,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.4857,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.2253,0,1.8000,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.8952,0,2.0000,0.0034,1.1947,0,1.5498,0,0,0,4.4779,0,0,0.5533,0.5819,0,0,0,0.2483,0,0,0,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0.0049,0,0,0,0 +2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,5.1848,0,2.4389,0,0,2.0446,3.4312,0,0,1.9000,1.4699,0,0,0.3662,1.0125,0,0.3505,0.1890,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0.0250,0,0,0,0 +2016-12-29,41.2000,51.6212,13.1076,7.9626,0.4670,5.4647,1.7124,4.6525,1.9109,6.0638,4.0642,4.1811,0,0,1.9000,2.2958,0,0.2688,1.4062,0.8919,0,2.7000,0.9000,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0,0.0105,0.0250,0,0,0,0 +2016-12-30,20.6136,24.4758,22.6731,6.3076,13.0205,5.8332,9.5951,5.0436,6.3813,11.4367,5.7014,2.7609,7.7129,0,1.9000,2.1966,3.1832,3.6308,2.7403,1.9172,0,2.0011,0.5661,0.5439,0.4022,0.3402,0.4196,1.1062,0.2073,0.2962,0.5000,0.0709,0.0687,0.0284,0.1126,0.0855,0.0201,0.0145,0.0235,0.0293,0.0011 +2016-12-31,5.5311,11.5907,21.3729,12.2717,18.3076,5.1151,3.4228,5.9107,7.1245,1.6568,2.8769,1.3368,5.9391,0.0393,1.9038,1.4976,5.7653,2.4113,2.1582,2.9599,3.6187,0.3000,0,0.1307,0,0.9523,0,0.0144,0.0080,0.7438,0.3073,0.5116,0.5239,0.0284,0.0270,0.0090,0,0.0478,0,0,0 +2017-01-01,0.0593,1.5099,11.6497,5.1025,1.7636,2.3403,0,3.3167,4.8686,0,1.3067,0,0,9.9375,1.7672,1.0281,0,0.1562,1.0032,0.3871,1.8628,0.0631,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0223,0.0283,0.0018,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..742b149ee6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Fieldfare] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" +2016-12,4.8547,8.2790,2.9073,5.1957,3.0488,1.8082,0.9798,2.9461,0.7708,0.9579,0.7344,0.9566,0.9678,0.6826,0.0066,0.4021,0.4474,0.3335,0.4854,0.3887,0.1809,0.2676,0.0828,0.0337,0.0646,0.0751,0.1667,0.0617,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0113,0.0053,0.0038,0.0031,0.0039,0.0015,0.0001 +2017-01,0.0487,0.0019,0.3758,0.1646,0.0569,0.0755,0.1070,0,0.1571,0,0.0422,0.0570,0,0,0.3206,0.0332,0,0.0324,0.0050,0.0125,0.0601,0.0020,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0004,0.0007,0.0001,0.0009,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..bc74591966 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Fieldfare] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" +"2016 Q4",4.8547,8.2790,2.9073,5.1957,3.0488,1.8082,0.9798,0.7708,0.9579,2.9461,0.7344,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.1667,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0053,0.0113,0.0038,0.0031,0.0015,0.0039,0.0001 +"2017 Q1",0.0168,0.0007,0.1294,0.0567,0.0196,0.0260,0.0369,0.0541,0,0,0.0145,0,0,0.0196,0.1104,0.0114,0,0.0111,0.0017,0.0207,0.0007,0.0043,0,0.0101,0.0024,0.0000,0,0,0.0004,0,0,0.0001,0.0002,0.0000,0,0.0003,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..71c667bf9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Fieldfare] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" +2016,4.8547,2.9073,8.2790,5.1957,3.0488,1.8082,0.9798,0.7708,0.9579,0.7344,2.9461,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.0673,0.0532,0.0677,0.1667,0.0318,0.0296,0.0070,0.0053,0.0113,0.0038,0.0031,0.0039,0.0015,0.0001 +2017,0.0041,0.0319,0.0002,0.0140,0.0048,0.0064,0.0091,0.0133,0,0.0036,0,0,0,0.0048,0.0272,0.0028,0,0.0027,0.0004,0.0051,0.0002,0.0011,0,0.0025,0.0006,0.0000,0,0.0001,0,0,0,0.0000,0.0001,0.0000,0,0.0001,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b262d02d20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +2016-12-22,1,1 +2016-12-23,1,2 +2016-12-24,1,2 +2016-12-25,1,3 +2016-12-26,2,3 +2016-12-27,12,5 +2016-12-28,21,7 +2016-12-29,37,12 +2016-12-30,58,18 +2016-12-31,46,16 +2017-01-01,30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..77ec7bf230 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +2016-12,60,18 +2017-01,30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a9c2ed9857 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +"2016 Q4",60,18 +"2017 Q1",30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..06dcbd7b00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +2016,60,18 +2017,30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cc15b79ca2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +2016-12-22,1,1 +2016-12-23,1,2 +2016-12-24,1,2 +2016-12-25,1,2 +2016-12-26,2,2 +2016-12-27,10,3 +2016-12-28,17,4 +2016-12-29,26,6 +2016-12-30,39,7 +2016-12-31,32,7 +2017-01-01,23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f1d7ab89a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +2016-12,41,7 +2017-01,23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8182dc92d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +"2016 Q4",41,7 +"2017 Q1",23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7c745e364f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +2016,41,7 +2017,23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1a97e29cd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +2016-12-22,1,1 +2016-12-23,1,1 +2016-12-24,1,1 +2016-12-25,1,1 +2016-12-26,2,1 +2016-12-27,4,1 +2016-12-28,4,1 +2016-12-29,4,1 +2016-12-30,4,1 +2016-12-31,4,1 +2017-01-01,4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..75c5b82e6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +2016-12,4,1 +2017-01,4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d15f4318be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +"2016 Q4",4,1 +"2017 Q1",4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ba50ff8ef0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +2016,4,1 +2017,4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cdd29ad603 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.5348933947643199 +wrench,6.37875732,0.33815435199138116 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..adabc0faaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.9353503198676139 +wrench,6.37875732,0.6324232167493075 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..adabc0faaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.9353503198676139 +wrench,6.37875732,0.6324232167493075 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..adabc0faaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.9353503198676139 +wrench,6.37875732,0.6324232167493075 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bc63a775e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +2016-12-22,200.95666667,203.30000000 +2016-12-23,288.00000000,148.30180556 +2016-12-24,288.00000000,156.00000000 +2016-12-25,288.00000000,98.05400000 +2016-12-26,84.05555556,350.40000000 +2016-12-27,445.99730556,181.10212963 +2016-12-28,177.41426546,304.01960784 +2016-12-29,98.91927680,89.17202336 +2016-12-30,10.64677666,4.48561843 +2016-12-31,7.95729740,5.16445323 +2017-01-01,4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2dc9cc0e1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +2016-12,15.20749469,6.70495772 +2017-01,4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3a90e576a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +"2016 Q4",15.20749469,6.70495772 +"2017 Q1",4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..800b79d904 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +2016,15.20749469,6.70495772 +2017,4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5d5517d04d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +2016-12-22,33.49277778,0.00000000 +2016-12-23,48.00000000,0.00000000 +2016-12-24,48.00000000,0.00000000 +2016-12-25,48.00000000,0.00000000 +2016-12-26,8.00000000,0.00000000 +2016-12-27,1.60000000,0.00000000 +2016-12-28,0.11085450,0.00000000 +2016-12-29,0.02905569,0.00000000 +2016-12-30,0.00202994,0.00000000 +2016-12-31,0.00193315,0.00000000 +2017-01-01,0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..16fe5ed9aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +2016-12,0.01004798,0.00000000 +2017-01,0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..294cb01d03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +"2016 Q4",0.01004798,0.00000000 +"2017 Q1",0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f7956011f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +2016,0.01004798,0.00000000 +2017,0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3ff71ca297 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +2016-12-22,2.0000,0.0000 +2016-12-23,2.0000,0.0000 +2016-12-24,2.0000,0.0000 +2016-12-25,2.0000,0.0000 +2016-12-26,0.3333,0.0000 +2016-12-27,0.0667,0.0000 +2016-12-28,0.0046,0.0000 +2016-12-29,0.0012,0.0000 +2016-12-30,0.0001,0.0000 +2016-12-31,0.0001,0.0000 +2017-01-01,0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3662102434 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +2016-12,0.0000,0.0000 +2017-01,0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c0c13ddfed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000 +"2017 Q1",0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9b30204edf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +2016,0.0000,0.0000 +2017,0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a8da70d219 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,12.0000,11.6809 +2016-12-24,12.0000,11.1538 +2016-12-25,12.0000,15.1906 +2016-12-26,13.7158,19.7397 +2016-12-27,75.7443,19.3183 +2016-12-28,113.7129,16.9501 +2016-12-29,90.8222,20.2231 +2016-12-30,74.0078,16.4023 +2016-12-31,46.9788,14.3031 +2017-01-01,23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c2f3d72b86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,74.5533,16.2321 +2017-01,23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1b6111e7f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",74.5533,16.2321 +"2017 Q1",23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..469f59cdc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +2016,74.5533,16.2321 +2017,23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..834d774101 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0.0000 +2016-12-23,12.0000,0.0000 +2016-12-24,12.0000,0.0000 +2016-12-25,12.0000,0.0000 +2016-12-26,12.0000,0.0000 +2016-12-27,12.0000,0.0000 +2016-12-28,12.0000,0.0000 +2016-12-29,12.0000,0.0000 +2016-12-30,12.0000,0.0000 +2016-12-31,12.0000,0.0000 +2017-01-01,12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..25ff87f94e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000 +2017-01,12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9026d0e6f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000 +"2017 Q1",12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4cf7105be3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000 +2017,12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..66c2152f6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.04455091706245642 +wrench,0.61345852,0.025732433486385795 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c8c13e13ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.0741899583245457 +wrench,0.61345852,0.04722314464546534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c8c13e13ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.0741899583245457 +wrench,0.61345852,0.04722314464546534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c8c13e13ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.0741899583245457 +wrench,0.61345852,0.04722314464546534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..00470bafe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +2016-12-22,16.74638889,16.94166667 +2016-12-23,24.00000000,16.30180556 +2016-12-24,24.00000000,24.00000000 +2016-12-25,24.00000000,11.30155556 +2016-12-26,6.25347222,24.00000000 +2016-12-27,35.28700000,12.31518519 +2016-12-28,19.02060559,22.27614379 +2016-12-29,16.85101493,7.84795770 +2016-12-30,2.11411709,0.44502730 +2016-12-31,1.81136856,0.50545051 +2017-01-01,1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bc2f6a5419 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +2016-12,2.85417511,0.62961066 +2017-01,1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..91cd37f741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +"2016 Q4",2.85417511,0.62961066 +"2017 Q1",1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ec4e09f13b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +2016,2.85417511,0.62961066 +2017,1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ec58a4b078 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,6.5000,12.0000 +2016-12-24,6.5000,12.0000 +2016-12-25,14.6000,12.0000 +2016-12-26,14.6000,15.3333 +2016-12-27,14.1667,34.9667 +2016-12-28,13.5294,11.4873 +2016-12-29,10.9773,6.6447 +2016-12-30,9.1123,7.7748 +2016-12-31,9.7568,8.5991 +2017-01-01,11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8dc4ffb9fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +2016-12,9.4049,8.3542 +2017-01,11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8fb364722f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +"2016 Q4",9.4049,8.3542 +"2017 Q1",11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..45952361dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +2016,9.4049,8.3542 +2017,11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c169576945 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +2016-12-22,0.00027778,9.33222222 +2016-12-23,0.00000000,9.59638889 +2016-12-24,0.00000000,0.00000000 +2016-12-25,0.00000000,36.96185185 +2016-12-26,0.00066667,0.00000000 +2016-12-27,82.42593750,0.00420635 +2016-12-28,8.18370003,60.06016667 +2016-12-29,4.90283019,1.76508998 +2016-12-30,8.72268458,0.67086751 +2016-12-31,2.76399096,2.29642170 +2017-01-01,1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d23d9b27ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +2016-12,5.73725065,1.48979528 +2017-01,1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..81b34de797 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +"2016 Q4",5.73725065,1.48979528 +"2017 Q1",1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d94312d73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +2016,5.73725065,1.48979528 +2017,1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b3c78bc8d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.02072668503313302 +wrench,0.59530227,0.023036904042316335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0ff1bb18b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.029573871735368337 +wrench,0.59530227,0.043533301064325194 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0ff1bb18b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.029573871735368337 +wrench,0.59530227,0.043533301064325194 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0ff1bb18b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.029573871735368337 +wrench,0.59530227,0.043533301064325194 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..36b6a068a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +2016-12-22,16.74638889,16.94166667 +2016-12-23,24.00000000,16.30180556 +2016-12-24,24.00000000,24.00000000 +2016-12-25,24.00000000,11.30155556 +2016-12-26,6.25347222,24.00000000 +2016-12-27,12.88003704,12.31518519 +2016-12-28,9.68925905,22.27614379 +2016-12-29,12.01813038,7.39270518 +2016-12-30,1.71908906,0.42482893 +2016-12-31,1.60973208,0.49295988 +2017-01-01,1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2f09c1e9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +2016-12,2.27041027,0.60887666 +2017-01,1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d5e5544ca6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +"2016 Q4",2.27041027,0.60887666 +"2017 Q1",1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..878a774d4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +2016,2.27041027,0.60887666 +2017,1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2b488da0bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +2016-12-22,1.0495,1.0000 +2016-12-23,1.0525,1.0000 +2016-12-24,1.0552,1.0000 +2016-12-25,1.1158,1.0000 +2016-12-26,1.2310,1.0000 +2016-12-27,1.1876,2.1647 +2016-12-28,1.3009,1.5180 +2016-12-29,1.3071,1.3820 +2016-12-30,2.4490,5.0498 +2016-12-31,5.4420,2.4306 +2017-01-01,6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..524ba71204 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +2016-12,3.3255,3.1398 +2017-01,6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..91d2cf695b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +"2016 Q4",3.3255,3.1398 +"2017 Q1",6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..278b3f46e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +2016,3.3255,3.1398 +2017,6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f2620c918a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +2016-12-22,0,0 +2016-12-23,0,0 +2016-12-24,0,0 +2016-12-25,0,0 +2016-12-26,0,0 +2016-12-27,0,0 +2016-12-28,0,0 +2016-12-29,0,0 +2016-12-30,21497,5109 +2016-12-31,23453,4688 +2017-01-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..97a6121e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +2016-12,44950,9797 +2017-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7d3591b1db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +"2016 Q4",44950,9797 +"2017 Q1",15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a6ef651aa4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +2016,44950,9797 +2017,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7d4ab96c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +2016-12-22,12,12 +2016-12-23,12,12 +2016-12-24,12,12 +2016-12-25,12,24 +2016-12-26,16,24 +2016-12-27,144,24 +2016-12-28,192,24 +2016-12-29,192,64 +2016-12-30,336,80 +2016-12-31,336,64 +2017-01-01,192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f0b569eadb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +2016-12,336,80 +2017-01,192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a13b5d9043 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +"2016 Q4",336,80 +"2017 Q1",192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..de508d5f77 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +2016,336,80 +2017,192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9870c198fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +2016-12-22,12,12 +2016-12-23,12,1 +2016-12-24,12,1 +2016-12-25,12,1 +2016-12-26,12,1 +2016-12-27,1,1 +2016-12-28,1,1 +2016-12-29,1,1 +2016-12-30,1,1 +2016-12-31,1,1 +2017-01-01,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..98d9fb0f92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +2016-12,1,1 +2017-01,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..37be86e3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +"2016 Q4",1,1 +"2017 Q1",1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fbe82bbb40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +2016,1,1 +2017,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9df0b057aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.300000000,0.300000000 +2016-12-23,0.162500000,0.300000000 +2016-12-24,0.162500000,0.300000000 +2016-12-25,0.365000000,0.300000000 +2016-12-26,0.365000000,0.191666667 +2016-12-27,0.354166667,0.218541667 +2016-12-28,0.338235294,0.071795612 +2016-12-29,0.274431818,0.041529207 +2016-12-30,0.227807641,0.048592785 +2016-12-31,0.243918919,0.053744211 +2017-01-01,0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c70a2294c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +2016-12,0.235121939,0.052214017 +2017-01,0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cd2914679c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.235121939,0.052214017 +"2017 Q1",0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f335a8799e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +2016,0.235121939,0.052214017 +2017,0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b1996f3b3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +2016-12-22,1,1 +2016-12-23,1,2 +2016-12-24,1,2 +2016-12-25,1,5 +2016-12-26,6,5 +2016-12-27,30,12 +2016-12-28,433,17 +2016-12-29,1652,88 +2016-12-30,23646,5209 +2016-12-31,24830,4773 +2017-01-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..56496f59bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +2016-12,46327,9882 +2017-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2412733f20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +"2016 Q4",46327,9882 +"2017 Q1",15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..056f15571d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +2016,46327,9882 +2017,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8137f2ebc6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +2016-12-22,1,1 +2016-12-23,0,1 +2016-12-24,0,0 +2016-12-25,0,3 +2016-12-26,5,0 +2016-12-27,24,7 +2016-12-28,403,5 +2016-12-29,1219,71 +2016-12-30,21994,5121 +2016-12-31,22681,4673 +2017-01-01,13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b581f76050 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +2016-12,46327,9882 +2017-01,13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ae996b5f7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +"2016 Q4",46327,9882 +"2017 Q1",13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2035379683 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +2016,46327,9882 +2017,13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cff1ff9538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,54454 +wrench,9962 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ff871053f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,58906 +wrench,10337 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ff871053f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,58906 +wrench,10337 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ff871053f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,58906 +wrench,10337 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b27fe4f753 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +2016-12-22,1,0 +2016-12-23,0,1 +2016-12-24,0,0 +2016-12-25,0,1 +2016-12-26,5,0 +2016-12-27,11,7 +2016-12-28,379,0 +2016-12-29,1137,69 +2016-12-30,20666,4994 +2016-12-31,19676,4435 +2017-01-01,12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..75aee5b02a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +2016-12,46327,9882 +2017-01,12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c4ab16d768 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +"2016 Q4",46327,9882 +"2017 Q1",12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c11c0685de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +2016,46327,9882 +2017,12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c3bb31f28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12-22,200.9567,203.3000 +2016-12-23,288.0000,296.6036 +2016-12-24,288.0000,312.0000 +2016-12-25,288.0000,490.2700 +2016-12-26,504.3333,1752.0000 +2016-12-27,13379.9192,2173.2256 +2016-12-28,76820.3769,5168.3333 +2016-12-29,163414.6453,7847.1381 +2016-12-30,251753.6808,23365.5864 +2016-12-31,197579.6944,24649.9353 +2017-01-01,64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..82d7293d09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12,704517.6067,66258.3922 +2017-01,64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1a2905f80b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +"2016 Q4",704517.6067,66258.3922 +"2017 Q1",64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9365c86fd3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016,704517.6067,66258.3922 +2017,64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..599db839ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12-22,33.4928,0.0000 +2016-12-23,48.0000,0.0000 +2016-12-24,48.0000,0.0000 +2016-12-25,48.0000,0.0000 +2016-12-26,48.0000,0.0000 +2016-12-27,48.0000,0.0000 +2016-12-28,48.0000,0.0000 +2016-12-29,48.0000,0.0000 +2016-12-30,48.0000,0.0000 +2016-12-31,48.0000,0.0000 +2017-01-01,41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2354954c1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12,465.4928,0.0000 +2017-01,41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..309be30ddb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +"2016 Q4",465.4928,0.0000 +"2017 Q1",41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5475270a20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016,465.4928,0.0000 +2017,41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..946f39179f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +2016-12-22,16.7464,16.9417 +2016-12-23,24.0000,32.6036 +2016-12-24,24.0000,48.0000 +2016-12-25,24.0000,56.5078 +2016-12-26,37.5208,120.0000 +2016-12-27,1058.6100,147.7822 +2016-12-28,8235.9222,378.6944 +2016-12-29,27837.8767,690.6203 +2016-12-30,49990.4128,2318.1472 +2016-12-31,44976.2814,2412.5153 +2017-01-01,17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3c3edc70fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +2016-12,132225.3703,6221.8125 +2017-01,17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..17d18afedc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +"2016 Q4",132225.3703,6221.8125 +"2017 Q1",17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b6f9777fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +2016,132225.3703,6221.8125 +2017,17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..61526ae1ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +2016-12-22,0.0003,9.3322 +2016-12-23,0.0000,9.5964 +2016-12-24,0.0000,0.0000 +2016-12-25,0.0000,110.8856 +2016-12-26,0.0033,0.0000 +2016-12-27,1978.2225,0.0294 +2016-12-28,3298.0311,300.3008 +2016-12-29,5976.5500,125.3214 +2016-12-30,191846.7247,3435.5125 +2016-12-31,62690.0789,10731.1786 +2017-01-01,19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1313bd7cdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +2016-12,265789.6108,14722.1569 +2017-01,19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..17edbfa719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +"2016 Q4",265789.6108,14722.1569 +"2017 Q1",19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..eb989ed7ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +2016,265789.6108,14722.1569 +2017,19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3e4f3b3c3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +2016-12-22,16.7464,16.9417 +2016-12-23,24.0000,32.6036 +2016-12-24,24.0000,48.0000 +2016-12-25,24.0000,56.5078 +2016-12-26,37.5208,120.0000 +2016-12-27,386.4011,147.7822 +2016-12-28,4195.4492,378.6944 +2016-12-29,19853.9514,650.5581 +2016-12-30,40649.5800,2212.9339 +2016-12-31,39969.6475,2352.8975 +2017-01-01,16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ff5e141c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +2016-12,105181.2964,6016.9192 +2017-01,16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..32e42a678d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +"2016 Q4",105181.2964,6016.9192 +"2017 Q1",16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8559bbfe58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +2016,105181.2964,6016.9192 +2017,16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f43bfe6732 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,22.8742 +wrench,6.8167 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a0fe5e5f0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,4.8521 +wrench,1.7853 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..499430cf7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,1.9965 +wrench,0.7424 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fe30df1685 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,0.5334 +wrench,0.1994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a9bab51521 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +2016-12-22,0.2093,0.2118 +2016-12-23,0.3000,0.3090 +2016-12-24,0.3000,0.3250 +2016-12-25,0.3000,0.5107 +2016-12-26,0.2627,1.8250 +2016-12-27,3.4844,2.2638 +2016-12-28,20.0053,5.3837 +2016-12-29,42.5559,8.1741 +2016-12-30,65.5609,24.3392 +2016-12-31,51.4530,25.6770 +2017-01-01,16.6807,5.9645 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..14e18a970e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +2016-12,17.8993,6.2745 +2017-01,0.5381,0.1924 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5ad03bc9f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +"2016 Q4",17.8993,6.2745 +"2017 Q1",0.1853,0.0663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b1e6cbddd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +2016,17.8993,6.2745 +2017,0.0457,0.0163 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..401ff26320 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Users: Active" +curry,31 +banana-cream,15 +derby,11 +green-grape,8 +bavarian-cream,7 +apple,5 +buttermilk,4 +bumbleberry,3 +butter,3 +coconut-cream,3 +blackberry,2 +boysenberry,2 +cheese,2 +cherry,2 +fish,2 +flapper,2 +blueberry,1 +cashew,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..401ff26320 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Users: Active" +curry,31 +banana-cream,15 +derby,11 +green-grape,8 +bavarian-cream,7 +apple,5 +buttermilk,4 +bumbleberry,3 +butter,3 +coconut-cream,3 +blackberry,2 +boysenberry,2 +cheese,2 +cherry,2 +fish,2 +flapper,2 +blueberry,1 +cashew,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..401ff26320 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Users: Active" +curry,31 +banana-cream,15 +derby,11 +green-grape,8 +bavarian-cream,7 +apple,5 +buttermilk,4 +bumbleberry,3 +butter,3 +coconut-cream,3 +blackberry,2 +boysenberry,2 +cheese,2 +cherry,2 +fish,2 +flapper,2 +blueberry,1 +cashew,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..401ff26320 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Users: Active" +curry,31 +banana-cream,15 +derby,11 +green-grape,8 +bavarian-cream,7 +apple,5 +buttermilk,4 +bumbleberry,3 +butter,3 +coconut-cream,3 +blackberry,2 +boysenberry,2 +cheese,2 +cherry,2 +fish,2 +flapper,2 +blueberry,1 +cashew,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..af7617fbdf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-23,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-24,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-25,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-26,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1 +2016-12-27,2,3,4,0,2,2,0,0,0,1,1,0,0,0,2,0,0,1,1 +2016-12-28,7,6,6,0,2,2,0,0,0,1,1,0,1,0,2,0,0,1,1 +2016-12-29,17,10,9,0,4,2,1,0,0,1,2,1,1,1,2,1,1,1,1 +2016-12-30,28,15,11,7,6,5,4,2,2,2,2,1,2,2,2,2,1,1,1 +2016-12-31,24,14,9,4,6,5,4,1,1,3,2,2,0,2,0,1,1,1,1 +2017-01-01,16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..05cdb62457 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" +2016-12,30,15,11,8,7,5,4,3,3,3,2,2,2,2,2,2,1,1,1 +2017-01,16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9dcdbb1070 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" +"2016 Q4",30,15,11,8,7,5,4,3,3,3,2,2,2,2,2,2,1,1,1 +"2017 Q1",16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6ab2bf9cec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" +2016,30,15,11,8,7,5,4,3,3,3,2,2,2,2,2,2,1,1,1 +2017,16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bb0a1e0a47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of PIs: Active" +curry,27 +banana-cream,7 +green-grape,7 +derby,6 +bumbleberry,3 +apple,2 +bavarian-cream,2 +boysenberry,2 +butter,2 +buttermilk,2 +cheese,2 +coconut-cream,2 +fish,2 +flapper,2 +blackberry,1 +blueberry,1 +cashew,1 +cherry,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bb0a1e0a47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of PIs: Active" +curry,27 +banana-cream,7 +green-grape,7 +derby,6 +bumbleberry,3 +apple,2 +bavarian-cream,2 +boysenberry,2 +butter,2 +buttermilk,2 +cheese,2 +coconut-cream,2 +fish,2 +flapper,2 +blackberry,1 +blueberry,1 +cashew,1 +cherry,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bb0a1e0a47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of PIs: Active" +curry,27 +banana-cream,7 +green-grape,7 +derby,6 +bumbleberry,3 +apple,2 +bavarian-cream,2 +boysenberry,2 +butter,2 +buttermilk,2 +cheese,2 +coconut-cream,2 +fish,2 +flapper,2 +blackberry,1 +blueberry,1 +cashew,1 +cherry,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bb0a1e0a47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of PIs: Active" +curry,27 +banana-cream,7 +green-grape,7 +derby,6 +bumbleberry,3 +apple,2 +bavarian-cream,2 +boysenberry,2 +butter,2 +buttermilk,2 +cheese,2 +coconut-cream,2 +fish,2 +flapper,2 +blackberry,1 +blueberry,1 +cashew,1 +cherry,1 +chestnut,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3d749ff31c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-25,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1 +2016-12-26,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1 +2016-12-27,2,2,0,3,0,1,1,0,0,0,0,1,2,0,1,0,1,0,1 +2016-12-28,7,4,0,4,0,1,1,0,0,0,1,1,2,0,1,0,1,0,1 +2016-12-29,15,6,0,5,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1 +2016-12-30,24,7,6,6,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1 +2016-12-31,21,7,4,5,1,2,2,2,1,2,0,2,0,1,1,1,1,1,1 +2017-01-01,16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a51ca6e6a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" +2016-12,26,7,7,6,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2017-01,16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d3c8fc8267 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" +"2016 Q4",26,7,7,6,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +"2017 Q1",16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a37904cede --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" +2016,26,7,7,6,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2017,16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..16f15b3194 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Resources: Active" +banana-cream,4 +apple,2 +bavarian-cream,2 +blackberry,2 +boysenberry,2 +bumbleberry,2 +blueberry,1 +butter,1 +buttermilk,1 +cashew,1 +cheese,1 +cherry,1 +chestnut,1 +coconut-cream,1 +curry,1 +derby,1 +fish,1 +flapper,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..16f15b3194 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Resources: Active" +banana-cream,4 +apple,2 +bavarian-cream,2 +blackberry,2 +boysenberry,2 +bumbleberry,2 +blueberry,1 +butter,1 +buttermilk,1 +cashew,1 +cheese,1 +cherry,1 +chestnut,1 +coconut-cream,1 +curry,1 +derby,1 +fish,1 +flapper,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..16f15b3194 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Resources: Active" +banana-cream,4 +apple,2 +bavarian-cream,2 +blackberry,2 +boysenberry,2 +bumbleberry,2 +blueberry,1 +butter,1 +buttermilk,1 +cashew,1 +cheese,1 +cherry,1 +chestnut,1 +coconut-cream,1 +curry,1 +derby,1 +fish,1 +flapper,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..16f15b3194 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Resources: Active" +banana-cream,4 +apple,2 +bavarian-cream,2 +blackberry,2 +boysenberry,2 +bumbleberry,2 +blueberry,1 +butter,1 +buttermilk,1 +cashew,1 +cheese,1 +cherry,1 +chestnut,1 +coconut-cream,1 +curry,1 +derby,1 +fish,1 +flapper,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f863fbbb14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" +2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-23,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-24,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-25,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-26,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 +2016-12-27,2,1,1,1,0,0,0,0,0,1,0,0,1,1,1,1,1,0,0 +2016-12-28,2,1,1,1,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0 +2016-12-29,3,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0 +2016-12-30,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,4,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1 +2017-01-01,4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..37ce9ef7bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" +2016-12,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6a74ab1509 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" +"2016 Q4",4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5a008b60b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" +2016,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a601191272 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +fish,1618.72650463, +cashew,657.08909329, +derby,392.28983679,42.84792494250981 +coconut-cream,247.38450980,89.08320735238685 +bavarian-cream,242.39793403,56.623500492331715 +chestnut,236.92098291,26.6108956407919 +blueberry,169.87555556, +buttermilk,154.59506643,41.104792843063635 +blackberry,116.74002976, +butter,69.17617284,23.776854550562064 +cheese,65.51148148,37.94894414137108 +flapper,41.59687500,8.792253378250166 +cherry,39.76185185, +curry,26.38523697,1.464734433687352 +apple,25.40724419,3.366577610883879 +bumbleberry,13.78536797,0.22188446574737158 +boysenberry,8.50838675,1.5078666814799302 +banana-cream,5.15292873,0.3886116177449345 +green-grape,4.22379299,0.4544047109942307 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fff7e83bad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +fish,1618.72650463,182.0951288519553 +cashew,657.08909329,51.277475129665504 +derby,392.28983679,77.79433606895417 +coconut-cream,247.38450980,187.1142642607946 +bavarian-cream,242.39793403,112.1963870014736 +chestnut,236.92098291,205.44947089795318 +blueberry,169.87555556,76.68850641157292 +buttermilk,154.59506643,53.70543314926935 +blackberry,116.74002976,17.52235561829723 +butter,69.17617284,23.776854550562064 +cheese,65.51148148,61.73618026540957 +flapper,41.59687500,23.13876312144338 +cherry,39.76185185,6.954023834196349 +curry,26.38523697,2.4475758578838773 +apple,25.40724419,7.297616841871969 +bumbleberry,13.78536797,0.22188446574737158 +boysenberry,8.50838675,2.119407176827592 +banana-cream,5.15292873,0.7201855503151238 +green-grape,4.22379299,0.4544047109942307 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fff7e83bad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +fish,1618.72650463,182.0951288519553 +cashew,657.08909329,51.277475129665504 +derby,392.28983679,77.79433606895417 +coconut-cream,247.38450980,187.1142642607946 +bavarian-cream,242.39793403,112.1963870014736 +chestnut,236.92098291,205.44947089795318 +blueberry,169.87555556,76.68850641157292 +buttermilk,154.59506643,53.70543314926935 +blackberry,116.74002976,17.52235561829723 +butter,69.17617284,23.776854550562064 +cheese,65.51148148,61.73618026540957 +flapper,41.59687500,23.13876312144338 +cherry,39.76185185,6.954023834196349 +curry,26.38523697,2.4475758578838773 +apple,25.40724419,7.297616841871969 +bumbleberry,13.78536797,0.22188446574737158 +boysenberry,8.50838675,2.119407176827592 +banana-cream,5.15292873,0.7201855503151238 +green-grape,4.22379299,0.4544047109942307 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fff7e83bad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +fish,1618.72650463,182.0951288519553 +cashew,657.08909329,51.277475129665504 +derby,392.28983679,77.79433606895417 +coconut-cream,247.38450980,187.1142642607946 +bavarian-cream,242.39793403,112.1963870014736 +chestnut,236.92098291,205.44947089795318 +blueberry,169.87555556,76.68850641157292 +buttermilk,154.59506643,53.70543314926935 +blackberry,116.74002976,17.52235561829723 +butter,69.17617284,23.776854550562064 +cheese,65.51148148,61.73618026540957 +flapper,41.59687500,23.13876312144338 +cherry,39.76185185,6.954023834196349 +curry,26.38523697,2.4475758578838773 +apple,25.40724419,7.297616841871969 +bumbleberry,13.78536797,0.22188446574737158 +boysenberry,8.50838675,2.119407176827592 +banana-cream,5.15292873,0.7201855503151238 +green-grape,4.22379299,0.4544047109942307 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..20e78a3e1a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] 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,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,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,0 +2016-12-25,0,0,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,112.71222222,0,0,128.13333333,0 +2016-12-26,0,43.26666667,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,384.00000000,0,0,576.00000000,0 +2016-12-27,52.04657407,384.00000000,1205.09911111,243.18222222,60.65037037,288.00000000,0,0,3.21666667,0,0,0,0,537.25333333,311.81666667,0,0,175.51733333,0 +2016-12-28,629.69511111,144.42111111,620.99051852,1536.00000000,264.00000000,288.00000000,0,0,24.00000000,0,94.01111111,0,0,71.57875476,432.00000000,0,0,1709.25286550,0 +2016-12-29,672.11407407,382.20422222,273.65798423,1536.00000000,156.14018519,288.00000000,105.63000000,410.97777778,62.76246528,0,480.00000000,52.00416667,28.69444444,61.22224058,164.29696970,0,7.24000000,181.36763441,0 +2016-12-30,382.83157407,302.76555556,104.39808622,312.41422222,206.42289683,288.00000000,125.45555556,256.62628858,69.85362963,62.85925926,27.24407407,28.61481481,19.18227778,21.60542509,11.68535754,5.41333333,48.00000000,4.55391531,4.15493464 +2016-12-31,0,245.43360532,284.69504535,229.70641975,92.51748737,288.00000000,27.63000000,103.53553819,41.56073045,158.30444444,0,7.13333333,22.66768519,18.65100461,11.89937943,2.35937500,6.76803419,3.92322219,3.83706790 +2017-01-01,0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7618bd18c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] CPU Hours: Per Job" +2016-12,1618.72650463,564.66565514,400.11223577,534.20085470,238.22973118,2792.95666667,169.87555556,221.80616753,96.40216270,86.72055556,65.51148148,48.32731481,32.10148148,37.47629574,30.81877131,2.69870370,7.83034188,5.95247094,4.01423953 +2017-01,0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b42b700b0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] CPU Hours: Per Job" +"2016 Q4",1618.72650463,564.66565514,400.11223577,534.20085470,238.22973118,2792.95666667,169.87555556,221.80616753,96.40216270,86.72055556,65.51148148,48.32731481,32.10148148,37.47629574,30.81877131,2.69870370,7.83034188,5.95247094,4.01423953 +"2017 Q1",0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a8feca0433 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] CPU Hours: Per Job" +2016,1618.72650463,564.66565514,400.11223577,534.20085470,238.22973118,2792.95666667,169.87555556,221.80616753,96.40216270,86.72055556,65.51148148,48.32731481,32.10148148,37.47629574,30.81877131,2.69870370,7.83034188,5.95247094,4.01423953 +2017,0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5b43bb2d92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Per Job" +chestnut,38.99329060 +apple,0.00000000 +banana-cream,0.00000000 +bavarian-cream,0.00000000 +blackberry,0.00000000 +blueberry,0.00000000 +boysenberry,0.00000000 +bumbleberry,0.00000000 +butter,0.00000000 +buttermilk,0.00000000 +cashew,0.00000000 +cheese,0.00000000 +cherry,0.00000000 +coconut-cream,0.00000000 +curry,0.00000000 +derby,0.00000000 +fish,0.00000000 +flapper,0.00000000 +green-grape,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5b43bb2d92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Per Job" +chestnut,38.99329060 +apple,0.00000000 +banana-cream,0.00000000 +bavarian-cream,0.00000000 +blackberry,0.00000000 +blueberry,0.00000000 +boysenberry,0.00000000 +bumbleberry,0.00000000 +butter,0.00000000 +buttermilk,0.00000000 +cashew,0.00000000 +cheese,0.00000000 +cherry,0.00000000 +coconut-cream,0.00000000 +curry,0.00000000 +derby,0.00000000 +fish,0.00000000 +flapper,0.00000000 +green-grape,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5b43bb2d92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Per Job" +chestnut,38.99329060 +apple,0.00000000 +banana-cream,0.00000000 +bavarian-cream,0.00000000 +blackberry,0.00000000 +blueberry,0.00000000 +boysenberry,0.00000000 +bumbleberry,0.00000000 +butter,0.00000000 +buttermilk,0.00000000 +cashew,0.00000000 +cheese,0.00000000 +cherry,0.00000000 +coconut-cream,0.00000000 +curry,0.00000000 +derby,0.00000000 +fish,0.00000000 +flapper,0.00000000 +green-grape,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5b43bb2d92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Per Job" +chestnut,38.99329060 +apple,0.00000000 +banana-cream,0.00000000 +bavarian-cream,0.00000000 +blackberry,0.00000000 +blueberry,0.00000000 +boysenberry,0.00000000 +bumbleberry,0.00000000 +butter,0.00000000 +buttermilk,0.00000000 +cashew,0.00000000 +cheese,0.00000000 +cherry,0.00000000 +coconut-cream,0.00000000 +curry,0.00000000 +derby,0.00000000 +fish,0.00000000 +flapper,0.00000000 +green-grape,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..253d3be9ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" +2016-12-22,33.49277778,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-27,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0 +2016-12-28,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0 +2016-12-29,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +2017-01-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4379c192e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" +2016-12,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c7afd490f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" +"2016 Q4",465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..002732b6e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" +2016,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ac1d5017a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +chestnut,0.3077,0.20013650333971736 +apple,0.0000,0 +banana-cream,0.0000,0 +bavarian-cream,0.0000,0 +blackberry,0.0000,0 +blueberry,0.0000,0 +boysenberry,0.0000,0 +bumbleberry,0.0000,0 +butter,0.0000,0 +buttermilk,0.0000,0 +cashew,0.0000,0 +cheese,0.0000,0 +cherry,0.0000,0 +coconut-cream,0.0000,0 +curry,0.0000,0 +derby,0.0000,0 +fish,0.0000,0 +flapper,0.0000,0 +green-grape,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ac1d5017a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +chestnut,0.3077,0.20013650333971736 +apple,0.0000,0 +banana-cream,0.0000,0 +bavarian-cream,0.0000,0 +blackberry,0.0000,0 +blueberry,0.0000,0 +boysenberry,0.0000,0 +bumbleberry,0.0000,0 +butter,0.0000,0 +buttermilk,0.0000,0 +cashew,0.0000,0 +cheese,0.0000,0 +cherry,0.0000,0 +coconut-cream,0.0000,0 +curry,0.0000,0 +derby,0.0000,0 +fish,0.0000,0 +flapper,0.0000,0 +green-grape,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ac1d5017a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +chestnut,0.3077,0.20013650333971736 +apple,0.0000,0 +banana-cream,0.0000,0 +bavarian-cream,0.0000,0 +blackberry,0.0000,0 +blueberry,0.0000,0 +boysenberry,0.0000,0 +bumbleberry,0.0000,0 +butter,0.0000,0 +buttermilk,0.0000,0 +cashew,0.0000,0 +cheese,0.0000,0 +cherry,0.0000,0 +coconut-cream,0.0000,0 +curry,0.0000,0 +derby,0.0000,0 +fish,0.0000,0 +flapper,0.0000,0 +green-grape,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ac1d5017a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +chestnut,0.3077,0.20013650333971736 +apple,0.0000,0 +banana-cream,0.0000,0 +bavarian-cream,0.0000,0 +blackberry,0.0000,0 +blueberry,0.0000,0 +boysenberry,0.0000,0 +bumbleberry,0.0000,0 +butter,0.0000,0 +buttermilk,0.0000,0 +cashew,0.0000,0 +cheese,0.0000,0 +cherry,0.0000,0 +coconut-cream,0.0000,0 +curry,0.0000,0 +derby,0.0000,0 +fish,0.0000,0 +flapper,0.0000,0 +green-grape,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2a1c75c92c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" +2016-12-22,2.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-27,2.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0 +2016-12-28,2.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0 +2016-12-29,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..eb37eae7ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" +2016-12,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c7b7af2c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" +"2016 Q4",2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ceb3b4a03f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" +2016,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e638debba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By CPU Hours (Core Count)" +buttermilk,111.3630 +banana-cream,83.8484 +coconut-cream,62.9605 +derby,62.2662 +curry,61.4541 +butter,34.4569 +bavarian-cream,33.8916 +fish,31.8851 +green-grape,21.0706 +cheese,20.0000 +apple,14.6667 +cashew,13.8060 +blueberry,12.0000 +bumbleberry,11.9987 +chestnut,11.9631 +boysenberry,6.1218 +flapper,5.0000 +blackberry,3.8822 +cherry,2.9011 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e638debba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By CPU Hours (Core Count)" +buttermilk,111.3630 +banana-cream,83.8484 +coconut-cream,62.9605 +derby,62.2662 +curry,61.4541 +butter,34.4569 +bavarian-cream,33.8916 +fish,31.8851 +green-grape,21.0706 +cheese,20.0000 +apple,14.6667 +cashew,13.8060 +blueberry,12.0000 +bumbleberry,11.9987 +chestnut,11.9631 +boysenberry,6.1218 +flapper,5.0000 +blackberry,3.8822 +cherry,2.9011 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e638debba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By CPU Hours (Core Count)" +buttermilk,111.3630 +banana-cream,83.8484 +coconut-cream,62.9605 +derby,62.2662 +curry,61.4541 +butter,34.4569 +bavarian-cream,33.8916 +fish,31.8851 +green-grape,21.0706 +cheese,20.0000 +apple,14.6667 +cashew,13.8060 +blueberry,12.0000 +bumbleberry,11.9987 +chestnut,11.9631 +boysenberry,6.1218 +flapper,5.0000 +blackberry,3.8822 +cherry,2.9011 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e638debba4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By CPU Hours (Core Count)" +buttermilk,111.3630 +banana-cream,83.8484 +coconut-cream,62.9605 +derby,62.2662 +curry,61.4541 +butter,34.4569 +bavarian-cream,33.8916 +fish,31.8851 +green-grape,21.0706 +cheese,20.0000 +apple,14.6667 +cashew,13.8060 +blueberry,12.0000 +bumbleberry,11.9987 +chestnut,11.9631 +boysenberry,6.1218 +flapper,5.0000 +blackberry,3.8822 +cherry,2.9011 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d3f3e1296d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (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,0 +2016-12-23,0,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 +2016-12-24,0,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 +2016-12-25,0,24.0000,0,0,0,0,1.0000,0,0,0,12.8595,0,0,0,12.0000,0,0,0,0 +2016-12-26,0,24.0000,0,0,0,0,1.0000,0,0,0,18.0000,16.0000,0,0,12.0000,0,0,0,0 +2016-12-27,0,21.1888,64.0000,96.7935,84.5627,0,14.0214,31.6875,0,0,18.4583,16.0000,0,0,12.0000,0,0,1.0000,0 +2016-12-28,0,170.8284,64.0000,81.4098,78.4676,0,15.5455,31.8818,0,20.0000,20.0000,16.0000,0,0,12.0000,0,0,1.0000,0 +2016-12-29,112.0000,166.1714,64.0000,56.9898,68.0983,0,30.1045,31.9078,0,20.0000,19.4737,16.0000,12.0000,0,12.0000,2.0000,5.0000,3.8435,4.0000 +2016-12-30,111.6728,79.0105,63.8308,44.6214,68.0094,79.9505,39.8777,31.8699,20.1259,20.0000,11.2898,16.0000,12.0000,11.6133,12.0000,2.0000,5.0000,3.8626,2.6435 +2016-12-31,111.0872,29.9186,63.9287,64.2508,57.3480,8.0000,41.4913,0,21.3018,0,12.1534,11.9114,12.0000,12.0000,12.0000,7.1817,5.0000,3.9543,2.0581 +2017-01-01,1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..69cc57e515 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,111.5740,86.6872,63.9407,62.6246,66.2292,47.1149,34.7919,31.8851,20.6234,20.0000,15.5414,14.3905,12.0000,11.9138,12.0000,6.4787,5.0000,3.8683,2.6389 +2017-01,1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7a6864a057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",111.5740,86.6872,63.9407,62.6246,66.2292,47.1149,34.7919,31.8851,20.6234,20.0000,15.5414,14.3905,12.0000,11.9138,12.0000,6.4787,5.0000,3.8683,2.6389 +"2017 Q1",1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..835b92d052 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (Core Count)" +2016,111.5740,86.6872,63.9407,62.6246,66.2292,47.1149,34.7919,31.8851,20.6234,20.0000,15.5414,14.3905,12.0000,11.9138,12.0000,6.4787,5.0000,3.8683,2.6389 +2017,1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bb73758438 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By GPU Hours (GPU Count)" +chestnut,12.0000 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bb73758438 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By GPU Hours (GPU Count)" +chestnut,12.0000 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bb73758438 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By GPU Hours (GPU Count)" +chestnut,12.0000 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bb73758438 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Weighted By GPU Hours (GPU Count)" +chestnut,12.0000 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..37a750b803 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0 +2016-12-28,12.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e7150c71da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1707a2cc83 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..58dca52fdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d73d8eccd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +fish,56.39826389, +cashew,52.33125262, +derby,37.86742624,3.8783534529902512 +blackberry,32.98881944, +coconut-cream,30.92306373,11.135400919048372 +bavarian-cream,22.09371528,3.0880234181669057 +cherry,20.86393519, +chestnut,19.91282051,2.1056822673563573 +blueberry,14.15629630, +buttermilk,10.49397947,2.5351755398719042 +flapper,8.31937500,1.758450675650033 +curry,8.30978133,0.13575510334380672 +butter,5.05929012,2.0356487240229306 +cheese,3.27557407,1.8974472070685748 +apple,2.14778876,0.19748979248787776 +boysenberry,2.06233440,0.6979901163451202 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.41362077,0.024337601967415662 +green-grape,0.36164021,0.03719469838932551 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8b4a70f6f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +fish,56.39826389,4.065482404541014 +cashew,52.33125262, +derby,37.86742624,6.865411681699476 +blackberry,32.98881944,4.907191137280996 +coconut-cream,30.92306373,23.389283032599334 +bavarian-cream,22.09371528,8.274645369467496 +cherry,20.86393519, +chestnut,19.91282051,17.106656154646572 +blueberry,14.15629630,6.390708867631212 +buttermilk,10.49397947,3.3307345987775676 +flapper,8.31937500,4.627752624288676 +curry,8.30978133,0.22675542451684455 +butter,5.05929012,2.0356487240229306 +cheese,3.27557407,3.0868090132704915 +apple,2.14778876,0.46608595551399945 +boysenberry,2.06233440,1.020659794218047 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.41362077,0.04503987235824463 +green-grape,0.36164021,0.03719469838932551 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8b4a70f6f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +fish,56.39826389,4.065482404541014 +cashew,52.33125262, +derby,37.86742624,6.865411681699476 +blackberry,32.98881944,4.907191137280996 +coconut-cream,30.92306373,23.389283032599334 +bavarian-cream,22.09371528,8.274645369467496 +cherry,20.86393519, +chestnut,19.91282051,17.106656154646572 +blueberry,14.15629630,6.390708867631212 +buttermilk,10.49397947,3.3307345987775676 +flapper,8.31937500,4.627752624288676 +curry,8.30978133,0.22675542451684455 +butter,5.05929012,2.0356487240229306 +cheese,3.27557407,3.0868090132704915 +apple,2.14778876,0.46608595551399945 +boysenberry,2.06233440,1.020659794218047 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.41362077,0.04503987235824463 +green-grape,0.36164021,0.03719469838932551 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8b4a70f6f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +fish,56.39826389,4.065482404541014 +cashew,52.33125262, +derby,37.86742624,6.865411681699476 +blackberry,32.98881944,4.907191137280996 +coconut-cream,30.92306373,23.389283032599334 +bavarian-cream,22.09371528,8.274645369467496 +cherry,20.86393519, +chestnut,19.91282051,17.106656154646572 +blueberry,14.15629630,6.390708867631212 +buttermilk,10.49397947,3.3307345987775676 +flapper,8.31937500,4.627752624288676 +curry,8.30978133,0.22675542451684455 +butter,5.05929012,2.0356487240229306 +cheese,3.27557407,3.0868090132704915 +apple,2.14778876,0.46608595551399945 +boysenberry,2.06233440,1.020659794218047 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.41362077,0.04503987235824463 +green-grape,0.36164021,0.03719469838932551 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7b5216f115 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] 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,0 +2016-12-23,0,0,0,0,0,8.60361111,0,24.00000000,0,0,0,0,0,0,24.00000000,0,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,0 +2016-12-25,0,0,0,0,0,24.00000000,0,24.00000000,0,0,0,0,0,0,9.05629630,0,0,5.33888889,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,24.00000000,0 +2016-12-27,2.13466049,24.00000000,95.00122222,3.21666667,30.39777778,11.29064815,0,24.00000000,0,0,0,47.68055556,0,0,18.99236111,0,0,8.65477778,0 +2016-12-28,22.00297222,9.02631944,51.86818519,24.00000000,192.00000000,24.00000000,0,24.00000000,0,0,0,13.21116388,0,4.70055556,24.00000000,0,0,108.02165205,0 +2016-12-29,22.94106481,23.88776389,25.64947072,18.14590278,192.00000000,14.86512346,7.17361111,24.00000000,8.80250000,25.68611111,10.40083333,16.50229027,0,24.00000000,9.62803030,3.62000000,0,11.65806452,0 +2016-12-30,13.52039352,18.92284722,11.48730159,19.86340741,39.05177778,15.96253968,11.30094444,24.00000000,10.45462963,16.74827932,5.72296296,6.70593575,3.14296296,1.36220370,1.22918592,24.00000000,0.47291667,0.38594765,0.37008170 +2016-12-31,0,23.17923611,29.34604308,11.24478395,28.71330247,6.36417929,16.67157407,24.00000000,2.30250000,7.26913194,1.42666667,7.33217998,19.78805556,0,1.22792110,1.19215812,0.19661458,0.34694099,0.31978395 +2017-01-01,0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ac3dc53c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] Node Hours: Per Job" +2016-12,56.39826389,42.39165094,38.76884316,27.64086310,66.77510684,22.05642473,18.94884259,232.74638889,14.15629630,14.66085503,9.66546296,11.59172949,7.30423611,3.27557407,2.43685994,1.72331197,0.22731481,0.47585165,0.34781876 +2017-01,0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3071da91ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] Node Hours: Per Job" +"2016 Q4",56.39826389,42.39165094,38.76884316,27.64086310,66.77510684,22.05642473,18.94884259,232.74638889,14.15629630,14.66085503,9.66546296,11.59172949,7.30423611,3.27557407,2.43685994,1.72331197,0.22731481,0.47585165,0.34781876 +"2017 Q1",0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1880355d73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] Node Hours: Per Job" +2016,56.39826389,42.39165094,38.76884316,27.64086310,66.77510684,22.05642473,18.94884259,232.74638889,14.15629630,14.66085503,9.66546296,11.59172949,7.30423611,3.27557407,2.43685994,1.72331197,0.22731481,0.47585165,0.34781876 +2017,0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9f1d56e389 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +fish,29.4167,2.4733533623646182 +coconut-cream,28.7059,3.585710156019513 +butter,25.3333,6.562143582468938 +derby,20.2034,1.6681184710952224 +cheese,20.0000,0 +green-grape,18.8810,1.1771160763509543 +blueberry,12.0000,0 +bumbleberry,11.9827,0.017278498161083296 +cashew,10.8868,0.562036409390535 +buttermilk,10.6522,3.260812853950742 +banana-cream,9.4560,0.012590015775393768 +apple,8.1959,0.06598411302744607 +boysenberry,7.8846,0.11426976285429367 +bavarian-cream,7.0625,2.0515511947517906 +curry,5.5572,0.08460785692117562 +blackberry,5.5000,0.4330127018922193 +flapper,5.0000,0 +chestnut,4.0769,1.3075182622208246 +cherry,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9f1d56e389 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +fish,29.4167,2.4733533623646182 +coconut-cream,28.7059,3.585710156019513 +butter,25.3333,6.562143582468938 +derby,20.2034,1.6681184710952224 +cheese,20.0000,0 +green-grape,18.8810,1.1771160763509543 +blueberry,12.0000,0 +bumbleberry,11.9827,0.017278498161083296 +cashew,10.8868,0.562036409390535 +buttermilk,10.6522,3.260812853950742 +banana-cream,9.4560,0.012590015775393768 +apple,8.1959,0.06598411302744607 +boysenberry,7.8846,0.11426976285429367 +bavarian-cream,7.0625,2.0515511947517906 +curry,5.5572,0.08460785692117562 +blackberry,5.5000,0.4330127018922193 +flapper,5.0000,0 +chestnut,4.0769,1.3075182622208246 +cherry,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9f1d56e389 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +fish,29.4167,2.4733533623646182 +coconut-cream,28.7059,3.585710156019513 +butter,25.3333,6.562143582468938 +derby,20.2034,1.6681184710952224 +cheese,20.0000,0 +green-grape,18.8810,1.1771160763509543 +blueberry,12.0000,0 +bumbleberry,11.9827,0.017278498161083296 +cashew,10.8868,0.562036409390535 +buttermilk,10.6522,3.260812853950742 +banana-cream,9.4560,0.012590015775393768 +apple,8.1959,0.06598411302744607 +boysenberry,7.8846,0.11426976285429367 +bavarian-cream,7.0625,2.0515511947517906 +curry,5.5572,0.08460785692117562 +blackberry,5.5000,0.4330127018922193 +flapper,5.0000,0 +chestnut,4.0769,1.3075182622208246 +cherry,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9f1d56e389 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +fish,29.4167,2.4733533623646182 +coconut-cream,28.7059,3.585710156019513 +butter,25.3333,6.562143582468938 +derby,20.2034,1.6681184710952224 +cheese,20.0000,0 +green-grape,18.8810,1.1771160763509543 +blueberry,12.0000,0 +bumbleberry,11.9827,0.017278498161083296 +cashew,10.8868,0.562036409390535 +buttermilk,10.6522,3.260812853950742 +banana-cream,9.4560,0.012590015775393768 +apple,8.1959,0.06598411302744607 +boysenberry,7.8846,0.11426976285429367 +bavarian-cream,7.0625,2.0515511947517906 +curry,5.5572,0.08460785692117562 +blackberry,5.5000,0.4330127018922193 +flapper,5.0000,0 +chestnut,4.0769,1.3075182622208246 +cherry,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..186354568c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,12.0000,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,1.0000,0,0,0,12.0000,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,1.0000,0,0,0,12.0000,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,24.0000,16.0000,0,1.0000,0,0,0,12.0000,0 +2016-12-26,0,0,0,0,0,0,0,0,16.0000,0,24.0000,16.0000,0,1.0000,0,0,0,12.0000,0 +2016-12-27,28.5556,64.0000,0,58.4000,0,0,0,0,16.0000,0,16.0000,18.0000,0,11.0000,41.0000,1.0000,0,12.0000,0 +2016-12-28,28.9000,64.0000,0,41.8667,20.0000,0,0,0,16.0000,0,94.1053,18.0000,0,11.0000,5.3852,1.0000,0,12.0000,0 +2016-12-29,29.4167,64.0000,0,13.8108,20.0000,0,12.0000,0,16.0000,112.0000,16.6935,11.6364,2.0000,14.4444,3.9027,3.2500,5.0000,12.0000,4.0000 +2016-12-30,29.4167,51.2000,40.0000,16.7532,20.0000,14.1471,12.0000,10.0000,16.0000,25.6667,9.0316,8.4356,2.0000,10.7143,3.6283,3.6000,5.0000,12.0000,1.6000 +2016-12-31,0,47.1111,8.0000,29.9592,0,21.3704,12.0000,12.0000,10.3542,14.8750,9.8405,8.1064,7.8846,8.5000,3.0475,5.5556,5.0000,12.0000,2.0000 +2017-01-01,0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..14711b0199 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" +2016-12,29.4167,47.3846,32.0000,18.5366,20.0000,17.3443,12.0000,11.7778,10.8868,14.8750,9.4149,8.2328,7.8846,7.2581,3.5292,5.5000,5.0000,12.0000,2.0000 +2017-01,0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c1bbe58944 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" +"2016 Q4",29.4167,47.3846,32.0000,18.5366,20.0000,17.3443,12.0000,11.7778,10.8868,14.8750,9.4149,8.2328,7.8846,7.2581,3.5292,5.5000,5.0000,12.0000,2.0000 +"2017 Q1",0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..23add5eefa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" +2016,29.4167,47.3846,32.0000,18.5366,20.0000,17.3443,12.0000,11.7778,10.8868,14.8750,9.4149,8.2328,7.8846,7.2581,3.5292,5.5000,5.0000,12.0000,2.0000 +2017,0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..075dd8cfe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +curry,17.36635320,0.43231344868199684 +derby,15.11302731,1.6600337276402217 +bumbleberry,9.47607744,0.4061045665641317 +bavarian-cream,5.71715278,3.17681542341973 +fish,5.36229167,2.7525534062249517 +blackberry,2.01965278,0.981809205754697 +banana-cream,1.00066216,0.010958541761856734 +cashew,0.68931866,0.18792064181649992 +apple,0.19847458,0.0988363284250378 +chestnut,0.09485043,0.031010135623440054 +blueberry,0.05148148,0.04124068946210757 +cheese,0.00100000,0.00007314228762270922 +butter,0.00052469,0.0001658900772122578 +green-grape,0.00035053,0.00004725922431779173 +boysenberry,0.00033120,0.00008379721778329067 +buttermilk,0.00016606,0.000023797091252046995 +coconut-cream,0.00016340,0.000030824909099336814 +flapper,0.00006944,0.000060140653040586014 +cherry,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..075dd8cfe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +curry,17.36635320,0.43231344868199684 +derby,15.11302731,1.6600337276402217 +bumbleberry,9.47607744,0.4061045665641317 +bavarian-cream,5.71715278,3.17681542341973 +fish,5.36229167,2.7525534062249517 +blackberry,2.01965278,0.981809205754697 +banana-cream,1.00066216,0.010958541761856734 +cashew,0.68931866,0.18792064181649992 +apple,0.19847458,0.0988363284250378 +chestnut,0.09485043,0.031010135623440054 +blueberry,0.05148148,0.04124068946210757 +cheese,0.00100000,0.00007314228762270922 +butter,0.00052469,0.0001658900772122578 +green-grape,0.00035053,0.00004725922431779173 +boysenberry,0.00033120,0.00008379721778329067 +buttermilk,0.00016606,0.000023797091252046995 +coconut-cream,0.00016340,0.000030824909099336814 +flapper,0.00006944,0.000060140653040586014 +cherry,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..075dd8cfe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +curry,17.36635320,0.43231344868199684 +derby,15.11302731,1.6600337276402217 +bumbleberry,9.47607744,0.4061045665641317 +bavarian-cream,5.71715278,3.17681542341973 +fish,5.36229167,2.7525534062249517 +blackberry,2.01965278,0.981809205754697 +banana-cream,1.00066216,0.010958541761856734 +cashew,0.68931866,0.18792064181649992 +apple,0.19847458,0.0988363284250378 +chestnut,0.09485043,0.031010135623440054 +blueberry,0.05148148,0.04124068946210757 +cheese,0.00100000,0.00007314228762270922 +butter,0.00052469,0.0001658900772122578 +green-grape,0.00035053,0.00004725922431779173 +boysenberry,0.00033120,0.00008379721778329067 +buttermilk,0.00016606,0.000023797091252046995 +coconut-cream,0.00016340,0.000030824909099336814 +flapper,0.00006944,0.000060140653040586014 +cherry,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..075dd8cfe7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +curry,17.36635320,0.43231344868199684 +derby,15.11302731,1.6600337276402217 +bumbleberry,9.47607744,0.4061045665641317 +bavarian-cream,5.71715278,3.17681542341973 +fish,5.36229167,2.7525534062249517 +blackberry,2.01965278,0.981809205754697 +banana-cream,1.00066216,0.010958541761856734 +cashew,0.68931866,0.18792064181649992 +apple,0.19847458,0.0988363284250378 +chestnut,0.09485043,0.031010135623440054 +blueberry,0.05148148,0.04124068946210757 +cheese,0.00100000,0.00007314228762270922 +butter,0.00052469,0.0001658900772122578 +green-grape,0.00035053,0.00004725922431779173 +boysenberry,0.00033120,0.00008379721778329067 +buttermilk,0.00016606,0.000023797091252046995 +coconut-cream,0.00016340,0.000030824909099336814 +flapper,0.00006944,0.000060140653040586014 +cherry,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..88e77aeaab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,9.33222222,0.00027778,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,9.59638889,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0.00000000,0,0,71.01250000,0,19.93652778,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.00000000,0,0,0.00000000,0.00066667,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-27,209.81746528,59.93611111,0,0.00083333,0.00021605,0.00000000,0.00701389,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0 +2016-12-28,7.48608790,48.16361111,0,0.00000000,20.57444444,0.00000000,21.45017857,1.68000000,0.00000000,0.00000000,0,0.00027778,0,0,0,0,0.00000000,0,0 +2016-12-29,5.81631026,4.82536723,0,11.37972222,21.88555556,0.00023810,0.24878457,4.46097222,0.01591270,0.00000000,0.00111111,0.00000000,0,0,0.00444444,0.00062500,0.00000000,0.00000000,0.00027778 +2016-12-30,39.92114191,19.85405208,0.82041667,0.01722222,0.00000000,2.06130952,0.53357648,0.00000000,0.01065736,0.00000000,0.07666667,0.00105159,0.00111111,0.00048203,0.00000000,0.00015625,0.00020833,0.00000000,0.00000000 +2016-12-31,12.42062874,1.10944444,0.02019097,6.17527778,0,3.23995726,1.53762378,0.00626263,0.11755524,0.00000000,0.00000000,0,0.00083333,0.00030864,0.00025054,0.00010913,0.00020833,0.00000000,0.00000000 +2017-01-01,3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a6adc14838 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" +2016-12,25.86811964,16.25263381,0.10910494,5.90136201,5.36229167,2.01965278,1.05952936,0.68931866,0.19058715,0.00027778,0.05148148,0.00100000,0.00104167,0.00040528,0.00033120,0.00016493,0.00019231,0.00000000,0.00004630 +2017-01,3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d8408c3df3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" +"2016 Q4",25.86811964,16.25263381,0.10910494,5.90136201,5.36229167,2.01965278,1.05952936,0.68931866,0.19058715,0.00027778,0.05148148,0.00100000,0.00104167,0.00040528,0.00033120,0.00016493,0.00019231,0.00000000,0.00004630 +"2017 Q1",3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ff0d172d1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" +2016,25.86811964,16.25263381,0.10910494,5.90136201,5.36229167,2.01965278,1.05952936,0.68931866,0.19058715,0.00027778,0.05148148,0.00100000,0.00104167,0.00040528,0.00033120,0.00016493,0.00019231,0.00000000,0.00004630 +2017,3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0bcc2e72fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +fish,56.39826389, +cashew,52.33125262, +blackberry,32.98881944, +cherry,20.86393519, +chestnut,19.91282051,2.1056822673563573 +bavarian-cream,17.55212674,1.2486055997312684 +blueberry,14.15629630, +derby,12.82976773,0.2736079180061734 +flapper,8.31937500,1.758450675650033 +curry,7.22967390,0.06752539637685569 +coconut-cream,4.27458333,1.3636086939550018 +butter,4.27419753,1.9826157773353121 +cheese,3.27557407,1.8974472070685748 +buttermilk,2.25963164,0.3305676586108775 +apple,2.14775319,0.19749051273720875 +boysenberry,2.06233440,0.6979901163451202 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.29142405,0.0039213031414646465 +green-grape,0.24977844,0.027470879511390763 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d039c1a8fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +fish,56.39826389,4.065482404541014 +cashew,52.33125262, +blackberry,32.98881944,4.907191137280996 +cherry,20.86393519, +chestnut,19.91282051,17.106656154646572 +bavarian-cream,17.55212674,6.302362026984183 +blueberry,14.15629630,6.390708867631212 +derby,12.82976773,1.1396776128081025 +flapper,8.31937500,4.627752624288676 +curry,7.22967390,0.10681018199334268 +coconut-cream,4.27458333,2.910285751771729 +butter,4.27419753,1.9826157773353121 +cheese,3.27557407,3.0868090132704915 +buttermilk,2.25963164,0.45223146995766755 +apple,2.14775319,0.46608626069827297 +boysenberry,2.06233440,1.020659794218047 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.29142405,0.006647687967527504 +green-grape,0.24977844,0.027470879511390763 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d039c1a8fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +fish,56.39826389,4.065482404541014 +cashew,52.33125262, +blackberry,32.98881944,4.907191137280996 +cherry,20.86393519, +chestnut,19.91282051,17.106656154646572 +bavarian-cream,17.55212674,6.302362026984183 +blueberry,14.15629630,6.390708867631212 +derby,12.82976773,1.1396776128081025 +flapper,8.31937500,4.627752624288676 +curry,7.22967390,0.10681018199334268 +coconut-cream,4.27458333,2.910285751771729 +butter,4.27419753,1.9826157773353121 +cheese,3.27557407,3.0868090132704915 +buttermilk,2.25963164,0.45223146995766755 +apple,2.14775319,0.46608626069827297 +boysenberry,2.06233440,1.020659794218047 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.29142405,0.006647687967527504 +green-grape,0.24977844,0.027470879511390763 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d039c1a8fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +fish,56.39826389,4.065482404541014 +cashew,52.33125262, +blackberry,32.98881944,4.907191137280996 +cherry,20.86393519, +chestnut,19.91282051,17.106656154646572 +bavarian-cream,17.55212674,6.302362026984183 +blueberry,14.15629630,6.390708867631212 +derby,12.82976773,1.1396776128081025 +flapper,8.31937500,4.627752624288676 +curry,7.22967390,0.10681018199334268 +coconut-cream,4.27458333,2.910285751771729 +butter,4.27419753,1.9826157773353121 +cheese,3.27557407,3.0868090132704915 +buttermilk,2.25963164,0.45223146995766755 +apple,2.14775319,0.46608626069827297 +boysenberry,2.06233440,1.020659794218047 +bumbleberry,1.14896946,0.018444353071530424 +banana-cream,0.29142405,0.006647687967527504 +green-grape,0.24977844,0.027470879511390763 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..afc93db07e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" +2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0 +2016-12-23,0,0,0,0,24.00000000,8.60361111,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0 +2016-12-24,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0 +2016-12-25,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,0,9.05629630,0,0,5.33888889,0 +2016-12-26,0,2.70416667,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,24.00000000,0 +2016-12-27,2.13466049,24.00000000,3.21666667,0,24.00000000,11.29064815,0,20.41216667,0,13.59736111,3.79972222,0,0,0,18.99236111,0,0,8.65477778,0 +2016-12-28,22.00297222,9.02631944,24.00000000,0,24.00000000,24.00000000,0,12.38001852,0,8.99163222,24.00000000,0,4.70055556,0,24.00000000,0,0,19.55070175,0 +2016-12-29,22.94106481,23.88776389,18.14590278,7.17361111,24.00000000,12.52206790,8.80250000,9.78945571,10.40083333,13.31133445,24.00000000,0,24.00000000,3.66944444,9.62803030,3.62000000,0,2.48477935,0 +2016-12-30,13.52039352,18.92284722,19.86340741,11.30094444,24.00000000,10.81968254,10.45462963,5.89399351,5.72296296,5.76451523,4.90727778,0.78768519,1.36220370,3.04096451,1.22909241,24.00000000,0.47291667,0.28419410,0.28144608 +2016-12-31,0,23.17923611,11.24478395,16.67157407,24.00000000,3.98948232,2.30250000,5.63927438,1.42666667,6.73292814,3.60929012,19.78805556,0,1.76819444,1.22792110,1.19215812,0.19661458,0.32299984,0.22569959 +2017-01-01,0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..df2fdca9c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" +2016-12,56.39826389,42.39165094,27.64086310,18.94884259,232.74638889,17.36833333,14.15629630,13.39134316,9.66546296,9.93756641,8.37074786,5.53777778,3.27557407,2.82398003,2.43680996,1.72331197,0.22731481,0.32910885,0.25677140 +2017-01,0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a74dee4dc6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" +"2016 Q4",56.39826389,42.39165094,27.64086310,18.94884259,232.74638889,17.36833333,14.15629630,13.39134316,9.66546296,9.93756641,8.37074786,5.53777778,3.27557407,2.82398003,2.43680996,1.72331197,0.22731481,0.32910885,0.25677140 +"2017 Q1",0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b93cabee5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" +2016,56.39826389,42.39165094,27.64086310,18.94884259,232.74638889,17.36833333,14.15629630,13.39134316,9.66546296,9.93756641,8.37074786,5.53777778,3.27557407,2.82398003,2.43680996,1.72331197,0.22731481,0.32910885,0.25677140 +2017,0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4cbdbfe794 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"User Expansion Factor" +bumbleberry,9.2475 +banana-cream,3.2904 +curry,3.2822 +derby,1.7973 +bavarian-cream,1.4475 +fish,1.0951 +apple,1.0924 +blackberry,1.0612 +cashew,1.0132 +chestnut,1.0048 +blueberry,1.0036 +green-grape,1.0017 +cheese,1.0003 +boysenberry,1.0002 +butter,1.0002 +buttermilk,1.0000 +cherry,1.0000 +coconut-cream,1.0000 +flapper,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4cbdbfe794 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"User Expansion Factor" +bumbleberry,9.2475 +banana-cream,3.2904 +curry,3.2822 +derby,1.7973 +bavarian-cream,1.4475 +fish,1.0951 +apple,1.0924 +blackberry,1.0612 +cashew,1.0132 +chestnut,1.0048 +blueberry,1.0036 +green-grape,1.0017 +cheese,1.0003 +boysenberry,1.0002 +butter,1.0002 +buttermilk,1.0000 +cherry,1.0000 +coconut-cream,1.0000 +flapper,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4cbdbfe794 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"User Expansion Factor" +bumbleberry,9.2475 +banana-cream,3.2904 +curry,3.2822 +derby,1.7973 +bavarian-cream,1.4475 +fish,1.0951 +apple,1.0924 +blackberry,1.0612 +cashew,1.0132 +chestnut,1.0048 +blueberry,1.0036 +green-grape,1.0017 +cheese,1.0003 +boysenberry,1.0002 +butter,1.0002 +buttermilk,1.0000 +cherry,1.0000 +coconut-cream,1.0000 +flapper,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4cbdbfe794 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"User Expansion Factor" +bumbleberry,9.2475 +banana-cream,3.2904 +curry,3.2822 +derby,1.7973 +bavarian-cream,1.4475 +fish,1.0951 +apple,1.0924 +blackberry,1.0612 +cashew,1.0132 +chestnut,1.0048 +blueberry,1.0036 +green-grape,1.0017 +cheese,1.0003 +boysenberry,1.0002 +butter,1.0002 +buttermilk,1.0000 +cherry,1.0000 +coconut-cream,1.0000 +flapper,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2e74ce3981 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" +2016-12-22,0,0,0,0,0,0,1.0495,0,0,1.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,1.0610,0,1.0495,0,0,1.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,1.0610,0,1.0495,0,0,1.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,1.6550,0,0,1.0610,0,1.0582,0,0,1.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,1.6551,0,0,1.0610,0,1.1463,0,1.0000,1.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,0,1.3633,2.9856,2.0011,1.0432,1.0000,1.1387,1.0000,1.0000,1.0000,0,0,0,0,0,0,0,1.0000,0 +2016-12-28,0,1.0497,1.7119,1.8988,1.0203,1.0111,1.1098,1.0000,1.0025,1.0000,0,0,1.0000,0,0,0,0,1.0000,0 +2016-12-29,0,1.0546,1.4021,1.8673,1.3272,1.1476,1.1000,1.0000,1.0228,1.0000,1.0000,0,1.0000,1.0001,0,1.0000,1.0000,1.0000,1.0000 +2016-12-30,2.7348,2.3347,5.8525,2.1663,1.4286,1.1311,1.0173,1.0157,1.0292,1.0000,1.0049,1.0022,1.0007,1.0001,1.0008,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.0162,5.3897,2.0664,1.2922,1.6816,0,1.0897,1.1709,1.0100,1.0000,1.0001,1.0019,0,1.0002,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01-01,9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..657386eb9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" +2016-12,1.4135,3.2119,3.3736,1.8343,1.3552,1.0951,1.0782,1.0731,1.0149,1.0000,1.0036,1.0021,1.0003,1.0002,1.0003,1.0000,1.0000,1.0000,1.0000 +2017-01,9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..606148e643 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" +"2016 Q4",1.4135,3.2119,3.3736,1.8343,1.3552,1.0951,1.0782,1.0731,1.0149,1.0000,1.0036,1.0021,1.0003,1.0002,1.0003,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..27fbb0d68a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" +2016,1.4135,3.2119,3.3736,1.8343,1.3552,1.0951,1.0782,1.0731,1.0149,1.0000,1.0036,1.0021,1.0003,1.0002,1.0003,1.0000,1.0000,1.0000,1.0000 +2017,9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b8a375c777 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Ended" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b8a375c777 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Ended" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b8a375c777 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Ended" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b8a375c777 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Ended" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..67843a4915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" +2016-12-22,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 +2016-12-24,0,0,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 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,22137,4040,190,2,115,32,34,5,0,4,9,1,15,0,12,3,3,2,2 +2016-12-31,23979,3772,182,4,44,32,27,1,51,8,21,16,0,0,0,0,2,1,1 +2017-01-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f661ecded2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" +2016-12,46116,7812,372,6,159,64,61,6,51,12,30,17,15,0,12,3,5,3,3 +2017-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..19a75f1fd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" +"2016 Q4",46116,7812,372,6,159,64,61,6,51,12,30,17,15,0,12,3,5,3,3 +"2017 Q1",9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c09552b029 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" +2016,46116,7812,372,6,159,64,61,6,51,12,30,17,15,0,12,3,5,3,3 +2017,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8f7c45c5ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Max (Core Count)" +curry,336 +banana-cream,192 +derby,144 +buttermilk,112 +butter,80 +bavarian-cream,64 +coconut-cream,64 +green-grape,48 +fish,32 +apple,24 +cheese,20 +cashew,16 +blueberry,12 +bumbleberry,12 +chestnut,12 +blackberry,8 +boysenberry,8 +flapper,5 +cherry,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8f7c45c5ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Max (Core Count)" +curry,336 +banana-cream,192 +derby,144 +buttermilk,112 +butter,80 +bavarian-cream,64 +coconut-cream,64 +green-grape,48 +fish,32 +apple,24 +cheese,20 +cashew,16 +blueberry,12 +bumbleberry,12 +chestnut,12 +blackberry,8 +boysenberry,8 +flapper,5 +cherry,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8f7c45c5ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Max (Core Count)" +curry,336 +banana-cream,192 +derby,144 +buttermilk,112 +butter,80 +bavarian-cream,64 +coconut-cream,64 +green-grape,48 +fish,32 +apple,24 +cheese,20 +cashew,16 +blueberry,12 +bumbleberry,12 +chestnut,12 +blackberry,8 +boysenberry,8 +flapper,5 +cherry,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8f7c45c5ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Max (Core Count)" +curry,336 +banana-cream,192 +derby,144 +buttermilk,112 +butter,80 +bavarian-cream,64 +coconut-cream,64 +green-grape,48 +fish,32 +apple,24 +cheese,20 +cashew,16 +blueberry,12 +bumbleberry,12 +chestnut,12 +blackberry,8 +boysenberry,8 +flapper,5 +cherry,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bdb343982a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,0,0,0,0 +2016-12-23,0,0,0,0,0,1,0,0,0,12,0,0,0,0,12,0,0,0,0 +2016-12-24,0,0,0,0,0,1,0,0,0,12,0,0,0,0,12,0,0,0,0 +2016-12-25,0,24,0,0,0,1,0,0,0,24,0,0,0,0,12,0,0,0,0 +2016-12-26,0,24,0,0,0,1,0,0,0,24,0,16,0,0,12,0,0,0,0 +2016-12-27,96,24,144,0,0,16,64,0,32,24,0,16,0,0,12,1,0,0,0 +2016-12-28,96,192,144,0,0,16,64,0,32,24,20,16,0,0,12,1,0,0,0 +2016-12-29,160,192,144,112,0,64,64,0,32,24,20,16,12,0,12,4,2,5,4 +2016-12-30,336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,4,2,5,4 +2016-12-31,336,192,96,112,8,64,64,48,0,24,0,16,12,12,12,8,8,5,4 +2017-01-01,192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f11eb720a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" +2016-12,336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,8,8,5,4 +2017-01,192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5f7ecd74ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" +"2016 Q4",336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,8,8,5,4 +"2017 Q1",192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..76eeb79a18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" +2016,336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,8,8,5,4 +2017,192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4a189fc5d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Min (Core Count)" +cheese,20 +blueberry,12 +apple,8 +bumbleberry,8 +butter,8 +coconut-cream,8 +flapper,5 +boysenberry,2 +banana-cream,1 +bavarian-cream,1 +blackberry,1 +buttermilk,1 +cashew,1 +cherry,1 +chestnut,1 +curry,1 +derby,1 +fish,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4a189fc5d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Min (Core Count)" +cheese,20 +blueberry,12 +apple,8 +bumbleberry,8 +butter,8 +coconut-cream,8 +flapper,5 +boysenberry,2 +banana-cream,1 +bavarian-cream,1 +blackberry,1 +buttermilk,1 +cashew,1 +cherry,1 +chestnut,1 +curry,1 +derby,1 +fish,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4a189fc5d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Min (Core Count)" +cheese,20 +blueberry,12 +apple,8 +bumbleberry,8 +butter,8 +coconut-cream,8 +flapper,5 +boysenberry,2 +banana-cream,1 +bavarian-cream,1 +blackberry,1 +buttermilk,1 +cashew,1 +cherry,1 +chestnut,1 +curry,1 +derby,1 +fish,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4a189fc5d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Min (Core Count)" +cheese,20 +blueberry,12 +apple,8 +bumbleberry,8 +butter,8 +coconut-cream,8 +flapper,5 +boysenberry,2 +banana-cream,1 +bavarian-cream,1 +blackberry,1 +buttermilk,1 +cashew,1 +cherry,1 +chestnut,1 +curry,1 +derby,1 +fish,1 +green-grape,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8e00b695cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" +2016-12-22,0,0,12,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0 +2016-12-23,0,0,12,0,0,0,0,0,0,1,0,0,0,0,12,0,0,0,0 +2016-12-24,0,0,12,0,0,0,0,0,0,1,0,0,0,0,12,0,0,0,0 +2016-12-25,0,0,12,0,0,0,0,0,24,1,0,0,0,0,12,0,0,0,0 +2016-12-26,0,0,12,0,0,0,0,0,24,1,0,0,16,0,12,0,0,0,0 +2016-12-27,0,0,12,0,0,64,0,0,8,1,1,0,16,0,12,8,12,1,0 +2016-12-28,20,0,12,0,0,64,0,0,8,1,1,0,16,0,12,1,12,1,0 +2016-12-29,20,12,8,0,0,64,5,2,4,1,1,112,16,4,12,1,1,1,0 +2016-12-30,20,12,8,8,20,32,5,2,1,1,1,1,16,1,12,1,1,1,1 +2016-12-31,0,12,8,12,8,8,5,2,1,1,1,1,1,1,12,1,1,0,1 +2017-01-01,0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b705cba713 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" +2016-12,20,12,8,8,8,8,5,2,1,1,1,1,1,1,12,1,1,1,1 +2017-01,0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4cda49e9a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" +"2016 Q4",20,12,8,8,8,8,5,2,1,1,1,1,1,1,12,1,1,1,1 +"2017 Q1",0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5e2ad7c637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" +2016,20,12,8,8,8,8,5,2,1,1,1,1,1,1,12,1,1,1,1 +2017,0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7089d76497 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bavarian-cream,0.176562500 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..74d5496634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Job Size: Normalized (% of Total Cores)" +fish,0.735416667 +coconut-cream,0.717647059 +butter,0.633333333 +derby,0.505084746 +cheese,0.500000000 +green-grape,0.472023810 +blueberry,0.300000000 +cashew,0.272169811 +buttermilk,0.266304348 +bumbleberry,0.149783550 +curry,0.138930798 +flapper,0.125000000 +apple,0.102448211 +chestnut,0.101923077 +boysenberry,0.098557692 +bavarian-cream,0.088281250 +blackberry,0.068750000 +banana-cream,0.059099836 +cherry,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv new file mode 100644 index 0000000000..dc248afd62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 +2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 +2016-12-27,0.713888889,1.600000000,0,1.460000000,0,0,0,0.400000000,0,0,1.025000000,0,0.450000000,0.300000000,0,0.275000000,0.025000000,0.200000000,0 +2016-12-28,0.722500000,1.600000000,0,1.046666667,0.500000000,0,0,0.400000000,0,0,0.134630607,0,0.450000000,0.300000000,0,0.275000000,0.025000000,1.176315789,0 +2016-12-29,0.735416667,1.600000000,0,0.345270270,0.500000000,0,0.300000000,0.400000000,2.800000000,0,0.097568671,0.125000000,0.290909091,0.300000000,0.050000000,0.361111111,0.081250000,0.139112903,0.100000000 +2016-12-30,0.735416667,1.280000000,1.000000000,0.418831169,0.500000000,0.353676471,0.300000000,0.400000000,0.641666667,0.250000000,0.090706540,0.125000000,0.105445545,0.300000000,0.050000000,0.267857143,0.090000000,0.056447577,0.040000000 +2016-12-31,0,1.177777778,0.200000000,0.748979592,0,0.534259259,0.300000000,0.258854167,0.371875000,0.300000000,0.076186990,0.125000000,0.101329787,0.300000000,0.098557692,0.106250000,0.069444444,0.061502875,0.050000000 +2017-01-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..dc248afd62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 +2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 +2016-12-27,0.713888889,1.600000000,0,1.460000000,0,0,0,0.400000000,0,0,1.025000000,0,0.450000000,0.300000000,0,0.275000000,0.025000000,0.200000000,0 +2016-12-28,0.722500000,1.600000000,0,1.046666667,0.500000000,0,0,0.400000000,0,0,0.134630607,0,0.450000000,0.300000000,0,0.275000000,0.025000000,1.176315789,0 +2016-12-29,0.735416667,1.600000000,0,0.345270270,0.500000000,0,0.300000000,0.400000000,2.800000000,0,0.097568671,0.125000000,0.290909091,0.300000000,0.050000000,0.361111111,0.081250000,0.139112903,0.100000000 +2016-12-30,0.735416667,1.280000000,1.000000000,0.418831169,0.500000000,0.353676471,0.300000000,0.400000000,0.641666667,0.250000000,0.090706540,0.125000000,0.105445545,0.300000000,0.050000000,0.267857143,0.090000000,0.056447577,0.040000000 +2016-12-31,0,1.177777778,0.200000000,0.748979592,0,0.534259259,0.300000000,0.258854167,0.371875000,0.300000000,0.076186990,0.125000000,0.101329787,0.300000000,0.098557692,0.106250000,0.069444444,0.061502875,0.050000000 +2017-01-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7a93f963a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0.300000000,0.300000000,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0.300000000,0.300000000,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0.400000000,0.300000000,0,0,0.600000000,0 +2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0.025000000,0,0,0,0.400000000,0.300000000,0,0,0.600000000,0 +2016-12-27,0.713888889,1.600000000,0,1.460000000,0,0,0,0.400000000,0,0.275000000,0,1.025000000,0,0.450000000,0.300000000,0,0.025000000,0.200000000,0 +2016-12-28,0.722500000,1.600000000,0,1.046666667,0.500000000,0,0,0.400000000,0,0.275000000,0,0.134630607,0,0.450000000,0.300000000,0,0.025000000,1.176315789,0 +2016-12-29,0.735416667,1.600000000,0,0.345270270,0.500000000,0,0.300000000,0.400000000,2.800000000,0.361111111,0,0.097568671,0.125000000,0.290909091,0.300000000,0.050000000,0.081250000,0.139112903,0.100000000 +2016-12-30,0.735416667,1.280000000,1.000000000,0.418831169,0.500000000,0.353676471,0.300000000,0.400000000,0.641666667,0.267857143,0.250000000,0.090706540,0.125000000,0.105445545,0.300000000,0.050000000,0.090000000,0.056447577,0.040000000 +2016-12-31,0,1.177777778,0.200000000,0.748979592,0,0.534259259,0.300000000,0.258854167,0.371875000,0.106250000,0.300000000,0.076186990,0.125000000,0.101329787,0.300000000,0.098557692,0.069444444,0.061502875,0.050000000 +2017-01-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.212500000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.093181818,0.060674534,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5d18a46b8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" +2016-12,0.735416667,1.184615385,0.800000000,0.463414634,0.500000000,0.433606557,0.300000000,0.272169811,0.371875000,0.147222222,0.088229793,0.125000000,0.102910053,0.300000000,0.098557692,0.090725806,0.068750000,0.058843074,0.050000000 +2017-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2ddbc6bf98 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.735416667,1.184615385,0.800000000,0.463414634,0.500000000,0.433606557,0.300000000,0.272169811,0.371875000,0.147222222,0.088229793,0.125000000,0.102910053,0.300000000,0.098557692,0.090725806,0.068750000,0.058843074,0.050000000 +"2017 Q1",0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b5a1a2476a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" +2016,0.735416667,1.184615385,0.800000000,0.463414634,0.500000000,0.433606557,0.300000000,0.272169811,0.371875000,0.147222222,0.088229793,0.125000000,0.102910053,0.300000000,0.098557692,0.090725806,0.068750000,0.058843074,0.050000000 +2017,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..710c356038 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Running" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..710c356038 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Running" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..710c356038 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Running" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..710c356038 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Running" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5891454656 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" +2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2016-12-23,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 +2016-12-24,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 +2016-12-25,1,0,3,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 +2016-12-26,1,0,3,0,0,0,0,5,0,0,1,0,0,1,0,0,0,0,0 +2016-12-27,5,8,4,0,5,0,0,5,0,1,3,1,0,1,9,0,0,0,0 +2016-12-28,19,379,4,0,15,0,0,16,0,1,3,1,1,1,10,0,0,0,0 +2016-12-29,248,1347,11,0,74,4,0,20,1,1,9,8,1,1,12,0,1,1,1 +2016-12-30,22428,5902,202,2,154,36,34,20,1,5,14,15,15,1,12,3,5,3,3 +2016-12-31,24345,4781,188,16,49,32,27,48,52,9,22,27,0,1,0,1,3,1,1 +2017-01-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..27ba4c0e95 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" +2016-12,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +2017-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..41477d7fdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" +"2016 Q4",46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +"2017 Q1",9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cf72e2fa3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" +2016,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +2017,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..63d452e614 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Started" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..63d452e614 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Started" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..63d452e614 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Started" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..63d452e614 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Started" +banana-cream,55819 +curry,14118 +apple,531 +bumbleberry,231 +derby,177 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0cead458ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" +2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,1,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 +2016-12-25,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,4,8,1,0,5,0,0,0,0,1,2,1,0,0,9,0,0,0,0 +2016-12-28,14,371,0,0,10,0,0,11,0,0,0,0,1,0,1,0,0,0,0 +2016-12-29,229,968,7,0,59,4,0,4,1,0,6,7,0,0,2,0,1,1,1 +2016-12-30,22180,4555,191,2,80,32,34,0,0,4,5,7,14,0,0,3,4,2,2 +2016-12-31,24054,2919,176,16,10,28,27,33,51,8,17,13,0,0,0,1,1,0,0 +2017-01-01,9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7437c0fbc2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" +2016-12,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +2017-01,9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e6fb046cd0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" +"2016 Q4",46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +"2017 Q1",9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3cb8dfd11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" +2016,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +2017,9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5aff5958f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Submitted" +banana-cream,52426 +curry,10762 +apple,526 +bumbleberry,168 +derby,108 +buttermilk,92 +green-grape,84 +boysenberry,52 +cashew,49 +coconut-cream,34 +bavarian-cream,29 +blackberry,27 +cheese,15 +chestnut,13 +butter,9 +fish,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7c80d11f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Submitted" +banana-cream,54661 +curry,13270 +apple,530 +derby,177 +bumbleberry,168 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7c80d11f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Submitted" +banana-cream,54661 +curry,13270 +apple,530 +derby,177 +bumbleberry,168 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7c80d11f4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Number of Jobs Submitted" +banana-cream,54661 +curry,13270 +apple,530 +derby,177 +bumbleberry,168 +buttermilk,92 +green-grape,84 +cashew,53 +boysenberry,52 +coconut-cream,34 +bavarian-cream,32 +blackberry,28 +cheese,15 +chestnut,13 +fish,12 +butter,9 +cherry,6 +flapper,4 +blueberry,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f2a3bc78a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,1,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 +2016-12-25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 +2016-12-27,4,0,1,0,0,0,0,0,0,1,2,1,0,0,0,9,0,0,0 +2016-12-28,9,354,0,0,4,0,0,0,11,0,0,0,1,0,0,0,0,0,0 +2016-12-29,229,896,7,0,55,4,0,1,0,0,4,7,0,0,0,0,1,1,1 +2016-12-30,22052,3280,191,2,28,32,34,0,0,4,5,7,14,0,3,0,4,2,2 +2016-12-31,21953,1783,174,16,8,28,27,51,33,8,16,12,0,0,1,0,1,0,0 +2017-01-01,8179,4449,152,150,13,28,23,0,0,21,1,0,0,12,5,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..30f4f9eb26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" +2016-12,46482,8821,378,164,18,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +2017-01,8179,4449,152,13,150,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d2e092b744 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" +"2016 Q4",46482,8821,378,164,18,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +"2017 Q1",8179,4449,152,13,150,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..28a936e752 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" +2016,46482,8821,378,164,18,64,61,53,52,13,31,28,15,1,12,4,6,3,3 +2017,8179,4449,152,13,150,28,23,0,0,21,1,0,0,12,0,5,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d906a48f1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Total" +curry,372506.7756 +banana-cream,287631.3289 +derby,69435.3011 +cashew,34825.7219 +fish,19424.7181 +buttermilk,14222.7461 +apple,13491.2467 +coconut-cream,8411.0733 +bavarian-cream,7756.7339 +blackberry,3268.7208 +bumbleberry,3184.4200 +chestnut,3079.9728 +cheese,982.6722 +butter,622.5856 +blueberry,509.6267 +boysenberry,442.4361 +green-grape,354.7986 +cherry,238.5711 +flapper,166.3875 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d906a48f1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Total" +curry,372506.7756 +banana-cream,287631.3289 +derby,69435.3011 +cashew,34825.7219 +fish,19424.7181 +buttermilk,14222.7461 +apple,13491.2467 +coconut-cream,8411.0733 +bavarian-cream,7756.7339 +blackberry,3268.7208 +bumbleberry,3184.4200 +chestnut,3079.9728 +cheese,982.6722 +butter,622.5856 +blueberry,509.6267 +boysenberry,442.4361 +green-grape,354.7986 +cherry,238.5711 +flapper,166.3875 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d906a48f1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Total" +curry,372506.7756 +banana-cream,287631.3289 +derby,69435.3011 +cashew,34825.7219 +fish,19424.7181 +buttermilk,14222.7461 +apple,13491.2467 +coconut-cream,8411.0733 +bavarian-cream,7756.7339 +blackberry,3268.7208 +bumbleberry,3184.4200 +chestnut,3079.9728 +cheese,982.6722 +butter,622.5856 +blueberry,509.6267 +boysenberry,442.4361 +green-grape,354.7986 +cherry,238.5711 +flapper,166.3875 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d906a48f1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"CPU Hours: Total" +curry,372506.7756 +banana-cream,287631.3289 +derby,69435.3011 +cashew,34825.7219 +fish,19424.7181 +buttermilk,14222.7461 +apple,13491.2467 +coconut-cream,8411.0733 +bavarian-cream,7756.7339 +blackberry,3268.7208 +bumbleberry,3184.4200 +chestnut,3079.9728 +cheese,982.6722 +butter,622.5856 +blueberry,509.6267 +boysenberry,442.4361 +green-grape,354.7986 +cherry,238.5711 +flapper,166.3875 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1301a4a0e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" +2016-12-22,0,0,0,0,0,0,203.3000,0,0,0,0,200.9567,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,288.0000,0,8.6036,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,288.0000,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-25,0,128.1333,0,0,0,0,338.1367,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-26,0,576.0000,0,216.3333,0,0,1152.0000,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-27,4298.0267,877.5867,6025.4956,1920.0000,468.4192,0,1247.2667,243.1822,181.9511,3.2167,0,288.0000,0,0,0,0,0,0,0 +2016-12-28,27128.3481,32475.8044,9314.8578,2310.7378,6296.9511,0,1728.0000,1536.0000,792.0000,24.0000,0,288.0000,94.0111,0,0,0,0,0,0 +2016-12-29,82466.3581,44979.1733,20250.6908,7644.0844,8065.3689,1643.9111,1807.2667,1536.0000,1405.2617,502.0997,0,288.0000,480.0000,0,105.6300,7.2400,0,28.6944,52.0042 +2016-12-30,127515.2189,102135.2125,16077.3053,6055.3111,4593.9789,9238.5464,2360.4422,1562.0711,2889.9206,1047.8044,10.8267,288.0000,408.6611,188.5778,376.3667,48.0000,141.2678,95.9114,85.8444 +2016-12-31,89170.4531,95510.8442,13950.0572,11780.8131,0,3313.1372,2237.0833,2067.3578,2035.3847,1122.1397,37.7500,288.0000,0,158.3044,27.6300,351.9378,103.6008,68.0031,7.1333 +2017-01-01,41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..559f43d1c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" +2016-12,330578.4047,276682.7544,65618.4067,29927.2797,19424.7181,14195.5947,11649.4956,6944.6111,7385.1217,2699.2606,48.5767,2792.9567,982.6722,346.8822,509.6267,407.1778,244.8686,192.6089,144.9819 +2017-01,41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..67ca28213b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" +"2016 Q4",330578.4047,276682.7544,65618.4067,29927.2797,19424.7181,14195.5947,11649.4956,6944.6111,7385.1217,2699.2606,48.5767,2792.9567,982.6722,346.8822,509.6267,407.1778,244.8686,192.6089,144.9819 +"2017 Q1",41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..07565d1335 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" +2016,330578.4047,276682.7544,65618.4067,29927.2797,19424.7181,14195.5947,11649.4956,6944.6111,7385.1217,2699.2606,48.5767,2792.9567,982.6722,346.8822,509.6267,407.1778,244.8686,192.6089,144.9819 +2017,41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b34d1945dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Total" +chestnut,506.9128 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b34d1945dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Total" +chestnut,506.9128 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b34d1945dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Total" +chestnut,506.9128 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b34d1945dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"GPU Hours: Total" +chestnut,506.9128 +apple,0.0000 +banana-cream,0.0000 +bavarian-cream,0.0000 +blackberry,0.0000 +blueberry,0.0000 +boysenberry,0.0000 +bumbleberry,0.0000 +butter,0.0000 +buttermilk,0.0000 +cashew,0.0000 +cheese,0.0000 +cherry,0.0000 +coconut-cream,0.0000 +curry,0.0000 +derby,0.0000 +fish,0.0000 +flapper,0.0000 +green-grape,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5eadc61d87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" +2016-12-22,33.4928,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0 +2016-12-28,48.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fc2e5d6f85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..52e017930e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..35d31541e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b14334bc4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Total" +curry,117317.4928 +banana-cream,23087.8978 +derby,6702.5344 +cashew,2773.5564 +apple,1140.4758 +coconut-cream,1051.3842 +buttermilk,965.4461 +blackberry,923.6869 +bavarian-cream,706.9989 +fish,676.7792 +bumbleberry,265.4119 +chestnut,258.8667 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +butter,45.5336 +blueberry,42.4689 +flapper,33.2775 +green-grape,30.3778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b14334bc4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Total" +curry,117317.4928 +banana-cream,23087.8978 +derby,6702.5344 +cashew,2773.5564 +apple,1140.4758 +coconut-cream,1051.3842 +buttermilk,965.4461 +blackberry,923.6869 +bavarian-cream,706.9989 +fish,676.7792 +bumbleberry,265.4119 +chestnut,258.8667 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +butter,45.5336 +blueberry,42.4689 +flapper,33.2775 +green-grape,30.3778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b14334bc4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Total" +curry,117317.4928 +banana-cream,23087.8978 +derby,6702.5344 +cashew,2773.5564 +apple,1140.4758 +coconut-cream,1051.3842 +buttermilk,965.4461 +blackberry,923.6869 +bavarian-cream,706.9989 +fish,676.7792 +bumbleberry,265.4119 +chestnut,258.8667 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +butter,45.5336 +blueberry,42.4689 +flapper,33.2775 +green-grape,30.3778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b14334bc4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Node Hours: Total" +curry,117317.4928 +banana-cream,23087.8978 +derby,6702.5344 +cashew,2773.5564 +apple,1140.4758 +coconut-cream,1051.3842 +buttermilk,965.4461 +blackberry,923.6869 +bavarian-cream,706.9989 +fish,676.7792 +bumbleberry,265.4119 +chestnut,258.8667 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +butter,45.5336 +blueberry,42.4689 +flapper,33.2775 +green-grape,30.3778 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2af0a65247 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" +2016-12-22,0,0,0,0,16.9417,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,24.0000,0,0,0,8.6036,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,24.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-25,0,5.3389,0,0,27.1689,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-26,0,24.0000,0,13.5208,72.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-27,381.4444,43.2739,475.0061,120.0000,75.9694,30.3978,0,3.2167,33.8719,19.2119,0,24.0000,0,0,0,0,0,0,0 +2016-12-28,5007.0311,2052.4114,778.0228,144.4211,96.0000,192.0000,0,24.0000,72.0000,220.0297,0,24.0000,0,0,4.7006,0,0,0,0 +2016-12-29,22228.5850,2891.2000,1898.0608,477.7553,105.9083,192.0000,102.7444,145.1672,133.7861,275.2928,0,24.0000,7.1736,3.6200,24.0000,0,8.8025,10.4008,0 +2016-12-30,39578.4328,8656.0339,1769.0444,378.4569,248.2956,195.2589,602.9381,297.9511,223.4756,162.2447,0.9458,24.0000,56.5047,24.0000,20.4331,9.4289,31.3639,17.1689,12.5828 +2016-12-31,35055.1525,8446.2783,1437.9561,1112.6033,230.8492,258.4197,232.6122,303.6092,140.0119,0,3.1458,24.0000,50.0147,61.9922,0,19.7881,2.3025,1.4267,8.6342 +2017-01-01,15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7e723636e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" +2016-12,102250.6458,22118.5364,6358.0903,2246.7575,921.1331,868.0764,938.2947,773.9442,683.7492,676.7792,4.0917,232.7464,113.6931,89.6122,49.1336,29.2169,42.4689,28.9964,21.2169 +2017-01,15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e39cce3f30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" +"2016 Q4",102250.6458,22118.5364,6358.0903,2246.7575,921.1331,868.0764,938.2947,773.9442,683.7492,676.7792,4.0917,232.7464,113.6931,89.6122,49.1336,29.2169,42.4689,28.9964,21.2169 +"2017 Q1",15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3274ab14a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" +2016,102250.6458,22118.5364,6358.0903,2246.7575,921.1331,868.0764,938.2947,773.9442,683.7492,676.7792,4.0917,232.7464,113.6931,89.6122,49.1336,29.2169,42.4689,28.9964,21.2169 +2017,15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bedd680683 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Total" +curry,245178.1744 +banana-cream,55855.9608 +derby,2675.0058 +bumbleberry,2188.9739 +bavarian-cream,182.9489 +apple,105.3900 +fish,64.3475 +blackberry,56.5503 +cashew,36.5339 +chestnut,1.2331 +blueberry,0.1544 +green-grape,0.0294 +boysenberry,0.0172 +buttermilk,0.0153 +cheese,0.0150 +coconut-cream,0.0056 +butter,0.0047 +cherry,0.0003 +flapper,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bedd680683 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Total" +curry,245178.1744 +banana-cream,55855.9608 +derby,2675.0058 +bumbleberry,2188.9739 +bavarian-cream,182.9489 +apple,105.3900 +fish,64.3475 +blackberry,56.5503 +cashew,36.5339 +chestnut,1.2331 +blueberry,0.1544 +green-grape,0.0294 +boysenberry,0.0172 +buttermilk,0.0153 +cheese,0.0150 +coconut-cream,0.0056 +butter,0.0047 +cherry,0.0003 +flapper,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bedd680683 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Total" +curry,245178.1744 +banana-cream,55855.9608 +derby,2675.0058 +bumbleberry,2188.9739 +bavarian-cream,182.9489 +apple,105.3900 +fish,64.3475 +blackberry,56.5503 +cashew,36.5339 +chestnut,1.2331 +blueberry,0.1544 +green-grape,0.0294 +boysenberry,0.0172 +buttermilk,0.0153 +cheese,0.0150 +coconut-cream,0.0056 +butter,0.0047 +cherry,0.0003 +flapper,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bedd680683 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wait Hours: Total" +curry,245178.1744 +banana-cream,55855.9608 +derby,2675.0058 +bumbleberry,2188.9739 +bavarian-cream,182.9489 +apple,105.3900 +fish,64.3475 +blackberry,56.5503 +cashew,36.5339 +chestnut,1.2331 +blueberry,0.1544 +green-grape,0.0294 +boysenberry,0.0172 +buttermilk,0.0153 +cheese,0.0150 +coconut-cream,0.0056 +butter,0.0047 +cherry,0.0003 +flapper,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..70eb897db0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" +2016-12-22,0,0,0,0,0,9.3322,0,0,0,0.0003,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,9.5964,0.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,71.0125,0,0,0.0000,39.8731,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0.0000,0,0,0.0000,0.0000,0,0,0.0033,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,1678.5397,0.0281,299.6806,0,0.0017,0.0000,0.0019,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0 +2016-12-28,2777.3386,300.3025,481.6361,0,0.0000,0.0000,20.5744,0.0000,18.4800,0.0000,0,0,0,0,0.0003,0.0000,0,0,0 +2016-12-29,5630.1883,56.9717,284.6967,0,68.2783,0.1114,43.7711,0.0017,17.8439,0.0000,0.0011,0,0.0044,0.0025,0.0000,0.0000,0,0.0003,0.0000 +2016-12-30,181840.8014,11834.7264,1588.3242,1.6408,0.0861,2.0356,0.0000,14.4292,0.0000,0.0000,0.1533,0.0164,0.0000,0.0050,0.0147,0.0008,0.0033,0.0000,0.0000 +2016-12-31,36255.8153,36986.0025,11.0944,0.3231,104.9797,20.6897,0,42.1194,0.2067,0.0000,0.0000,0.0083,0.0128,0.0031,0,0.0017,0.0008,0.0000,0.0000 +2017-01-01,16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..58e3b185f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" +2016-12,228182.6833,49249.0436,2665.4319,1.9639,182.9422,72.0419,64.3475,56.5503,36.5339,0.0003,0.1544,0.0247,0.0172,0.0106,0.0150,0.0025,0.0042,0.0003,0.0000 +2017-01,16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ec32f0a67d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" +"2016 Q4",228182.6833,49249.0436,2665.4319,1.9639,182.9422,72.0419,64.3475,56.5503,36.5339,0.0003,0.1544,0.0247,0.0172,0.0106,0.0150,0.0025,0.0042,0.0003,0.0000 +"2017 Q1",16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a3a655cd04 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" +2016,228182.6833,49249.0436,2665.4319,1.9639,182.9422,72.0419,64.3475,56.5503,36.5339,0.0003,0.1544,0.0247,0.0172,0.0106,0.0150,0.0025,0.0042,0.0003,0.0000 +2017,16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..017634c2b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Total" +curry,102068.5361 +banana-cream,16266.9992 +cashew,2773.5564 +derby,2270.8689 +apple,1140.4569 +blackberry,923.6869 +fish,676.7792 +bavarian-cream,561.6681 +bumbleberry,265.4119 +chestnut,258.8667 +buttermilk,207.8861 +coconut-cream,145.3358 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +blueberry,42.4689 +butter,38.4678 +flapper,33.2775 +green-grape,20.9814 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..017634c2b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Total" +curry,102068.5361 +banana-cream,16266.9992 +cashew,2773.5564 +derby,2270.8689 +apple,1140.4569 +blackberry,923.6869 +fish,676.7792 +bavarian-cream,561.6681 +bumbleberry,265.4119 +chestnut,258.8667 +buttermilk,207.8861 +coconut-cream,145.3358 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +blueberry,42.4689 +butter,38.4678 +flapper,33.2775 +green-grape,20.9814 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..017634c2b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Total" +curry,102068.5361 +banana-cream,16266.9992 +cashew,2773.5564 +derby,2270.8689 +apple,1140.4569 +blackberry,923.6869 +fish,676.7792 +bavarian-cream,561.6681 +bumbleberry,265.4119 +chestnut,258.8667 +buttermilk,207.8861 +coconut-cream,145.3358 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +blueberry,42.4689 +butter,38.4678 +flapper,33.2775 +green-grape,20.9814 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..017634c2b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Wall Hours: Total" +curry,102068.5361 +banana-cream,16266.9992 +cashew,2773.5564 +derby,2270.8689 +apple,1140.4569 +blackberry,923.6869 +fish,676.7792 +bavarian-cream,561.6681 +bumbleberry,265.4119 +chestnut,258.8667 +buttermilk,207.8861 +coconut-cream,145.3358 +cherry,125.1836 +boysenberry,107.2414 +cheese,49.1336 +blueberry,42.4689 +butter,38.4678 +flapper,33.2775 +green-grape,20.9814 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6c31243be5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" +2016-12-22,0,0,0,0,16.9417,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,24.0000,0,0,8.6036,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,24.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,5.3389,0,0,27.1689,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,24.0000,13.5208,0,72.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,108.7789,43.2739,120.0000,102.0608,75.9694,3.2167,19.2119,33.8719,0,24.0000,0,3.7997,0,0,0,0,0,0,0 +2016-12-28,3407.8286,371.4633,144.4211,185.7003,96.0000,24.0000,220.0297,72.0000,0,24.0000,0,24.0000,0,0,4.7006,0,0,0,0 +2016-12-29,17930.3675,616.2253,477.7553,724.4197,105.9083,145.1672,275.2928,112.6986,0,24.0000,14.6778,24.0000,7.1736,3.6200,24.0000,8.8025,0,10.4008,0 +2016-12-30,34022.1689,6373.9053,378.4569,907.6750,248.2767,297.9511,162.2447,151.4756,0.9458,24.0000,109.4747,24.5364,56.5047,24.0000,20.4331,31.3639,2.3631,17.1689,9.5692 +2016-12-31,32190.1294,7863.4311,1112.6033,276.3244,230.8492,303.6092,0,87.7686,3.1458,24.0000,56.5822,32.4836,50.0147,61.9922,0,2.3025,19.7881,1.4267,6.0939 +2017-01-01,14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ff9cac9053 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" +2016-12,87659.2733,15297.6378,2246.7575,2196.1803,921.1142,773.9442,676.7792,538.4183,4.0917,232.7464,180.7347,108.8197,113.6931,89.6122,49.1336,42.4689,22.1511,28.9964,15.6631 +2017-01,14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1bd489cd82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" +"2016 Q4",87659.2733,15297.6378,2246.7575,2196.1803,921.1142,773.9442,676.7792,538.4183,4.0917,232.7464,180.7347,108.8197,113.6931,89.6122,49.1336,42.4689,22.1511,28.9964,15.6631 +"2017 Q1",14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..463daaf221 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" +2016,87659.2733,15297.6378,2246.7575,2196.1803,921.1142,773.9442,676.7792,538.4183,4.0917,232.7464,180.7347,108.8197,113.6931,89.6122,49.1336,42.4689,22.1511,28.9964,15.6631 +2017,14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8053ecfbfc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv @@ -0,0 +1,28 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Screwdriver CPU Utilization (%)" +curry,35.2753 +banana-cream,8.5605 +derby,6.5753 +cashew,5.1824 +buttermilk,2.4692 +fish,1.8395 +coconut-cream,0.7965 +apple,0.7807 +bavarian-cream,0.4489 +chestnut,0.2917 +blackberry,0.1892 +bumbleberry,0.1843 +cheese,0.1462 +butter,0.0590 +blueberry,0.0483 +cherry,0.0355 +green-grape,0.0336 +boysenberry,0.0256 +flapper,0.0158 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..34facc30b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv @@ -0,0 +1,28 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Screwdriver CPU Utilization (%)" +curry,7.6084 +banana-cream,1.9206 +derby,1.4182 +cashew,0.9805 +buttermilk,0.4115 +fish,0.3967 +coconut-cream,0.2137 +apple,0.1779 +bavarian-cream,0.1023 +chestnut,0.0783 +blackberry,0.0431 +bumbleberry,0.0420 +cheese,0.0277 +butter,0.0154 +blueberry,0.0126 +green-grape,0.0072 +cherry,0.0067 +boysenberry,0.0058 +flapper,0.0034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7be0ad79ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,28 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Screwdriver CPU Utilization (%)" +curry,3.5275 +banana-cream,0.7643 +derby,0.6575 +cashew,0.3779 +fish,0.1839 +buttermilk,0.1560 +coconut-cream,0.0876 +apple,0.0713 +bavarian-cream,0.0410 +chestnut,0.0321 +blackberry,0.0173 +bumbleberry,0.0168 +cheese,0.0107 +butter,0.0064 +blueberry,0.0053 +green-grape,0.0034 +cherry,0.0026 +boysenberry,0.0023 +flapper,0.0016 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..696997b3ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv @@ -0,0 +1,28 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +QOS,"Screwdriver CPU Utilization (%)" +curry,1.0079 +banana-cream,0.2008 +derby,0.1879 +cashew,0.0978 +fish,0.0526 +buttermilk,0.0400 +coconut-cream,0.0234 +apple,0.0188 +bavarian-cream,0.0108 +chestnut,0.0086 +blackberry,0.0046 +bumbleberry,0.0044 +cheese,0.0028 +butter,0.0017 +blueberry,0.0014 +green-grape,0.0010 +cherry,0.0007 +boysenberry,0.0006 +flapper,0.0005 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fe590db8ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0,0,0.2118,0,0.2093,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0.3000,0.0090,0.3000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0.3000,0.0250,0.3000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0.1335,0,0,0,0,0,0.3522,0.0250,0.3000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0.6000,0,0.2253,0,0,0,1.2000,0.0250,0.3000,0,0,0,0,0,0,0,0,0 +2016-12-27,4.4771,0.4571,6.2766,2.0000,0,0.4879,0.2533,1.2992,0.1895,0.3000,0.0034,0,0,0,0,0,0,0,0 +2016-12-28,28.2587,16.9145,9.7030,2.4070,0,6.5593,1.6000,1.8000,0.8250,0.3000,0.0250,0,0.0979,0,0,0,0,0,0 +2016-12-29,85.9025,15.6178,21.0945,7.9626,1.7124,8.4014,1.6000,1.8826,1.4638,0.3000,0.5230,0,0.5000,0,0.1100,0.0299,0,0.0075,0.0542 +2016-12-30,132.8284,26.5977,16.7472,6.3076,9.6235,4.7854,1.6272,1.2294,3.0103,0.3000,1.0915,0.0113,0.4257,0.1964,0.3920,0.0999,0.1472,0.0500,0.0894 +2016-12-31,92.8859,24.8726,14.5313,12.2717,3.4512,0,2.1535,1.1651,1.0601,0.3000,0.5844,0.0393,0,0.1649,0.0288,0.0708,0.1079,0.1833,0.0074 +2017-01-01,43.6754,2.8512,3.9759,5.1025,0.0283,0,1.5276,1.9185,0.3871,0.2990,0.5932,3.2665,0,0.2872,0,0.0479,0.1145,0.0367,0.0223 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b0abd66f58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" +2016-12,17.2176,9.0066,3.4176,5.1957,2.9574,1.0117,0.7234,0.7138,0.4525,0.2909,0.1654,0.0030,0.1706,0.0328,0.0483,0.0128,0.0334,0.0249,0.0076 +2017-01,1.4089,0.0920,0.1283,0.1646,0.0009,0,0.0493,0.0619,0.0125,0.0096,0.0191,0.1054,0,0.0093,0,0.0037,0.0015,0.0012,0.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..37efa7bbb2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" +"2016 Q4",17.2176,9.0066,3.4176,5.1957,1.0117,2.9574,0.7234,0.7138,0.4525,0.2909,0.1654,0.0030,0.1706,0.0328,0.0483,0.0128,0.0334,0.0249,0.0076 +"2017 Q1",0.4853,0.0317,0.0442,0.0567,0,0.0003,0.0170,0.0213,0.0043,0.0033,0.0066,0.0363,0,0.0032,0,0.0013,0.0005,0.0004,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6aac276d80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by QOS" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" +2016,17.2176,9.0066,3.4176,5.1957,1.0117,2.9574,0.7234,0.7138,0.4525,0.2909,0.1654,0.0030,0.1706,0.0328,0.0483,0.0128,0.0334,0.0249,0.0076 +2017,0.1197,0.0078,0.0109,0.0140,0,0.0001,0.0042,0.0053,0.0011,0.0008,0.0016,0.0089,0,0.0008,0,0.0003,0.0001,0.0001,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a9db54d856 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Users: Active" +white,41 +potbrood,8 +black,6 +cornbread,6 +brown,4 +croutons,4 +roti,4 +bannock,3 +crumpet,3 +brioche,2 +panettone,2 +pita,2 +pumpernickel,2 +barm,1 +chapti,1 +focaccia,1 +nann,1 +pikelet,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a9db54d856 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Users: Active" +white,41 +potbrood,8 +black,6 +cornbread,6 +brown,4 +croutons,4 +roti,4 +bannock,3 +crumpet,3 +brioche,2 +panettone,2 +pita,2 +pumpernickel,2 +barm,1 +chapti,1 +focaccia,1 +nann,1 +pikelet,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a9db54d856 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Users: Active" +white,41 +potbrood,8 +black,6 +cornbread,6 +brown,4 +croutons,4 +roti,4 +bannock,3 +crumpet,3 +brioche,2 +panettone,2 +pita,2 +pumpernickel,2 +barm,1 +chapti,1 +focaccia,1 +nann,1 +pikelet,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a9db54d856 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Users: Active" +white,41 +potbrood,8 +black,6 +cornbread,6 +brown,4 +croutons,4 +roti,4 +bannock,3 +crumpet,3 +brioche,2 +panettone,2 +pita,2 +pumpernickel,2 +barm,1 +chapti,1 +focaccia,1 +nann,1 +pikelet,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..24844bf5e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0 +2016-12-23,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0 +2016-12-24,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0 +2016-12-25,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0 +2016-12-26,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,1 +2016-12-27,6,0,1,2,0,2,2,0,1,1,0,0,0,0,0,1,0,1 +2016-12-28,12,0,3,2,0,3,3,0,1,1,1,0,0,0,0,1,0,1 +2016-12-29,25,0,6,4,1,3,4,0,1,2,1,1,1,1,1,1,0,1 +2016-12-30,38,7,6,6,4,4,4,3,2,2,2,2,2,1,1,1,0,1 +2016-12-31,32,4,5,5,4,4,1,2,3,2,0,2,1,1,1,1,1,1 +2017-01-01,20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e145859b4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" +2016-12,40,8,6,6,4,4,4,3,3,2,2,2,2,1,1,1,1,1 +2017-01,20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a7a3a6bc84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" +"2016 Q4",40,8,6,6,4,4,4,3,3,2,2,2,2,1,1,1,1,1 +"2017 Q1",20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3c88169a5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" +2016,40,8,6,6,4,4,4,3,3,2,2,2,2,1,1,1,1,1 +2017,20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3e2d9c7b4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of PIs: Active" +white,32 +potbrood,7 +black,6 +bannock,2 +brown,2 +crumpet,2 +panettone,2 +pumpernickel,2 +roti,2 +barm,1 +brioche,1 +chapti,1 +cornbread,1 +croutons,1 +focaccia,1 +nann,1 +pikelet,1 +pita,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3e2d9c7b4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of PIs: Active" +white,32 +potbrood,7 +black,6 +bannock,2 +brown,2 +crumpet,2 +panettone,2 +pumpernickel,2 +roti,2 +barm,1 +brioche,1 +chapti,1 +cornbread,1 +croutons,1 +focaccia,1 +nann,1 +pikelet,1 +pita,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3e2d9c7b4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of PIs: Active" +white,32 +potbrood,7 +black,6 +bannock,2 +brown,2 +crumpet,2 +panettone,2 +pumpernickel,2 +roti,2 +barm,1 +brioche,1 +chapti,1 +cornbread,1 +croutons,1 +focaccia,1 +nann,1 +pikelet,1 +pita,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3e2d9c7b4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of PIs: Active" +white,32 +potbrood,7 +black,6 +bannock,2 +brown,2 +crumpet,2 +panettone,2 +pumpernickel,2 +roti,2 +barm,1 +brioche,1 +chapti,1 +cornbread,1 +croutons,1 +focaccia,1 +nann,1 +pikelet,1 +pita,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6dfa797b98 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0 +2016-12-27,5,0,1,0,0,1,0,0,2,0,1,0,1,1,1,0,1,0 +2016-12-28,11,0,3,0,0,1,1,0,2,0,1,0,1,1,1,0,1,0 +2016-12-29,19,0,6,0,1,1,1,1,2,1,1,1,1,1,1,0,1,1 +2016-12-30,29,6,6,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1 +2016-12-31,26,4,5,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1 +2017-01-01,18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d983f704c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" +2016-12,31,7,6,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1 +2017-01,18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..685659c06b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" +"2016 Q4",31,7,6,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1 +"2017 Q1",18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f3c6b90a9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" +2016,31,7,6,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1 +2017,18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b98e1a62f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Resources: Active" +black,4 +bannock,1 +barm,1 +brioche,1 +brown,1 +chapti,1 +cornbread,1 +croutons,1 +crumpet,1 +focaccia,1 +nann,1 +panettone,1 +pikelet,1 +pita,1 +potbrood,1 +pumpernickel,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b98e1a62f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Resources: Active" +black,4 +bannock,1 +barm,1 +brioche,1 +brown,1 +chapti,1 +cornbread,1 +croutons,1 +crumpet,1 +focaccia,1 +nann,1 +panettone,1 +pikelet,1 +pita,1 +potbrood,1 +pumpernickel,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b98e1a62f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Resources: Active" +black,4 +bannock,1 +barm,1 +brioche,1 +brown,1 +chapti,1 +cornbread,1 +croutons,1 +crumpet,1 +focaccia,1 +nann,1 +panettone,1 +pikelet,1 +pita,1 +potbrood,1 +pumpernickel,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b98e1a62f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Resources: Active" +black,4 +bannock,1 +barm,1 +brioche,1 +brown,1 +chapti,1 +cornbread,1 +croutons,1 +crumpet,1 +focaccia,1 +nann,1 +panettone,1 +pikelet,1 +pita,1 +potbrood,1 +pumpernickel,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..058064c3ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" +2016-12-22,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0 +2016-12-27,1,0,0,1,0,0,1,1,1,1,0,0,1,0,0,0,1,1 +2016-12-28,2,0,0,1,0,0,1,1,1,1,0,1,1,0,0,0,1,1 +2016-12-29,3,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1 +2016-12-30,4,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1 +2016-12-31,4,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1 +2017-01-01,4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5a328b035d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" +2016-12,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f424245db7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" +"2016 Q4",4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f8cb87b9d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" +2016,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b00e446a82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b104ac07c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b104ac07c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b104ac07c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..aecd9374c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cdb86f600f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Queue" +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","[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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..aa8e59d3ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Queue" +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","[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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..aa109e963c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Queue" +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","[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/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f457e5f0b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0.00000000 +2016-12-28,48.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000 +2016-12-29,48.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..83c2cd880a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +2016-12,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad386f9e0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +"2016 Q4",465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ed95122a1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +2016,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..89e765508e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,2.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 +2016-12-28,2.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 +2016-12-29,2.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1e2ddcc226 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +2016-12,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8954181f4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +"2016 Q4",2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8782107b60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +2016,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ed73b0cce0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By CPU Hours (Core Count)" +brown,111.3630 +black,87.1590 +crumpet,62.9605 +white,61.7818 +roti,31.9003 +cornbread,28.1249 +bannock,27.0485 +potbrood,21.0567 +panettone,20.0000 +croutons,14.0785 +pikelet,13.8060 +chapti,12.0000 +nann,12.0000 +focaccia,11.9631 +pumpernickel,5.0000 +brioche,3.8841 +pita,2.9011 +barm,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ed73b0cce0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By CPU Hours (Core Count)" +brown,111.3630 +black,87.1590 +crumpet,62.9605 +white,61.7818 +roti,31.9003 +cornbread,28.1249 +bannock,27.0485 +potbrood,21.0567 +panettone,20.0000 +croutons,14.0785 +pikelet,13.8060 +chapti,12.0000 +nann,12.0000 +focaccia,11.9631 +pumpernickel,5.0000 +brioche,3.8841 +pita,2.9011 +barm,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ed73b0cce0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By CPU Hours (Core Count)" +brown,111.3630 +black,87.1590 +crumpet,62.9605 +white,61.7818 +roti,31.9003 +cornbread,28.1249 +bannock,27.0485 +potbrood,21.0567 +panettone,20.0000 +croutons,14.0785 +pikelet,13.8060 +chapti,12.0000 +nann,12.0000 +focaccia,11.9631 +pumpernickel,5.0000 +brioche,3.8841 +pita,2.9011 +barm,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ed73b0cce0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By CPU Hours (Core Count)" +brown,111.3630 +black,87.1590 +crumpet,62.9605 +white,61.7818 +roti,31.9003 +cornbread,28.1249 +bannock,27.0485 +potbrood,21.0567 +panettone,20.0000 +croutons,14.0785 +pikelet,13.8060 +chapti,12.0000 +nann,12.0000 +focaccia,11.9631 +pumpernickel,5.0000 +brioche,3.8841 +pita,2.9011 +barm,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..31e22fdc7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 +2016-12-23,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 +2016-12-24,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 +2016-12-25,0,0,0,0,0,1.0000,0,0,0,15.9210,0,0,0,12.0000,0,0,0,0 +2016-12-26,0,0,0,0,0,1.0000,0,0,0,20.0000,16.0000,0,0,12.0000,0,0,0,0 +2016-12-27,0,16.0000,64.0000,91.7014,31.6875,14.9410,0,0,0,20.1637,16.0000,0,0,12.0000,0,1.0000,0,0 +2016-12-28,0,179.3856,64.0000,79.4893,31.8856,15.7692,0,0,20.0000,19.4638,16.0000,0,0,12.0000,0,1.0000,0,0 +2016-12-29,112.0000,173.0716,64.0000,66.2185,31.9173,25.1202,0,0,20.0000,18.5883,16.0000,12.0000,0,12.0000,5.0000,3.8650,4.0000,2.0000 +2016-12-30,111.6728,81.2725,63.8308,65.6887,31.8980,33.6124,61.6969,20.0946,20.0000,10.7460,16.0000,12.0000,0,12.0000,5.0000,3.8814,2.6435,2.0000 +2016-12-31,111.0872,30.5411,63.9287,58.4257,32.0000,33.7236,11.9519,21.3018,0,10.3461,11.9114,12.0000,12.0000,12.0000,5.0000,3.9261,2.0581,2.0000 +2017-01-01,1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e751ad98f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,111.5740,89.7835,63.9407,65.8862,31.9003,28.5408,37.6725,20.6042,20.0000,14.9805,14.3905,12.0000,12.0000,12.0000,5.0000,3.8723,2.6389,2.0000 +2017-01,1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1d5caeec4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",111.5740,89.7835,63.9407,65.8862,31.9003,28.5408,37.6725,20.6042,20.0000,14.9805,14.3905,12.0000,12.0000,12.0000,5.0000,3.8723,2.6389,2.0000 +"2017 Q1",1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..aa76cad7ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" +2016,111.5740,89.7835,63.9407,65.8862,31.9003,28.5408,37.6725,20.6042,20.0000,14.9805,14.3905,12.0000,12.0000,12.0000,5.0000,3.8723,2.6389,2.0000 +2017,1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a4df70a1a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,12.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 +2016-12-28,12.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 +2016-12-29,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cbd6f72972 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e9d9a933c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2761c63cfe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..477959bdf7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b1ad932db2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b1ad932db2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b1ad932db2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +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/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..25925e1a04 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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,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/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..11c1b271c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c0411614a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9270b0193a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b8f23f9bd5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Queue" +parameters + +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/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b8f23f9bd5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Queue" +parameters + +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/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b8f23f9bd5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Queue" +parameters + +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/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b8f23f9bd5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Per Job (Core Count): by Queue" +parameters + +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/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a5f76e484c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e2c55e36a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Queue" +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)","[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,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b798163d33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Queue" +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)","[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,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..71bdba2fa3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Queue" +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)","[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,2.0000,4.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e53436fcb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +white,17.34677431,0.42765795662116723 +nann,9.55167273,0.4060879409774964 +brioche,4.57930556,2.1091028859691496 +cornbread,4.03722222,2.297082606479511 +roti,3.71197531,1.9172619541470255 +black,1.00651907,0.010945578987168504 +pikelet,0.68931866,0.18792064181649992 +croutons,0.19196230,0.08843596907200514 +chapti,0.16736111,0.1365622130756655 +focaccia,0.09485043,0.031010135623440054 +barm,0.00444444,0 +panettone,0.00100000,0.00007314228762270922 +bannock,0.00046296,0.00010236496271181964 +potbrood,0.00035621,0.00004704333548802711 +brown,0.00016606,0.000023797091252046995 +crumpet,0.00016340,0.000030824909099336814 +pumpernickel,0.00006944,0.000060140653040586014 +pita,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e53436fcb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +white,17.34677431,0.42765795662116723 +nann,9.55167273,0.4060879409774964 +brioche,4.57930556,2.1091028859691496 +cornbread,4.03722222,2.297082606479511 +roti,3.71197531,1.9172619541470255 +black,1.00651907,0.010945578987168504 +pikelet,0.68931866,0.18792064181649992 +croutons,0.19196230,0.08843596907200514 +chapti,0.16736111,0.1365622130756655 +focaccia,0.09485043,0.031010135623440054 +barm,0.00444444,0 +panettone,0.00100000,0.00007314228762270922 +bannock,0.00046296,0.00010236496271181964 +potbrood,0.00035621,0.00004704333548802711 +brown,0.00016606,0.000023797091252046995 +crumpet,0.00016340,0.000030824909099336814 +pumpernickel,0.00006944,0.000060140653040586014 +pita,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e53436fcb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +white,17.34677431,0.42765795662116723 +nann,9.55167273,0.4060879409774964 +brioche,4.57930556,2.1091028859691496 +cornbread,4.03722222,2.297082606479511 +roti,3.71197531,1.9172619541470255 +black,1.00651907,0.010945578987168504 +pikelet,0.68931866,0.18792064181649992 +croutons,0.19196230,0.08843596907200514 +chapti,0.16736111,0.1365622130756655 +focaccia,0.09485043,0.031010135623440054 +barm,0.00444444,0 +panettone,0.00100000,0.00007314228762270922 +bannock,0.00046296,0.00010236496271181964 +potbrood,0.00035621,0.00004704333548802711 +brown,0.00016606,0.000023797091252046995 +crumpet,0.00016340,0.000030824909099336814 +pumpernickel,0.00006944,0.000060140653040586014 +pita,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e53436fcb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +white,17.34677431,0.42765795662116723 +nann,9.55167273,0.4060879409774964 +brioche,4.57930556,2.1091028859691496 +cornbread,4.03722222,2.297082606479511 +roti,3.71197531,1.9172619541470255 +black,1.00651907,0.010945578987168504 +pikelet,0.68931866,0.18792064181649992 +croutons,0.19196230,0.08843596907200514 +chapti,0.16736111,0.1365622130756655 +focaccia,0.09485043,0.031010135623440054 +barm,0.00444444,0 +panettone,0.00100000,0.00007314228762270922 +bannock,0.00046296,0.00010236496271181964 +potbrood,0.00035621,0.00004704333548802711 +brown,0.00016606,0.000023797091252046995 +crumpet,0.00016340,0.000030824909099336814 +pumpernickel,0.00006944,0.000060140653040586014 +pita,0.00004630,0.00004226254305118396 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4e5774c857 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,9.33222222,0,0.00027778,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,9.59638889,0,0,0,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0.00000000,0,0,0,36.96185185,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.00000000,0,0,0.00066667,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0 +2016-12-27,152.17079060,0,0.00000000,0.00062500,0.00021605,0.00027778,0.00000000,0.01347222,0,0.00000000,0,0,0,0,0,0.00000000,0,0 +2016-12-28,8.57260599,0,0.00000000,0.00000000,10.97944444,22.15596154,1.68000000,12.27500000,0,0.00000000,0,0.00027778,0,0,0,0.00000000,0,0 +2016-12-29,5.76401289,0,0.00020833,11.37972222,14.92629630,0.26051096,4.46097222,0.01715686,0.00111111,0.00000000,0.00444444,0.00000000,0,0,0.00062500,0.00000000,0.00000000,0.00027778 +2016-12-30,39.61750516,0,1.80364583,0.74994949,0.01895833,0.53669450,0.00000000,0.03822947,0.26716667,0.00000000,0.00000000,0.00105159,0.00100000,0.00049206,0.00015625,0.00020833,0.00000000,0.00000000 +2016-12-31,12.38201083,0.02019097,25.71842593,4.34280303,0.00000000,1.54454053,0.00626263,0.04043343,0.00097222,0.00000000,0.00000000,0,0.00074074,0.00030864,0.00010913,0.00020833,0.00000000,0.00000000 +2017-01-01,3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..254db26382 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" +2016-12,25.71236872,0.02019097,4.57930556,4.12882576,3.71197531,1.06378499,0.68931866,0.22325159,0.16736111,0.00027778,0.00444444,0.00100000,0.00090278,0.00041219,0.00016493,0.00019231,0.00000000,0.00004630 +2017-01,3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..98399ba8bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" +"2016 Q4",25.71236872,0.02019097,4.57930556,4.12882576,3.71197531,1.06378499,0.68931866,0.22325159,0.16736111,0.00027778,0.00444444,0.00100000,0.00090278,0.00041219,0.00016493,0.00019231,0.00000000,0.00004630 +"2017 Q1",3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5eaf6348d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" +2016,25.71236872,0.02019097,4.57930556,4.12882576,3.71197531,1.06378499,0.68931866,0.22325159,0.16736111,0.00027778,0.00444444,0.00100000,0.00090278,0.00041219,0.00016493,0.00019231,0.00000000,0.00004630 +2017,3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6b6cd097a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173, +pita,20.86393519, +focaccia,19.91282051,2.1056822673563573 +cornbread,17.78093827,1.1087327037887809 +pumpernickel,8.31937500,1.758450675650033 +white,7.29609410,0.06698540306543865 +chapti,5.97788194,2.1509462694844017 +crumpet,4.27458333,1.3636086939550018 +bannock,3.86878086,1.1629218460421795 +panettone,3.27557407,1.8974472070685748 +brown,2.25963164,0.3305676586108775 +croutons,1.96723431,0.13185742271092596 +nann,1.15487385,0.01800322897998984 +black,0.27209252,0.0032723215456785765 +potbrood,0.24737582,0.027252557659213004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..28ce4e527d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173,6.325264219699847 +pita,20.86393519, +focaccia,19.91282051,17.106656154646572 +cornbread,17.78093827,5.2957544837994375 +pumpernickel,8.31937500,4.627752624288676 +white,7.29609410,0.10650594024891316 +chapti,5.97788194,3.288008036902684 +crumpet,4.27458333,2.910285751771729 +bannock,3.86878086,1.1629218460421795 +panettone,3.27557407,3.0868090132704915 +brown,2.25963164,0.45223146995766755 +croutons,1.96723431,0.29339689837408406 +nann,1.15487385,0.01800322897998984 +black,0.27209252,0.005264525182562369 +potbrood,0.24737582,0.027252557659213004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..28ce4e527d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173,6.325264219699847 +pita,20.86393519, +focaccia,19.91282051,17.106656154646572 +cornbread,17.78093827,5.2957544837994375 +pumpernickel,8.31937500,4.627752624288676 +white,7.29609410,0.10650594024891316 +chapti,5.97788194,3.288008036902684 +crumpet,4.27458333,2.910285751771729 +bannock,3.86878086,1.1629218460421795 +panettone,3.27557407,3.0868090132704915 +brown,2.25963164,0.45223146995766755 +croutons,1.96723431,0.29339689837408406 +nann,1.15487385,0.01800322897998984 +black,0.27209252,0.005264525182562369 +potbrood,0.24737582,0.027252557659213004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..28ce4e527d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173,6.325264219699847 +pita,20.86393519, +focaccia,19.91282051,17.106656154646572 +cornbread,17.78093827,5.2957544837994375 +pumpernickel,8.31937500,4.627752624288676 +white,7.29609410,0.10650594024891316 +chapti,5.97788194,3.288008036902684 +crumpet,4.27458333,2.910285751771729 +bannock,3.86878086,1.1629218460421795 +panettone,3.27557407,3.0868090132704915 +brown,2.25963164,0.45223146995766755 +croutons,1.96723431,0.29339689837408406 +nann,1.15487385,0.01800322897998984 +black,0.27209252,0.005264525182562369 +potbrood,0.24737582,0.027252557659213004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b81f6c53ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" +2016-12-22,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,16.94166667,0,0,0 +2016-12-23,0,0,0,0,0,24.00000000,8.60361111,0,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-24,0,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-25,0,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,8.12694444,0,0,0 +2016-12-26,0,2.70416667,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-27,0,24.00000000,3.21666667,2.13466049,0,24.00000000,8.74933333,0,16.21844017,0,3.79972222,0,0,0,16.80314815,0,8.54972222,0 +2016-12-28,0,9.02631944,24.00000000,20.59058081,0,24.00000000,24.00000000,0,9.12738479,0,24.00000000,0,4.70055556,0,22.70619048,0,18.60857143,0 +2016-12-29,3.62000000,23.88776389,18.35067901,21.74269841,7.17361111,24.00000000,14.60896465,10.40083333,13.12592123,8.80250000,24.00000000,0,24.00000000,3.66944444,7.79993056,0,2.01269995,0 +2016-12-30,24.00000000,18.92284722,19.97710784,11.21660494,11.30094444,24.00000000,10.07637626,5.72296296,5.76791935,5.51643519,4.90727778,2.07438889,1.36220370,3.04096451,1.29791328,0,0.27070252,0.27470635 +2016-12-31,24.00000000,23.17923611,18.76051170,17.54111111,16.67157407,24.00000000,5.00544444,1.42666667,6.71959262,1.97398148,3.60929012,7.89157407,0,1.76819444,1.30500376,0.19661458,0.31093242,0.22569959 +2017-01-01,17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..01c1d49be4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" +2016-12,51.62000000,42.39165094,44.42166667,42.75256173,18.94884259,232.74638889,17.65664773,9.66546296,9.99806651,5.97788194,8.37074786,4.25583333,3.27557407,2.82398003,2.23275647,0.19661458,0.30935409,0.25336470 +2017-01,17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9469be9a49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" +"2016 Q4",51.62000000,42.39165094,44.42166667,42.75256173,18.94884259,232.74638889,17.65664773,9.66546296,9.99806651,5.97788194,8.37074786,4.25583333,3.27557407,2.82398003,2.23275647,0.19661458,0.30935409,0.25336470 +"2017 Q1",17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..665e76a468 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" +2016,51.62000000,42.39165094,44.42166667,42.75256173,18.94884259,232.74638889,17.65664773,9.66546296,9.99806651,5.97788194,8.37074786,4.25583333,3.27557407,2.82398003,2.23275647,0.19661458,0.30935409,0.25336470 +2017,17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..70f27190cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"User Expansion Factor" +nann,9.2707 +black,3.4106 +white,3.2035 +cornbread,1.3332 +croutons,1.0975 +brioche,1.0881 +roti,1.0868 +chapti,1.0280 +pikelet,1.0132 +focaccia,1.0048 +potbrood,1.0018 +panettone,1.0003 +bannock,1.0002 +barm,1.0001 +brown,1.0000 +crumpet,1.0000 +pita,1.0000 +pumpernickel,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..70f27190cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"User Expansion Factor" +nann,9.2707 +black,3.4106 +white,3.2035 +cornbread,1.3332 +croutons,1.0975 +brioche,1.0881 +roti,1.0868 +chapti,1.0280 +pikelet,1.0132 +focaccia,1.0048 +potbrood,1.0018 +panettone,1.0003 +bannock,1.0002 +barm,1.0001 +brown,1.0000 +crumpet,1.0000 +pita,1.0000 +pumpernickel,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..70f27190cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"User Expansion Factor" +nann,9.2707 +black,3.4106 +white,3.2035 +cornbread,1.3332 +croutons,1.0975 +brioche,1.0881 +roti,1.0868 +chapti,1.0280 +pikelet,1.0132 +focaccia,1.0048 +potbrood,1.0018 +panettone,1.0003 +bannock,1.0002 +barm,1.0001 +brown,1.0000 +crumpet,1.0000 +pita,1.0000 +pumpernickel,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..70f27190cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"User Expansion Factor" +nann,9.2707 +black,3.4106 +white,3.2035 +cornbread,1.3332 +croutons,1.0975 +brioche,1.0881 +roti,1.0868 +chapti,1.0280 +pikelet,1.0132 +focaccia,1.0048 +potbrood,1.0018 +panettone,1.0003 +bannock,1.0002 +barm,1.0001 +brown,1.0000 +crumpet,1.0000 +pita,1.0000 +pumpernickel,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ed98e6c8bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" +2016-12-22,0,0,0,0,1.0495,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,1.0610,1.0495,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,1.0610,1.0495,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,1.0610,1.1562,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,1.0610,1.2735,0,0,0,1.0000,1.0000,0,0,0,0,0,0,0,0 +2016-12-27,0,1.0000,2.4396,1.0335,1.2605,1.0000,1.0000,0,1.0000,1.0000,0,0,0,0,0,1.0000,0,0 +2016-12-28,0,1.0431,1.7378,1.0122,1.1807,1.0000,1.0113,0,1.0025,1.0000,0,1.0000,0,0,0,1.0000,0,0 +2016-12-29,0,1.0503,1.4391,1.2408,1.1622,1.0000,1.1377,1.0000,1.0228,1.0000,0,1.0000,0,1.0001,1.0000,1.0000,1.0000,1.0000 +2016-12-30,0,2.3887,5.6993,1.3394,1.0501,1.0138,1.1089,1.0404,1.0292,1.0000,1.0023,1.0007,1.0005,1.0001,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.0162,5.5685,2.0364,1.4459,1.0331,1.2365,1.0192,1.0004,1.0100,1.0000,1.0019,0,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000 +2017-01-01,9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9679733cb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" +2016-12,1.0162,3.3125,3.2854,1.2619,1.0998,1.1001,1.0868,1.0280,1.0149,1.0000,1.0021,1.0003,1.0003,1.0001,1.0000,1.0000,1.0000,1.0000 +2017-01,9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..48e5d5fbef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" +"2016 Q4",1.0162,3.3125,3.2854,1.2619,1.0998,1.1001,1.0868,1.0280,1.0149,1.0000,1.0021,1.0003,1.0003,1.0001,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..78001dac21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" +2016,1.0162,3.3125,3.2854,1.2619,1.0998,1.1001,1.0868,1.0280,1.0149,1.0000,1.0021,1.0003,1.0003,1.0001,1.0000,1.0000,1.0000,1.0000 +2017,9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1583dc229f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Ended" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1583dc229f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Ended" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1583dc229f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Ended" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1583dc229f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Ended" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..59723bdbd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" +2016-12-22,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 +2016-12-24,0,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 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,21971,4149,348,0,32,35,5,14,4,1,5,17,15,0,5,3,2,0 +2016-12-31,23857,3815,352,4,32,27,1,29,8,7,2,1,0,0,3,2,1,0 +2017-01-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..39953a91e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" +2016-12,45828,7964,700,4,64,62,6,43,12,8,7,18,15,0,8,5,3,0 +2017-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f79578de2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" +"2016 Q4",45828,7964,700,4,64,62,6,43,12,8,7,18,15,0,8,5,3,0 +"2017 Q1",9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..66cf085bc4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" +2016,45828,7964,700,4,64,62,6,43,12,8,7,18,15,0,8,5,3,0 +2017,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e3c3292266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Max (Core Count)" +white,336 +black,192 +brown,112 +bannock,80 +cornbread,64 +crumpet,64 +potbrood,48 +roti,32 +croutons,24 +panettone,20 +pikelet,16 +chapti,12 +focaccia,12 +nann,12 +pumpernickel,5 +brioche,4 +pita,4 +barm,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e3c3292266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Max (Core Count)" +white,336 +black,192 +brown,112 +bannock,80 +cornbread,64 +crumpet,64 +potbrood,48 +roti,32 +croutons,24 +panettone,20 +pikelet,16 +chapti,12 +focaccia,12 +nann,12 +pumpernickel,5 +brioche,4 +pita,4 +barm,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e3c3292266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Max (Core Count)" +white,336 +black,192 +brown,112 +bannock,80 +cornbread,64 +crumpet,64 +potbrood,48 +roti,32 +croutons,24 +panettone,20 +pikelet,16 +chapti,12 +focaccia,12 +nann,12 +pumpernickel,5 +brioche,4 +pita,4 +barm,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e3c3292266 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Max (Core Count)" +white,336 +black,192 +brown,112 +bannock,80 +cornbread,64 +crumpet,64 +potbrood,48 +roti,32 +croutons,24 +panettone,20 +pikelet,16 +chapti,12 +focaccia,12 +nann,12 +pumpernickel,5 +brioche,4 +pita,4 +barm,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d2cf0f4b0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,0,0 +2016-12-23,0,0,0,0,1,0,0,0,12,0,0,0,12,0,0,0,0,0 +2016-12-24,0,0,0,0,1,0,0,0,12,0,0,0,12,0,0,0,0,0 +2016-12-25,0,0,0,0,1,0,0,0,24,0,0,0,12,0,0,0,0,0 +2016-12-26,0,0,0,0,1,0,0,0,24,0,16,0,12,0,0,0,0,0 +2016-12-27,144,16,0,0,16,64,0,32,24,0,16,0,12,0,0,1,0,0 +2016-12-28,144,192,0,0,16,64,0,32,24,20,16,0,12,0,0,1,0,0 +2016-12-29,160,192,112,0,64,64,0,32,24,20,16,12,12,0,5,4,4,2 +2016-12-30,336,192,112,80,64,64,48,32,24,20,16,12,12,0,5,4,4,2 +2016-12-31,336,192,112,20,64,64,48,32,24,0,16,12,12,12,5,4,4,2 +2017-01-01,192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8b999e1580 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" +2016-12,336,192,112,80,64,64,48,32,24,20,16,12,12,12,5,4,4,2 +2017-01,192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8d70a71aef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" +"2016 Q4",336,192,112,80,64,64,48,32,24,20,16,12,12,12,5,4,4,2 +"2017 Q1",192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9910db0b7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" +2016,336,192,112,80,64,64,48,32,24,20,16,12,12,12,5,4,4,2 +2017,192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c976c164ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Min (Core Count)" +panettone,20 +chapti,12 +nann,12 +bannock,8 +croutons,8 +crumpet,8 +pumpernickel,5 +barm,2 +black,1 +brioche,1 +brown,1 +cornbread,1 +focaccia,1 +pikelet,1 +pita,1 +potbrood,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c976c164ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Min (Core Count)" +panettone,20 +chapti,12 +nann,12 +bannock,8 +croutons,8 +crumpet,8 +pumpernickel,5 +barm,2 +black,1 +brioche,1 +brown,1 +cornbread,1 +focaccia,1 +pikelet,1 +pita,1 +potbrood,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c976c164ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Min (Core Count)" +panettone,20 +chapti,12 +nann,12 +bannock,8 +croutons,8 +crumpet,8 +pumpernickel,5 +barm,2 +black,1 +brioche,1 +brown,1 +cornbread,1 +focaccia,1 +pikelet,1 +pita,1 +potbrood,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c976c164ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Min (Core Count)" +panettone,20 +chapti,12 +nann,12 +bannock,8 +croutons,8 +crumpet,8 +pumpernickel,5 +barm,2 +black,1 +brioche,1 +brown,1 +cornbread,1 +focaccia,1 +pikelet,1 +pita,1 +potbrood,1 +roti,1 +white,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a4b1c797a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" +2016-12-22,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0 +2016-12-23,0,0,0,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0 +2016-12-24,0,0,0,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0 +2016-12-25,0,0,0,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0 +2016-12-26,0,0,0,0,12,0,0,0,0,0,0,1,12,16,0,0,0,0 +2016-12-27,0,0,0,0,8,64,0,0,16,1,0,1,12,16,0,0,1,8 +2016-12-28,20,0,0,0,8,64,0,0,12,1,0,1,12,16,0,0,1,1 +2016-12-29,20,12,0,0,8,64,5,2,8,1,112,1,12,16,4,0,1,1 +2016-12-30,20,12,0,8,8,32,5,2,1,1,1,1,12,16,1,1,1,1 +2016-12-31,0,12,12,8,8,8,5,2,8,1,1,1,12,1,1,1,32,1 +2017-01-01,0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..593431be6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" +2016-12,20,12,12,8,8,8,5,2,1,1,1,1,12,1,1,1,1,1 +2017-01,0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..27c874ac86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" +"2016 Q4",20,12,12,8,8,8,5,2,1,1,1,1,12,1,1,1,1,1 +"2017 Q1",0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..30f5f181bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" +2016,20,12,12,8,8,8,5,2,1,1,1,1,12,1,1,1,1,1 +2017,0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..573b9398bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters + +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/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..573b9398bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters + +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/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..573b9398bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters + +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/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..573b9398bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters + +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/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..87f113be40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c3279e6ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +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)","[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.050000000,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d2d059f538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +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)","[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.050000000,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60453114b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Queue" +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)","[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.050000000,0.100000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..51fbcbb6bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Running" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..51fbcbb6bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Running" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..51fbcbb6bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Running" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..51fbcbb6bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Running" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..42d3b23a8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" +2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +2016-12-23,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 +2016-12-24,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 +2016-12-25,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 +2016-12-26,0,0,4,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0 +2016-12-27,1,13,6,0,0,0,5,5,1,1,0,9,0,1,0,0,0,0 +2016-12-28,14,393,7,0,0,0,16,5,1,1,0,11,1,1,0,0,0,0 +2016-12-29,232,1419,24,0,4,0,20,11,1,9,0,14,1,1,1,1,1,1 +2016-12-30,22248,6049,369,0,36,35,20,22,5,17,5,18,15,1,6,5,3,1 +2016-12-31,24211,4829,369,16,32,27,48,30,9,19,3,1,0,1,3,3,1,1 +2017-01-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5b57b0f5cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" +2016-12,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +2017-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2c625d61de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" +"2016 Q4",46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +"2017 Q1",9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a685973a91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" +2016,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +2017,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e8bf9c0f25 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Started" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e8bf9c0f25 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Started" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e8bf9c0f25 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Started" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e8bf9c0f25 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Started" +black,55373 +white,14288 +croutons,1011 +nann,229 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..447c395b9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" +2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,1,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 +2016-12-25,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1,13,2,0,0,0,0,4,1,1,0,9,0,0,0,0,0,0 +2016-12-28,13,380,1,0,0,0,11,0,0,0,0,2,1,0,0,0,0,0 +2016-12-29,218,1026,17,0,4,0,4,6,0,8,0,3,0,0,1,1,1,1 +2016-12-30,22016,4630,345,0,32,35,0,11,4,8,5,4,14,0,5,4,2,0 +2016-12-31,23934,2929,348,16,28,27,33,22,8,3,3,0,0,0,2,1,0,0 +2017-01-01,9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..12334dde84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" +2016-12,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +2017-01,9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6f14568abb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" +"2016 Q4",46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +"2017 Q1",9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..96d50b3ee8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" +2016,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +2017,9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fd3491da3f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Submitted" +black,51984 +white,10863 +croutons,1005 +nann,166 +brown,92 +potbrood,85 +pikelet,49 +cornbread,41 +crumpet,34 +bannock,18 +brioche,17 +panettone,15 +roti,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0804543c4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Submitted" +black,54215 +white,13440 +croutons,1010 +nann,166 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0804543c4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Submitted" +black,54215 +white,13440 +croutons,1010 +nann,166 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0804543c4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Number of Jobs Submitted" +black,54215 +white,13440 +croutons,1010 +nann,166 +brown,92 +potbrood,85 +pikelet,53 +cornbread,45 +crumpet,34 +brioche,20 +bannock,18 +roti,18 +panettone,15 +focaccia,13 +chapti,8 +pita,6 +pumpernickel,4 +barm,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5608ff6ec7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,1,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 +2016-12-25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1,0,2,0,0,0,0,4,1,0,1,0,9,0,0,0,0,0 +2016-12-28,9,357,0,0,0,0,11,0,0,0,0,1,1,0,0,0,0,0 +2016-12-29,218,950,17,0,4,0,0,4,0,0,8,0,1,0,1,1,1,1 +2016-12-30,21890,3303,344,0,32,35,0,10,4,5,8,14,4,0,5,4,2,0 +2016-12-31,21833,1791,348,16,28,27,33,21,8,3,0,0,0,0,2,1,0,0 +2017-01-01,8033,4462,293,150,28,23,0,1,21,10,0,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b3d387b90e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" +2016-12,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +2017-01,8033,4462,293,150,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1f08d11dcf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" +"2016 Q4",46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +"2017 Q1",8033,4462,293,150,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..54fb32b319 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" +2016,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 +2017,8033,4462,293,150,28,23,0,1,21,0,10,0,0,12,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8f140b9b54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Total" +white,438972.9878 +black,274691.9789 +pikelet,34825.7219 +roti,22393.2603 +croutons,22379.1533 +brown,14222.7461 +cornbread,11206.7450 +crumpet,8411.0733 +brioche,3726.6386 +nann,3173.5933 +focaccia,3079.9728 +bannock,1016.6144 +panettone,982.6722 +chapti,573.8767 +potbrood,355.3453 +pita,238.5711 +pumpernickel,166.3875 +barm,138.4983 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8f140b9b54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Total" +white,438972.9878 +black,274691.9789 +pikelet,34825.7219 +roti,22393.2603 +croutons,22379.1533 +brown,14222.7461 +cornbread,11206.7450 +crumpet,8411.0733 +brioche,3726.6386 +nann,3173.5933 +focaccia,3079.9728 +bannock,1016.6144 +panettone,982.6722 +chapti,573.8767 +potbrood,355.3453 +pita,238.5711 +pumpernickel,166.3875 +barm,138.4983 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8f140b9b54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Total" +white,438972.9878 +black,274691.9789 +pikelet,34825.7219 +roti,22393.2603 +croutons,22379.1533 +brown,14222.7461 +cornbread,11206.7450 +crumpet,8411.0733 +brioche,3726.6386 +nann,3173.5933 +focaccia,3079.9728 +bannock,1016.6144 +panettone,982.6722 +chapti,573.8767 +potbrood,355.3453 +pita,238.5711 +pumpernickel,166.3875 +barm,138.4983 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8f140b9b54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Total" +white,438972.9878 +black,274691.9789 +pikelet,34825.7219 +roti,22393.2603 +croutons,22379.1533 +brown,14222.7461 +cornbread,11206.7450 +crumpet,8411.0733 +brioche,3726.6386 +nann,3173.5933 +focaccia,3079.9728 +bannock,1016.6144 +panettone,982.6722 +chapti,573.8767 +potbrood,355.3453 +pita,238.5711 +pumpernickel,166.3875 +barm,138.4983 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7b7c43060b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" +2016-12-22,0,0,0,0,203.3000,0,0,0,0,0,200.9567,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,288.0000,0,8.6036,0,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,288.0000,0,24.0000,0,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,466.2700,0,24.0000,0,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-26,0,0,216.3333,0,1728.0000,0,24.0000,0,0,0,288.0000,0,0,0,0,0,0,0 +2016-12-27,10323.5222,136.7956,1920.0000,468.4192,1830.0622,0,339.9467,243.1822,3.2167,0,288.0000,0,0,0,0,0,0,0 +2016-12-28,36236.2725,30760.4844,2310.7378,6503.8844,2675.3200,0,1560.0000,1536.0000,24.0000,0,288.0000,0,94.0111,0,0,0,0,0 +2016-12-29,101785.6889,43000.8978,7644.0844,8996.7289,2937.5867,1643.9111,2173.2617,1536.0000,582.0553,0,288.0000,0,480.0000,105.6300,0,28.6944,52.0042,7.2400 +2016-12-30,142323.0442,98844.5711,6055.3111,5862.9122,4460.4644,9238.5464,3839.7864,1562.0711,1214.4433,0,288.0000,252.7022,408.6611,397.1833,141.8144,95.9114,85.8444,48.0000 +2016-12-31,102559.1947,92607.7978,11780.8131,561.3156,4311.2411,3313.1372,2841.5344,2067.3578,1327.6497,37.7500,288.0000,236.0378,0,71.0633,103.6008,68.0031,7.1333,48.0000 +2017-01-01,45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3a62dcca41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" +2016-12,393227.7225,265350.5467,29927.2797,22393.2603,19188.2444,14195.5947,10835.1328,6944.6111,3151.3650,37.7500,2792.9567,488.7400,982.6722,573.8767,245.4153,192.6089,144.9819,103.2400 +2017-01,45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e5dca1150f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" +"2016 Q4",393227.7225,265350.5467,29927.2797,22393.2603,19188.2444,14195.5947,10835.1328,6944.6111,3151.3650,37.7500,2792.9567,488.7400,982.6722,573.8767,245.4153,192.6089,144.9819,103.2400 +"2017 Q1",45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..85a860c1d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" +2016,393227.7225,265350.5467,29927.2797,22393.2603,19188.2444,14195.5947,10835.1328,6944.6111,3151.3650,37.7500,2792.9567,488.7400,982.6722,573.8767,245.4153,192.6089,144.9819,103.2400 +2017,45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6eb27b8070 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,48.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 +2016-12-28,48.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 +2016-12-29,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..be7649f7eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5f9a86e100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2256fd5fa3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e188b2cfef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Total" +white,123927.2147 +black,21885.3492 +pikelet,2773.5564 +croutons,1991.0214 +crumpet,1051.3842 +brioche,1039.6294 +brown,965.4461 +cornbread,945.4731 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +pita,125.1836 +bannock,76.7039 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,30.4233 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e188b2cfef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Total" +white,123927.2147 +black,21885.3492 +pikelet,2773.5564 +croutons,1991.0214 +crumpet,1051.3842 +brioche,1039.6294 +brown,965.4461 +cornbread,945.4731 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +pita,125.1836 +bannock,76.7039 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,30.4233 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e188b2cfef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Total" +white,123927.2147 +black,21885.3492 +pikelet,2773.5564 +croutons,1991.0214 +crumpet,1051.3842 +brioche,1039.6294 +brown,965.4461 +cornbread,945.4731 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +pita,125.1836 +bannock,76.7039 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,30.4233 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e188b2cfef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Total" +white,123927.2147 +black,21885.3492 +pikelet,2773.5564 +croutons,1991.0214 +crumpet,1051.3842 +brioche,1039.6294 +brown,965.4461 +cornbread,945.4731 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +pita,125.1836 +bannock,76.7039 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,30.4233 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3673989c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" +2016-12-22,0,0,0,16.9417,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0 +2016-12-23,0,0,0,24.0000,0,0,0,8.6036,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-24,0,0,0,24.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-25,0,0,0,32.5078,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-26,0,0,13.5208,96.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 +2016-12-27,856.4506,8.5497,120.0000,100.8189,30.3978,3.2167,0,43.7467,19.2119,0,24.0000,0,0,0,0,0,0,0 +2016-12-28,5778.5872,1941.4681,144.4211,158.9433,192.0000,24.0000,0,120.0000,226.4964,0,24.0000,0,0,0,4.7006,0,0,0 +2016-12-29,24097.5408,2741.9211,477.7553,187.1983,192.0000,165.1561,102.7444,181.7861,304.3978,0,24.0000,7.1736,0,3.6200,24.0000,8.8025,10.4008,0 +2016-12-30,41307.7775,8302.5897,378.4569,481.0775,195.2589,339.6108,602.9381,293.6803,201.8989,0,24.0000,56.5047,17.4378,24.0000,20.4331,33.0986,17.1689,12.6283 +2016-12-31,36475.5675,8110.8319,1112.6033,481.5464,258.4197,356.4497,232.6122,202.4067,17.5411,3.1458,24.0000,50.0147,23.6747,24.0000,0,5.9219,1.4267,8.6342 +2017-01-01,15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..58401d4eb5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" +2016-12,108515.9236,21105.3606,2246.7575,1603.0339,868.0764,888.4333,938.2947,922.2233,769.5461,3.1458,232.7464,113.6931,41.1125,51.6200,49.1336,47.8231,28.9964,21.2625 +2017-01,15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..70e81a1a74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" +"2016 Q4",108515.9236,21105.3606,2246.7575,1603.0339,868.0764,888.4333,938.2947,922.2233,769.5461,3.1458,232.7464,113.6931,41.1125,51.6200,49.1336,47.8231,28.9964,21.2625 +"2017 Q1",15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..66ca0b2355 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" +2016,108515.9236,21105.3606,2246.7575,1603.0339,868.0764,888.4333,938.2947,922.2233,769.5461,3.1458,232.7464,113.6931,41.1125,51.6200,49.1336,47.8231,28.9964,21.2625 +2017,15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c08ad67fe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Total" +white,247850.7114 +black,55733.9806 +nann,2187.3331 +croutons,194.0739 +cornbread,181.6750 +brioche,91.5861 +roti,66.8156 +pikelet,36.5339 +chapti,1.3389 +focaccia,1.2331 +potbrood,0.0303 +brown,0.0153 +panettone,0.0150 +bannock,0.0083 +crumpet,0.0056 +barm,0.0044 +pita,0.0003 +pumpernickel,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c08ad67fe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Total" +white,247850.7114 +black,55733.9806 +nann,2187.3331 +croutons,194.0739 +cornbread,181.6750 +brioche,91.5861 +roti,66.8156 +pikelet,36.5339 +chapti,1.3389 +focaccia,1.2331 +potbrood,0.0303 +brown,0.0153 +panettone,0.0150 +bannock,0.0083 +crumpet,0.0056 +barm,0.0044 +pita,0.0003 +pumpernickel,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c08ad67fe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Total" +white,247850.7114 +black,55733.9806 +nann,2187.3331 +croutons,194.0739 +cornbread,181.6750 +brioche,91.5861 +roti,66.8156 +pikelet,36.5339 +chapti,1.3389 +focaccia,1.2331 +potbrood,0.0303 +brown,0.0153 +panettone,0.0150 +bannock,0.0083 +crumpet,0.0056 +barm,0.0044 +pita,0.0003 +pumpernickel,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c08ad67fe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wait Hours: Total" +white,247850.7114 +black,55733.9806 +nann,2187.3331 +croutons,194.0739 +cornbread,181.6750 +brioche,91.5861 +roti,66.8156 +pikelet,36.5339 +chapti,1.3389 +focaccia,1.2331 +potbrood,0.0303 +brown,0.0153 +panettone,0.0150 +bannock,0.0083 +crumpet,0.0056 +barm,0.0044 +pita,0.0003 +pumpernickel,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4440365b89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" +2016-12-22,0,0,0,9.3322,0,0,0,0,0,0.0003,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0.0000,9.5964,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,110.8856,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.0000,0.0000,0,0,0.0033,0,0.0000,0,0,0,0,0,0,0,0 +2016-12-27,1978.2203,0.0003,0,0.0269,0.0025,0.0000,0.0019,0.0000,0,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,3257.5903,288.0275,0,12.2750,0.0000,0.0000,21.9589,18.4800,0,0.0000,0,0,0.0003,0,0.0000,0,0,0 +2016-12-29,5913.8772,56.7914,0,0.2917,68.2783,0.0017,44.7789,17.8439,0.0011,0.0000,0,0.0025,0.0000,0,0.0000,0.0044,0.0003,0.0000 +2016-12-30,183429.0489,11815.8661,0,13.1892,8.2494,14.4292,0.0758,0.0000,1.3358,0.0000,0.0172,0.0050,0.0147,0.0050,0.0008,0.0000,0.0000,0.0000 +2016-12-31,36266.9097,36967.0331,0.3231,14.0708,95.5417,77.1553,0.0000,0.2067,0.0019,0.0000,0.0083,0.0031,0,0.0022,0.0017,0.0000,0.0000,0.0000 +2017-01-01,17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0cf8ec303f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" +2016-12,230845.6464,49127.7183,0.3231,160.0714,181.6683,91.5861,66.8156,36.5339,1.3389,0.0003,0.0256,0.0106,0.0150,0.0072,0.0025,0.0044,0.0003,0.0000 +2017-01,17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c4a091283b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" +"2016 Q4",230845.6464,49127.7183,0.3231,160.0714,181.6683,91.5861,66.8156,36.5339,1.3389,0.0003,0.0256,0.0106,0.0150,0.0072,0.0025,0.0044,0.0003,0.0000 +"2017 Q1",17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7f68f08d9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" +2016,230845.6464,49127.7183,0.3231,160.0714,181.6683,91.5861,66.8156,36.5339,1.3389,0.0003,0.0256,0.0106,0.0150,0.0072,0.0025,0.0044,0.0003,0.0000 +2017,17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..336af6366d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Total" +white,104246.5925 +black,15066.5792 +pikelet,2773.5564 +croutons,1988.8739 +brioche,1039.6294 +cornbread,800.1422 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +brown,207.8861 +crumpet,145.3358 +pita,125.1836 +bannock,69.6381 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,21.0269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..336af6366d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Total" +white,104246.5925 +black,15066.5792 +pikelet,2773.5564 +croutons,1988.8739 +brioche,1039.6294 +cornbread,800.1422 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +brown,207.8861 +crumpet,145.3358 +pita,125.1836 +bannock,69.6381 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,21.0269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..336af6366d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Total" +white,104246.5925 +black,15066.5792 +pikelet,2773.5564 +croutons,1988.8739 +brioche,1039.6294 +cornbread,800.1422 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +brown,207.8861 +crumpet,145.3358 +pita,125.1836 +bannock,69.6381 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,21.0269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..336af6366d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Wall Hours: Total" +white,104246.5925 +black,15066.5792 +pikelet,2773.5564 +croutons,1988.8739 +brioche,1039.6294 +cornbread,800.1422 +roti,769.5461 +nann,264.4661 +focaccia,258.8667 +brown,207.8861 +crumpet,145.3358 +pita,125.1836 +bannock,69.6381 +barm,69.2492 +panettone,49.1336 +chapti,47.8231 +pumpernickel,33.2775 +potbrood,21.0269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cb826ddfc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" +2016-12-22,0,0,0,16.9417,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,24.0000,0,8.6036,0,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,24.0000,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,32.5078,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,13.5208,96.0000,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,210.8397,8.5497,120.0000,100.8189,3.2167,43.7467,19.2119,0,24.0000,0,3.7997,0,0,0,0,0,0,0 +2016-12-28,3587.0622,260.5200,144.4211,158.9433,24.0000,120.0000,226.4964,0,24.0000,0,24.0000,0,0,0,4.7006,0,0,0 +2016-12-29,18625.6822,466.9464,477.7553,187.1983,165.1561,160.6986,304.3978,0,24.0000,14.6778,24.0000,7.1736,0,3.6200,24.0000,8.8025,10.4008,0 +2016-12-30,34890.1442,6022.5897,378.4569,478.9300,339.6108,221.6803,201.8989,0,24.0000,109.4747,24.5364,56.5047,10.3719,24.0000,20.4331,33.0986,17.1689,9.6147 +2016-12-31,32448.9128,7527.9847,1112.6033,481.5464,356.4497,150.1633,17.5411,3.1458,24.0000,56.5822,32.4836,50.0147,23.6747,24.0000,0,5.9219,1.4267,6.0939 +2017-01-01,14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..eeee24ea67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" +2016-12,89762.6411,14286.5906,2246.7575,1600.8864,888.4333,776.8925,769.5461,3.1458,232.7464,180.7347,108.8197,113.6931,34.0467,51.6200,49.1336,47.8231,28.9964,15.7086 +2017-01,14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e77ea16636 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" +"2016 Q4",89762.6411,14286.5906,2246.7575,1600.8864,888.4333,776.8925,769.5461,3.1458,232.7464,180.7347,108.8197,113.6931,34.0467,51.6200,49.1336,47.8231,28.9964,15.7086 +"2017 Q1",14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c391a68caf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" +2016,89762.6411,14286.5906,2246.7575,1600.8864,888.4333,776.8925,769.5461,3.1458,232.7464,180.7347,108.8197,113.6931,34.0467,51.6200,49.1336,47.8231,28.9964,15.7086 +2017,14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..23eb63ca76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Screwdriver CPU Utilization (%)" +white,41.5694 +black,8.1754 +pikelet,5.1824 +brown,2.4692 +roti,2.1206 +croutons,2.1192 +cornbread,1.0612 +crumpet,0.7965 +nann,0.4723 +brioche,0.3529 +focaccia,0.2917 +panettone,0.1462 +bannock,0.0963 +chapti,0.0543 +pita,0.0355 +potbrood,0.0337 +pumpernickel,0.0158 +barm,0.0131 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a10659b2e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Screwdriver CPU Utilization (%)" +white,8.9660 +black,1.8342 +pikelet,0.9805 +croutons,0.5550 +roti,0.4574 +brown,0.4115 +cornbread,0.2779 +crumpet,0.2137 +brioche,0.0924 +nann,0.0893 +focaccia,0.0783 +panettone,0.0277 +bannock,0.0252 +chapti,0.0142 +potbrood,0.0073 +pita,0.0067 +barm,0.0034 +pumpernickel,0.0034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2e38afe929 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Screwdriver CPU Utilization (%)" +white,4.1569 +black,0.7299 +pikelet,0.3779 +croutons,0.2308 +roti,0.2121 +brown,0.1560 +cornbread,0.1156 +crumpet,0.0876 +brioche,0.0384 +nann,0.0344 +focaccia,0.0321 +panettone,0.0107 +bannock,0.0105 +chapti,0.0059 +potbrood,0.0034 +pita,0.0026 +pumpernickel,0.0016 +barm,0.0014 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e3f6fafea1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Screwdriver CPU Utilization (%)" +white,1.1877 +black,0.1918 +pikelet,0.0978 +croutons,0.0620 +roti,0.0606 +brown,0.0400 +cornbread,0.0310 +crumpet,0.0234 +brioche,0.0103 +nann,0.0089 +focaccia,0.0086 +bannock,0.0028 +panettone,0.0028 +chapti,0.0016 +potbrood,0.0010 +pita,0.0007 +pumpernickel,0.0005 +barm,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..aa09a609c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0.2118,0,0,0,0,0.2093,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0.3000,0.0090,0,0,0,0.3000,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0.3000,0.0250,0,0,0,0.3000,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0.4857,0.0250,0,0,0,0.3000,0,0,0,0,0,0,0 +2016-12-26,0,0,0.2253,0,0,1.8000,0.0250,0,0,0,0.3000,0,0,0,0,0,0,0 +2016-12-27,10.7537,0.1425,2.0000,0,0.4879,1.9063,0.3541,0.2533,0,0.0034,0.3000,0,0,0,0,0,0,0 +2016-12-28,37.7461,16.0211,2.4070,0,6.7749,2.7868,1.6250,1.6000,0,0.0250,0.3000,0.0979,0,0,0,0,0,0 +2016-12-29,106.0268,14.9309,7.9626,1.7124,9.3716,3.0600,2.2638,1.6000,0,0.6063,0.3000,0.5000,0,0.1100,0.0299,0,0.0542,0.0075 +2016-12-30,148.2532,25.7408,6.3076,9.6235,6.1072,4.6463,3.9998,1.6272,0,1.2650,0.3000,0.4257,0.2632,0.4137,0.0999,0.1477,0.0894,0.0500 +2016-12-31,106.8325,24.1166,12.2717,3.4512,0.5847,4.4909,2.9599,2.1535,0.0393,1.3830,0.3000,0,0.2459,0.0740,0.0708,0.1079,0.0074,0.0500 +2017-01-01,47.6513,2.4327,5.1025,0.0283,0,3.3239,0.3871,1.5276,3.2665,0.5992,0.2990,0,0.5499,0,0.0479,0.1145,0.0223,0.0367 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d664e60956 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)" +2016-12,20.4806,8.6377,5.1957,1.8171,1.1663,2.9574,1.0261,0.7234,0.2984,0.0066,0.2909,0.1706,0.0463,0.0543,0.0128,0.0334,0.0098,0.0076 +2017-01,1.5371,0.0785,0.1646,0.1072,0,0.0009,0.0125,0.0493,0.0193,0.1054,0.0096,0,0.0177,0,0.0037,0.0015,0.0012,0.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..32a08c1fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)" +"2016 Q4",20.4806,8.6377,5.1957,1.8171,1.1663,2.9574,1.0261,0.7234,0.2984,0.0066,0.2909,0.1706,0.0463,0.0543,0.0128,0.0334,0.0076,0.0098 +"2017 Q1",0.5295,0.0270,0.0567,0.0369,0,0.0003,0.0043,0.0170,0.0067,0.0363,0.0033,0,0.0061,0,0.0013,0.0005,0.0002,0.0004 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..43a0238e91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)" +2016,20.4806,8.6377,5.1957,1.8171,1.1663,2.9574,1.0261,0.7234,0.2984,0.0066,0.2909,0.0463,0.1706,0.0543,0.0128,0.0334,0.0076,0.0098 +2017,0.1306,0.0067,0.0140,0.0091,0,0.0001,0.0011,0.0042,0.0016,0.0089,0.0008,0.0015,0,0,0.0003,0.0001,0.0001,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e8c15e63e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Users: Active" +robertson,46 +pozidriv,18 +frearson,9 +mortorq,7 +phillips,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e8c15e63e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Users: Active" +robertson,46 +pozidriv,18 +frearson,9 +mortorq,7 +phillips,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e8c15e63e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Users: Active" +robertson,46 +pozidriv,18 +frearson,9 +mortorq,7 +phillips,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e8c15e63e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Users: Active" +robertson,46 +pozidriv,18 +frearson,9 +mortorq,7 +phillips,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..18838be663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" +2016-12-22,0,1,0,0,1 +2016-12-23,0,2,0,0,1 +2016-12-24,0,2,0,0,1 +2016-12-25,0,3,0,0,1 +2016-12-26,0,3,0,1,1 +2016-12-27,8,5,1,1,2 +2016-12-28,15,7,2,2,2 +2016-12-29,29,12,6,4,2 +2016-12-30,44,18,9,6,4 +2016-12-31,34,16,7,5,4 +2017-01-01,21,10,5,4,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9a2a6bfbaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" +2016-12,45,18,9,7,4 +2017-01,21,10,5,4,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..652fd22534 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" +"2016 Q4",45,18,9,7,4 +"2017 Q1",21,10,5,4,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..237ee31898 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" +2016,45,18,9,7,4 +2017,21,10,5,4,4 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0dd1e1ddf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of PIs: Active" +robertson,34 +frearson,7 +pozidriv,7 +mortorq,6 +phillips,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0dd1e1ddf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of PIs: Active" +robertson,34 +frearson,7 +pozidriv,7 +mortorq,6 +phillips,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0dd1e1ddf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of PIs: Active" +robertson,34 +frearson,7 +pozidriv,7 +mortorq,6 +phillips,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0dd1e1ddf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of PIs: Active" +robertson,34 +frearson,7 +pozidriv,7 +mortorq,6 +phillips,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1de32875f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" +2016-12-22,0,0,1,0,1 +2016-12-23,0,0,2,0,1 +2016-12-24,0,0,2,0,1 +2016-12-25,0,0,2,0,1 +2016-12-26,0,0,2,1,1 +2016-12-27,7,1,3,1,1 +2016-12-28,12,2,4,2,1 +2016-12-29,21,6,6,4,1 +2016-12-30,32,7,7,5,3 +2016-12-31,26,5,7,4,3 +2017-01-01,19,3,5,4,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8e8fb9a70d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" +2016-12,33,7,7,6,3 +2017-01,19,3,5,4,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e395e2819f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" +"2016 Q4",33,7,7,6,3 +"2017 Q1",19,3,5,4,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8ca505e0ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" +2016,33,7,7,6,3 +2017,19,3,5,4,3 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..56334ebfec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Resources: Active" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..56334ebfec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Resources: Active" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..56334ebfec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Resources: Active" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..56334ebfec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Resources: Active" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4afd5c3591 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" +2016-12-22,0,0,1,1,0 +2016-12-23,0,0,1,1,0 +2016-12-24,0,0,1,1,0 +2016-12-25,0,0,1,1,0 +2016-12-26,0,1,1,1,0 +2016-12-27,1,1,1,1,1 +2016-12-28,1,1,1,1,1 +2016-12-29,1,1,1,1,1 +2016-12-30,1,1,1,1,1 +2016-12-31,1,1,1,1,1 +2017-01-01,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f7bf463079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" +2016-12,1,1,1,1,1 +2017-01,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5ba3f74c43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" +"2016 Q4",1,1,1,1,1 +"2017 Q1",1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1aae19f37c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" +2016,1,1,1,1,1 +2017,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3bc4e269d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..87fa37c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..87fa37c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..87fa37c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ea0b648ef9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Resource" +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","[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/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f2e9c8361e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,45.91230328,16.68794061,6.70495772,3.21309067,2.80671191 +2017-01,7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9da03884f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",45.91230328,16.68794061,6.70495772,3.21309067,2.80671191 +"2017 Q1",7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..62ff828b61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,45.91230328,16.68794061,6.70495772,3.21309067,2.80671191 +2017,7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3d9c6f20a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0.00000000,0 +2016-12-23,48.00000000,0,0,0.00000000,0 +2016-12-24,48.00000000,0,0,0.00000000,0 +2016-12-25,48.00000000,0,0,0.00000000,0 +2016-12-26,48.00000000,0,0.00000000,0.00000000,0 +2016-12-27,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-28,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-29,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.04549763,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.01913113,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5d1d099a71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +2016-12,0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9f800db849 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +"2016 Q4",0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ae3715d125 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +2016,0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6e36151962 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0.0000,0 +2016-12-23,2.0000,0,0,0.0000,0 +2016-12-24,2.0000,0,0,0.0000,0 +2016-12-25,2.0000,0,0,0.0000,0 +2016-12-26,2.0000,0,0.0000,0.0000,0 +2016-12-27,1.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-28,1.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,1.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0019,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0008,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8799e311b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +2016-12,0.0006,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..199209996f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +"2016 Q4",0.0006,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5f6be66870 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +2016,0.0006,0.0000,0.0000,0.0000,0.0000 +2017,0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a6a558bf81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By CPU Hours (Core Count)" +frearson,113.7868 +robertson,60.2813 +phillips,48.3198 +pozidriv,15.7368 +mortorq,10.9181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a6a558bf81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By CPU Hours (Core Count)" +frearson,113.7868 +robertson,60.2813 +phillips,48.3198 +pozidriv,15.7368 +mortorq,10.9181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a6a558bf81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By CPU Hours (Core Count)" +frearson,113.7868 +robertson,60.2813 +phillips,48.3198 +pozidriv,15.7368 +mortorq,10.9181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a6a558bf81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By CPU Hours (Core Count)" +frearson,113.7868 +robertson,60.2813 +phillips,48.3198 +pozidriv,15.7368 +mortorq,10.9181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c114fa4aa6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,0,0,12.0000,12.0000,0 +2016-12-23,0,0,12.0000,11.6809,0 +2016-12-24,0,0,12.0000,11.1538,0 +2016-12-25,0,0,12.0000,15.1906,0 +2016-12-26,0,0,12.0000,19.7397,16.0000 +2016-12-27,16.0000,89.0965,35.8063,19.3183,16.0000 +2016-12-28,184.4827,72.2453,55.7895,16.9501,16.1564 +2016-12-29,180.0278,63.4055,55.7895,20.2231,15.7022 +2016-12-30,117.9195,64.2752,54.0086,16.4023,9.9208 +2016-12-31,44.2927,58.2410,53.9394,14.3031,9.6979 +2017-01-01,13.6596,26.4794,50.1956,10.0052,10.4389 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d4146ac47b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,117.0398,64.0089,47.9870,16.2321,10.9857 +2017-01,13.6596,26.4794,50.1956,10.0052,10.4389 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2a5adf5e5a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",117.0398,64.0089,47.9870,16.2321,10.9857 +"2017 Q1",13.6596,26.4794,50.1956,10.0052,10.4389 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f4676ca54e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" +2016,117.0398,64.0089,47.9870,16.2321,10.9857 +2017,13.6596,26.4794,50.1956,10.0052,10.4389 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cdfb59ea39 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0.0000,0 +2016-12-23,12.0000,0,0,0.0000,0 +2016-12-24,12.0000,0,0,0.0000,0 +2016-12-25,12.0000,0,0,0.0000,0 +2016-12-26,12.0000,0,0.0000,0.0000,0 +2016-12-27,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-28,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..00e38d5544 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ebe76ebf7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c5885700c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c53841b775 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b6776d76e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b6776d76e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b6776d76e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +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/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c850f613d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" +2016-12-22,0,0,16.94166667,16.74638889,0 +2016-12-23,0,0,16.30180556,24.00000000,0 +2016-12-24,0,0,24.00000000,24.00000000,0 +2016-12-25,0,0,11.30155556,24.00000000,0 +2016-12-26,0,0,24.00000000,24.00000000,2.70416667 +2016-12-27,39.80284091,8.54972222,12.31518519,27.19888889,24.00000000 +2016-12-28,14.86406834,186.57169444,22.27614379,108.00000000,8.77186275 +2016-12-29,17.02394661,27.74351170,7.84795770,108.00000000,4.74300505 +2016-12-30,6.80417258,1.28121009,0.44502730,0.21618378,0.24654544 +2016-12-31,7.51403241,0.58724391,0.50545051,0.12185986,0.34878876 +2017-01-01,2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7b77dcb48a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" +2016-12,12.06662936,1.16947464,0.62961066,0.31815907,0.33141335 +2017-01,2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1b97ba58ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" +"2016 Q4",12.06662936,1.16947464,0.62961066,0.31815907,0.33141335 +"2017 Q1",2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1cc17bf6fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" +2016,12.06662936,1.16947464,0.62961066,0.31815907,0.33141335 +2017,2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8f6a93c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +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/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8f6a93c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +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/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8f6a93c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +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/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8f6a93c11e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +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/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b677e4489b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" +2016-12-22,0,12.0000,12.0000,0,0 +2016-12-23,0,6.5000,12.0000,0,0 +2016-12-24,0,6.5000,12.0000,0,0 +2016-12-25,0,14.6000,12.0000,0,0 +2016-12-26,0,14.6000,12.0000,16.0000,0 +2016-12-27,16.0000,14.1667,38.0000,16.0000,39.8636 +2016-12-28,166.4000,13.5294,38.0000,16.2353,7.3218 +2016-12-29,32.9263,10.9773,38.0000,9.3884,4.6283 +2016-12-30,12.5148,9.1123,8.2085,8.0247,4.0693 +2016-12-31,12.2035,9.7568,8.1419,8.0182,3.4212 +2017-01-01,12.0068,11.1505,8.4037,8.1912,8.1786 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cfbd009246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" +2016-12,12.1502,9.4049,8.1449,8.0171,3.9286 +2017-01,12.0068,11.1505,8.4037,8.1912,8.1786 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4a26f3c056 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" +"2016 Q4",12.1502,9.4049,8.1449,8.0171,3.9286 +"2017 Q1",12.0068,11.1505,8.4037,8.1912,8.1786 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..37fa87cc9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" +2016,12.1502,9.4049,8.1449,8.0171,3.9286 +2017,12.0068,11.1505,8.4037,8.1912,8.1786 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..28a21c570b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +robertson,17.22247708,0.4246558380962387 +phillips,4.65396173,0.0640574830554861 +pozidriv,1.85771176,0.04173360028194275 +mortorq,0.71003162,0.008170929830821188 +frearson,0.00015425,0.00000178664818571851 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..28a21c570b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +robertson,17.22247708,0.4246558380962387 +phillips,4.65396173,0.0640574830554861 +pozidriv,1.85771176,0.04173360028194275 +mortorq,0.71003162,0.008170929830821188 +frearson,0.00015425,0.00000178664818571851 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..28a21c570b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +robertson,17.22247708,0.4246558380962387 +phillips,4.65396173,0.0640574830554861 +pozidriv,1.85771176,0.04173360028194275 +mortorq,0.71003162,0.008170929830821188 +frearson,0.00015425,0.00000178664818571851 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..28a21c570b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +robertson,17.22247708,0.4246558380962387 +phillips,4.65396173,0.0640574830554861 +pozidriv,1.85771176,0.04173360028194275 +mortorq,0.71003162,0.008170929830821188 +frearson,0.00015425,0.00000178664818571851 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..34bc6e16bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" +2016-12-22,0,0.00027778,9.33222222,0,0 +2016-12-23,0,0.00000000,9.59638889,0,0 +2016-12-24,0,0.00000000,0.00000000,0,0 +2016-12-25,0,0.00000000,36.96185185,0,0 +2016-12-26,0,0.00000000,0.00000000,0.00066667,0 +2016-12-27,89.91919192,0.00000000,0.00420635,0.00000000,0.00027778 +2016-12-28,8.58520724,0.00000000,60.06016667,1.54002315,0.00018519 +2016-12-29,5.78510302,0.00000000,1.76508998,0.17184028,0.00026471 +2016-12-30,39.26977991,2.78702649,0.67086751,0.44405230,0.00014632 +2016-12-31,12.26891680,6.29270207,2.29642170,1.23778020,0.00015245 +2017-01-01,3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c18af0d185 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" +2016-12,25.48421670,5.25252754,1.48979528,0.76737821,0.00015134 +2017-01,3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2aabab4300 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" +"2016 Q4",25.48421670,5.25252754,1.48979528,0.76737821,0.00015134 +"2017 Q1",3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6582c538f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" +2016,25.48421670,5.25252754,1.48979528,0.76737821,0.00015134 +2017,3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..91c528755a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +robertson,7.29909295,0.06683986634513733 +pozidriv,0.59530227,0.023036904042316335 +frearson,0.50704899,0.008911294376881986 +mortorq,0.30365382,0.009829076394921818 +phillips,0.10845780,0.022957300184446187 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f9c0c24695 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +robertson,7.29909295,0.10662714361177152 +pozidriv,0.59530227,0.043533301064325194 +frearson,0.50704899,0.015516938082924779 +mortorq,0.30365382,0.014540180835967677 +phillips,0.10845780,0.06300129128425758 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f9c0c24695 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +robertson,7.29909295,0.10662714361177152 +pozidriv,0.59530227,0.043533301064325194 +frearson,0.50704899,0.015516938082924779 +mortorq,0.30365382,0.014540180835967677 +phillips,0.10845780,0.06300129128425758 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f9c0c24695 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +robertson,7.29909295,0.10662714361177152 +pozidriv,0.59530227,0.043533301064325194 +frearson,0.50704899,0.015516938082924779 +mortorq,0.30365382,0.014540180835967677 +phillips,0.10845780,0.06300129128425758 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b53030af7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" +2016-12-22,0,16.94166667,0,0,16.74638889 +2016-12-23,0,16.30180556,0,0,24.00000000 +2016-12-24,0,24.00000000,0,0,24.00000000 +2016-12-25,0,11.30155556,0,0,24.00000000 +2016-12-26,0,24.00000000,0,2.70416667,24.00000000 +2016-12-27,10.45689394,12.31518519,8.54972222,24.00000000,13.89986111 +2016-12-28,9.43950151,22.27614379,18.47688889,8.77186275,24.00000000 +2016-12-29,13.20814563,7.39270518,3.06912573,4.74300505,24.00000000 +2016-12-30,5.75246956,0.42482893,0.59709380,0.24654544,0.05436151 +2016-12-31,6.68463863,0.49295988,0.50094364,0.34878876,0.03180960 +2017-01-01,2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d33f1bf02a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" +2016-12,9.99634612,0.60887666,0.57368768,0.33141335,0.10494462 +2017-01,2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e85f88696d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" +"2016 Q4",9.99634612,0.60887666,0.57368768,0.33141335,0.10494462 +"2017 Q1",2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2fdd57682d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" +2016,9.99634612,0.60887666,0.57368768,0.33141335,0.10494462 +2017,2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..96b14fefdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"User Expansion Factor" +phillips,15.0013 +pozidriv,3.6177 +mortorq,3.3383 +robertson,3.1894 +frearson,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..96b14fefdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"User Expansion Factor" +phillips,15.0013 +pozidriv,3.6177 +mortorq,3.3383 +robertson,3.1894 +frearson,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..96b14fefdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"User Expansion Factor" +phillips,15.0013 +pozidriv,3.6177 +mortorq,3.3383 +robertson,3.1894 +frearson,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..96b14fefdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"User Expansion Factor" +phillips,15.0013 +pozidriv,3.6177 +mortorq,3.3383 +robertson,3.1894 +frearson,1.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c296edfa47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" +2016-12-22,1.0000,1.0495,0,0,0 +2016-12-23,1.0000,1.0525,0,0,0 +2016-12-24,1.0000,1.0552,0,0,0 +2016-12-25,1.0000,1.1158,0,0,0 +2016-12-26,1.0000,1.2310,1.0000,0,0 +2016-12-27,1.0000,1.1876,1.0000,2.4080,1.0000 +2016-12-28,1.0000,1.3009,1.0024,1.7104,1.0000 +2016-12-29,1.0000,1.3071,1.0190,1.4352,1.0000 +2016-12-30,13.8501,2.4490,2.7505,5.6736,1.0001 +2016-12-31,52.5894,5.4420,4.5252,2.0357,1.0003 +2017-01-01,1.5940,6.2105,3.5149,2.6258,1.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3d3326c8ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" +2016-12,17.5090,3.3255,3.3134,3.2689,1.0001 +2017-01,1.5940,6.2105,3.5149,2.6258,1.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d410d926b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" +"2016 Q4",17.5090,3.3255,3.3134,3.2689,1.0001 +"2017 Q1",1.5940,6.2105,3.5149,2.6258,1.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9a45a3ca55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" +2016,17.5090,3.3255,3.3134,3.2689,1.0001 +2017,1.5940,6.2105,3.5149,2.6258,1.0007 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e75812d477 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Ended" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e75812d477 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Ended" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e75812d477 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Ended" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e75812d477 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Ended" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9228e08e74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" +2016-12-22,0,0,0,0,0 +2016-12-23,0,0,0,0,0 +2016-12-24,0,0,0,0,0 +2016-12-25,0,0,0,0,0 +2016-12-26,0,0,0,0,0 +2016-12-27,0,0,0,0,0 +2016-12-28,0,0,0,0,0 +2016-12-29,0,0,0,0,0 +2016-12-30,12318,3924,4203,5109,1052 +2016-12-31,8607,8496,3844,4688,2506 +2017-01-01,5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..04cfcbe737 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" +2016-12,20925,12420,8047,9797,3558 +2017-01,5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1cccb336bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" +"2016 Q4",20925,12420,8047,9797,3558 +"2017 Q1",5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6532816bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" +2016,20925,12420,8047,9797,3558 +2017,5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1b03505fd0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Max (Core Count)" +robertson,336 +frearson,192 +pozidriv,80 +phillips,64 +mortorq,20 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1b03505fd0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Max (Core Count)" +robertson,336 +frearson,192 +pozidriv,80 +phillips,64 +mortorq,20 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1b03505fd0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Max (Core Count)" +robertson,336 +frearson,192 +pozidriv,80 +phillips,64 +mortorq,20 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1b03505fd0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Max (Core Count)" +robertson,336 +frearson,192 +pozidriv,80 +phillips,64 +mortorq,20 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..40b880b9a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" +2016-12-22,0,0,12,12,0 +2016-12-23,0,0,12,12,0 +2016-12-24,0,0,12,12,0 +2016-12-25,0,0,24,12,0 +2016-12-26,0,0,24,12,16 +2016-12-27,144,16,24,64,16 +2016-12-28,144,192,24,64,20 +2016-12-29,160,192,64,64,20 +2016-12-30,336,192,80,64,20 +2016-12-31,336,192,64,64,16 +2017-01-01,192,16,24,64,16 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..eee427a957 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" +2016-12,336,192,80,64,20 +2017-01,192,16,24,64,16 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e662848ceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" +"2016 Q4",336,192,80,64,20 +"2017 Q1",192,16,24,64,16 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b7f4019736 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" +2016,336,192,80,64,20 +2017,192,16,24,64,16 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d0c69622bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Min (Core Count)" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d0c69622bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Min (Core Count)" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d0c69622bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Min (Core Count)" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d0c69622bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Min (Core Count)" +frearson,1 +mortorq,1 +phillips,1 +pozidriv,1 +robertson,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0595c0a2a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" +2016-12-22,0,0,12,12,0 +2016-12-23,0,0,12,1,0 +2016-12-24,0,0,12,1,0 +2016-12-25,0,0,12,1,0 +2016-12-26,0,16,12,1,0 +2016-12-27,16,16,12,1,1 +2016-12-28,16,16,12,1,1 +2016-12-29,12,4,12,1,1 +2016-12-30,1,1,8,1,1 +2016-12-31,1,1,8,1,1 +2017-01-01,1,4,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cf28516dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" +2016-12,1,1,8,1,1 +2017-01,1,4,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..efe5832540 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" +"2016 Q4",1,1,8,1,1 +"2017 Q1",1,4,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..de8af5504d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" +2016,1,1,8,1,1 +2017,1,4,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b14220f4f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +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/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b14220f4f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +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/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b14220f4f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +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/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b14220f4f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +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/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7464dae33c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0.300000000,0.300000000,0,0 +2016-12-23,0,0.162500000,0.300000000,0,0 +2016-12-24,0,0.162500000,0.300000000,0,0 +2016-12-25,0,0.365000000,0.300000000,0,0 +2016-12-26,0,0.365000000,0.300000000,0.400000000,0 +2016-12-27,0.400000000,0.354166667,0.950000000,0.400000000,0.996590909 +2016-12-28,4.160000000,0.338235294,0.950000000,0.405882353,0.183044554 +2016-12-29,0.823157895,0.274431818,0.950000000,0.234710744,0.115707810 +2016-12-30,0.312870117,0.227807641,0.205213270,0.200617631,0.101732187 +2016-12-31,0.305087276,0.243918919,0.203547230,0.200454026,0.085529024 +2017-01-01,0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..49cbfc5c19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" +2016-12,0.303754354,0.235121939,0.203622578,0.200428273,0.098214877 +2017-01,0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b9a9e00f23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.303754354,0.235121939,0.203622578,0.200428273,0.098214877 +"2017 Q1",0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c2672b2fdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" +2016,0.303754354,0.235121939,0.203622578,0.200428273,0.098214877 +2017,0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2ff0bd948b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Running" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2ff0bd948b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Running" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2ff0bd948b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Running" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2ff0bd948b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Running" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..948ae1c96b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" +2016-12-22,0,0,0,1,1 +2016-12-23,0,0,0,2,1 +2016-12-24,0,0,0,2,1 +2016-12-25,0,0,0,5,1 +2016-12-26,5,0,0,5,1 +2016-12-27,5,1,22,12,2 +2016-12-28,17,10,404,17,2 +2016-12-29,121,95,1434,88,2 +2016-12-30,12467,4019,6105,5209,1055 +2016-12-31,8755,8708,4858,4773,2509 +2017-01-01,5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..32d3d6395a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" +2016-12,21073,12632,9061,9882,3561 +2017-01,5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1a1d7a65c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" +"2016 Q4",21073,12632,9061,9882,3561 +"2017 Q1",5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..56c4fe81f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" +2016,21073,12632,9061,9882,3561 +2017,5315,2927,6348,1488,488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..228ea1ca45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Started" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..228ea1ca45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Started" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..228ea1ca45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Started" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..228ea1ca45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Started" +mortorq,26240 +frearson,15347 +robertson,14395 +pozidriv,11285 +phillips,4046 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..767f4a77f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" +2016-12-22,0,0,0,1,1 +2016-12-23,0,0,0,1,0 +2016-12-24,0,0,0,0,0 +2016-12-25,0,0,0,3,0 +2016-12-26,5,0,0,0,0 +2016-12-27,0,1,22,7,1 +2016-12-28,12,9,382,5,0 +2016-12-29,104,85,1030,71,0 +2016-12-30,12346,3924,4671,5121,1053 +2016-12-31,8606,8613,2956,4673,2506 +2017-01-01,5167,2715,5334,1403,485 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1c43b873ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" +2016-12,21073,12632,9061,9882,3561 +2017-01,5167,2715,5334,1403,485 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74800b789f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" +"2016 Q4",21073,12632,9061,9882,3561 +"2017 Q1",5167,2715,5334,1403,485 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c95093b274 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" +2016,21073,12632,9061,9882,3561 +2017,5167,2715,5334,1403,485 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fae68882f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Submitted" +mortorq,25152 +frearson,15347 +robertson,10967 +pozidriv,9962 +phillips,2988 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..57550b86d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Submitted" +mortorq,26025 +frearson,15347 +robertson,13547 +pozidriv,10337 +phillips,3987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..57550b86d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Submitted" +mortorq,26025 +frearson,15347 +robertson,13547 +pozidriv,10337 +phillips,3987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..57550b86d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Number of Jobs Submitted" +mortorq,26025 +frearson,15347 +robertson,13547 +pozidriv,10337 +phillips,3987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..27d58eba53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" +2016-12-22,0,0,0,0,1 +2016-12-23,0,0,0,1,0 +2016-12-24,0,0,0,0,0 +2016-12-25,0,0,0,1,0 +2016-12-26,5,0,0,0,0 +2016-12-27,0,1,9,7,1 +2016-12-28,12,9,358,0,0 +2016-12-29,100,85,952,69,0 +2016-12-30,12345,3924,3344,4994,1053 +2016-12-31,7738,8613,1818,4435,1507 +2017-01-01,4952,2715,4486,455,426 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f4ff7a78ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" +2016-12,21073,12632,9061,9882,3561 +2017-01,4952,2715,4486,455,426 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6f1f6a3ea1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" +"2016 Q4",21073,12632,9061,9882,3561 +"2017 Q1",4952,2715,4486,455,426 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0ddc5313d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" +2016,21073,12632,9061,9882,3561 +2017,4952,2715,4486,455,426 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b6c08c2066 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Total" +robertson,461887.9808 +frearson,217650.7417 +mortorq,77264.8497 +pozidriv,71984.2764 +phillips,11767.9883 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b6c08c2066 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Total" +robertson,461887.9808 +frearson,217650.7417 +mortorq,77264.8497 +pozidriv,71984.2764 +phillips,11767.9883 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b6c08c2066 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Total" +robertson,461887.9808 +frearson,217650.7417 +mortorq,77264.8497 +pozidriv,71984.2764 +phillips,11767.9883 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b6c08c2066 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Total" +robertson,461887.9808 +frearson,217650.7417 +mortorq,77264.8497 +pozidriv,71984.2764 +phillips,11767.9883 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6e53f2c896 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" +2016-12-22,0,0,0,203.3000,200.9567 +2016-12-23,0,0,0,296.6036,288.0000 +2016-12-24,0,0,0,312.0000,288.0000 +2016-12-25,0,0,0,490.2700,288.0000 +2016-12-26,0,0,216.3333,1752.0000,288.0000 +2016-12-27,10791.9414,136.7956,1920.0000,2173.2256,531.1822 +2016-12-28,42740.1569,29851.4711,2404.7489,5168.3333,1824.0000 +2016-12-29,110834.4219,42083.6467,8672.5767,7847.1381,1824.0000 +2016-12-30,148413.6153,73913.2931,27506.1814,23365.5864,1920.5911 +2016-12-31,103231.2444,64816.8594,26989.6194,24649.9353,2541.9711 +2017-01-01,45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0e225cbbcd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" +2016-12,416011.3800,210802.0658,67709.4597,66258.3922,9994.7011 +2017-01,45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3da29ba23d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" +"2016 Q4",416011.3800,210802.0658,67709.4597,66258.3922,9994.7011 +"2017 Q1",45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..87105518a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" +2016,416011.3800,210802.0658,67709.4597,66258.3922,9994.7011 +2017,45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..57cecd68b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +2016-12-22,33.4928,0,0,0.0000,0 +2016-12-23,48.0000,0,0,0.0000,0 +2016-12-24,48.0000,0,0,0.0000,0 +2016-12-25,48.0000,0,0,0.0000,0 +2016-12-26,48.0000,0,0.0000,0.0000,0 +2016-12-27,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-28,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2d39954af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2fbc2b14b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..41fd9ecee2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dfff69138f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Total" +robertson,124760.4617 +frearson,15307.6617 +mortorq,7967.8761 +pozidriv,6922.8794 +phillips,1344.8686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dfff69138f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Total" +robertson,124760.4617 +frearson,15307.6617 +mortorq,7967.8761 +pozidriv,6922.8794 +phillips,1344.8686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dfff69138f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Total" +robertson,124760.4617 +frearson,15307.6617 +mortorq,7967.8761 +pozidriv,6922.8794 +phillips,1344.8686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dfff69138f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Total" +robertson,124760.4617 +frearson,15307.6617 +mortorq,7967.8761 +pozidriv,6922.8794 +phillips,1344.8686 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b79dac7f87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" +2016-12-22,0,0,0,16.9417,16.7464 +2016-12-23,0,0,0,32.6036,24.0000 +2016-12-24,0,0,0,48.0000,24.0000 +2016-12-25,0,0,0,56.5078,24.0000 +2016-12-26,0,0,13.5208,120.0000,24.0000 +2016-12-27,875.6625,8.5497,120.0000,147.7822,54.3978 +2016-12-28,6005.0836,1865.7169,149.1217,378.6944,216.0000 +2016-12-29,24412.3394,2635.6336,573.9036,690.6203,216.0000 +2016-12-30,41539.4736,5149.1833,3073.6819,2318.1472,228.0739 +2016-12-31,36503.1694,5113.7200,3053.6456,2412.5153,305.7464 +2017-01-01,15424.7331,534.8581,984.0025,701.0669,211.9042 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..379cd26d38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" +2016-12,109335.7286,14772.8036,6983.8736,6221.8125,1132.9644 +2017-01,15424.7331,534.8581,984.0025,701.0669,211.9042 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..63e1e272ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" +"2016 Q4",109335.7286,14772.8036,6983.8736,6221.8125,1132.9644 +"2017 Q1",15424.7331,534.8581,984.0025,701.0669,211.9042 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ce1d189a61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" +2016,109335.7286,14772.8036,6983.8736,6221.8125,1132.9644 +2017,15424.7331,534.8581,984.0025,701.0669,211.9042 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..17326ee924 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Total" +robertson,247917.5575 +pozidriv,20964.2772 +phillips,18829.9292 +mortorq,18631.2297 +frearson,2.3672 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..17326ee924 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Total" +robertson,247917.5575 +pozidriv,20964.2772 +phillips,18829.9292 +mortorq,18631.2297 +frearson,2.3672 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..17326ee924 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Total" +robertson,247917.5575 +pozidriv,20964.2772 +phillips,18829.9292 +mortorq,18631.2297 +frearson,2.3672 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..17326ee924 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wait Hours: Total" +robertson,247917.5575 +pozidriv,20964.2772 +phillips,18829.9292 +mortorq,18631.2297 +frearson,2.3672 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..17e8d6a5e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" +2016-12-22,0,9.3322,0.0003,0,0 +2016-12-23,0,9.5964,0.0000,0,0 +2016-12-24,0,0.0000,0.0000,0,0 +2016-12-25,0,110.8856,0.0000,0,0 +2016-12-26,0,0.0000,0.0000,0.0033,0 +2016-12-27,1978.2222,0.0294,0.0000,0.0000,0.0003 +2016-12-28,3279.5492,300.3008,0.0000,18.4803,0.0017 +2016-12-29,5958.6561,125.3214,0.0000,17.8714,0.0225 +2016-12-30,183429.1419,3435.5125,2934.7389,5482.2697,0.5742 +2016-12-31,36266.9181,10731.1786,15769.5114,10652.3364,1.3131 +2017-01-01,17005.0700,6242.1203,125.6786,2460.2686,0.4556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..17437437c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" +2016-12,230912.4875,14722.1569,18704.2506,16170.9611,1.9117 +2017-01,17005.0700,6242.1203,125.6786,2460.2686,0.4556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a76c9340e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" +"2016 Q4",230912.4875,14722.1569,18704.2506,16170.9611,1.9117 +"2017 Q1",17005.0700,6242.1203,125.6786,2460.2686,0.4556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a9b6c022e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" +2016,230912.4875,14722.1569,18704.2506,16170.9611,1.9117 +2017,17005.0700,6242.1203,125.6786,2460.2686,0.4556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c42f26f237 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Total" +robertson,105070.4431 +mortorq,7967.8761 +frearson,7781.6808 +pozidriv,6717.9861 +phillips,438.8203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c42f26f237 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Total" +robertson,105070.4431 +mortorq,7967.8761 +frearson,7781.6808 +pozidriv,6717.9861 +phillips,438.8203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c42f26f237 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Total" +robertson,105070.4431 +mortorq,7967.8761 +frearson,7781.6808 +pozidriv,6717.9861 +phillips,438.8203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c42f26f237 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Wall Hours: Total" +robertson,105070.4431 +mortorq,7967.8761 +frearson,7781.6808 +pozidriv,6717.9861 +phillips,438.8203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f76c05674f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" +2016-12-22,0,0,0,16.9417,16.7464 +2016-12-23,0,0,0,32.6036,24.0000 +2016-12-24,0,0,0,48.0000,24.0000 +2016-12-25,0,0,0,56.5078,24.0000 +2016-12-26,0,13.5208,0,120.0000,24.0000 +2016-12-27,230.0517,120.0000,8.5497,147.7822,27.7997 +2016-12-28,3813.5586,149.1217,184.7689,378.6944,48.0000 +2016-12-29,18940.4808,573.9036,291.5669,650.5581,48.0000 +2016-12-30,35118.8267,3073.6819,2399.7200,2212.9339,57.3514 +2016-12-31,32473.9744,3053.6456,4362.2172,2352.8975,79.8103 +2017-01-01,14493.5508,984.0025,534.8581,701.0669,65.1125 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7cf12c9101 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" +2016-12,90576.8922,6983.8736,7246.8228,6016.9192,373.7078 +2017-01,14493.5508,984.0025,534.8581,701.0669,65.1125 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0eb8f7482a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" +"2016 Q4",90576.8922,6983.8736,7246.8228,6016.9192,373.7078 +"2017 Q1",14493.5508,984.0025,534.8581,701.0669,65.1125 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dbfaced39d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" +2016,90576.8922,6983.8736,7246.8228,6016.9192,373.7078 +2017,14493.5508,984.0025,534.8581,701.0669,65.1125 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a79481c720 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Screwdriver CPU Utilization (%)" +robertson,43.7394 +frearson,37.7866 +mortorq,11.4977 +pozidriv,6.8167 +phillips,1.1144 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7ffb20d29b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Screwdriver CPU Utilization (%)" +robertson,9.4340 +frearson,6.2978 +mortorq,2.1752 +pozidriv,1.7853 +phillips,0.2990 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c65299c947 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Screwdriver CPU Utilization (%)" +robertson,4.3739 +frearson,2.3865 +mortorq,0.8384 +pozidriv,0.7424 +phillips,0.1226 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5849753a72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Screwdriver CPU Utilization (%)" +robertson,1.2497 +frearson,0.6128 +mortorq,0.2169 +pozidriv,0.1994 +phillips,0.0327 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..eedaeb31f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0.2118,0.2093 +2016-12-23,0,0,0,0.3090,0.3000 +2016-12-24,0,0,0,0.3250,0.3000 +2016-12-25,0,0,0,0.5107,0.3000 +2016-12-26,0,0,0.2253,1.8250,0.3000 +2016-12-27,11.2416,0.1425,2.0000,2.2638,0.5533 +2016-12-28,44.5210,31.0953,2.5049,5.3837,1.9000 +2016-12-29,115.4525,43.8371,9.0339,8.1741,1.9000 +2016-12-30,154.5975,76.9930,28.6523,24.3392,2.0006 +2016-12-31,107.5325,67.5176,28.1142,25.6770,2.6479 +2017-01-01,47.7881,7.1340,9.9535,5.9645,1.8472 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9498fb7d25 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" +2016-12,21.6673,43.9171,11.7551,6.2745,1.0411 +2017-01,1.5416,0.2301,0.3211,0.1924,0.0596 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b4fd58fa71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" +"2016 Q4",21.6673,43.9171,11.7551,6.2745,1.0411 +"2017 Q1",0.5310,0.0793,0.1106,0.0663,0.0205 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..73fb1224bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" +2016,21.6673,43.9171,11.7551,6.2745,1.0411 +2017,0.1309,0.0195,0.0273,0.0163,0.0051 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2853d9623d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Users: Active" +"High-performance computing",66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2853d9623d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Users: Active" +"High-performance computing",66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2853d9623d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Users: Active" +"High-performance computing",66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2853d9623d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Users: Active" +"High-performance computing",66 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..44d83e2b8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of Users: Active" +2016-12-22,2 +2016-12-23,3 +2016-12-24,3 +2016-12-25,4 +2016-12-26,5 +2016-12-27,16 +2016-12-28,25 +2016-12-29,43 +2016-12-30,64 +2016-12-31,55 +2017-01-01,38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5c4a092014 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of Users: Active" +2016-12,66 +2017-01,38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fee923f1c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of Users: Active" +"2016 Q4",66 +"2017 Q1",38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fa009abb8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of Users: Active" +2016,66 +2017,38 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f29b69a053 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of PIs: Active" +"High-performance computing",41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f29b69a053 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of PIs: Active" +"High-performance computing",41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f29b69a053 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of PIs: Active" +"High-performance computing",41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f29b69a053 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of PIs: Active" +"High-performance computing",41 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..78e41be2ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of PIs: Active" +2016-12-22,2 +2016-12-23,3 +2016-12-24,3 +2016-12-25,3 +2016-12-26,4 +2016-12-27,11 +2016-12-28,18 +2016-12-29,28 +2016-12-30,39 +2016-12-31,34 +2017-01-01,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4ec0195a37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of PIs: Active" +2016-12,41 +2017-01,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..14faffe83a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of PIs: Active" +"2016 Q4",41 +"2017 Q1",25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cd41dfc236 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of PIs: Active" +2016,41 +2017,25 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0d771cf529 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Resources: Active" +"High-performance computing",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0d771cf529 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Resources: Active" +"High-performance computing",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0d771cf529 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Resources: Active" +"High-performance computing",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0d771cf529 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Resources: Active" +"High-performance computing",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7dc270066 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of Resources: Active" +2016-12-22,2 +2016-12-23,2 +2016-12-24,2 +2016-12-25,2 +2016-12-26,3 +2016-12-27,5 +2016-12-28,5 +2016-12-29,5 +2016-12-30,5 +2016-12-31,5 +2017-01-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fafe2a6f3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of Resources: Active" +2016-12,5 +2017-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1a3fbf53ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of Resources: Active" +"2016 Q4",5 +"2017 Q1",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5283067afd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of Resources: Active" +2016,5 +2017,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2961eff9f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f74d75fe59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f74d75fe59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f74d75fe59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..59b5f69c87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] CPU Hours: Per Job" +2016-12-22,202.12833333 +2016-12-23,194.86787037 +2016-12-24,200.00000000 +2016-12-25,129.71166667 +2016-12-26,205.12121212 +2016-12-27,370.31296958 +2016-12-28,182.19713395 +2016-12-29,98.42631226 +2016-12-30,9.53454400 +2016-12-31,7.50699692 +2017-01-01,4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ccfaefb5d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] CPU Hours: Per Job" +2016-12,13.71267944 +2017-01,4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3b34b4afa2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] CPU Hours: Per Job" +"2016 Q4",13.71267944 +"2017 Q1",4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..231c9d1782 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] CPU Hours: Per Job" +2016,13.71267944 +2017,4.21223217 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..28a8c54526 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] GPU Hours: Per Job" +2016-12-22,16.74638889 +2016-12-23,16.00000000 +2016-12-24,16.00000000 +2016-12-25,8.00000000 +2016-12-26,4.36363636 +2016-12-27,1.14285714 +2016-12-28,0.10666667 +2016-12-29,0.02758621 +2016-12-30,0.00166349 +2016-12-31,0.00162146 +2017-01-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4ad2b875db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] GPU Hours: Per Job" +2016-12,0.00828146 +2017-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1bc14806e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] GPU Hours: Per Job" +"2016 Q4",0.00828146 +"2017 Q1",0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fca306f35 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] GPU Hours: Per Job" +2016,0.00828146 +2017,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cbe05dfa23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] GPU Count: Per Job" +2016-12-22,1.0000 +2016-12-23,0.6667 +2016-12-24,0.6667 +2016-12-25,0.3333 +2016-12-26,0.1818 +2016-12-27,0.0476 +2016-12-28,0.0044 +2016-12-29,0.0011 +2016-12-30,0.0001 +2016-12-31,0.0001 +2017-01-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..082ad536e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] GPU Count: Per Job" +2016-12,0.0000 +2017-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..db4f5fcb70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] GPU Count: Per Job" +"2016 Q4",0.0000 +"2017 Q1",0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8def323fca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] GPU Count: Per Job" +2016,0.0000 +2017,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..44166ce4f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" +"High-performance computing",65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..44166ce4f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" +"High-performance computing",65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..44166ce4f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" +"High-performance computing",65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..44166ce4f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" +"High-performance computing",65.6161 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..72cc4b1eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,12.0000 +2016-12-23,11.8381 +2016-12-24,11.5600 +2016-12-25,14.0099 +2016-12-26,18.3933 +2016-12-27,67.8600 +2016-12-28,107.6133 +2016-12-29,87.5874 +2016-12-30,69.1154 +2016-12-31,43.3544 +2017-01-01,22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..32b48521d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,69.5398 +2017-01,22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2b8923f838 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",69.5398 +"2017 Q1",22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..28de581b03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" +2016,69.5398 +2017,22.2755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0cbebdec3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000 +2016-12-23,12.0000 +2016-12-24,12.0000 +2016-12-25,12.0000 +2016-12-26,12.0000 +2016-12-27,12.0000 +2016-12-28,12.0000 +2016-12-29,12.0000 +2016-12-30,12.0000 +2016-12-31,12.0000 +2017-01-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..23ce10fb1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000 +2017-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3c0773f547 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000 +"2017 Q1",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a3e6a6081e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000 +2017,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6f5459ea9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e492e09e62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e492e09e62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e492e09e62 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..45c3112b11 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Node Hours: Per Job" +2016-12-22,16.84402778 +2016-12-23,18.86787037 +2016-12-24,24.00000000 +2016-12-25,13.41796296 +2016-12-26,14.32007576 +2016-12-27,28.72362434 +2016-12-28,19.14359259 +2016-12-29,16.39568790 +2016-12-30,1.81280749 +2016-12-31,1.60081062 +2017-01-01,1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3663291101 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Node Hours: Per Job" +2016-12,2.46307856 +2017-01,1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f3472d34b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Node Hours: Per Job" +"2016 Q4",2.46307856 +"2017 Q1",1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fe5ba1109c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Node Hours: Per Job" +2016,2.46307856 +2017,1.07790443 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..772f01a362 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..772f01a362 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..772f01a362 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..772f01a362 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0d3b868c3d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Per Job (Core Count)" +2016-12-22,12.0000 +2016-12-23,8.3333 +2016-12-24,8.3333 +2016-12-25,14.1667 +2016-12-26,15.0000 +2016-12-27,29.0238 +2016-12-28,11.5644 +2016-12-29,6.8638 +2016-12-30,8.0163 +2016-12-31,8.7857 +2017-01-01,9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c6e8b3498c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Per Job (Core Count)" +2016-12,8.5390 +2017-01,9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7baed870f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Per Job (Core Count)" +"2016 Q4",8.5390 +"2017 Q1",9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7a4d866a9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Per Job (Core Count)" +2016,8.5390 +2017,9.1326 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a198811972 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"High-performance computing",4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a198811972 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"High-performance computing",4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a198811972 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"High-performance computing",4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a198811972 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +"High-performance computing",4.29578563,0.08956571094180898 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a0abb0a56a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Wait Hours: Per Job" +2016-12-22,4.66625000 +2016-12-23,9.59638889 +2016-12-24,0.00000000 +2016-12-25,36.96185185 +2016-12-26,0.00066667 +2016-12-27,63.81457885 +2016-12-28,8.81944104 +2016-12-29,4.73013286 +2016-12-30,7.20200027 +2016-12-31,2.68411411 +2017-01-01,1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..16736303c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Wait Hours: Per Job" +2016-12,4.99051340 +2017-01,1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..bde3da4c3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Wait Hours: Per Job" +"2016 Q4",4.99051340 +"2017 Q1",1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cef6deb0ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Wait Hours: Per Job" +2016,4.99051340 +2017,1.71038090 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9dacb24bb0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"High-performance computing",1.79457892,0.017929611668507588 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b3ca8c3d58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"High-performance computing",1.79457892,0.0259028363905744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b3ca8c3d58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"High-performance computing",1.79457892,0.0259028363905744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b3ca8c3d58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +"High-performance computing",1.79457892,0.0259028363905744 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0377cfbe2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Wall Hours: Per Job" +2016-12-22,16.84402778 +2016-12-23,18.86787037 +2016-12-24,24.00000000 +2016-12-25,13.41796296 +2016-12-26,14.32007576 +2016-12-27,12.71865079 +2016-12-28,10.16476358 +2016-12-29,11.78420083 +2016-12-30,1.48544495 +2016-12-31,1.42967081 +2017-01-01,1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fdeae34918 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Wall Hours: Per Job" +2016-12,1.97829913 +2017-01,1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4cd8eb09e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Wall Hours: Per Job" +"2016 Q4",1.97829913 +"2017 Q1",1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..93349d4924 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Wall Hours: Per Job" +2016,1.97829913 +2017,1.01283296 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ed168fd6c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","User Expansion Factor" +"High-performance computing",3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ed168fd6c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","User Expansion Factor" +"High-performance computing",3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ed168fd6c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","User Expansion Factor" +"High-performance computing",3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ed168fd6c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","User Expansion Factor" +"High-performance computing",3.1031 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9a471dd540 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] User Expansion Factor" +2016-12-22,1.0249 +2016-12-23,1.0302 +2016-12-24,1.0368 +2016-12-25,1.0813 +2016-12-26,1.1760 +2016-12-27,2.0450 +2016-12-28,1.5085 +2016-12-29,1.3802 +2016-12-30,4.9345 +2016-12-31,2.5839 +2017-01-01,2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..297fef7855 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] User Expansion Factor" +2016-12,3.1481 +2017-01,2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..40c2334552 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] User Expansion Factor" +"2016 Q4",3.1481 +"2017 Q1",2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d3f214da89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] User Expansion Factor" +2016,3.1481 +2017,2.7546 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9996b95bbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Ended" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9996b95bbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Ended" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9996b95bbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Ended" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9996b95bbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Ended" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f29b93d061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of Jobs Ended" +2016-12-22,0 +2016-12-23,0 +2016-12-24,0 +2016-12-25,0 +2016-12-26,0 +2016-12-27,0 +2016-12-28,0 +2016-12-29,0 +2016-12-30,26606 +2016-12-31,28141 +2017-01-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0561386d8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of Jobs Ended" +2016-12,54747 +2017-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..58b2b80554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of Jobs Ended" +"2016 Q4",54747 +"2017 Q1",16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ee30ad6fcc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of Jobs Ended" +2016,54747 +2017,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1b06fa03ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Max (Core Count)" +"High-performance computing",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1b06fa03ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Max (Core Count)" +"High-performance computing",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1b06fa03ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Max (Core Count)" +"High-performance computing",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1b06fa03ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Max (Core Count)" +"High-performance computing",336 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bc9f3b6942 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Max (Core Count)" +2016-12-22,12 +2016-12-23,12 +2016-12-24,12 +2016-12-25,24 +2016-12-26,24 +2016-12-27,144 +2016-12-28,192 +2016-12-29,192 +2016-12-30,336 +2016-12-31,336 +2017-01-01,192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1ba65802bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Max (Core Count)" +2016-12,336 +2017-01,192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..44aeb67b33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Max (Core Count)" +"2016 Q4",336 +"2017 Q1",192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f8fec62360 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Max (Core Count)" +2016,336 +2017,192 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7fc2d100e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Min (Core Count)" +"High-performance computing",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7fc2d100e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Min (Core Count)" +"High-performance computing",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7fc2d100e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Min (Core Count)" +"High-performance computing",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7fc2d100e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Min (Core Count)" +"High-performance computing",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9cc37aca61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Min (Core Count)" +2016-12-22,12 +2016-12-23,1 +2016-12-24,1 +2016-12-25,1 +2016-12-26,1 +2016-12-27,1 +2016-12-28,1 +2016-12-29,1 +2016-12-30,1 +2016-12-31,1 +2017-01-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f9d2845039 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Min (Core Count)" +2016-12,1 +2017-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dfb8fb78f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Min (Core Count)" +"2016 Q4",1 +"2017 Q1",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d0528a86c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Min (Core Count)" +2016,1 +2017,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60faa4f653 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60faa4f653 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60faa4f653 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60faa4f653 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +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/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5d391f0fe6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.150000000 +2016-12-23,0.104166667 +2016-12-24,0.104166667 +2016-12-25,0.177083333 +2016-12-26,0.125000000 +2016-12-27,0.145119048 +2016-12-28,0.057822222 +2016-12-29,0.034318966 +2016-12-30,0.040081442 +2016-12-31,0.043928656 +2017-01-01,0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..61af858cb6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Normalized (% of Total Cores)" +2016-12,0.042694764 +2017-01,0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8375c41ee0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.042694764 +"2017 Q1",0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..55caafbee8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Normalized (% of Total Cores)" +2016,0.042694764 +2017,0.045663105 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..526b6d3a89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Running" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..526b6d3a89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Running" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..526b6d3a89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Running" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..526b6d3a89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Running" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0ad2127aaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of Jobs Running" +2016-12-22,2 +2016-12-23,3 +2016-12-24,3 +2016-12-25,6 +2016-12-26,11 +2016-12-27,42 +2016-12-28,450 +2016-12-29,1740 +2016-12-30,28855 +2016-12-31,29603 +2017-01-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e836afe405 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of Jobs Running" +2016-12,56209 +2017-01,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9c422034c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of Jobs Running" +"2016 Q4",56209 +"2017 Q1",16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b3a042258a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of Jobs Running" +2016,56209 +2017,16566 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..01f764aa87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Started" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..01f764aa87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Started" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..01f764aa87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Started" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..01f764aa87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Started" +"High-performance computing",71313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..478afbc9da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of Jobs Started" +2016-12-22,2 +2016-12-23,1 +2016-12-24,0 +2016-12-25,3 +2016-12-26,5 +2016-12-27,31 +2016-12-28,408 +2016-12-29,1290 +2016-12-30,27115 +2016-12-31,27354 +2017-01-01,15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..eb41265590 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of Jobs Started" +2016-12,56209 +2017-01,15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..abe22a25b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of Jobs Started" +"2016 Q4",56209 +"2017 Q1",15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..31dd042634 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of Jobs Started" +2016,56209 +2017,15104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..86e3452bce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Submitted" +"High-performance computing",64416 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5b8939c9ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Submitted" +"High-performance computing",69243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5b8939c9ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Submitted" +"High-performance computing",69243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5b8939c9ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Number of Jobs Submitted" +"High-performance computing",69243 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9bc9a04cdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Number of Jobs Submitted" +2016-12-22,1 +2016-12-23,1 +2016-12-24,0 +2016-12-25,1 +2016-12-26,5 +2016-12-27,18 +2016-12-28,379 +2016-12-29,1206 +2016-12-30,25660 +2016-12-31,24111 +2017-01-01,13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..08d74cc145 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Number of Jobs Submitted" +2016-12,56209 +2017-01,13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9cc2641a6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Number of Jobs Submitted" +"2016 Q4",56209 +"2017 Q1",13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d56c81c9c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Number of Jobs Submitted" +2016,56209 +2017,13034 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4f23c1ee33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4f23c1ee33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4f23c1ee33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4f23c1ee33 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",840555.8369 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2f485916ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] CPU Hours: Total" +2016-12-22,404.2567 +2016-12-23,584.6036 +2016-12-24,600.0000 +2016-12-25,778.2700 +2016-12-26,2256.3333 +2016-12-27,15553.1447 +2016-12-28,81988.7103 +2016-12-29,171261.7833 +2016-12-30,275119.2672 +2016-12-31,222229.6297 +2017-01-01,69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9bedd2c6e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] CPU Hours: Total" +2016-12,770775.9989 +2017-01,69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e21bf0c2f6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] CPU Hours: Total" +"2016 Q4",770775.9989 +"2017 Q1",69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b62436131 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] CPU Hours: Total" +2016,770775.9989 +2017,69779.8381 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f162a8906 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] GPU Hours: Total" +2016-12-22,33.4928 +2016-12-23,48.0000 +2016-12-24,48.0000 +2016-12-25,48.0000 +2016-12-26,48.0000 +2016-12-27,48.0000 +2016-12-28,48.0000 +2016-12-29,48.0000 +2016-12-30,48.0000 +2016-12-31,48.0000 +2017-01-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a9e2f39388 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] GPU Hours: Total" +2016-12,465.4928 +2017-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..da03e3535e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] GPU Hours: Total" +"2016 Q4",465.4928 +"2017 Q1",41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d251e2635 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] GPU Hours: Total" +2016,465.4928 +2017,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ad05a65baf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Total" +"High-performance computing",156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ad05a65baf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Total" +"High-performance computing",156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ad05a65baf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Total" +"High-performance computing",156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ad05a65baf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Total" +"High-performance computing",156303.7475 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a56a8f9945 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Node Hours: Total" +2016-12-22,33.6881 +2016-12-23,56.6036 +2016-12-24,72.0000 +2016-12-25,80.5078 +2016-12-26,157.5208 +2016-12-27,1206.3922 +2016-12-28,8614.6167 +2016-12-29,28528.4969 +2016-12-30,52308.5600 +2016-12-31,47388.7967 +2017-01-01,17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..71e033eaca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Node Hours: Total" +2016-12,138447.1828 +2017-01,17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5b8c6e20b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Node Hours: Total" +"2016 Q4",138447.1828 +"2017 Q1",17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3c4a30ead5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Node Hours: Total" +2016,138447.1828 +2017,17856.5647 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c5b78bd1e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Total" +"High-performance computing",306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c5b78bd1e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Total" +"High-performance computing",306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c5b78bd1e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Total" +"High-performance computing",306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c5b78bd1e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wait Hours: Total" +"High-performance computing",306345.3608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..248cd91b76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Wait Hours: Total" +2016-12-22,9.3325 +2016-12-23,9.5964 +2016-12-24,0.0000 +2016-12-25,110.8856 +2016-12-26,0.0033 +2016-12-27,1978.2519 +2016-12-28,3598.3319 +2016-12-29,6101.8714 +2016-12-30,195282.2372 +2016-12-31,73421.2575 +2017-01-01,25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..10c8126e9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Wait Hours: Total" +2016-12,280511.7678 +2017-01,25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cd3bc9ffe8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Wait Hours: Total" +"2016 Q4",280511.7678 +"2017 Q1",25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1243956593 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Wait Hours: Total" +2016,280511.7678 +2017,25833.5931 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..953457808d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Total" +"High-performance computing",127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..953457808d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Total" +"High-performance computing",127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..953457808d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Total" +"High-performance computing",127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..953457808d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Wall Hours: Total" +"High-performance computing",127976.8064 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..930031838e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Wall Hours: Total" +2016-12-22,33.6881 +2016-12-23,56.6036 +2016-12-24,72.0000 +2016-12-25,80.5078 +2016-12-26,157.5208 +2016-12-27,534.1833 +2016-12-28,4574.1436 +2016-12-29,20504.5094 +2016-12-30,42862.5139 +2016-12-31,42322.5450 +2017-01-01,16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e2dc9ed559 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Wall Hours: Total" +2016-12,111198.2156 +2017-01,16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f118f3f560 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Wall Hours: Total" +"2016 Q4",111198.2156 +"2017 Q1",16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bb62338557 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Wall Hours: Total" +2016,111198.2156 +2017,16778.5908 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0e246d15e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Screwdriver CPU Utilization (%)" +"High-performance computing",19.0343 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cac763429a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Screwdriver CPU Utilization (%)" +"High-performance computing",4.2299 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..30f0195299 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Screwdriver CPU Utilization (%)" +"High-performance computing",1.7442 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5999454122 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Screwdriver CPU Utilization (%)" +"High-performance computing",0.4665 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c73f92560b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Screwdriver CPU Utilization (%)" +2016-12-22,0.2106 +2016-12-23,0.3045 +2016-12-24,0.3125 +2016-12-25,0.4053 +2016-12-26,0.7834 +2016-12-27,3.2402 +2016-12-28,17.0810 +2016-12-29,35.6795 +2016-12-30,57.3165 +2016-12-31,46.2978 +2017-01-01,14.5375 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..faab933eea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Screwdriver CPU Utilization (%)" +2016-12,15.4402 +2017-01,0.4690 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e3b901de4f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Screwdriver CPU Utilization (%)" +"2016 Q4",15.4402 +"2017 Q1",0.1615 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7943646a1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Screwdriver CPU Utilization (%)" +2016,15.4402 +2017,0.0398 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..69b5c0d018 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..183ad3b77b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..69b5c0d018 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..183ad3b77b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..69b5c0d018 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..183ad3b77b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..8e758c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..69b5c0d018 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..183ad3b77b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Users: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..7c8cba193f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 +2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 +2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 +2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 +2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 +2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..7c8cba193f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 +2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 +2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 +2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 +2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 +2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..45e080b163 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" +2016-12-23,0,0,1,0,0,0 +2016-12-24,0,0,1,0,0,0 +2016-12-25,0,0,1,0,0,0 +2016-12-26,0,0,1,0,0,0 +2016-12-27,0,1,1,0,0,1 +2016-12-28,0,1,1,0,0,1 +2016-12-29,0,1,1,0,1,1 +2016-12-30,1,1,1,1,1,1 +2016-12-31,1,1,0,1,1,1 +2017-01-01,0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..1047b1ad18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of Users: Active" +2016-12-30,1 +2016-12-31,1 +2017-01-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..99a75fd161 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..99a75fd161 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..09b1c9cf2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" +2016-12,1,1,1,1,1,1 +2017-01,0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..993722d3e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of Users: Active" +2016-12,1 +2017-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..9f20d453b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..9f20d453b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..dbf7f88010 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" +"2016 Q4",1,1,1,1,1,1 +"2017 Q1",0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..baa8eb872e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of Users: Active" +"2016 Q4",1 +"2017 Q1",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..65decacfd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..65decacfd7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..15be4617d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" +2016,1,1,1,1,1,1 +2017,0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0037fbb594 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Users: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of Users: Active" +2016,1 +2017,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..06da745287 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..62a470f56b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..06da745287 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..62a470f56b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..06da745287 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..62a470f56b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..5532f4f8e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +caspl,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grath,1 +grgsh,1 +henha,1 +honbu,1 +hoowa,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +litst,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +reebu,1 +relpa,1 +ribgu,1 +rolle,1 +sancr,1 +sante,1 +sarwa,1 +savsp,1 +shag1,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +swath,1 +turdo,1 +velsc,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +ybsbu,1 +yebbu,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..06da745287 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +litst,1 +ovenb,1 +sante,1 +savsp,1 +swath,1 +ybsbu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..62a470f56b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of PIs: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..7872b0f233 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 +2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 +2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 +2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 +2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 +2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..7872b0f233 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 +2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 +2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 +2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 +2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 +2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..c07f29e752 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" +2016-12-23,0,0,1,0,0,0 +2016-12-24,0,0,1,0,0,0 +2016-12-25,0,0,1,0,0,0 +2016-12-26,0,0,1,0,0,0 +2016-12-27,0,1,1,0,0,1 +2016-12-28,0,1,1,0,0,1 +2016-12-29,0,1,1,0,1,1 +2016-12-30,1,1,1,1,1,1 +2016-12-31,1,1,0,1,1,1 +2017-01-01,0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..cdea6b0680 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of PIs: Active" +2016-12-30,1 +2016-12-31,1 +2017-01-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..04b95cfe7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..04b95cfe7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..22555f68ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" +2016-12,1,1,1,1,1,1 +2017-01,0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..3f71907e9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of PIs: Active" +2016-12,1 +2017-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..9065c92b3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..9065c92b3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..9de5a0dccf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" +"2016 Q4",1,1,1,1,1,1 +"2017 Q1",0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..eeec7d3bae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of PIs: Active" +"2016 Q4",1 +"2017 Q1",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..dd1fbfd8b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..dd1fbfd8b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" +2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..f2e7d67241 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" +2016,1,1,1,1,1,1 +2017,0,1,0,1,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..d299401173 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of PIs: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of PIs: Active" +2016,1 +2017,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..527b87086f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +litst,2 +swath,2 +ybsbu,2 +ovenb,1 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..9d597b6d57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..527b87086f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +litst,2 +swath,2 +ybsbu,2 +ovenb,1 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..9d597b6d57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..527b87086f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +litst,2 +swath,2 +ybsbu,2 +ovenb,1 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..9d597b6d57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..83da1478b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +honbu,5 +reebu,3 +sancr,3 +caspl,2 +grath,2 +lanhach,2 +litst,2 +sarwa,2 +shag1,2 +swath,2 +velsc,2 +ybsbu,2 +yebbu,2 +allga,1 +alpsw,1 +aytinis,1 +blhbu,1 +boowa,1 +categ,1 +chaff,1 +coot1,1 +corsh,1 +crama,1 +crane,1 +dunli,1 +duswa,1 +egygo,1 +evegr,1 +ferdu,1 +field,1 +garwa,1 +gloib,1 +grgsh,1 +henha,1 +hoowa,1 +jackd,1 +lapwi,1 +legsh,1 +lesre,1 +litau,1 +mamwa,1 +meapi,1 +misth,1 +moorh,1 +noror,1 +ovenb,1 +pereg,1 +pibgr,1 +proubis,1 +relpa,1 +ribgu,1 +rolle,1 +sante,1 +savsp,1 +shttr,1 +siski,1 +smew1,1 +sogsh,1 +sposa,1 +turdo,1 +vertera,1 +whimb,1 +whtpl,1 +whtsp,1 +yebsa,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..527b87086f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +litst,2 +swath,2 +ybsbu,2 +ovenb,1 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..9d597b6d57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Resources: Active" +whimb,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..fb8e4593a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-27,1,2,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0 +2016-12-28,1,2,2,0,0,0,0,1,2,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,0 +2016-12-29,4,3,3,0,1,1,0,1,2,2,1,2,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1 +2016-12-30,5,3,3,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1 +2016-12-31,5,3,2,1,2,2,1,2,2,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0 +2017-01-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..fb8e4593a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 +2016-12-27,1,2,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0 +2016-12-28,1,2,2,0,0,0,0,1,2,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,0 +2016-12-29,4,3,3,0,1,1,0,1,2,2,1,2,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1 +2016-12-30,5,3,3,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1 +2016-12-31,5,3,2,1,2,2,1,2,2,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0 +2017-01-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..7dfb9c6137 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" +2016-12-23,0,0,0,0,1,0 +2016-12-24,0,0,0,0,1,0 +2016-12-25,0,0,0,0,1,0 +2016-12-26,0,0,0,0,1,0 +2016-12-27,0,0,1,1,1,0 +2016-12-28,0,0,1,1,1,0 +2016-12-29,0,2,2,1,1,0 +2016-12-30,2,2,2,1,1,1 +2016-12-31,1,1,1,1,0,1 +2017-01-01,0,0,0,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..6e2b02839f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of Resources: Active" +2016-12-30,1 +2016-12-31,1 +2017-01-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..fa3301bb97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +2016-12,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..fa3301bb97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +2016-12,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..6b2ca1130f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" +2016-12,2,2,2,1,1,1 +2017-01,0,0,0,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..85a3fc8bb9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of Resources: Active" +2016-12,1 +2017-01,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..a129d24534 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +"2016 Q4",5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..a129d24534 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +"2016 Q4",5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..1c4352c1de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" +"2016 Q4",2,2,2,1,1,1 +"2017 Q1",0,0,0,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..48c11eff27 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of Resources: Active" +"2016 Q4",1 +"2017 Q1",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..c638f266fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +2016,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..c638f266fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" +2016,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..c62971ab67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" +2016,2,2,2,1,1,1 +2017,0,0,0,1,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..73bbf8aa6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Resources: Active: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of Resources: Active" +2016,1 +2017,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..8a7d78510c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..8a7d78510c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..317848889f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +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 +--------- +Day,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" +2016-12-23,0,0,8.60361111,0,0,0 +2016-12-24,0,0,24.00000000,0,0,0 +2016-12-25,0,0,24.00000000,0,0,0 +2016-12-26,0,0,24.00000000,0,0,0 +2016-12-27,78.98666667,136.79555556,24.00000000,0,0,0 +2016-12-28,384.00000000,384.00000000,24.00000000,0,0,0 +2016-12-29,384.00000000,106.45155556,19.56861111,35.48623932,0,0 +2016-12-30,384.00000000,164.41962963,3.56833333,4.14055945,5.65000000,0.02760417 +2016-12-31,265.13155556,130.38518519,0,1114.52444444,2.45222222,0.02281046 +2017-01-01,371.58666667,0,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..7780472e7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] CPU Hours: Per Job" +2016-12-30,683.12000000 +2016-12-31,261.10111111 +2017-01-01,269.34857143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..3d1e9369c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..3d1e9369c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..6cbd5a4d56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Month,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" +2016-12,1249.92088889,405.12111111,87.43875000,6.35072152,4.48717172,0.02434444 +2017-01,371.58666667,0,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..335068f729 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] CPU Hours: Per Job" +2016-12,337.00333333 +2017-01,269.34857143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..b1f754948c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..b1f754948c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..da4aab0554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Quarter,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" +"2016 Q4",1249.92088889,405.12111111,87.43875000,6.35072152,4.48717172,0.02434444 +"2017 Q1",371.58666667,0,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..02aea6ab49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] CPU Hours: Per Job" +"2016 Q4",337.00333333 +"2017 Q1",269.34857143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..3ea7200f2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..3ea7200f2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..060d0cb012 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Year,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" +2016,1249.92088889,405.12111111,87.43875000,6.35072152,4.48717172,0.02434444 +2017,371.58666667,0,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0b61dfcd7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] CPU Hours: Per Job" +2016,337.00333333 +2017,269.34857143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"GPU 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","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"GPU 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","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"GPU 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","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"GPU 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","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..5aca62d469 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0 +2016-12-28,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0 +2016-12-29,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,9.60000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2017-01-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..5aca62d469 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0 +2016-12-28,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0 +2016-12-29,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,9.60000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2017-01-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..7aff1c1554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +2016-12-23,0,0,0.00000000,0,0,0 +2016-12-24,0,0,0.00000000,0,0,0 +2016-12-25,0,0,0.00000000,0,0,0 +2016-12-26,0,0,0.00000000,0,0,0 +2016-12-27,0,0.00000000,0.00000000,0,0,0.00000000 +2016-12-28,0,0.00000000,0.00000000,0,0,0.00000000 +2016-12-29,0,0.00000000,0.00000000,0,0.00000000,0.00000000 +2016-12-30,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000 +2017-01-01,0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..545369988b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] GPU Hours: Per Job" +2016-12-30,0.00000000 +2016-12-31,0.00000000 +2017-01-01,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..4b65e05273 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..4b65e05273 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..b8c1500974 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +2016-12,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..aabc89051c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] GPU Hours: Per Job" +2016-12,0.00000000 +2017-01,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..88eeafe40a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..88eeafe40a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..80bfadb6b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +"2016 Q4",0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..7ebd1ff835 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] GPU Hours: Per Job" +"2016 Q4",0.00000000 +"2017 Q1",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..a1f70accff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..a1f70accff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..341ab58e81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +2016,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..88ee293a67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] GPU Hours: Per Job" +2016,0.00000000 +2017,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv new file mode 100644 index 0000000000..af6d41263d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12-22,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,2.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.4000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv new file mode 100644 index 0000000000..af6d41263d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12-22,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,2.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.4000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv new file mode 100644 index 0000000000..b5945dfa49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +2016-12-23,0,0,0.0000,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0000,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,0.0000,0,0,0.0000 +2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2017-01-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv new file mode 100644 index 0000000000..e17e8182e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] GPU Count: Per Job" +2016-12-30,0.0000 +2016-12-31,0.0000 +2017-01-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv new file mode 100644 index 0000000000..b1f0032bb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv new file mode 100644 index 0000000000..b1f0032bb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv new file mode 100644 index 0000000000..ae71ea2d56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv new file mode 100644 index 0000000000..0f82fff9ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] GPU Count: Per Job" +2016-12,0.0000 +2017-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..2fbf6f044a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..2fbf6f044a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..cfbc2defef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..661ea72105 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] GPU Count: Per Job" +"2016 Q4",0.0000 +"2017 Q1",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv new file mode 100644 index 0000000000..0f46e1d057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv new file mode 100644 index 0000000000..0f46e1d057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv new file mode 100644 index 0000000000..f9f3674a30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv new file mode 100644 index 0000000000..f01135e4e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] GPU Count: Per Job" +2016,0.0000 +2017,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..0b495970f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" +swath,45.0823 +ovenb,16.0000 +litst,13.7425 +ybsbu,11.7604 +sante,1.0000 +savsp,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..3f1cedc0f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +whimb,62.4269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..0b495970f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" +swath,45.0823 +ovenb,16.0000 +litst,13.7425 +ybsbu,11.7604 +sante,1.0000 +savsp,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..3f1cedc0f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +whimb,62.4269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..0b495970f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" +swath,45.0823 +ovenb,16.0000 +litst,13.7425 +ybsbu,11.7604 +sante,1.0000 +savsp,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..3f1cedc0f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +whimb,62.4269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..0305fb3315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +duswa,326.9898 +aytinis,186.5633 +yebwa,160.0000 +velsc,142.8578 +egygo,112.0000 +allga,108.0000 +crane,96.0000 +meapi,96.0000 +smew1,72.0000 +chaff,64.0000 +whimb,62.4269 +siski,62.4000 +alpsw,60.5835 +ferdu,60.0000 +pereg,60.0000 +dunli,57.7053 +evegr,56.0000 +rolle,55.6816 +sarwa,53.2119 +swath,45.0823 +yebbu,39.9999 +vertera,29.2166 +reebu,25.1805 +sancr,25.0565 +shag1,24.1804 +whtsp,23.2563 +crama,20.0000 +gloib,20.0000 +lanhach,18.6116 +ovenb,16.0000 +relpa,16.0000 +garwa,13.8060 +litst,13.7425 +caspl,12.0000 +misth,12.0000 +sposa,12.0000 +whtpl,12.0000 +noror,11.8318 +ybsbu,11.7604 +honbu,10.5343 +boowa,10.0459 +litau,9.9744 +turdo,9.1143 +hoowa,8.6041 +shttr,8.0019 +corsh,8.0000 +field,8.0000 +grath,4.5532 +lesre,4.0000 +yebsa,4.0000 +blhbu,1.0000 +categ,1.0000 +coot1,1.0000 +grgsh,1.0000 +henha,1.0000 +jackd,1.0000 +lapwi,1.0000 +legsh,1.0000 +mamwa,1.0000 +moorh,1.0000 +pibgr,1.0000 +proubis,1.0000 +ribgu,1.0000 +sante,1.0000 +savsp,1.0000 +sogsh,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..0b495970f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" +swath,45.0823 +ovenb,16.0000 +litst,13.7425 +ybsbu,11.7604 +sante,1.0000 +savsp,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..3f1cedc0f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By CPU Hours (Core Count)" +whimb,62.4269 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..bc5c3e0d3d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (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,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 +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,0,12.0000,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,0,12.0000,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,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,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,24.0000,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,12.0000,0,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,1.0000,0,0 +2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,72.0000,0,0,0,0,0,0,0,0,0,0,26.0962,32.0000,0,0,0,0,0,16.0000,0,16.0000,0,0,0,0,0,12.0000,16.0000,1.0000,12.0000,0,12.0000,0,8.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 +2016-12-28,0,186.6783,0,144.0000,0,0,0,96.0000,0,64.0000,0,65.7129,0,0,0,0,0,0,32.0000,0,0,0,29.7503,26.1953,22.7149,0,0,20.0000,0,16.0000,0,16.0000,0,0,12.0000,0,12.0000,12.0000,16.0000,1.0000,12.0000,0,12.0000,8.0000,8.0000,0,0,0,0,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,186.5631,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,0,62.4000,0,60.0000,60.0000,0,56.0000,0,32.0000,62.5102,40.0000,0,29.9515,29.0661,25.2228,0,0,20.0000,1.0000,16.0000,0,16.0000,0,0,12.0000,12.0000,12.0000,12.0000,13.7716,8.9965,12.0000,5.0000,11.1580,8.0000,8.0000,8.0000,0,2.0000,4.0000,4.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,320.0517,186.5631,160.0000,125.4037,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,72.0000,49.8936,53.8643,60.0000,60.0000,65.8038,56.0000,45.1553,46.9959,35.2172,39.9998,41.1565,23.7785,21.6195,22.6717,0,20.0000,20.0000,1.2886,16.0000,16.0000,16.0000,13.1826,0,12.0000,12.0000,12.0000,12.0000,9.9283,10.1263,2.3934,5.0000,8.1287,8.4439,8.0083,8.0000,8.0000,11.1559,4.0000,4.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,1.0000 +2016-12-31,336.0000,186.2295,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,61.2589,48.0000,64.0000,60.0000,60.0000,95.7214,0,59.2199,72.7559,64.0000,40.0000,24.3207,11.7947,16.5130,25.4705,23.4747,0,0,19.9996,16.0000,0,11.9114,16.0000,12.0000,12.0000,12.0000,0,12.1378,8.0000,10.8526,1.0000,11.1429,8.0000,9.8229,8.0000,8.0000,8.0000,2.0000,4.0000,4.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.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..bc5c3e0d3d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (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,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 +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,0,12.0000,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,0,12.0000,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,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,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,24.0000,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,12.0000,0,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,1.0000,0,0 +2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,72.0000,0,0,0,0,0,0,0,0,0,0,26.0962,32.0000,0,0,0,0,0,16.0000,0,16.0000,0,0,0,0,0,12.0000,16.0000,1.0000,12.0000,0,12.0000,0,8.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 +2016-12-28,0,186.6783,0,144.0000,0,0,0,96.0000,0,64.0000,0,65.7129,0,0,0,0,0,0,32.0000,0,0,0,29.7503,26.1953,22.7149,0,0,20.0000,0,16.0000,0,16.0000,0,0,12.0000,0,12.0000,12.0000,16.0000,1.0000,12.0000,0,12.0000,8.0000,8.0000,0,0,0,0,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,186.5631,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,0,62.4000,0,60.0000,60.0000,0,56.0000,0,32.0000,62.5102,40.0000,0,29.9515,29.0661,25.2228,0,0,20.0000,1.0000,16.0000,0,16.0000,0,0,12.0000,12.0000,12.0000,12.0000,13.7716,8.9965,12.0000,5.0000,11.1580,8.0000,8.0000,8.0000,0,2.0000,4.0000,4.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,320.0517,186.5631,160.0000,125.4037,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,72.0000,49.8936,53.8643,60.0000,60.0000,65.8038,56.0000,45.1553,46.9959,35.2172,39.9998,41.1565,23.7785,21.6195,22.6717,0,20.0000,20.0000,1.2886,16.0000,16.0000,16.0000,13.1826,0,12.0000,12.0000,12.0000,12.0000,9.9283,10.1263,2.3934,5.0000,8.1287,8.4439,8.0083,8.0000,8.0000,11.1559,4.0000,4.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,1.0000 +2016-12-31,336.0000,186.2295,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,61.2589,48.0000,64.0000,60.0000,60.0000,95.7214,0,59.2199,72.7559,64.0000,40.0000,24.3207,11.7947,16.5130,25.4705,23.4747,0,0,19.9996,16.0000,0,11.9114,16.0000,12.0000,12.0000,12.0000,0,12.1378,8.0000,10.8526,1.0000,11.1429,8.0000,9.8229,8.0000,8.0000,8.0000,2.0000,4.0000,4.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.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..4b70a50676 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-23,0,0,0,0,1.0000,0 +2016-12-24,0,0,0,0,1.0000,0 +2016-12-25,0,0,0,0,1.0000,0 +2016-12-26,0,0,0,0,1.0000,0 +2016-12-27,0,16.0000,0,16.0000,1.0000,0 +2016-12-28,0,16.0000,0,16.0000,1.0000,0 +2016-12-29,62.5102,16.0000,0,13.7716,1.0000,0 +2016-12-30,35.2172,16.0000,13.1826,9.9283,1.0000,1.0000 +2016-12-31,64.0000,16.0000,16.0000,8.0000,0,1.0000 +2017-01-01,0,16.0000,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..a86e846e66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-30,72.0000 +2016-12-31,61.2589 +2017-01-01,60.4143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..050affce86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +2017-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..050affce86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +2017-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..05293fe6ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,45.0823,16.0000,13.7425,11.7604,1.0000,1.0000 +2017-01,0,16.0000,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..3ef8580d79 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,63.6781 +2017-01,60.4143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..8f9ff489cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +"2017 Q1",0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..8f9ff489cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +"2017 Q1",0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..d99828ebef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",45.0823,16.0000,13.7425,11.7604,1.0000,1.0000 +"2017 Q1",0,16.0000,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..f329bd3b6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",63.6781 +"2017 Q1",60.4143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..ac97f4ef4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" +2016,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +2017,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..ac97f4ef4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" +2016,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 +2017,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..f4c550ae58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" +2016,45.0823,16.0000,13.7425,11.7604,1.0000,1.0000 +2017,0,16.0000,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..7795d838e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" +2016,63.6781 +2017,60.4143 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..de2ec579c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..de2ec579c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..a1fe2d5597 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-23,0,0,0.0000,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0000,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,0.0000,0,0,0.0000 +2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2017-01-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..05b0edb470 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-30,0.0000 +2016-12-31,0.0000 +2017-01-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..a272d18c1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..a272d18c1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..cc776ae42c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..239199a0d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000 +2017-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..1b33a2c520 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..1b33a2c520 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..32c87fe996 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..82a5add92d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000 +"2017 Q1",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..a56057e9be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..a56057e9be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..d1dfcdd995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0b69effc48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000 +2017,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..823de7b69e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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,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/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..823de7b69e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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,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/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..4444ebbb91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +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 +--------- +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,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/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..a7393163a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Node Hours: Per Job" +2016-12-30,56.92666667 +2016-12-31,21.75842593 +2017-01-01,22.44571429 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..7720478930 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..7720478930 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..9020b34ffc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Month,"[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,87.43875000,78.12005556,38.73828704,0.77236014,0.33320707,0.02434444 +2017-01,0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..ed635fa401 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Node Hours: Per Job" +2016-12,28.08361111 +2017-01,22.44571429 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..e7d07c26b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..e7d07c26b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..b26bac922f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Quarter,"[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 Q4",87.43875000,78.12005556,38.73828704,0.77236014,0.33320707,0.02434444 +"2017 Q1",0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..e5907b5c63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Node Hours: Per Job" +"2016 Q4",28.08361111 +"2017 Q1",22.44571429 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..0abea93490 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..0abea93490 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +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/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..357613a05e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Year,"[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,87.43875000,78.12005556,38.73828704,0.77236014,0.33320707,0.02434444 +2017,0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..9b1d545c80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Node Hours: Per Job" +2016,28.08361111 +2017,22.44571429 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv new file mode 100644 index 0000000000..38e1ea6094 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by System Username" +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)","[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/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv new file mode 100644 index 0000000000..38e1ea6094 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by System Username" +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)","[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/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..ecbad49d64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +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 +--------- +Day,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" +2016-12-23,0,0,0,0,1.0000,0 +2016-12-24,0,0,0,0,1.0000,0 +2016-12-25,0,0,0,0,1.0000,0 +2016-12-26,0,0,0,0,1.0000,0 +2016-12-27,16.0000,0,16.0000,0,1.0000,0 +2016-12-28,16.0000,0,16.0000,0,1.0000,0 +2016-12-29,16.0000,0,9.6000,8.6154,1.0000,0 +2016-12-30,16.0000,13.1429,9.3333,4.0842,1.0000,1.0000 +2016-12-31,16.0000,16.0000,8.0000,64.0000,0,1.0000 +2017-01-01,16.0000,0,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv new file mode 100644 index 0000000000..5780823734 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Per Job (Core Count)" +2016-12-30,72.0000 +2016-12-31,52.0000 +2017-01-01,46.2857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv new file mode 100644 index 0000000000..ec03887b9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +2017-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/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv new file mode 100644 index 0000000000..ec03887b9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +2017-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/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv new file mode 100644 index 0000000000..bcf41d87ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Month,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" +2016-12,16.0000,14.1818,9.3333,4.0842,1.0000,1.0000 +2017-01,16.0000,0,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv new file mode 100644 index 0000000000..38bfac8472 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Per Job (Core Count)" +2016-12,52.0000 +2017-01,46.2857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..2ced53796f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +"2017 Q1",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/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..2ced53796f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +"2017 Q1",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/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..c57747bfad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Quarter,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" +"2016 Q4",16.0000,14.1818,9.3333,4.0842,1.0000,1.0000 +"2017 Q1",16.0000,0,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..d27c24e331 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Per Job (Core Count)" +"2016 Q4",52.0000 +"2017 Q1",46.2857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv new file mode 100644 index 0000000000..4aeda684df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +2017,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/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv new file mode 100644 index 0000000000..4aeda684df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 +2017,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/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv new file mode 100644 index 0000000000..db683a43b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Year,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" +2016,16.0000,14.1818,9.3333,4.0842,1.0000,1.0000 +2017,16.0000,0,0,0,0,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv new file mode 100644 index 0000000000..a9eb52c3a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Per Job (Core Count)" +2016,52.0000 +2017,46.2857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..f44ee913e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +swath,229.08833216,0.3165144562337443 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +ybsbu,2.15912037,1.2980363906441121 +litst,0.09015152,0.047849695531533384 +savsp,0.01404915,0.002043989277526459 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..b95d537d38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +whimb,2.29753968,1.159786159539825 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..f44ee913e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +swath,229.08833216,0.3165144562337443 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +ybsbu,2.15912037,1.2980363906441121 +litst,0.09015152,0.047849695531533384 +savsp,0.01404915,0.002043989277526459 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..b95d537d38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +whimb,2.29753968,1.159786159539825 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..f44ee913e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +swath,229.08833216,0.3165144562337443 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +ybsbu,2.15912037,1.2980363906441121 +litst,0.09015152,0.047849695531533384 +savsp,0.01404915,0.002043989277526459 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..b95d537d38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +whimb,2.29753968,1.159786159539825 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..cd0ebeb4f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +shttr,233.46900253,27.708500592959215 +swath,229.08833216,0.3165144562337443 +meapi,81.66292824,7.183771270440662 +siski,56.48111111,13.862828445162263 +yebbu,52.74111111,37.29241880267786 +velsc,39.39500000,27.85548955209239 +sancr,35.06708719,1.6947647788562477 +yebwa,31.02180556,3.7428536858056267 +grath,26.77900440,0.3093136712992847 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +pereg,13.04694444,0.5705177028327323 +dunli,12.67979893,0.790292910753799 +boowa,8.19083333,2.9697909176657884 +duswa,6.67768519,0.98851049021015 +caspl,5.36508929,0.1678514684969954 +sposa,5.35740741,0.44586416880536145 +yebsa,5.08810185,2.312558796449961 +misth,4.41189394,0.6571458545780616 +legsh,3.92752472,0.08635320372070841 +whtpl,3.72481481,0.0007211928415468717 +whimb,2.29753968,1.159786159539825 +ybsbu,2.15912037,1.2980363906441121 +whtsp,2.15222222,0.6988290975119311 +honbu,2.05241888,0.0266461444300528 +smew1,1.98928571,0.9136179906052265 +crane,1.88463542,0.5086144929601321 +shag1,1.36358586,1.050607504263938 +evegr,0.98805556,0.13847507798236555 +grgsh,0.74185808,0.00745478946523104 +garwa,0.68931866,0.18792064181649992 +sarwa,0.68493210,0.20891751003386838 +henha,0.32390278,0.2312398274998169 +hoowa,0.30899471,0.06608296019883089 +vertera,0.29952899,0.12719098377944033 +moorh,0.20714974,0.015675479418422043 +allga,0.09777778,0 +litst,0.09015152,0.047849695531533384 +sogsh,0.08220238,0.011574714004551338 +corsh,0.07831597,0.019809027302287216 +reebu,0.06252201,0.016249488196930326 +lapwi,0.05740350,0.004593062258338075 +noror,0.04120370,0.015935275751000608 +rolle,0.04034722,0.034861577990454876 +ferdu,0.03111111,0 +turdo,0.02859810,0.009599314670761935 +litau,0.01747222,0.00747562396751627 +blhbu,0.01408333,0.0026920235401535287 +savsp,0.01404915,0.002043989277526459 +pibgr,0.01099444,0.004697248275110087 +ribgu,0.00750000,0 +lanhach,0.00178819,0.001340063838980952 +crama,0.00105159,0.00005735857833479565 +egygo,0.00059028,0.000142636082683637 +field,0.00055556,0.00022680460581325724 +gloib,0.00027778,0 +aytinis,0.00018519,0.000043648566827207465 +alpsw,0.00015625,0.00004891244648257224 +coot1,0.00015046,0.000032651062689513116 +lesre,0.00013889,0.00009820927516479828 +categ,0.00012731,0.00002825196474708646 +proubis,0.00010802,0.00002506891552546276 +chaff,0.00000000,0 +jackd,0.00000000,0 +mamwa,0.00000000,0 +relpa,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..f44ee913e7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +swath,229.08833216,0.3165144562337443 +ovenb,18.86933333,16.876685792814378 +sante,14.27555556,3.3086704803020535 +ybsbu,2.15912037,1.2980363906441121 +litst,0.09015152,0.047849695531533384 +savsp,0.01404915,0.002043989277526459 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..b95d537d38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +whimb,2.29753968,1.159786159539825 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..7e6b948acc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait 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,0,0.00027778,0,0,9.33222222,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,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,55.41111111,0,0.00000000,0,0,0.06333333,0,0,0,0,0,0,0,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.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,273.48105556,0,103.71148148,76.08611111,0,78.78861111,46.99166667,0,0,0.00062500,0.00000000,0,0,50.82250000,0,0,0,0,0,0,0,0,0.00027778,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00288889,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0 +2016-12-28,280.72700000,0,108.01750000,36.87611111,0,0.00000000,80.35419753,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0.00000000,0,0,6.82972222,0,0,1.68000000,2.73787037,0,0.46633333,0,0.02977924,0,0,0,0,20.57444444,0.07195578,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00027778,0.00018519,0,0,0,0,0,0.00000000,0,0.00000000,0 +2016-12-29,313.25736111,206.22965812,47.74488095,0.00000000,0.00166667,0.00000000,22.19675214,25.72861111,0.00444444,0.00000000,18.95472222,11.68527778,0,0.00000000,0,0,0.95844444,0.00019841,0.00000000,0,0.00000000,0,1.21402778,0,7.95825941,1.98928571,3.47907407,0.00111111,0.79222222,0,4.46097222,0.29993056,0.01788889,0.07572222,0,0.04237662,0,0,0,0.17638889,3.66268519,0.04464331,0.00000000,0,0.03111111,0.01715686,0.00000000,0,0,0.01099444,0,0.02250000,0,0.00062500,0,0.00000000,0.00000000,0,0,0.00027778,0,0,0.00000000,0,0.00000000,0 +2016-12-30,55.29648148,229.51285040,0.00000000,0.00000000,105.48055556,0.00138889,32.41850397,0.00000000,18.02518519,0.00000000,0.00000000,13.72777778,13.00438580,5.14571429,6.67768519,0,6.23720000,1.80364583,0.38944444,2.58369031,0.00000000,17.26194444,8.09833333,0,1.39451717,0.00000000,1.47605556,0.22282407,1.18388889,0.84512711,0.00000000,0.55871032,0.42590741,0.41231481,0.59636111,0.32754774,0.09777778,0.00369048,0.17850082,0.02000000,0.02257879,0.13344771,0.00000000,0.05370370,0.00000000,0.01009512,0.00000000,0.01437500,0.01586806,0.00000000,0.00750000,0.00092593,0.00105159,0.00055556,0.00083333,0.00000000,0.00000000,0.00020833,0.00010417,0.00000000,0.00006944,0.00011574,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,351.74604167,0.00000000,0.00000000,0.00000000,0.00000000,0,33.49272778,0,27.32576747,94.34416667,0,0.00000000,3.35838889,0.00000000,0.00000000,0.02019097,0.00000000,25.71842593,0.00000000,7.36601918,0,0.95052083,0.00000000,2.15222222,2.89868538,0.00000000,0.07819444,0.00097222,0,0.55391509,0.00626263,1.74513889,0.00000000,0.26094444,0.33598291,0.35169374,0,0.24145833,0.02144676,0.00000000,0.03538140,0.01543544,0.00027778,0.00000000,0.00000000,0.04029733,0.02496032,0.01388889,0.01362745,0,0.00000000,0.00074074,0,0.00000000,0.00083333,0,0.00000000,0.00013889,0.00013889,0.00000000,0.00010417,0.00009259,0.00000000,0.00000000,0,0 +2017-01-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..7e6b948acc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait 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,0,0.00027778,0,0,9.33222222,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,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,55.41111111,0,0.00000000,0,0,0.06333333,0,0,0,0,0,0,0,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.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,273.48105556,0,103.71148148,76.08611111,0,78.78861111,46.99166667,0,0,0.00062500,0.00000000,0,0,50.82250000,0,0,0,0,0,0,0,0,0.00027778,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00288889,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0 +2016-12-28,280.72700000,0,108.01750000,36.87611111,0,0.00000000,80.35419753,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0.00000000,0,0,6.82972222,0,0,1.68000000,2.73787037,0,0.46633333,0,0.02977924,0,0,0,0,20.57444444,0.07195578,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00027778,0.00018519,0,0,0,0,0,0.00000000,0,0.00000000,0 +2016-12-29,313.25736111,206.22965812,47.74488095,0.00000000,0.00166667,0.00000000,22.19675214,25.72861111,0.00444444,0.00000000,18.95472222,11.68527778,0,0.00000000,0,0,0.95844444,0.00019841,0.00000000,0,0.00000000,0,1.21402778,0,7.95825941,1.98928571,3.47907407,0.00111111,0.79222222,0,4.46097222,0.29993056,0.01788889,0.07572222,0,0.04237662,0,0,0,0.17638889,3.66268519,0.04464331,0.00000000,0,0.03111111,0.01715686,0.00000000,0,0,0.01099444,0,0.02250000,0,0.00062500,0,0.00000000,0.00000000,0,0,0.00027778,0,0,0.00000000,0,0.00000000,0 +2016-12-30,55.29648148,229.51285040,0.00000000,0.00000000,105.48055556,0.00138889,32.41850397,0.00000000,18.02518519,0.00000000,0.00000000,13.72777778,13.00438580,5.14571429,6.67768519,0,6.23720000,1.80364583,0.38944444,2.58369031,0.00000000,17.26194444,8.09833333,0,1.39451717,0.00000000,1.47605556,0.22282407,1.18388889,0.84512711,0.00000000,0.55871032,0.42590741,0.41231481,0.59636111,0.32754774,0.09777778,0.00369048,0.17850082,0.02000000,0.02257879,0.13344771,0.00000000,0.05370370,0.00000000,0.01009512,0.00000000,0.01437500,0.01586806,0.00000000,0.00750000,0.00092593,0.00105159,0.00055556,0.00083333,0.00000000,0.00000000,0.00020833,0.00010417,0.00000000,0.00006944,0.00011574,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,351.74604167,0.00000000,0.00000000,0.00000000,0.00000000,0,33.49272778,0,27.32576747,94.34416667,0,0.00000000,3.35838889,0.00000000,0.00000000,0.02019097,0.00000000,25.71842593,0.00000000,7.36601918,0,0.95052083,0.00000000,2.15222222,2.89868538,0.00000000,0.07819444,0.00097222,0,0.55391509,0.00626263,1.74513889,0.00000000,0.26094444,0.33598291,0.35169374,0,0.24145833,0.02144676,0.00000000,0.03538140,0.01543544,0.00027778,0.00000000,0.00000000,0.04029733,0.02496032,0.01388889,0.01362745,0,0.00000000,0.00074074,0,0.00000000,0.00083333,0,0.00000000,0.00013889,0.00013889,0.00000000,0.00010417,0.00009259,0.00000000,0.00000000,0,0 +2017-01-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..6d09ba87a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" +2016-12-23,0,0,9.59638889,0,0,0 +2016-12-24,0,0,0.00000000,0,0,0 +2016-12-25,0,0,0.00000000,0,0,0 +2016-12-26,0,0,0.00000000,0,0,0 +2016-12-27,0,0.00062500,0.00000000,0.00027778,0,0 +2016-12-28,0,0.00000000,0.00000000,0.00000000,0,0 +2016-12-29,206.22965812,0.00000000,18.95472222,1.21402778,0,0 +2016-12-30,229.51285040,0.00000000,0.00000000,8.09833333,0.00369048,0.01586806 +2016-12-31,0.00000000,94.34416667,0,0.00000000,0.24145833,0.01362745 +2017-01-01,0,0.00000000,0,0,0,0.00666667 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..727a7a99d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Wait Hours: Per Job" +2016-12-30,17.26194444 +2016-12-31,0.95052083 +2017-01-01,1.45988889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..16e56b2f1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" +2016-12,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..16e56b2f1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" +2016-12,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..d99097eb31 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" +2016-12,229.08833216,18.86933333,14.27555556,2.15912037,0.09015152,0.01434444 +2017-01,0,0.00000000,0,0,0,0.00666667 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..7ffd7f4121 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Wait Hours: Per Job" +2016-12,2.76290123 +2017-01,1.45988889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..e0fe6293a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" +"2016 Q4",233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..e0fe6293a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" +"2016 Q4",233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..243348741c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" +"2016 Q4",229.08833216,18.86933333,14.27555556,2.15912037,0.09015152,0.01434444 +"2017 Q1",0,0.00000000,0,0,0,0.00666667 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..3d1481c670 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Wait Hours: Per Job" +"2016 Q4",2.76290123 +"2017 Q1",1.45988889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..1a15be6276 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" +2016,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..1a15be6276 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" +2016,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..1a09980a08 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" +2016,229.08833216,18.86933333,14.27555556,2.15912037,0.09015152,0.01434444 +2017,0,0.00000000,0,0,0,0.00666667 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..cb4ee08056 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Wait Hours: Per Job" +2016,2.76290123 +2017,1.45988889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..6c7aea0f7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000, +ovenb,82.76488889, +mamwa,72.00694444, +aytinis,72.00432099, +siski,70.03500000, +ferdu,70.00777778, +meapi,63.57475694, +garwa,52.33125262, +lapwi,49.85089556, +yebsa,49.75942901, +gloib,48.00666667, +shttr,46.66083333, +whtpl,44.13648148, +misth,39.37916667, +ybsbu,38.73828704, +velsc,37.18166667, +smew1,36.49007937, +ribgu,31.90972222, +corsh,27.37690972, +whtsp,25.49490741, +moorh,25.48654262, +yebbu,25.17486111, +pereg,24.84777778, +jackd,21.84694444, +hoowa,21.83599206, +shag1,20.71641414, +lesre,18.89791667, +sposa,16.91415278, +boowa,16.76537037, +egygo,15.78250000, +duswa,15.43750000,2.949516142225878 +field,14.37398148, +crane,12.67826389, +evegr,10.08083333,5.736664622204642 +pibgr,10.00406111, +sarwa,9.41403086,1.0834302290958004 +noror,9.12110185,1.9524242496702076 +legsh,8.59051583, +grath,7.94699670,0.252707620848999 +sancr,7.43894097,0.6293211331105432 +litau,7.02769444,1.7557857088278381 +whimb,6.17696429,0.650411636248519 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.412736659063767 +rolle,4.58416667,1.0571325984155044 +yebwa,4.51402778,1.3866381241776238 +lanhach,3.89088542,1.5421931694132969 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.041637228742746606 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.026000891408928004 +honbu,0.28378820,0.002129439336752145 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..6c7aea0f7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000, +ovenb,82.76488889, +mamwa,72.00694444, +aytinis,72.00432099, +siski,70.03500000, +ferdu,70.00777778, +meapi,63.57475694, +garwa,52.33125262, +lapwi,49.85089556, +yebsa,49.75942901, +gloib,48.00666667, +shttr,46.66083333, +whtpl,44.13648148, +misth,39.37916667, +ybsbu,38.73828704, +velsc,37.18166667, +smew1,36.49007937, +ribgu,31.90972222, +corsh,27.37690972, +whtsp,25.49490741, +moorh,25.48654262, +yebbu,25.17486111, +pereg,24.84777778, +jackd,21.84694444, +hoowa,21.83599206, +shag1,20.71641414, +lesre,18.89791667, +sposa,16.91415278, +boowa,16.76537037, +egygo,15.78250000, +duswa,15.43750000,2.949516142225878 +field,14.37398148, +crane,12.67826389, +evegr,10.08083333,5.736664622204642 +pibgr,10.00406111, +sarwa,9.41403086,1.0834302290958004 +noror,9.12110185,1.9524242496702076 +legsh,8.59051583, +grath,7.94699670,0.252707620848999 +sancr,7.43894097,0.6293211331105432 +litau,7.02769444,1.7557857088278381 +whimb,6.17696429,0.650411636248519 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.412736659063767 +rolle,4.58416667,1.0571325984155044 +yebwa,4.51402778,1.3866381241776238 +lanhach,3.89088542,1.5421931694132969 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.041637228742746606 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.026000891408928004 +honbu,0.28378820,0.002129439336752145 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..49a3ec96d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +sante,87.43875000, +ovenb,82.76488889, +ybsbu,38.73828704, +swath,0.56853008,0.041637228742746606 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..dcb1acdcf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +whimb,6.17696429,0.650411636248519 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..899cdbae38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +aytinis,72.00432099,0.0007574156507426745 +siski,70.03500000,0.00019641855032959655 +ferdu,70.00777778, +meapi,63.57475694,3.13824008219319 +garwa,52.33125262, +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66083333,5.055266467272984 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +velsc,37.18166667,24.625975747573168 +smew1,36.49007937,2.407916402194818 +ribgu,31.90972222,0 +corsh,27.37690972,4.572758943516918 +whtsp,25.49490741, +moorh,25.48654262,0.09521527865289223 +yebbu,25.17486111,17.80092216999551 +pereg,24.84777778,1.3792526019750193 +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 +egygo,15.78250000,1.4182317241819407 +duswa,15.43750000,9.334819660458281 +field,14.37398148, +crane,12.67826389,0.43082354975761517 +evegr,10.08083333,7.102298361367882 +pibgr,10.00406111,0.00040214624761869517 +sarwa,9.41403086,1.7878256710905893 +noror,9.12110185,7.611190913212397 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +sancr,7.43894097,1.2737613363617315 +litau,7.02769444,2.431694700689441 +whimb,6.17696429,0.6904442871805476 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +rolle,4.58416667,1.606624250847252 +yebwa,4.51402778,3.1765790052054 +lanhach,3.89088542,2.2654968346862243 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..899cdbae38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +aytinis,72.00432099,0.0007574156507426745 +siski,70.03500000,0.00019641855032959655 +ferdu,70.00777778, +meapi,63.57475694,3.13824008219319 +garwa,52.33125262, +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66083333,5.055266467272984 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +velsc,37.18166667,24.625975747573168 +smew1,36.49007937,2.407916402194818 +ribgu,31.90972222,0 +corsh,27.37690972,4.572758943516918 +whtsp,25.49490741, +moorh,25.48654262,0.09521527865289223 +yebbu,25.17486111,17.80092216999551 +pereg,24.84777778,1.3792526019750193 +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 +egygo,15.78250000,1.4182317241819407 +duswa,15.43750000,9.334819660458281 +field,14.37398148, +crane,12.67826389,0.43082354975761517 +evegr,10.08083333,7.102298361367882 +pibgr,10.00406111,0.00040214624761869517 +sarwa,9.41403086,1.7878256710905893 +noror,9.12110185,7.611190913212397 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +sancr,7.43894097,1.2737613363617315 +litau,7.02769444,2.431694700689441 +whimb,6.17696429,0.6904442871805476 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +rolle,4.58416667,1.606624250847252 +yebwa,4.51402778,3.1765790052054 +lanhach,3.89088542,2.2654968346862243 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..40a9e3f6ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +ybsbu,38.73828704,7.964502386031587 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..9588fac82a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +whimb,6.17696429,0.6904442871805476 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..899cdbae38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +aytinis,72.00432099,0.0007574156507426745 +siski,70.03500000,0.00019641855032959655 +ferdu,70.00777778, +meapi,63.57475694,3.13824008219319 +garwa,52.33125262, +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66083333,5.055266467272984 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +velsc,37.18166667,24.625975747573168 +smew1,36.49007937,2.407916402194818 +ribgu,31.90972222,0 +corsh,27.37690972,4.572758943516918 +whtsp,25.49490741, +moorh,25.48654262,0.09521527865289223 +yebbu,25.17486111,17.80092216999551 +pereg,24.84777778,1.3792526019750193 +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 +egygo,15.78250000,1.4182317241819407 +duswa,15.43750000,9.334819660458281 +field,14.37398148, +crane,12.67826389,0.43082354975761517 +evegr,10.08083333,7.102298361367882 +pibgr,10.00406111,0.00040214624761869517 +sarwa,9.41403086,1.7878256710905893 +noror,9.12110185,7.611190913212397 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +sancr,7.43894097,1.2737613363617315 +litau,7.02769444,2.431694700689441 +whimb,6.17696429,0.6904442871805476 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +rolle,4.58416667,1.606624250847252 +yebwa,4.51402778,3.1765790052054 +lanhach,3.89088542,2.2654968346862243 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..899cdbae38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +aytinis,72.00432099,0.0007574156507426745 +siski,70.03500000,0.00019641855032959655 +ferdu,70.00777778, +meapi,63.57475694,3.13824008219319 +garwa,52.33125262, +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66083333,5.055266467272984 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +velsc,37.18166667,24.625975747573168 +smew1,36.49007937,2.407916402194818 +ribgu,31.90972222,0 +corsh,27.37690972,4.572758943516918 +whtsp,25.49490741, +moorh,25.48654262,0.09521527865289223 +yebbu,25.17486111,17.80092216999551 +pereg,24.84777778,1.3792526019750193 +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 +egygo,15.78250000,1.4182317241819407 +duswa,15.43750000,9.334819660458281 +field,14.37398148, +crane,12.67826389,0.43082354975761517 +evegr,10.08083333,7.102298361367882 +pibgr,10.00406111,0.00040214624761869517 +sarwa,9.41403086,1.7878256710905893 +noror,9.12110185,7.611190913212397 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +sancr,7.43894097,1.2737613363617315 +litau,7.02769444,2.431694700689441 +whimb,6.17696429,0.6904442871805476 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +rolle,4.58416667,1.606624250847252 +yebwa,4.51402778,3.1765790052054 +lanhach,3.89088542,2.2654968346862243 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..40a9e3f6ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +ybsbu,38.73828704,7.964502386031587 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..9588fac82a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +whimb,6.17696429,0.6904442871805476 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..899cdbae38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +aytinis,72.00432099,0.0007574156507426745 +siski,70.03500000,0.00019641855032959655 +ferdu,70.00777778, +meapi,63.57475694,3.13824008219319 +garwa,52.33125262, +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66083333,5.055266467272984 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +velsc,37.18166667,24.625975747573168 +smew1,36.49007937,2.407916402194818 +ribgu,31.90972222,0 +corsh,27.37690972,4.572758943516918 +whtsp,25.49490741, +moorh,25.48654262,0.09521527865289223 +yebbu,25.17486111,17.80092216999551 +pereg,24.84777778,1.3792526019750193 +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 +egygo,15.78250000,1.4182317241819407 +duswa,15.43750000,9.334819660458281 +field,14.37398148, +crane,12.67826389,0.43082354975761517 +evegr,10.08083333,7.102298361367882 +pibgr,10.00406111,0.00040214624761869517 +sarwa,9.41403086,1.7878256710905893 +noror,9.12110185,7.611190913212397 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +sancr,7.43894097,1.2737613363617315 +litau,7.02769444,2.431694700689441 +whimb,6.17696429,0.6904442871805476 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +rolle,4.58416667,1.606624250847252 +yebwa,4.51402778,3.1765790052054 +lanhach,3.89088542,2.2654968346862243 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..899cdbae38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +chaff,120.00722222, +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +aytinis,72.00432099,0.0007574156507426745 +siski,70.03500000,0.00019641855032959655 +ferdu,70.00777778, +meapi,63.57475694,3.13824008219319 +garwa,52.33125262, +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66083333,5.055266467272984 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +velsc,37.18166667,24.625975747573168 +smew1,36.49007937,2.407916402194818 +ribgu,31.90972222,0 +corsh,27.37690972,4.572758943516918 +whtsp,25.49490741, +moorh,25.48654262,0.09521527865289223 +yebbu,25.17486111,17.80092216999551 +pereg,24.84777778,1.3792526019750193 +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 +egygo,15.78250000,1.4182317241819407 +duswa,15.43750000,9.334819660458281 +field,14.37398148, +crane,12.67826389,0.43082354975761517 +evegr,10.08083333,7.102298361367882 +pibgr,10.00406111,0.00040214624761869517 +sarwa,9.41403086,1.7878256710905893 +noror,9.12110185,7.611190913212397 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +sancr,7.43894097,1.2737613363617315 +litau,7.02769444,2.431694700689441 +whimb,6.17696429,0.6904442871805476 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +rolle,4.58416667,1.606624250847252 +yebwa,4.51402778,3.1765790052054 +lanhach,3.89088542,2.2654968346862243 +caspl,2.10733760,0.04730850999433886 +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 +vertera,0.81574879,0.33900408606509713 +alpsw,0.66013889,0.2379191991153246 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +allga,0.26055556,0 +dunli,0.18926081,0.027954377835160745 +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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..40a9e3f6ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +ybsbu,38.73828704,7.964502386031587 +swath,0.56853008,0.0672666690107468 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..9588fac82a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +whimb,6.17696429,0.6904442871805476 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..19da0101d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall 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,16.74638889,0,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,0,0,0 +2016-12-23,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,0,0,0,0,0,0,0,0,24.00000000,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 +2016-12-24,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,0,0,0,0,0,0,0,0,24.00000000,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 +2016-12-25,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,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0,0,0 +2016-12-26,0,24.00000000,0,0,0,0,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,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0 +2016-12-27,3.79972222,24.00000000,4.93666667,4.72138889,0,20.66416667,0,12.98407407,24.00000000,0,0,0,13.96533333,0,0,8.54972222,20.81333333,0,0,0,0,0,0,0,0,0,0,0,0,19.90555556,0,0,0,0,0,0,0,24.00000000,0,0,20.33888889,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0,0,0 +2016-12-28,24.00000000,24.00000000,24.00000000,24.00000000,17.86320988,18.38902778,0,15.23050000,9.02631944,13.35268330,0,4.70055556,17.63833333,5.03972222,3.11533951,24.00000000,24.00000000,0,0,0,0,5.01598392,0,0,0,8.78983333,10.70500000,0,0,24.00000000,0,0,0,0,0,0,8.32944444,24.00000000,0,0,13.20166667,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0,0,0 +2016-12-29,24.00000000,19.56861111,24.00000000,24.00000000,24.00000000,24.00000000,3.00194444,23.45363636,23.88776389,16.60273286,19.85234127,24.00000000,20.53074074,24.00000000,24.00000000,8.50644444,24.00000000,11.55011905,0,4.96462963,0,13.10756221,18.97472222,23.43805556,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,3.66944444,0,0,6.36972222,1.92694444,4.66003889,16.72988095,24.00000000,0,3.62000000,13.84817130,10.40083333,0,0,2.01966667,0,6.48888889,22.24222222,0,3.53675439,0,0,0,0,0,0,0.76098291,0,14.25164444,0.65402610,0,0,0,0,0,0 +2016-12-30,24.00000000,3.56833333,24.00000000,19.28555556,24.00000000,12.68527778,24.00000000,22.20438131,18.92284722,21.71949405,19.44072222,19.30611111,12.82591049,15.09675926,14.55335859,18.07555556,2.77500000,21.78416667,17.79750000,17.98229167,0,13.31263065,12.00027778,8.15601852,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,10.28048611,9.78120370,8.00444444,7.97656250,9.11736111,5.34402222,3.83073016,24.00000000,4.25015531,16.84687500,4.13567080,13.60638889,9.48777778,3.48631944,4.10559722,1.45518519,2.51750000,3.96541667,0,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.48461111,0.13409722,0.53023103,0.43603175,0.13315301,0.32887293,0.26055556,0.14245370,0.08049603,0.06500000,0.02760417,0.02405133 +2016-12-31,24.00000000,0,16.57072222,0,6.14111111,9.25722222,24.00000000,12.06362573,23.17923611,10.83064379,19.04313725,0,14.97629630,0,24.00000000,16.29814815,0,22.09055556,14.11222222,24.00000000,16.61129630,12.53390738,7.37444444,24.00000000,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,7.33458333,16.96888889,19.78805556,10.17785714,0,0,14.33632716,4.84750000,5.54019436,7.28581633,1.97834003,6.47384921,4.70839506,7.65398148,8.63138889,4.84500000,0,1.29611111,0.19661458,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,1.49565171,2.06152778,17.41444444,0.15326389,0.13894731,0.36784723,0,0.14844444,0,0,0.02281046,0.01479010 +2017-01-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..19da0101d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall 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,16.74638889,0,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,0,0,0 +2016-12-23,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,0,0,0,0,0,0,0,0,24.00000000,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 +2016-12-24,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,0,0,0,0,0,0,0,0,24.00000000,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 +2016-12-25,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,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0,0,0 +2016-12-26,0,24.00000000,0,0,0,0,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,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0 +2016-12-27,3.79972222,24.00000000,4.93666667,4.72138889,0,20.66416667,0,12.98407407,24.00000000,0,0,0,13.96533333,0,0,8.54972222,20.81333333,0,0,0,0,0,0,0,0,0,0,0,0,19.90555556,0,0,0,0,0,0,0,24.00000000,0,0,20.33888889,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0,0,0 +2016-12-28,24.00000000,24.00000000,24.00000000,24.00000000,17.86320988,18.38902778,0,15.23050000,9.02631944,13.35268330,0,4.70055556,17.63833333,5.03972222,3.11533951,24.00000000,24.00000000,0,0,0,0,5.01598392,0,0,0,8.78983333,10.70500000,0,0,24.00000000,0,0,0,0,0,0,8.32944444,24.00000000,0,0,13.20166667,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0,0,0 +2016-12-29,24.00000000,19.56861111,24.00000000,24.00000000,24.00000000,24.00000000,3.00194444,23.45363636,23.88776389,16.60273286,19.85234127,24.00000000,20.53074074,24.00000000,24.00000000,8.50644444,24.00000000,11.55011905,0,4.96462963,0,13.10756221,18.97472222,23.43805556,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,3.66944444,0,0,6.36972222,1.92694444,4.66003889,16.72988095,24.00000000,0,3.62000000,13.84817130,10.40083333,0,0,2.01966667,0,6.48888889,22.24222222,0,3.53675439,0,0,0,0,0,0,0.76098291,0,14.25164444,0.65402610,0,0,0,0,0,0 +2016-12-30,24.00000000,3.56833333,24.00000000,19.28555556,24.00000000,12.68527778,24.00000000,22.20438131,18.92284722,21.71949405,19.44072222,19.30611111,12.82591049,15.09675926,14.55335859,18.07555556,2.77500000,21.78416667,17.79750000,17.98229167,0,13.31263065,12.00027778,8.15601852,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,10.28048611,9.78120370,8.00444444,7.97656250,9.11736111,5.34402222,3.83073016,24.00000000,4.25015531,16.84687500,4.13567080,13.60638889,9.48777778,3.48631944,4.10559722,1.45518519,2.51750000,3.96541667,0,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.48461111,0.13409722,0.53023103,0.43603175,0.13315301,0.32887293,0.26055556,0.14245370,0.08049603,0.06500000,0.02760417,0.02405133 +2016-12-31,24.00000000,0,16.57072222,0,6.14111111,9.25722222,24.00000000,12.06362573,23.17923611,10.83064379,19.04313725,0,14.97629630,0,24.00000000,16.29814815,0,22.09055556,14.11222222,24.00000000,16.61129630,12.53390738,7.37444444,24.00000000,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,7.33458333,16.96888889,19.78805556,10.17785714,0,0,14.33632716,4.84750000,5.54019436,7.28581633,1.97834003,6.47384921,4.70839506,7.65398148,8.63138889,4.84500000,0,1.29611111,0.19661458,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,1.49565171,2.06152778,17.41444444,0.15326389,0.13894731,0.36784723,0,0.14844444,0,0,0.02281046,0.01479010 +2017-01-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..9ead1fa0fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall 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,19.56861111,24.00000000,8.50644444,0.76098291,0,0 +2016-12-30,3.56833333,24.00000000,18.07555556,0.53023103,0.43603175,0.02760417 +2016-12-31,0,16.57072222,16.29814815,17.41444444,0.15326389,0.02281046 +2017-01-01,0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..105bd79350 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Wall Hours: Per Job" +2016-12-30,9.48777778 +2016-12-31,4.70839506 +2017-01-01,4.94488095 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..3de3637031 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" +2016-12,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +2017-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..3de3637031 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" +2016-12,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +2017-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..db61ce0317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall Hours: Per Job" +2016-12,87.43875000,78.12005556,38.73828704,0.56853008,0.33320707,0.02434444 +2017-01,0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..eae2d23ddc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Wall Hours: Per Job" +2016-12,5.76259259 +2017-01,4.94488095 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..7ec8892b94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" +"2016 Q4",99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +"2017 Q1",20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..7ec8892b94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" +"2016 Q4",99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +"2017 Q1",20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..6e3fb96592 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall Hours: Per Job" +"2016 Q4",87.43875000,78.12005556,38.73828704,0.56853008,0.33320707,0.02434444 +"2017 Q1",0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..5eee5c1bb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Wall Hours: Per Job" +"2016 Q4",5.76259259 +"2017 Q1",4.94488095 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..16fa86967c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" +2016,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +2017,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..16fa86967c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" +2016,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 +2017,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..466fef289f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall Hours: Per Job" +2016,87.43875000,78.12005556,38.73828704,0.56853008,0.33320707,0.02434444 +2017,0,23.22416667,0,0,0,0.02555556 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..797c19bfd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Wall Hours: Per Job" +2016,5.76259259 +2017,4.94488095 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv new file mode 100644 index 0000000000..fec6b21de5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +savsp,1.5760 +litst,1.2706 +ovenb,1.2280 +sante,1.1633 +ybsbu,1.0557 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv new file mode 100644 index 0000000000..87ad5ad66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +whimb,1.3852 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv new file mode 100644 index 0000000000..fec6b21de5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +savsp,1.5760 +litst,1.2706 +ovenb,1.2280 +sante,1.1633 +ybsbu,1.0557 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv new file mode 100644 index 0000000000..87ad5ad66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +whimb,1.3852 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..fec6b21de5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +savsp,1.5760 +litst,1.2706 +ovenb,1.2280 +sante,1.1633 +ybsbu,1.0557 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..87ad5ad66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +whimb,1.3852 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv new file mode 100644 index 0000000000..9c7c55bd54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +dunli,69.2703 +grgsh,36.7227 +honbu,8.0226 +yebwa,7.8723 +shttr,6.0105 +sancr,4.9154 +grath,4.3697 +caspl,3.5459 +meapi,2.2845 +velsc,2.0824 +yebbu,2.0475 +siski,1.8065 +savsp,1.5760 +pereg,1.5251 +boowa,1.4886 +legsh,1.4572 +vertera,1.4161 +whimb,1.3852 +allga,1.3753 +duswa,1.3348 +sposa,1.3167 +litst,1.2706 +ovenb,1.2280 +reebu,1.2101 +sante,1.1633 +crane,1.1487 +misth,1.1120 +yebsa,1.1023 +evegr,1.0980 +sogsh,1.0932 +sarwa,1.0922 +whtpl,1.0844 +whtsp,1.0844 +shag1,1.0658 +henha,1.0642 +ybsbu,1.0557 +smew1,1.0545 +turdo,1.0197 +rolle,1.0148 +hoowa,1.0142 +garwa,1.0132 +crama,1.0131 +moorh,1.0081 +noror,1.0045 +corsh,1.0029 +litau,1.0025 +blhbu,1.0024 +lapwi,1.0012 +pibgr,1.0011 +lanhach,1.0005 +ferdu,1.0004 +alpsw,1.0002 +coot1,1.0002 +ribgu,1.0002 +categ,1.0001 +proubis,1.0001 +aytinis,1.0000 +chaff,1.0000 +egygo,1.0000 +field,1.0000 +gloib,1.0000 +jackd,1.0000 +lesre,1.0000 +mamwa,1.0000 +relpa,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv new file mode 100644 index 0000000000..fec6b21de5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +swath,297.8504 +savsp,1.5760 +litst,1.2706 +ovenb,1.2280 +sante,1.1633 +ybsbu,1.0557 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv new file mode 100644 index 0000000000..87ad5ad66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","User Expansion Factor" +whimb,1.3852 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv new file mode 100644 index 0000000000..68b2d5aa53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +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,1.0495,0,0,0,0,0,1.0000,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.6127,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0454,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,0,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,0,0,0,0,1.5220,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,1.0000,0,4.9152,1.6524,0,0,2.5533,2.0942,0,2.0864,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.3723,1.0610,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0 +2016-12-28,0,0,0,1.0000,0,4.8768,2.1450,0,0,2.5716,2.0942,0,1.8919,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.0942,1.0610,0,1.1095,0,0,0,1.0771,1.0866,0,1.1209,0,1.0000,0,1.0250,0,1.0107,1.0025,0,1.0010,1.0000,0,0,0,1.0013,0,0,0,0,0,0,0,0,1.0000,1.0000,0,0,1.0000,0,0,1.0000,0 +2016-12-29,42.4492,0,0,6.0683,3.8567,4.9177,3.0158,1.0001,0,2.3143,2.0942,1.0000,1.8065,0,1.3890,1.7260,0,0,0,0,0,1.0513,0,1.0000,1.1847,1.4529,1.2430,1.1207,1.0000,1.0394,0,1.0561,1.0866,0,1.0778,1.0011,1.0057,1.0379,1.0201,0,1.0101,1.0228,0,1.0011,1.0000,1.0071,1.0000,0,1.0011,1.0011,1.0006,1.0004,0,0,0,0,0,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0 +2016-12-30,361.2347,82.2879,36.1385,5.3347,3.8567,5.2630,5.9186,1.8025,0,2.2784,1.8784,3.1975,1.5568,1.5748,1.7197,1.4078,1.1806,2.1933,2.7189,1.3753,1.4992,1.4642,1.0085,1.0000,1.2290,1.4170,1.1539,1.1173,1.0160,1.1042,1.1123,1.0488,1.0801,0,1.0671,1.0787,1.0778,1.0500,1.0094,1.0094,1.0112,1.0292,1.0131,1.0022,1.0000,1.0032,1.0000,1.0041,1.0011,1.0011,1.0008,1.0004,1.0014,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.9179,30.3841,38.4517,8.5117,0,7.3737,13.7412,4.7123,1.0162,1.9224,0,1.0000,1.5265,1.5974,1.4660,1.2386,1.6099,1.2202,1.1623,0,1.1213,1.1316,2.5754,1.2516,1.2538,0,1.0513,1.0205,1.2604,0,1.0199,1.1407,0,1.0760,1.0379,1.0006,1.0874,1.1462,1.0368,1.0172,1.0269,1.0100,0,1.0187,1.0002,1.0017,1.0039,1.0018,1.0012,0,1.0006,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000,0,0 +2017-01-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv new file mode 100644 index 0000000000..68b2d5aa53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +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,1.0495,0,0,0,0,0,1.0000,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.6127,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0454,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,0,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,0,0,0,0,1.5220,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,1.0000,0,4.9152,1.6524,0,0,2.5533,2.0942,0,2.0864,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.3723,1.0610,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0 +2016-12-28,0,0,0,1.0000,0,4.8768,2.1450,0,0,2.5716,2.0942,0,1.8919,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.0942,1.0610,0,1.1095,0,0,0,1.0771,1.0866,0,1.1209,0,1.0000,0,1.0250,0,1.0107,1.0025,0,1.0010,1.0000,0,0,0,1.0013,0,0,0,0,0,0,0,0,1.0000,1.0000,0,0,1.0000,0,0,1.0000,0 +2016-12-29,42.4492,0,0,6.0683,3.8567,4.9177,3.0158,1.0001,0,2.3143,2.0942,1.0000,1.8065,0,1.3890,1.7260,0,0,0,0,0,1.0513,0,1.0000,1.1847,1.4529,1.2430,1.1207,1.0000,1.0394,0,1.0561,1.0866,0,1.0778,1.0011,1.0057,1.0379,1.0201,0,1.0101,1.0228,0,1.0011,1.0000,1.0071,1.0000,0,1.0011,1.0011,1.0006,1.0004,0,0,0,0,0,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0 +2016-12-30,361.2347,82.2879,36.1385,5.3347,3.8567,5.2630,5.9186,1.8025,0,2.2784,1.8784,3.1975,1.5568,1.5748,1.7197,1.4078,1.1806,2.1933,2.7189,1.3753,1.4992,1.4642,1.0085,1.0000,1.2290,1.4170,1.1539,1.1173,1.0160,1.1042,1.1123,1.0488,1.0801,0,1.0671,1.0787,1.0778,1.0500,1.0094,1.0094,1.0112,1.0292,1.0131,1.0022,1.0000,1.0032,1.0000,1.0041,1.0011,1.0011,1.0008,1.0004,1.0014,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,1.9179,30.3841,38.4517,8.5117,0,7.3737,13.7412,4.7123,1.0162,1.9224,0,1.0000,1.5265,1.5974,1.4660,1.2386,1.6099,1.2202,1.1623,0,1.1213,1.1316,2.5754,1.2516,1.2538,0,1.0513,1.0205,1.2604,0,1.0199,1.1407,0,1.0760,1.0379,1.0006,1.0874,1.1462,1.0368,1.0172,1.0269,1.0100,0,1.0187,1.0002,1.0017,1.0039,1.0018,1.0012,0,1.0006,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000,0,0 +2017-01-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv new file mode 100644 index 0000000000..3ab2d93e3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" +2016-12-23,0,0,0,0,1.0610,0 +2016-12-24,0,0,0,0,1.0610,0 +2016-12-25,0,0,0,0,1.0610,0 +2016-12-26,0,0,0,0,1.0610,0 +2016-12-27,0,0,0,1.0000,1.0610,1.0000 +2016-12-28,0,0,0,1.0000,1.0610,1.0000 +2016-12-29,42.4492,0,0,1.0000,1.4529,1.0057 +2016-12-30,361.2347,1.5748,1.0085,1.0000,1.4170,1.0778 +2016-12-31,1.9179,1.5974,2.5754,1.2516,0,1.0874 +2017-01-01,0,1.2609,0,4.1649,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv new file mode 100644 index 0000000000..7b1ecede04 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] User Expansion Factor" +2016-12-30,2.7189 +2016-12-31,1.1623 +2017-01-01,1.1798 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv new file mode 100644 index 0000000000..5f7cb57817 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +2016-12,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv new file mode 100644 index 0000000000..5f7cb57817 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +2016-12,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv new file mode 100644 index 0000000000..678a4efaa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" +2016-12,297.8504,1.5892,1.2706,1.0534,1.1633,1.0557 +2017-01,0,1.2609,0,4.1649,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv new file mode 100644 index 0000000000..1c2268d472 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] User Expansion Factor" +2016-12,1.5129 +2017-01,1.1798 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..0fb35f1c7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +"2016 Q4",297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..0fb35f1c7c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +"2016 Q4",297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..6764b39e1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" +"2016 Q4",297.8504,1.5892,1.2706,1.0534,1.1633,1.0557 +"2017 Q1",0,1.2609,0,4.1649,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..d90ffa8456 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] User Expansion Factor" +"2016 Q4",1.5129 +"2017 Q1",1.1798 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv new file mode 100644 index 0000000000..68c7e541ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +2016,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv new file mode 100644 index 0000000000..68c7e541ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" +2016,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv new file mode 100644 index 0000000000..4ab145272a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" +2016,297.8504,1.5892,1.2706,1.0534,1.1633,1.0557 +2017,0,1.2609,0,4.1649,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv new file mode 100644 index 0000000000..e353198a4f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"User Expansion Factor: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] User Expansion Factor" +2016,1.5129 +2017,1.1798 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..5e981b200f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..e5796b528b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..5e981b200f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..e5796b528b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..5e981b200f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..e5796b528b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..4856cc93ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..5e981b200f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..e5796b528b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Ended" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..1c91692ef6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +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,0,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,0,0,0,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-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,0,0,0,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-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,0,0,0,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-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,0,0,0,0,0,0,0,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-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19043,3457,1698,788,1,333,0,712,34,90,68,61,3,20,36,5,50,28,12,0,8,8,8,3,10,5,19,1,4,2,5,4,11,14,0,7,10,5,4,1,0,0,4,6,3,0,2,1,2,1,2,3,2,1,2,1,2,1,1,1,0,0,1,1,1,0 +2016-12-31,22020,2365,933,869,999,341,4,1,180,10,24,83,97,24,20,1,0,8,12,4,17,8,8,12,5,16,1,6,4,0,4,3,4,0,7,4,0,5,6,7,9,0,4,1,3,4,2,2,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1 +2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..1c91692ef6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +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,0,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,0,0,0,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-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,0,0,0,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-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,0,0,0,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-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,0,0,0,0,0,0,0,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-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19043,3457,1698,788,1,333,0,712,34,90,68,61,3,20,36,5,50,28,12,0,8,8,8,3,10,5,19,1,4,2,5,4,11,14,0,7,10,5,4,1,0,0,4,6,3,0,2,1,2,1,2,3,2,1,2,1,2,1,1,1,0,0,1,1,1,0 +2016-12-31,22020,2365,933,869,999,341,4,1,180,10,24,83,97,24,20,1,0,8,12,4,17,8,8,12,5,16,1,6,4,0,4,3,4,0,7,4,0,5,6,7,9,0,4,1,3,4,2,2,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1 +2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..2f8f0cd0cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" +2016-12-23,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0 +2016-12-29,0,0,0,0,0,0 +2016-12-30,712,8,7,3,0,2 +2016-12-31,1,17,4,3,4,0 +2017-01-01,0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..c7413a01c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of Jobs Ended" +2016-12-30,0 +2016-12-31,7 +2017-01-01,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..649bd2b48c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +2016-12,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 +2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..649bd2b48c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +2016-12,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 +2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..c81b5066e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" +2016-12,713,25,11,6,4,2 +2017-01,0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..5deb40e5fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of Jobs Ended" +2016-12,7 +2017-01,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..f047510cce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +"2016 Q4",41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 +"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..f047510cce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +"2016 Q4",41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 +"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..80b9fbd035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" +"2016 Q4",713,25,11,6,4,2 +"2017 Q1",0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..31ffbaabb0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of Jobs Ended" +"2016 Q4",7 +"2017 Q1",7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..516b59b36e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +2016,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 +2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..516b59b36e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" +2016,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 +2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..a38b365d0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" +2016,713,25,11,6,4,2 +2017,0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..32fee121c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Ended: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of Jobs Ended" +2016,7 +2017,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..e67868b6ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (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: Max (Core Count)" +swath,64 +litst,16 +ovenb,16 +ybsbu,16 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv new file mode 100644 index 0000000000..23cda93317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +whimb,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv new file mode 100644 index 0000000000..e67868b6ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (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: Max (Core Count)" +swath,64 +litst,16 +ovenb,16 +ybsbu,16 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv new file mode 100644 index 0000000000..23cda93317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +whimb,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..e67868b6ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (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: Max (Core Count)" +swath,64 +litst,16 +ovenb,16 +ybsbu,16 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..23cda93317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +whimb,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv new file mode 100644 index 0000000000..6a3dab09fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +duswa,336 +aytinis,192 +dunli,192 +yebwa,160 +velsc,144 +egygo,112 +allga,108 +crane,96 +meapi,96 +sarwa,96 +siski,72 +smew1,72 +whimb,72 +alpsw,64 +chaff,64 +swath,64 +ferdu,60 +pereg,60 +rolle,60 +evegr,56 +vertera,48 +yebbu,40 +noror,32 +reebu,32 +sancr,32 +shag1,32 +shttr,32 +whtsp,24 +crama,20 +gloib,20 +lanhach,20 +garwa,16 +litst,16 +ovenb,16 +relpa,16 +ybsbu,16 +boowa,12 +caspl,12 +grath,12 +honbu,12 +hoowa,12 +litau,12 +misth,12 +sposa,12 +turdo,12 +whtpl,12 +corsh,8 +field,8 +lesre,4 +yebsa,4 +blhbu,1 +categ,1 +coot1,1 +grgsh,1 +henha,1 +jackd,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +sogsh,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv new file mode 100644 index 0000000000..e67868b6ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Max (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: Max (Core Count)" +swath,64 +litst,16 +ovenb,16 +ybsbu,16 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv new file mode 100644 index 0000000000..23cda93317 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Max (Core Count)" +whimb,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv new file mode 100644 index 0000000000..b1d4ca5c12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2016-12-27,0,0,0,0,144,0,0,0,96,0,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,0,8,0,0,0,0,16,0,16,0,16,12,0,0,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0 +2016-12-28,0,192,0,0,144,0,0,0,96,32,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,32,8,0,0,20,0,16,0,16,0,16,12,0,0,1,8,0,12,0,12,12,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0 +2016-12-29,0,192,0,160,144,112,0,96,96,32,72,72,0,0,64,64,60,60,0,56,0,40,12,32,32,32,8,0,0,20,1,16,0,16,0,16,12,0,2,12,8,5,12,12,12,12,8,0,4,4,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0 +2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,12,32,32,32,32,0,20,20,20,16,16,16,16,16,12,0,12,12,12,5,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,336,192,192,0,0,112,0,96,96,96,48,72,72,64,64,64,60,60,60,0,48,40,32,16,20,32,8,24,0,0,20,16,16,16,0,8,1,12,2,12,12,12,12,12,8,0,8,8,4,4,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1 +2017-01-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv new file mode 100644 index 0000000000..b1d4ca5c12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2016-12-27,0,0,0,0,144,0,0,0,96,0,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,0,8,0,0,0,0,16,0,16,0,16,12,0,0,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0 +2016-12-28,0,192,0,0,144,0,0,0,96,32,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,32,8,0,0,20,0,16,0,16,0,16,12,0,0,1,8,0,12,0,12,12,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0 +2016-12-29,0,192,0,160,144,112,0,96,96,32,72,72,0,0,64,64,60,60,0,56,0,40,12,32,32,32,8,0,0,20,1,16,0,16,0,16,12,0,2,12,8,5,12,12,12,12,8,0,4,4,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0 +2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,12,32,32,32,32,0,20,20,20,16,16,16,16,16,12,0,12,12,12,5,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2016-12-31,336,192,192,0,0,112,0,96,96,96,48,72,72,64,64,64,60,60,60,0,48,40,32,16,20,32,8,24,0,0,20,16,16,16,0,8,1,12,2,12,12,12,12,12,8,0,8,8,4,4,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1 +2017-01-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..8078917608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" +2016-12-23,0,0,0,0,1,0 +2016-12-24,0,0,0,0,1,0 +2016-12-25,0,0,0,0,1,0 +2016-12-26,0,0,0,0,1,0 +2016-12-27,0,0,16,16,1,0 +2016-12-28,0,0,16,16,1,0 +2016-12-29,64,0,16,16,1,0 +2016-12-30,64,16,16,16,1,1 +2016-12-31,64,16,16,8,0,1 +2017-01-01,0,0,16,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv new file mode 100644 index 0000000000..26596761f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Max (Core Count)" +2016-12-30,72 +2016-12-31,72 +2017-01-01,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv new file mode 100644 index 0000000000..fbbc80782e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" +2016-12,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv new file mode 100644 index 0000000000..fbbc80782e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" +2016-12,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv new file mode 100644 index 0000000000..01a07ea061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" +2016-12,64,16,16,16,1,1 +2017-01,0,0,16,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv new file mode 100644 index 0000000000..4804974119 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Max (Core Count)" +2016-12,72 +2017-01,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..0a360f458a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..0a360f458a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" +"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2017 Q1",0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..6705781299 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" +"2016 Q4",64,16,16,16,1,1 +"2017 Q1",0,0,16,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..1b59d5a5e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Max (Core Count)" +"2016 Q4",72 +"2017 Q1",72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv new file mode 100644 index 0000000000..eace0c508e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" +2016,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv new file mode 100644 index 0000000000..eace0c508e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" +2016,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2017,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv new file mode 100644 index 0000000000..924df04519 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" +2016,64,16,16,16,1,1 +2017,0,0,16,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv new file mode 100644 index 0000000000..3c668d6e60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Max (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Max (Core Count)" +2016,72 +2017,72 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..521f18d2e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (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: Min (Core Count)" +ovenb,16 +litst,12 +ybsbu,8 +swath,4 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv new file mode 100644 index 0000000000..33e1ebacbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +whimb,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv new file mode 100644 index 0000000000..521f18d2e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (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: Min (Core Count)" +ovenb,16 +litst,12 +ybsbu,8 +swath,4 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv new file mode 100644 index 0000000000..33e1ebacbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +whimb,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..521f18d2e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (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: Min (Core Count)" +ovenb,16 +litst,12 +ybsbu,8 +swath,4 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..33e1ebacbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +whimb,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv new file mode 100644 index 0000000000..144ab64663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +yebwa,160 +aytinis,112 +egygo,112 +allga,108 +crane,96 +meapi,96 +velsc,80 +smew1,72 +chaff,64 +ferdu,60 +pereg,60 +evegr,56 +duswa,48 +siski,48 +whimb,36 +alpsw,32 +crama,20 +gloib,20 +ovenb,16 +relpa,16 +whtsp,16 +yebbu,16 +caspl,12 +litst,12 +misth,12 +sancr,12 +sarwa,12 +shag1,12 +sposa,12 +whtpl,12 +corsh,8 +dunli,8 +field,8 +hoowa,8 +reebu,8 +turdo,8 +ybsbu,8 +litau,5 +rolle,5 +lesre,4 +swath,4 +yebsa,4 +grath,2 +blhbu,1 +boowa,1 +categ,1 +coot1,1 +garwa,1 +grgsh,1 +henha,1 +honbu,1 +jackd,1 +lanhach,1 +lapwi,1 +legsh,1 +mamwa,1 +moorh,1 +noror,1 +pibgr,1 +proubis,1 +ribgu,1 +sante,1 +savsp,1 +shttr,1 +sogsh,1 +vertera,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv new file mode 100644 index 0000000000..521f18d2e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Min (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: Min (Core Count)" +ovenb,16 +litst,12 +ybsbu,8 +swath,4 +sante,1 +savsp,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv new file mode 100644 index 0000000000..33e1ebacbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Min (Core Count)" +whimb,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv new file mode 100644 index 0000000000..7481442c87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0 +2016-12-27,0,0,0,0,0,96,144,0,64,0,0,0,0,72,0,0,0,0,16,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,0,0,1,0,12,0,0,0,1,0,8,0,0 +2016-12-28,0,112,0,0,0,96,144,0,64,0,0,0,0,48,0,0,0,20,16,0,0,0,0,0,12,12,32,12,0,12,0,0,0,8,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,1,0,1,1,12,0,0,0,1,0,8,0,0 +2016-12-29,160,112,112,0,96,96,144,72,64,60,60,56,0,48,0,0,0,20,16,0,0,40,0,0,12,12,32,12,12,12,8,0,0,8,8,8,8,5,0,4,4,4,2,0,12,0,0,16,0,1,1,0,1,1,0,1,1,12,1,0,0,1,0,8,0,0 +2016-12-30,160,112,112,108,96,96,80,72,64,60,60,56,48,48,72,32,20,20,16,16,0,16,0,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,16,1,1,1,1,1,1,1,1,1,12,1,1,1,1,1,1,1,1 +2016-12-31,0,112,112,0,96,96,0,72,64,60,60,0,336,48,36,64,0,0,16,0,16,40,12,16,12,12,12,12,12,0,8,12,8,8,8,8,8,8,5,4,64,4,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,8,0,1,1,0,1,8,1,12 +2017-01-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv new file mode 100644 index 0000000000..7481442c87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0 +2016-12-27,0,0,0,0,0,96,144,0,64,0,0,0,0,72,0,0,0,0,16,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,0,0,1,0,12,0,0,0,1,0,8,0,0 +2016-12-28,0,112,0,0,0,96,144,0,64,0,0,0,0,48,0,0,0,20,16,0,0,0,0,0,12,12,32,12,0,12,0,0,0,8,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,1,0,1,1,12,0,0,0,1,0,8,0,0 +2016-12-29,160,112,112,0,96,96,144,72,64,60,60,56,0,48,0,0,0,20,16,0,0,40,0,0,12,12,32,12,12,12,8,0,0,8,8,8,8,5,0,4,4,4,2,0,12,0,0,16,0,1,1,0,1,1,0,1,1,12,1,0,0,1,0,8,0,0 +2016-12-30,160,112,112,108,96,96,80,72,64,60,60,56,48,48,72,32,20,20,16,16,0,16,0,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,16,1,1,1,1,1,1,1,1,1,12,1,1,1,1,1,1,1,1 +2016-12-31,0,112,112,0,96,96,0,72,64,60,60,0,336,48,36,64,0,0,16,0,16,40,12,16,12,12,12,12,12,0,8,12,8,8,8,8,8,8,5,4,64,4,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,8,0,1,1,0,1,8,1,12 +2017-01-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..333f846e7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" +2016-12-23,0,0,0,0,1,0 +2016-12-24,0,0,0,0,1,0 +2016-12-25,0,0,0,0,1,0 +2016-12-26,0,0,0,0,1,0 +2016-12-27,16,0,16,0,1,0 +2016-12-28,16,0,16,0,1,0 +2016-12-29,16,0,8,4,1,0 +2016-12-30,16,12,8,4,1,1 +2016-12-31,16,16,8,64,0,1 +2017-01-01,16,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv new file mode 100644 index 0000000000..c32826dea6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Min (Core Count)" +2016-12-30,72 +2016-12-31,36 +2017-01-01,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv new file mode 100644 index 0000000000..ce8a7c0ace --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" +2016-12,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +2017-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv new file mode 100644 index 0000000000..ce8a7c0ace --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" +2016-12,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +2017-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv new file mode 100644 index 0000000000..7dbc159f2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" +2016-12,16,12,8,4,1,1 +2017-01,16,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv new file mode 100644 index 0000000000..fe537e772a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Min (Core Count)" +2016-12,36 +2017-01,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..42fc50e850 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" +"2016 Q4",160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +"2017 Q1",160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..42fc50e850 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" +"2016 Q4",160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +"2017 Q1",160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..7c4f9b5341 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" +"2016 Q4",16,12,8,4,1,1 +"2017 Q1",16,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..ad2e0cbcb6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Min (Core Count)" +"2016 Q4",36 +"2017 Q1",36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv new file mode 100644 index 0000000000..b3bdf30f3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" +2016,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +2017,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv new file mode 100644 index 0000000000..b3bdf30f3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" +2016,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 +2017,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv new file mode 100644 index 0000000000..b03c000ce2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" +2016,16,12,8,4,1,1 +2017,16,0,0,0,0,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv new file mode 100644 index 0000000000..8fdd206747 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Min (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Min (Core Count)" +2016,36 +2017,36 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/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/localhost/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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv new file mode 100644 index 0000000000..97501c63a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +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)","[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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv new file mode 100644 index 0000000000..97501c63a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +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)","[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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv new file mode 100644 index 0000000000..ab5d786055 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +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 +--------- +Day,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" +2016-12-23,0,0,0,0,0.025000000,0 +2016-12-24,0,0,0,0,0.025000000,0 +2016-12-25,0,0,0,0,0.025000000,0 +2016-12-26,0,0,0,0,0.025000000,0 +2016-12-27,0.400000000,0,0.400000000,0,0.025000000,0 +2016-12-28,0.400000000,0,0.400000000,0,0.025000000,0 +2016-12-29,0.400000000,0,0.120000000,0.107692308,0.025000000,0 +2016-12-30,0.400000000,0.164285714,0.116666667,0.051051893,0.025000000,0.025000000 +2016-12-31,0.400000000,0.400000000,0.200000000,1.600000000,0,0.025000000 +2017-01-01,0.400000000,0,0,0,0,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv new file mode 100644 index 0000000000..cdfc72805a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Normalized (% of Total Cores)" +2016-12-30,1.800000000 +2016-12-31,1.300000000 +2017-01-01,1.157142857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv new file mode 100644 index 0000000000..af431a3a64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +2017-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/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv new file mode 100644 index 0000000000..af431a3a64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +2017-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/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv new file mode 100644 index 0000000000..e2f3ab3dc4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Month,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" +2016-12,0.400000000,0.177272727,0.116666667,0.051051893,0.025000000,0.025000000 +2017-01,0.400000000,0,0,0,0,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv new file mode 100644 index 0000000000..7d4628a813 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Normalized (% of Total Cores)" +2016-12,1.300000000 +2017-01,1.157142857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..e1d8bc46a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +"2017 Q1",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/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..e1d8bc46a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[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 Q4",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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +"2017 Q1",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/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..75add28fc6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Quarter,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.400000000,0.177272727,0.116666667,0.051051893,0.025000000,0.025000000 +"2017 Q1",0.400000000,0,0,0,0,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..366ab63b3d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Normalized (% of Total Cores)" +"2016 Q4",1.300000000 +"2017 Q1",1.157142857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv new file mode 100644 index 0000000000..213c18bfda --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +2017,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/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv new file mode 100644 index 0000000000..213c18bfda --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 +2017,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/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv new file mode 100644 index 0000000000..95c9c1e0aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +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 +--------- +Year,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" +2016,0.400000000,0.177272727,0.116666667,0.051051893,0.025000000,0.025000000 +2017,0.400000000,0,0,0,0,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv new file mode 100644 index 0000000000..faf6b8fbb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Normalized (% of Total Cores)" +2016,1.300000000 +2017,1.157142857 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..4a9636f915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..0a1bc8739d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..4a9636f915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..0a1bc8739d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..4a9636f915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..0a1bc8739d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..dc8f14d235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..4a9636f915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..0a1bc8739d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Running" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..38753be810 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1,12,0,0,0,2,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0 +2016-12-28,1,13,0,190,0,2,0,0,147,0,0,11,0,0,0,16,0,3,0,1,0,0,0,15,10,5,0,0,0,0,0,0,1,0,0,0,9,2,0,0,9,0,0,0,1,4,0,0,0,0,0,3,0,0,1,2,1,0,0,0,1,0,1,1,0,0 +2016-12-29,249,25,0,960,0,19,0,13,235,0,0,24,1,0,10,20,50,7,0,1,0,0,0,22,12,10,5,7,0,6,3,1,1,0,0,0,9,3,0,1,9,0,4,7,5,4,0,0,0,0,1,3,1,1,2,2,1,1,1,0,1,1,1,1,0,0 +2016-12-30,19298,3466,1698,1635,719,349,0,713,252,90,68,94,4,20,60,20,50,35,12,1,8,8,8,22,18,16,20,15,4,8,8,4,15,14,1,7,11,9,4,1,9,0,8,7,6,4,4,3,3,1,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1 +2016-12-31,22499,2368,933,1637,999,357,16,1,255,10,24,83,98,26,24,48,0,9,12,5,17,8,8,19,12,16,1,17,4,6,7,3,4,0,9,4,1,6,6,7,9,9,4,1,3,5,2,2,1,1,1,0,0,1,0,1,0,1,0,0,1,1,0,0,0,1 +2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..38753be810 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1,12,0,0,0,2,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0 +2016-12-28,1,13,0,190,0,2,0,0,147,0,0,11,0,0,0,16,0,3,0,1,0,0,0,15,10,5,0,0,0,0,0,0,1,0,0,0,9,2,0,0,9,0,0,0,1,4,0,0,0,0,0,3,0,0,1,2,1,0,0,0,1,0,1,1,0,0 +2016-12-29,249,25,0,960,0,19,0,13,235,0,0,24,1,0,10,20,50,7,0,1,0,0,0,22,12,10,5,7,0,6,3,1,1,0,0,0,9,3,0,1,9,0,4,7,5,4,0,0,0,0,1,3,1,1,2,2,1,1,1,0,1,1,1,1,0,0 +2016-12-30,19298,3466,1698,1635,719,349,0,713,252,90,68,94,4,20,60,20,50,35,12,1,8,8,8,22,18,16,20,15,4,8,8,4,15,14,1,7,11,9,4,1,9,0,8,7,6,4,4,3,3,1,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1 +2016-12-31,22499,2368,933,1637,999,357,16,1,255,10,24,83,98,26,24,48,0,9,12,5,17,8,8,19,12,16,1,17,4,6,7,3,4,0,9,4,1,6,6,7,9,9,4,1,3,5,2,2,1,1,1,0,0,1,0,1,0,1,0,0,1,1,0,0,0,1 +2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..3e50faea1f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" +2016-12-23,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,1 +2016-12-25,0,0,0,0,0,1 +2016-12-26,0,0,0,0,0,1 +2016-12-27,0,0,0,1,4,1 +2016-12-28,0,0,0,1,4,1 +2016-12-29,13,0,0,5,4,2 +2016-12-30,713,8,7,6,4,2 +2016-12-31,1,17,4,3,5,0 +2017-01-01,0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..0c3a2e70bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of Jobs Running" +2016-12-30,1 +2016-12-31,9 +2017-01-01,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..2526a9ee41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..2526a9ee41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..826b7723d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" +2016-12,713,25,11,6,5,2 +2017-01,0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..e92b751661 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of Jobs Running" +2016-12,9 +2017-01,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..acdae6c360 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..acdae6c360 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..944cb09d03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" +"2016 Q4",713,25,11,6,5,2 +"2017 Q1",0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..1e4dba7dad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of Jobs Running" +"2016 Q4",9 +"2017 Q1",7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..f2ccae642a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..f2ccae642a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" +2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..8756c96685 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" +2016,713,25,11,6,5,2 +2017,0,1,0,0,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..109af732fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Running: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of Jobs Running" +2016,9 +2017,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..d3164746c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..847f86f884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..d3164746c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..847f86f884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..d3164746c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..847f86f884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..fc2ea79995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +honbu,54983 +reebu,5906 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +caspl,756 +swath,713 +lapwi,308 +dunli,239 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +yebwa,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..d3164746c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..847f86f884 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Started" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..c2e90a647f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0 +2016-12-28,0,1,0,190,0,0,0,0,147,0,0,9,0,0,0,11,0,3,0,0,0,0,0,12,5,5,0,0,0,0,0,0,0,0,0,0,9,2,0,0,9,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0 +2016-12-29,248,12,0,770,0,17,0,13,88,0,0,13,1,0,10,4,50,4,0,0,0,0,0,7,2,5,5,7,0,6,3,1,0,0,0,0,0,1,0,1,0,0,4,7,4,0,0,0,0,0,1,0,1,1,1,0,0,1,1,0,0,1,0,0,0,0 +2016-12-30,19049,3441,1698,675,719,330,0,700,17,90,68,70,3,20,50,0,0,28,12,0,8,8,8,0,6,6,15,8,4,2,5,3,14,14,1,7,2,6,4,0,0,0,4,0,1,0,4,3,3,1,2,0,1,0,0,0,1,1,0,1,0,0,0,0,1,1 +2016-12-31,22244,2359,933,790,281,341,16,0,37,10,24,50,97,26,0,33,0,2,12,4,17,8,8,0,4,5,0,3,4,0,4,3,0,0,8,4,0,2,6,7,0,9,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..c2e90a647f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0 +2016-12-28,0,1,0,190,0,0,0,0,147,0,0,9,0,0,0,11,0,3,0,0,0,0,0,12,5,5,0,0,0,0,0,0,0,0,0,0,9,2,0,0,9,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0 +2016-12-29,248,12,0,770,0,17,0,13,88,0,0,13,1,0,10,4,50,4,0,0,0,0,0,7,2,5,5,7,0,6,3,1,0,0,0,0,0,1,0,1,0,0,4,7,4,0,0,0,0,0,1,0,1,1,1,0,0,1,1,0,0,1,0,0,0,0 +2016-12-30,19049,3441,1698,675,719,330,0,700,17,90,68,70,3,20,50,0,0,28,12,0,8,8,8,0,6,6,15,8,4,2,5,3,14,14,1,7,2,6,4,0,0,0,4,0,1,0,4,3,3,1,2,0,1,0,0,0,1,1,0,1,0,0,0,0,1,1 +2016-12-31,22244,2359,933,790,281,341,16,0,37,10,24,50,97,26,0,33,0,2,12,4,17,8,8,0,4,5,0,3,4,0,4,3,0,0,8,4,0,2,6,7,0,9,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..5cd2ee1f58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" +2016-12-23,0,0,0,0,0,1 +2016-12-24,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0 +2016-12-27,0,0,0,1,4,0 +2016-12-28,0,0,0,0,0,0 +2016-12-29,13,0,0,4,0,1 +2016-12-30,700,8,7,1,0,0 +2016-12-31,0,17,4,0,1,0 +2017-01-01,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..409847ac71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of Jobs Started" +2016-12-30,1 +2016-12-31,8 +2017-01-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..885fa5e012 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..885fa5e012 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..f685b5de5e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" +2016-12,713,25,11,6,5,2 +2017-01,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..1e2d599d66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of Jobs Started" +2016-12,9 +2017-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..f7a705c787 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..f7a705c787 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..60942c46f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" +"2016 Q4",713,25,11,6,5,2 +"2017 Q1",0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..d3cd933915 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of Jobs Started" +"2016 Q4",9 +"2017 Q1",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..2e7ece8a63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..2e7ece8a63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" +2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..5f79dcf0af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" +2016,713,25,11,6,5,2 +2017,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..3eb624eb04 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Started: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of Jobs Started" +2016,9 +2017,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..03becd905e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,49649 +reebu,5892 +grgsh,2631 +moorh,2586 +turdo,981 +legsh,719 +caspl,693 +lapwi,308 +sogsh,154 +dunli,123 +vertera,69 +pibgr,50 +garwa,49 +sarwa,44 +proubis,36 +noror,30 +savsp,26 +sposa,25 +categ,24 +coot1,24 +hoowa,21 +henha,20 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +yebsa,15 +boowa,14 +crama,14 +sancr,12 +whimb,12 +litst,11 +misth,11 +blhbu,10 +litau,10 +shag1,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +shttr,5 +ybsbu,5 +jackd,4 +ovenb,4 +rolle,4 +field,3 +whtpl,3 +evegr,2 +lesre,2 +meapi,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +grath,1 +mamwa,1 +pereg,1 +relpa,1 +ribgu,1 +sante,1 +velsc,1 +yebbu,1 +duswa,0 +siski,0 +swath,0 +yebwa,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..03becd905e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,49649 +reebu,5892 +grgsh,2631 +moorh,2586 +turdo,981 +legsh,719 +caspl,693 +lapwi,308 +sogsh,154 +dunli,123 +vertera,69 +pibgr,50 +garwa,49 +sarwa,44 +proubis,36 +noror,30 +savsp,26 +sposa,25 +categ,24 +coot1,24 +hoowa,21 +henha,20 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +yebsa,15 +boowa,14 +crama,14 +sancr,12 +whimb,12 +litst,11 +misth,11 +blhbu,10 +litau,10 +shag1,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +shttr,5 +ybsbu,5 +jackd,4 +ovenb,4 +rolle,4 +field,3 +whtpl,3 +evegr,2 +lesre,2 +meapi,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +grath,1 +mamwa,1 +pereg,1 +relpa,1 +ribgu,1 +sante,1 +velsc,1 +yebbu,1 +duswa,0 +siski,0 +swath,0 +yebwa,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..17d5ede6d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +savsp,26 +litst,11 +ybsbu,5 +ovenb,4 +sante,1 +swath,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..6cc406ea89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +whimb,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..99ff8ca61d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,53053 +reebu,5905 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +swath,713 +caspl,693 +lapwi,308 +dunli,164 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..99ff8ca61d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,53053 +reebu,5905 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +swath,713 +caspl,693 +lapwi,308 +dunli,164 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..d2b040548f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..ab79c55b9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..99ff8ca61d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,53053 +reebu,5905 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +swath,713 +caspl,693 +lapwi,308 +dunli,164 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..99ff8ca61d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,53053 +reebu,5905 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +swath,713 +caspl,693 +lapwi,308 +dunli,164 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..d2b040548f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..ab79c55b9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..99ff8ca61d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,53053 +reebu,5905 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +swath,713 +caspl,693 +lapwi,308 +dunli,164 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..99ff8ca61d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +honbu,53053 +reebu,5905 +grgsh,2631 +moorh,2629 +legsh,1000 +turdo,982 +swath,713 +caspl,693 +lapwi,308 +dunli,164 +sogsh,154 +sancr,144 +grath,101 +vertera,69 +sposa,60 +garwa,53 +pibgr,50 +sarwa,45 +proubis,36 +noror,30 +savsp,26 +categ,24 +coot1,24 +meapi,24 +shttr,22 +hoowa,21 +henha,20 +yebsa,18 +alpsw,16 +corsh,16 +crane,16 +lanhach,16 +boowa,15 +crama,14 +whimb,14 +litst,11 +misth,11 +shag1,11 +blhbu,10 +litau,10 +aytinis,9 +whtsp,9 +egygo,8 +smew1,7 +ybsbu,6 +ovenb,5 +jackd,4 +rolle,4 +duswa,3 +field,3 +pereg,3 +whtpl,3 +evegr,2 +lesre,2 +sante,2 +siski,2 +velsc,2 +yebbu,2 +allga,1 +chaff,1 +ferdu,1 +gloib,1 +mamwa,1 +relpa,1 +ribgu,1 +yebwa,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..d2b040548f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +swath,713 +savsp,26 +litst,11 +ybsbu,6 +ovenb,5 +sante,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..ab79c55b9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Number of Jobs Submitted" +whimb,14 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..e1d02dd076 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[field] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,190,0,0,0,147,0,0,0,0,11,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,198,10,0,770,17,0,0,88,0,0,0,50,0,4,0,0,0,10,0,0,5,5,0,6,3,1,7,0,0,10,0,0,0,0,1,1,0,0,4,7,0,4,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0 +2016-12-30,18454,3437,1698,675,330,719,0,17,68,50,20,0,0,28,12,0,8,15,8,8,6,15,4,2,5,3,8,14,14,0,0,7,2,4,0,6,0,0,4,0,5,0,4,0,3,1,0,1,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0 +2016-12-31,19485,2355,933,747,341,0,16,37,24,9,26,0,33,1,12,4,17,0,8,8,5,0,4,0,4,3,0,0,0,2,7,4,0,6,7,2,0,9,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,11511,80,0,204,292,0,677,19,62,64,23,0,0,8,12,25,1,0,8,8,0,0,8,8,4,9,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..e1d02dd076 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[field] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,190,0,0,0,147,0,0,0,0,11,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,198,10,0,770,17,0,0,88,0,0,0,50,0,4,0,0,0,10,0,0,5,5,0,6,3,1,7,0,0,10,0,0,0,0,1,1,0,0,4,7,0,4,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0 +2016-12-30,18454,3437,1698,675,330,719,0,17,68,50,20,0,0,28,12,0,8,15,8,8,6,15,4,2,5,3,8,14,14,0,0,7,2,4,0,6,0,0,4,0,5,0,4,0,3,1,0,1,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0 +2016-12-31,19485,2355,933,747,341,0,16,37,24,9,26,0,33,1,12,4,17,0,8,8,5,0,4,0,4,3,0,0,0,2,7,4,0,6,7,2,0,9,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2017-01-01,11511,80,0,204,292,0,677,19,62,64,23,0,0,8,12,25,1,0,8,8,0,0,8,8,4,9,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..14f73692a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[swath] Number of Jobs Submitted" +2016-12-23,0,0,0,0,1,0 +2016-12-24,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0 +2016-12-27,0,0,1,4,0,0 +2016-12-28,0,0,0,0,0,0 +2016-12-29,0,0,4,0,0,0 +2016-12-30,8,7,0,0,0,0 +2016-12-31,17,4,0,0,0,0 +2017-01-01,1,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..64acaa5062 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Number of Jobs Submitted" +2016-12-30,0 +2016-12-31,7 +2017-01-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..7f4d10365d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +2016-12,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..7f4d10365d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +2016-12,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017-01,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..283d44125b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted" +2016-12,713,25,11,6,5,2 +2017-01,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..6c5cbdb607 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Number of Jobs Submitted" +2016-12,9 +2017-01,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..dfb935ca91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +"2016 Q4",41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..dfb935ca91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +"2016 Q4",41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +"2017 Q1",11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..0c93d1fb9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted" +"2016 Q4",713,25,11,6,5,2 +"2017 Q1",0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..86b8d14710 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Number of Jobs Submitted" +"2016 Q4",9 +"2017 Q1",5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..3ba95bc77f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +2016,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..3ba95bc77f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" +2016,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 +2017,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..8391b8804b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted" +2016,713,25,11,6,5,2 +2017,0,1,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..c39e7a3ea2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Number of Jobs Submitted: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Number of Jobs Submitted" +2016,9 +2017,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..f7686ab618 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: 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: Total" +ovenb,6621.1911 +swath,4528.0644 +ybsbu,2430.7267 +sante,174.8775 +litst,49.3589 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..0c7e04d719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +whimb,4918.4700 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..f7686ab618 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: 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: Total" +ovenb,6621.1911 +swath,4528.0644 +ybsbu,2430.7267 +sante,174.8775 +litst,49.3589 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..0c7e04d719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +whimb,4918.4700 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..f7686ab618 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: 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: Total" +ovenb,6621.1911 +swath,4528.0644 +ybsbu,2430.7267 +sante,174.8775 +litst,49.3589 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..0c7e04d719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +whimb,4918.4700 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..07e45b0c8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +honbu,157078.4431 +meapi,146476.2400 +aytinis,118663.3556 +moorh,67004.1206 +reebu,35441.0778 +garwa,34825.7219 +sancr,22888.9811 +crane,19473.8133 +caspl,19117.7667 +smew1,18391.0000 +sarwa,16661.9989 +lapwi,15354.0758 +egygo,14141.1200 +duswa,13105.9733 +turdo,12550.4967 +sposa,12178.1900 +velsc,10557.5822 +legsh,8590.5158 +siski,8404.1933 +shttr,8206.8872 +chaff,7680.4622 +ovenb,6621.1911 +whtsp,5262.3156 +misth,5198.0500 +whimb,4918.4700 +shag1,4577.8556 +swath,4528.0644 +pereg,4472.6000 +ferdu,4200.4667 +hoowa,3862.9211 +yebsa,3582.6789 +corsh,3504.2444 +noror,3199.8106 +ybsbu,2430.7267 +grath,2039.1683 +yebbu,2013.9756 +whtpl,1588.9133 +dunli,1518.1478 +vertera,1446.9428 +yebwa,1444.4889 +evegr,1129.0533 +boowa,1021.5447 +gloib,960.1333 +litau,622.6494 +alpsw,610.7733 +rolle,590.3347 +lanhach,521.3100 +pibgr,500.2031 +field,344.9756 +sante,174.8775 +lesre,151.1833 +sogsh,135.7597 +henha,100.8417 +jackd,87.3878 +mamwa,72.0069 +blhbu,59.8692 +grgsh,54.6383 +litst,49.3589 +proubis,34.9861 +ribgu,31.9097 +allga,28.1400 +coot1,23.3244 +categ,23.3156 +crama,22.5389 +relpa,1.0400 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..f7686ab618 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Total: 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: Total" +ovenb,6621.1911 +swath,4528.0644 +ybsbu,2430.7267 +sante,174.8775 +litst,49.3589 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..0c7e04d719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Total" +whimb,4918.4700 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..69cdd4bc18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0,0,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6036,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,152.3533,0,0,0,0,0,0,0,0,0,313.9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,1152.0000,216.3333,0,0,0,0,0,0,0,0,576.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,3.2167,3739.4133,0,0,1717.7600,1920.0000,1301.6889,0,0,0,0,0,0,0,576.0000,0,2997.1200,0,1487.8200,558.6133,243.1822,315.9467,0,0,0,0,0,0,0,0,0,0,288.0000,136.7956,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,24.0000,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,24.0000,21931.9200,29467.4711,953.0369,8192.9511,2310.7378,3131.9644,0,0,0,799.6267,1962.8444,0,0,576.0000,0,3456.0000,0,2341.3467,1411.0667,1536.0000,1536.0000,0,336.4567,0,386.2533,0,0,0,351.5933,0,0,288.0000,384.0000,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,1237.5364,49534.0800,39552.0000,12583.2597,10099.5600,7644.0844,8585.5822,1834.4800,0,5821.2600,3747.4933,3901.6422,1643.9111,0,729.5867,487.3967,3456.0000,0,2880.0000,1970.9511,1536.0000,1536.0000,0,2592.0000,0,1161.6300,461.3211,1406.2833,180.1167,1111.6444,555.8656,238.3022,288.0000,532.2578,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,22.2422,233.0019,0,39.1372,28.6944,0,10.0983,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,61332.1356,46895.6533,39552.0000,21766.1511,7632.3833,6055.3111,7303.0711,6126.0000,0,10979.2200,4526.2344,5473.3125,9211.3156,7404.4267,3076.4911,6875.1400,648.4622,3055.8617,1250.6800,1841.5117,1536.0000,1536.0000,0,1921.0433,683.1200,1564.5567,2952.2189,1468.0833,1440.0000,1479.8411,1166.4433,1150.8667,288.0000,986.5178,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1021.1444,198.9664,386.1222,68.0319,26.0711,65.9958,16.0939,267.2011,64.0356,7.1367,52.5422,108.1047,82.1119,43.3692,19.2856,13.9453,40.8392,39.5500,11.6692,17.7975,28.1400,7.7811,7.7806,22.5389,1.0400,0.2208 +2016-12-31,86581.6175,22004.0533,10091.8844,20518.0064,3452.2700,11780.8131,2566.6744,6839.5200,37.7500,1590.5200,6955.7733,2761.8142,3285.8933,5701.5467,2976.8089,4561.6667,0,5534.6542,444.3467,1437.7244,1536.0000,1325.6578,3473.9867,288.0000,2349.9100,1346.5222,1114.5244,1440.0000,1440.0000,919.8422,1294.9333,1152.0000,291.6067,391.1556,1428.0200,294.9778,0,125.4733,914.2433,0,0,7.7117,0,491.1800,527.7511,502.9333,77.7350,0,158.3044,0,23.9844,25.9131,8.6314,44.0186,0,45.9239,13.7992,9.8089,11.6819,14.1122,0,7.7850,7.7769,0,0,0.3878 +2017-01-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..69cdd4bc18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0,0,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6036,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,152.3533,0,0,0,0,0,0,0,0,0,313.9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,1152.0000,216.3333,0,0,0,0,0,0,0,0,576.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,3.2167,3739.4133,0,0,1717.7600,1920.0000,1301.6889,0,0,0,0,0,0,0,576.0000,0,2997.1200,0,1487.8200,558.6133,243.1822,315.9467,0,0,0,0,0,0,0,0,0,0,288.0000,136.7956,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,24.0000,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,24.0000,21931.9200,29467.4711,953.0369,8192.9511,2310.7378,3131.9644,0,0,0,799.6267,1962.8444,0,0,576.0000,0,3456.0000,0,2341.3467,1411.0667,1536.0000,1536.0000,0,336.4567,0,386.2533,0,0,0,351.5933,0,0,288.0000,384.0000,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,1237.5364,49534.0800,39552.0000,12583.2597,10099.5600,7644.0844,8585.5822,1834.4800,0,5821.2600,3747.4933,3901.6422,1643.9111,0,729.5867,487.3967,3456.0000,0,2880.0000,1970.9511,1536.0000,1536.0000,0,2592.0000,0,1161.6300,461.3211,1406.2833,180.1167,1111.6444,555.8656,238.3022,288.0000,532.2578,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,22.2422,233.0019,0,39.1372,28.6944,0,10.0983,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,61332.1356,46895.6533,39552.0000,21766.1511,7632.3833,6055.3111,7303.0711,6126.0000,0,10979.2200,4526.2344,5473.3125,9211.3156,7404.4267,3076.4911,6875.1400,648.4622,3055.8617,1250.6800,1841.5117,1536.0000,1536.0000,0,1921.0433,683.1200,1564.5567,2952.2189,1468.0833,1440.0000,1479.8411,1166.4433,1150.8667,288.0000,986.5178,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1021.1444,198.9664,386.1222,68.0319,26.0711,65.9958,16.0939,267.2011,64.0356,7.1367,52.5422,108.1047,82.1119,43.3692,19.2856,13.9453,40.8392,39.5500,11.6692,17.7975,28.1400,7.7811,7.7806,22.5389,1.0400,0.2208 +2016-12-31,86581.6175,22004.0533,10091.8844,20518.0064,3452.2700,11780.8131,2566.6744,6839.5200,37.7500,1590.5200,6955.7733,2761.8142,3285.8933,5701.5467,2976.8089,4561.6667,0,5534.6542,444.3467,1437.7244,1536.0000,1325.6578,3473.9867,288.0000,2349.9100,1346.5222,1114.5244,1440.0000,1440.0000,919.8422,1294.9333,1152.0000,291.6067,391.1556,1428.0200,294.9778,0,125.4733,914.2433,0,0,7.7117,0,491.1800,527.7511,502.9333,77.7350,0,158.3044,0,23.9844,25.9131,8.6314,44.0186,0,45.9239,13.7992,9.8089,11.6819,14.1122,0,7.7850,7.7769,0,0,0.3878 +2017-01-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..2dda7eb1b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" +2016-12-23,0,0,0,8.6036,0,0 +2016-12-24,0,0,0,24.0000,0,0 +2016-12-25,0,0,0,24.0000,0,0 +2016-12-26,0,0,0,24.0000,0,0 +2016-12-27,315.9467,0,136.7956,24.0000,0,0 +2016-12-28,1536.0000,0,384.0000,24.0000,0,0 +2016-12-29,1536.0000,461.3211,532.2578,39.1372,0,0 +2016-12-30,1536.0000,2952.2189,986.5178,7.1367,39.5500,0.2208 +2016-12-31,1325.6578,1114.5244,391.1556,0,9.8089,0.3878 +2017-01-01,371.5867,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..2a5775161b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] CPU Hours: Total" +2016-12-30,683.1200 +2016-12-31,2349.9100 +2017-01-01,1885.4400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..933e12b1a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +2016-12,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +2017-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..933e12b1a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +2016-12,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +2017-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..caf03bd859 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" +2016-12,6249.6044,4528.0644,2430.7267,174.8775,49.3589,0.6086 +2017-01,371.5867,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..1fddea9d26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] CPU Hours: Total" +2016-12,3033.0300 +2017-01,1885.4400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..ac494f6b81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +"2016 Q4",149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +"2017 Q1",7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..ac494f6b81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +"2016 Q4",149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +"2017 Q1",7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..eea6ccd61c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" +"2016 Q4",6249.6044,4528.0644,2430.7267,174.8775,49.3589,0.6086 +"2017 Q1",371.5867,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..3283e02235 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] CPU Hours: Total" +"2016 Q4",3033.0300 +"2017 Q1",1885.4400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..da79dd758e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +2016,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +2017,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..da79dd758e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" +2016,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 +2017,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..94c4fc8e1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" +2016,6249.6044,4528.0644,2430.7267,174.8775,49.3589,0.6086 +2017,371.5867,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..b2013eb7ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"CPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] CPU Hours: Total" +2016,3033.0300 +2017,1885.4400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..191e00009f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..191e00009f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..077f95179a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +2016-12-23,0,0,0.0000,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0000,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,0.0000,0,0,0.0000 +2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2017-01-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..1bd87ab109 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] GPU Hours: Total" +2016-12-30,0.0000 +2016-12-31,0.0000 +2017-01-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..8a6892474a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..8a6892474a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..9b7e0e5494 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..3138a9b874 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] GPU Hours: Total" +2016-12,0.0000 +2017-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..02d822c5ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..02d822c5ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..6c1457d625 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..893e9ef464 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] GPU Hours: Total" +"2016 Q4",0.0000 +"2017 Q1",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..49cba0629a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..49cba0629a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..058213c69d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0e77529567 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] GPU Hours: Total" +2016,0.0000 +2017,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..ca72832e78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: 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: Total" +swath,550.6928 +ovenb,413.8244 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..622378d394 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +whimb,409.8725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..ca72832e78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: 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: Total" +swath,550.6928 +ovenb,413.8244 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..622378d394 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +whimb,409.8725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..ca72832e78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: 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: Total" +swath,550.6928 +ovenb,413.8244 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..622378d394 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +whimb,409.8725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..c41419e2a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +meapi,12206.3533 +legsh,8590.5158 +aytinis,7416.4597 +garwa,2773.5564 +sarwa,2004.2244 +reebu,1757.5094 +crane,1622.8178 +caspl,1593.1472 +smew1,1532.5833 +sancr,1494.1239 +turdo,1423.1372 +duswa,1092.1644 +shttr,1026.5661 +sposa,1014.8492 +chaff,960.0578 +yebsa,895.6697 +egygo,883.8200 +velsc,873.5178 +siski,840.4200 +grath,802.6467 +swath,550.6928 +pibgr,500.2031 +whtsp,458.9083 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +ovenb,413.8244 +whimb,409.8725 +pereg,372.7167 +ferdu,350.0389 +evegr,282.2633 +noror,273.8464 +boowa,251.4806 +ybsbu,232.4297 +shag1,227.8806 +yebwa,180.5611 +sante,174.8775 +dunli,150.5339 +sogsh,135.7597 +whtpl,132.4094 +vertera,120.6086 +henha,100.8417 +yebbu,100.6989 +jackd,87.3878 +alpsw,76.3467 +mamwa,72.0069 +litau,70.2769 +lanhach,62.2542 +blhbu,59.8692 +grgsh,54.6383 +rolle,54.6022 +gloib,48.0067 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +litst,3.6653 +allga,2.3450 +crama,1.1269 +savsp,0.6342 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..ca72832e78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Total: 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: Total" +swath,550.6928 +ovenb,413.8244 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..622378d394 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Total" +whimb,409.8725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..eec0e9ee9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,8.6036,0,0,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-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-25,0,0,0,0,0,0,0,0,6.3481,0,0,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-26,0,0,0,0,0,0,13.5208,0,48.0000,0,0,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-27,0,3.2167,0,311.6178,0,0,120.0000,0,67.3094,0,0,0,81.3556,48.0000,0,69.8267,0,30.3978,0,0,249.7600,123.9850,0,0,0,0,0,0,0,19.7467,0,0,0,0,24.0000,19.9056,8.5497,0,0,24.0000,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,144.4211,99.9533,292.0297,0,0,0,214.6856,48.0000,0,176.3833,0,192.0000,0,0,288.0000,220.6683,0,0,0,0,43.9492,0,28.0381,96.0000,0,0,0,0,24.0000,24.0000,24.0000,21.4100,0,24.0000,0,0,15.1192,0,0,0,0,0,24.0000,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,12583.2597,162.8525,3901.6422,4127.8400,0,2472.0000,477.7553,453.1217,356.2911,152.8733,0,485.1050,560.2247,67.1983,0,246.3689,40.6164,192.0000,138.9664,102.7444,288.0000,288.0000,3.6200,30.9803,233.0019,0,138.9556,29.7878,216.0000,96.0000,0,117.1903,15.0097,26.9772,24.0000,24.0000,42.5322,56.8025,129.7778,39.1372,0,0,72.0000,0,10.0983,37.9494,0,0,24.0000,10.4008,22.2422,0,0,0,24.0000,0,7.1736,0,0,0,0,0,0,0,0,0 +2016-12-30,21766.1511,6346.5897,5473.3125,3907.9711,3055.8617,2472.0000,378.4569,506.1717,461.5083,510.5000,0,914.9350,473.6558,380.4372,617.0356,230.8942,572.9283,192.0000,291.6108,575.7072,47.7578,152.2233,67.3875,450.0547,267.2011,0,178.1372,143.8583,160.0869,96.0000,56.9267,122.3403,120.0000,255.2861,24.0000,175.8633,108.4533,85.7392,50.3500,7.1367,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,43.3692,3.2589,19.2856,13.6064,15.8617,13.9453,40.8392,7.5778,19.3061,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,3.0522,2.3450,1.1269,0.2208,0.0650 +2016-12-31,20518.0064,8276.1947,2761.8142,1833.6711,5534.6542,630.7428,1112.6033,865.8689,329.0272,569.9600,3.1458,132.5433,164.2022,372.1011,475.1289,179.7156,380.1389,192.0000,323.7333,205.3683,0,55.5433,714.0100,69.6578,0,299.0033,97.5139,144.0000,24.0000,82.8536,195.8258,120.0000,120.0000,0,24.4508,7.7117,48.8944,58.9750,0,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,44.0186,65.9689,0,45.3169,3.8883,45.9239,13.7992,42.7433,0,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0.6131,0,0,0.3878,0 +2017-01-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..eec0e9ee9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,8.6036,0,0,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-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-25,0,0,0,0,0,0,0,0,6.3481,0,0,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-26,0,0,0,0,0,0,13.5208,0,48.0000,0,0,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 +2016-12-27,0,3.2167,0,311.6178,0,0,120.0000,0,67.3094,0,0,0,81.3556,48.0000,0,69.8267,0,30.3978,0,0,249.7600,123.9850,0,0,0,0,0,0,0,19.7467,0,0,0,0,24.0000,19.9056,8.5497,0,0,24.0000,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,144.4211,99.9533,292.0297,0,0,0,214.6856,48.0000,0,176.3833,0,192.0000,0,0,288.0000,220.6683,0,0,0,0,43.9492,0,28.0381,96.0000,0,0,0,0,24.0000,24.0000,24.0000,21.4100,0,24.0000,0,0,15.1192,0,0,0,0,0,24.0000,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,12583.2597,162.8525,3901.6422,4127.8400,0,2472.0000,477.7553,453.1217,356.2911,152.8733,0,485.1050,560.2247,67.1983,0,246.3689,40.6164,192.0000,138.9664,102.7444,288.0000,288.0000,3.6200,30.9803,233.0019,0,138.9556,29.7878,216.0000,96.0000,0,117.1903,15.0097,26.9772,24.0000,24.0000,42.5322,56.8025,129.7778,39.1372,0,0,72.0000,0,10.0983,37.9494,0,0,24.0000,10.4008,22.2422,0,0,0,24.0000,0,7.1736,0,0,0,0,0,0,0,0,0 +2016-12-30,21766.1511,6346.5897,5473.3125,3907.9711,3055.8617,2472.0000,378.4569,506.1717,461.5083,510.5000,0,914.9350,473.6558,380.4372,617.0356,230.8942,572.9283,192.0000,291.6108,575.7072,47.7578,152.2233,67.3875,450.0547,267.2011,0,178.1372,143.8583,160.0869,96.0000,56.9267,122.3403,120.0000,255.2861,24.0000,175.8633,108.4533,85.7392,50.3500,7.1367,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,43.3692,3.2589,19.2856,13.6064,15.8617,13.9453,40.8392,7.5778,19.3061,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,3.0522,2.3450,1.1269,0.2208,0.0650 +2016-12-31,20518.0064,8276.1947,2761.8142,1833.6711,5534.6542,630.7428,1112.6033,865.8689,329.0272,569.9600,3.1458,132.5433,164.2022,372.1011,475.1289,179.7156,380.1389,192.0000,323.7333,205.3683,0,55.5433,714.0100,69.6578,0,299.0033,97.5139,144.0000,24.0000,82.8536,195.8258,120.0000,120.0000,0,24.4508,7.7117,48.8944,58.9750,0,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,44.0186,65.9689,0,45.3169,3.8883,45.9239,13.7992,42.7433,0,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0.6131,0,0,0.3878,0 +2017-01-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..e01510845b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" +2016-12-23,0,0,0,8.6036,0,0 +2016-12-24,0,0,0,24.0000,0,0 +2016-12-25,0,0,0,24.0000,0,0 +2016-12-26,0,0,0,24.0000,0,0 +2016-12-27,0,19.7467,8.5497,24.0000,0,0 +2016-12-28,0,96.0000,24.0000,24.0000,0,0 +2016-12-29,30.9803,96.0000,42.5322,39.1372,0,0 +2016-12-30,450.0547,96.0000,108.4533,7.1367,3.0522,0.2208 +2016-12-31,69.6578,82.8536,48.8944,0,0.6131,0.3878 +2017-01-01,0,23.2242,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..80d66a5e91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Node Hours: Total" +2016-12-30,56.9267 +2016-12-31,195.8258 +2017-01-01,157.1200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..82f6eb8eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +2016-12,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +2017-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..82f6eb8eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +2016-12,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +2017-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..4c2438aced --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" +2016-12,550.6928,390.6003,232.4297,174.8775,3.6653,0.6086 +2017-01,0,23.2242,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..7c4a2424b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Node Hours: Total" +2016-12,252.7525 +2017-01,157.1200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..c1e81de069 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +"2016 Q4",55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +"2017 Q1",11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..c1e81de069 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +"2016 Q4",55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +"2017 Q1",11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..aaf88a5bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" +"2016 Q4",550.6928,390.6003,232.4297,174.8775,3.6653,0.6086 +"2017 Q1",0,23.2242,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..d2212692ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Node Hours: Total" +"2016 Q4",252.7525 +"2017 Q1",157.1200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..04a569cade --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +2016,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +2017,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..04a569cade --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" +2016,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 +2017,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..789c00013b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" +2016,550.6928,390.6003,232.4297,174.8775,3.6653,0.6086 +2017,0,23.2242,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..1fd1754397 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Node Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Node Hours: Total" +2016,252.7525 +2017,157.1200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..bc3af6b968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +ovenb,94.3467 +sante,28.5511 +ybsbu,12.9547 +litst,0.9917 +savsp,0.3653 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..18dee34f96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +whimb,32.1656 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..bc3af6b968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +ovenb,94.3467 +sante,28.5511 +ybsbu,12.9547 +litst,0.9917 +savsp,0.3653 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..18dee34f96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +whimb,32.1656 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..bc3af6b968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +ovenb,94.3467 +sante,28.5511 +ybsbu,12.9547 +litst,0.9917 +savsp,0.3653 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..18dee34f96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +whimb,32.1656 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..50b4473100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +honbu,112848.1472 +shttr,5136.3181 +sancr,5049.6606 +caspl,4056.0075 +legsh,3927.5247 +dunli,3030.4719 +grath,2704.6794 +meapi,1959.9103 +grgsh,1951.8286 +moorh,544.5967 +reebu,369.2550 +sposa,321.4444 +boowa,122.8625 +siski,112.9622 +yebbu,105.4822 +ovenb,94.3467 +yebsa,91.5858 +velsc,78.7900 +yebwa,62.0436 +misth,48.5308 +pereg,39.1408 +garwa,36.5339 +whimb,32.1656 +sarwa,30.8219 +crane,30.1542 +sante,28.5511 +turdo,28.0833 +vertera,20.6675 +duswa,20.0331 +whtsp,19.3700 +lapwi,17.6803 +shag1,14.9994 +smew1,13.9250 +ybsbu,12.9547 +sogsh,12.6592 +whtpl,11.1744 +hoowa,6.4889 +henha,6.4781 +evegr,1.9761 +corsh,1.2531 +noror,1.2361 +litst,0.9917 +pibgr,0.5497 +savsp,0.3653 +litau,0.1747 +rolle,0.1614 +blhbu,0.1408 +allga,0.0978 +ferdu,0.0311 +lanhach,0.0286 +crama,0.0147 +ribgu,0.0075 +egygo,0.0047 +proubis,0.0039 +coot1,0.0036 +categ,0.0031 +alpsw,0.0025 +aytinis,0.0017 +field,0.0017 +gloib,0.0003 +lesre,0.0003 +chaff,0.0000 +jackd,0.0000 +mamwa,0.0000 +relpa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..bc3af6b968 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +swath,163339.9808 +ovenb,94.3467 +sante,28.5511 +ybsbu,12.9547 +litst,0.9917 +savsp,0.3653 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..18dee34f96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wait Hours: Total" +whimb,32.1656 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..353bde3f8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +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,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,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,9.5964,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-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.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-25,0,0,0,0,0,0,0,0,0,0,0,110.8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0633,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-26,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0033,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-27,0,0.0000,1367.4053,93.9833,0,0,0,0,311.1344,0,0,0.0289,0,50.8225,76.0861,0,0.0025,0,78.7886,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0.0000,0 +2016-12-28,0,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,20.5744,0,0.0000,36.8761,0,0.0000,0,0.0000,0,47.7519,0,18.4800,0,8.2136,0,0.0000,0.0000,0,0,0,10.5775,13.6594,0,0.0000,0,11.1744,2.3317,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0,0.0003,0,0.0000,0,0.0000,0 +2016-12-29,2680.9856,1973.6483,626.5147,288.5578,0,0,0,0.0044,334.2142,0,32.6300,43.9522,9.5844,0.0000,0.0000,0.0017,0.0000,0.0014,0.0000,25.7286,0.0000,11.6853,17.8439,0,1.1997,10.4372,18.9547,0.2917,0,0,0,3.9286,0.0011,13.9250,4.8561,0,0.0000,0.3786,0.0894,0.7922,1.0583,0.0000,0,0.5497,0,0.0000,0,0,0,0.0311,0.0225,0,0,0.0025,0,0,0,0,0.0000,0,0.0000,0.0003,0.0000,0,0.0000,0 +2016-12-30,160658.9953,26564.1575,331.7789,2269.2953,0,1857.6733,1170.3947,54.0756,0.0000,1435.0258,221.0947,77.6936,311.8600,72.0400,0.0000,105.4806,0.0000,14.4292,0.0014,0.0000,0.7789,27.4556,0.0000,17.2619,15.6439,7.3803,0.0000,3.3314,11.9272,20.0331,0,2.2686,1.3369,0.0000,8.0983,12.1381,0.0000,2.4739,6.3886,1.1839,0.0400,0.0000,0.0258,0.0000,0.1269,0.0000,0.1611,0.0575,0.0978,0.0000,0.0028,0.0147,0.0075,0.0022,0.0014,0.0008,0.0006,0.0008,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,64478.3575,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0000,516.8028,277.8381,83.4647,0.0000,0.0000,0.0000,0.0000,94.3442,77.1553,0,0,0.0000,0.0000,0.2067,7.6042,3.4903,0.3128,0,13.7414,8.7356,0.0000,19.3700,0.5711,0.0019,0.0000,0.0000,0.5147,0,1.3047,0.0000,0,0.0000,0.0011,0.9658,0,0.2317,0.1747,0.0000,0.0833,0,0.0000,0.0022,0,0.0000,0.0000,0.0011,0.0011,0.0008,0.0006,0.0000,0.0008,0,0.0000,0.0000,0.0000,0,0 +2017-01-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..353bde3f8c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +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,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,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,9.5964,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-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.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-25,0,0,0,0,0,0,0,0,0,0,0,110.8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0633,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-26,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0033,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-27,0,0.0000,1367.4053,93.9833,0,0,0,0,311.1344,0,0,0.0289,0,50.8225,76.0861,0,0.0025,0,78.7886,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0.0000,0 +2016-12-28,0,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,20.5744,0,0.0000,36.8761,0,0.0000,0,0.0000,0,47.7519,0,18.4800,0,8.2136,0,0.0000,0.0000,0,0,0,10.5775,13.6594,0,0.0000,0,11.1744,2.3317,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0,0.0003,0,0.0000,0,0.0000,0 +2016-12-29,2680.9856,1973.6483,626.5147,288.5578,0,0,0,0.0044,334.2142,0,32.6300,43.9522,9.5844,0.0000,0.0000,0.0017,0.0000,0.0014,0.0000,25.7286,0.0000,11.6853,17.8439,0,1.1997,10.4372,18.9547,0.2917,0,0,0,3.9286,0.0011,13.9250,4.8561,0,0.0000,0.3786,0.0894,0.7922,1.0583,0.0000,0,0.5497,0,0.0000,0,0,0,0.0311,0.0225,0,0,0.0025,0,0,0,0,0.0000,0,0.0000,0.0003,0.0000,0,0.0000,0 +2016-12-30,160658.9953,26564.1575,331.7789,2269.2953,0,1857.6733,1170.3947,54.0756,0.0000,1435.0258,221.0947,77.6936,311.8600,72.0400,0.0000,105.4806,0.0000,14.4292,0.0014,0.0000,0.7789,27.4556,0.0000,17.2619,15.6439,7.3803,0.0000,3.3314,11.9272,20.0331,0,2.2686,1.3369,0.0000,8.0983,12.1381,0.0000,2.4739,6.3886,1.1839,0.0400,0.0000,0.0258,0.0000,0.1269,0.0000,0.1611,0.0575,0.0978,0.0000,0.0028,0.0147,0.0075,0.0022,0.0014,0.0008,0.0006,0.0008,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,64478.3575,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0000,516.8028,277.8381,83.4647,0.0000,0.0000,0.0000,0.0000,94.3442,77.1553,0,0,0.0000,0.0000,0.2067,7.6042,3.4903,0.3128,0,13.7414,8.7356,0.0000,19.3700,0.5711,0.0019,0.0000,0.0000,0.5147,0,1.3047,0.0000,0,0.0000,0.0011,0.9658,0,0.2317,0.1747,0.0000,0.0833,0,0.0000,0.0022,0,0.0000,0.0000,0.0011,0.0011,0.0008,0.0006,0.0000,0.0008,0,0.0000,0.0000,0.0000,0,0 +2017-01-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..abd7bfb01b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" +2016-12-23,0,0,9.5964,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0025,0.0000,0.0003,0,0 +2016-12-28,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,2680.9856,0.0000,18.9547,4.8561,0,0 +2016-12-30,160658.9953,0.0000,0.0000,8.0983,0.0258,0.1269 +2016-12-31,0.0000,94.3442,0,0.0000,0.9658,0.2317 +2017-01-01,0,0.0000,0,0,0,0.0067 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..3338a1e736 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Wait Hours: Total" +2016-12-30,17.2619 +2016-12-31,7.6042 +2017-01-01,7.2994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..924f6dc24a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +2016-12,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +2017-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..924f6dc24a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +2016-12,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +2017-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..ac71d184c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" +2016-12,163339.9808,94.3467,28.5511,12.9547,0.9917,0.3586 +2017-01,0,0.0000,0,0,0,0.0067 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..7698b04393 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Wait Hours: Total" +2016-12,24.8661 +2017-01,7.2994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..788e6ecc31 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +"2016 Q4",163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..788e6ecc31 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +"2016 Q4",163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..609556edc6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" +"2016 Q4",163339.9808,94.3467,28.5511,12.9547,0.9917,0.3586 +"2017 Q1",0,0.0000,0,0,0,0.0067 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..9670dd3aa5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Wait Hours: Total" +"2016 Q4",24.8661 +"2017 Q1",7.2994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..bdea4f1428 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +2016,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +2017,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..bdea4f1428 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" +2016,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 +2017,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..14f4f9dad4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" +2016,163339.9808,94.3467,28.5511,12.9547,0.9917,0.3586 +2017,0,0.0000,0,0,0,0.0067 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..bba8931dd3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Wait Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Wait Hours: Total" +2016,24.8661 +2017,7.2994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..edf66096e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +ovenb,413.8244 +swath,405.3619 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..b5768df9d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +whimb,86.4775 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..edf66096e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +ovenb,413.8244 +swath,405.3619 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..b5768df9d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +whimb,86.4775 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..edf66096e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +ovenb,413.8244 +swath,405.3619 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..b5768df9d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +whimb,86.4775 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..82e5be83a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +moorh,67004.1206 +honbu,15603.5267 +lapwi,15354.0758 +legsh,8590.5158 +garwa,2773.5564 +reebu,1757.5094 +caspl,1593.1472 +meapi,1525.7942 +turdo,1423.1372 +sancr,1071.2075 +shttr,1026.5383 +sposa,1014.8492 +yebsa,895.6697 +grath,802.6467 +aytinis,648.0389 +pibgr,500.2031 +hoowa,458.5558 +corsh,438.0306 +misth,433.1708 +sarwa,423.6314 +ovenb,413.8244 +swath,405.3619 +noror,273.6331 +smew1,255.4306 +boowa,251.4806 +ybsbu,232.4297 +whtsp,229.4542 +shag1,227.8806 +crane,202.8522 +sante,174.8775 +siski,140.0700 +sogsh,135.7597 +whtpl,132.4094 +egygo,126.2600 +chaff,120.0072 +henha,100.8417 +jackd,87.3878 +whimb,86.4775 +pereg,74.5433 +velsc,74.3633 +mamwa,72.0069 +litau,70.2769 +ferdu,70.0078 +lanhach,62.2542 +blhbu,59.8692 +vertera,56.2867 +grgsh,54.6383 +yebbu,50.3497 +gloib,48.0067 +duswa,46.3125 +dunli,45.2333 +field,43.1219 +lesre,37.7958 +proubis,34.9861 +ribgu,31.9097 +coot1,23.3244 +categ,23.3156 +evegr,20.1617 +rolle,18.3367 +alpsw,10.5622 +yebwa,9.0281 +litst,3.6653 +crama,1.1269 +savsp,0.6342 +allga,0.2606 +relpa,0.0650 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..edf66096e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +ovenb,413.8244 +swath,405.3619 +ybsbu,232.4297 +sante,174.8775 +litst,3.6653 +savsp,0.6342 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..b5768df9d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Wall Hours: Total" +whimb,86.4775 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..680a9a9129 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,8.6036,0,0,0,0,0,0,0,0,0,0,0,0,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-24,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,6.3481,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,13.5208,48.0000,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.2167,0,0,120.0000,67.3094,0,38.9522,48.0000,40.6778,69.8267,0,0,0,0,0,0,0,0,0,19.7467,0,24.0000,0,19.9056,8.5497,0,0,0,24.0000,20.6642,0,0,0,3.7997,0,0,0,0,20.8133,4.7214,0,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-28,953.0369,24.0000,1962.8444,0,144.4211,292.0297,0,228.4575,48.0000,145.2183,176.3833,0,0,0,160.7689,0,43.9492,0,28.0381,24.9883,96.0000,0,24.0000,0,24.0000,24.0000,0,21.4100,0,24.0000,36.7781,0,15.1192,0,24.0000,0,0,0,0,24.0000,24.0000,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,12583.2597,162.8525,3901.6422,0,477.7553,356.2911,0,515.9800,67.1983,332.3561,246.3689,40.6164,138.9664,3.6200,216.0000,233.0019,138.9556,29.7878,216.0000,117.1092,96.0000,9.8928,24.0000,80.8508,24.0000,42.5322,0,56.8025,19.1092,39.1372,48.0000,0,72.0000,14.6778,24.0000,10.0983,0,0,23.4381,24.0000,24.0000,10.4008,3.0019,22.2422,0,0,0,18.9747,24.0000,0,0,0,7.1736,0,0,0,0,1.9269,0,0,6.4889,0,0,0,0,0 +2016-12-30,21766.1511,6346.5897,5473.3125,3055.8617,378.4569,461.5083,0,488.4964,380.4372,388.7531,230.8664,572.9283,291.6108,67.3875,216.0000,267.2011,178.1372,143.8583,160.0869,134.0756,96.0000,378.0547,24.0000,152.4892,175.8633,108.4533,0,85.7392,63.8125,7.1367,25.3706,108.1047,45.2903,82.2439,24.0000,82.1119,43.3692,9.4878,24.4681,5.5500,19.2856,13.6064,24.0000,15.8617,13.9453,9.6922,40.8392,24.0006,19.3061,29.3436,12.8208,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,18.2347,4.3656,0.5364,2.5175,3.0522,1.1269,0.2208,0.2606,0.0650 +2016-12-31,20518.0064,8276.1947,2761.8142,5534.6542,1112.6033,329.0272,3.1458,229.2089,372.1011,164.2022,179.7156,380.1389,323.7333,714.0100,55.2700,0,97.5139,144.0000,24.0000,129.0269,82.8536,17.4144,24.2375,22.0906,7.7117,48.8944,149.5017,58.9750,71.2450,0,9.2572,25.9131,0,29.3383,24.0000,8.6314,44.0186,42.3756,24.0000,0,0,45.3169,24.0000,3.8883,45.9239,38.8869,13.7992,7.3744,0,16.9689,1.4844,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0,9.6900,8.2461,0,0.6131,0,0.3878,0,0 +2017-01-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..680a9a9129 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +2016-12-22,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,8.6036,0,0,0,0,0,0,0,0,0,0,0,0,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-24,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,6.3481,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,13.5208,48.0000,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.2167,0,0,120.0000,67.3094,0,38.9522,48.0000,40.6778,69.8267,0,0,0,0,0,0,0,0,0,19.7467,0,24.0000,0,19.9056,8.5497,0,0,0,24.0000,20.6642,0,0,0,3.7997,0,0,0,0,20.8133,4.7214,0,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-28,953.0369,24.0000,1962.8444,0,144.4211,292.0297,0,228.4575,48.0000,145.2183,176.3833,0,0,0,160.7689,0,43.9492,0,28.0381,24.9883,96.0000,0,24.0000,0,24.0000,24.0000,0,21.4100,0,24.0000,36.7781,0,15.1192,0,24.0000,0,0,0,0,24.0000,24.0000,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,12583.2597,162.8525,3901.6422,0,477.7553,356.2911,0,515.9800,67.1983,332.3561,246.3689,40.6164,138.9664,3.6200,216.0000,233.0019,138.9556,29.7878,216.0000,117.1092,96.0000,9.8928,24.0000,80.8508,24.0000,42.5322,0,56.8025,19.1092,39.1372,48.0000,0,72.0000,14.6778,24.0000,10.0983,0,0,23.4381,24.0000,24.0000,10.4008,3.0019,22.2422,0,0,0,18.9747,24.0000,0,0,0,7.1736,0,0,0,0,1.9269,0,0,6.4889,0,0,0,0,0 +2016-12-30,21766.1511,6346.5897,5473.3125,3055.8617,378.4569,461.5083,0,488.4964,380.4372,388.7531,230.8664,572.9283,291.6108,67.3875,216.0000,267.2011,178.1372,143.8583,160.0869,134.0756,96.0000,378.0547,24.0000,152.4892,175.8633,108.4533,0,85.7392,63.8125,7.1367,25.3706,108.1047,45.2903,82.2439,24.0000,82.1119,43.3692,9.4878,24.4681,5.5500,19.2856,13.6064,24.0000,15.8617,13.9453,9.6922,40.8392,24.0006,19.3061,29.3436,12.8208,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,18.2347,4.3656,0.5364,2.5175,3.0522,1.1269,0.2208,0.2606,0.0650 +2016-12-31,20518.0064,8276.1947,2761.8142,5534.6542,1112.6033,329.0272,3.1458,229.2089,372.1011,164.2022,179.7156,380.1389,323.7333,714.0100,55.2700,0,97.5139,144.0000,24.0000,129.0269,82.8536,17.4144,24.2375,22.0906,7.7117,48.8944,149.5017,58.9750,71.2450,0,9.2572,25.9131,0,29.3383,24.0000,8.6314,44.0186,42.3756,24.0000,0,0,45.3169,24.0000,3.8883,45.9239,38.8869,13.7992,7.3744,0,16.9689,1.4844,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0,9.6900,8.2461,0,0.6131,0,0.3878,0,0 +2017-01-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..a573e2ee2c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" +2016-12-23,0,0,0,8.6036,0,0 +2016-12-24,0,0,0,24.0000,0,0 +2016-12-25,0,0,0,24.0000,0,0 +2016-12-26,0,0,0,24.0000,0,0 +2016-12-27,19.7467,0,8.5497,24.0000,0,0 +2016-12-28,96.0000,0,24.0000,24.0000,0,0 +2016-12-29,96.0000,9.8928,42.5322,39.1372,0,0 +2016-12-30,96.0000,378.0547,108.4533,7.1367,3.0522,0.2208 +2016-12-31,82.8536,17.4144,48.8944,0,0.6131,0.3878 +2017-01-01,23.2242,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..84645922b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Wall Hours: Total" +2016-12-30,9.4878 +2016-12-31,42.3756 +2017-01-01,34.6142 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..ba01402dbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +2016-12,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +2017-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..ba01402dbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +2016-12,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +2017-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..463937cf61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" +2016-12,390.6003,405.3619,232.4297,174.8775,3.6653,0.6086 +2017-01,23.2242,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..64488193cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Wall Hours: Total" +2016-12,51.8633 +2017-01,34.6142 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..18885b5efc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +"2016 Q4",55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +"2017 Q1",11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..18885b5efc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +"2016 Q4",55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +"2017 Q1",11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..115ef8945d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" +"2016 Q4",390.6003,405.3619,232.4297,174.8775,3.6653,0.6086 +"2017 Q1",23.2242,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..37d516bd45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Wall Hours: Total" +"2016 Q4",51.8633 +"2017 Q1",34.6142 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..56b37159a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +2016,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +2017,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..56b37159a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" +2016,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 +2017,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..b47ba80c03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" +2016,390.6003,405.3619,232.4297,174.8775,3.6653,0.6086 +2017,23.2242,0,0,0,0,0.0256 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..4c6e08a745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Wall Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Wall Hours: Total" +2016,51.8633 +2017,34.6142 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv new file mode 100644 index 0000000000..fe8426d87f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +aytinis,20.6013 +meapi,13.8709 +moorh,6.3451 +garwa,5.1824 +honbu,3.5570 +egygo,2.4551 +crane,1.8441 +smew1,1.7416 +lapwi,1.4540 +reebu,1.3185 +duswa,1.2411 +turdo,1.1885 +sposa,1.1532 +caspl,1.1064 +sancr,0.8515 +legsh,0.8135 +siski,0.7959 +sarwa,0.7889 +shttr,0.7772 +chaff,0.7273 +ovenb,0.6270 +velsc,0.4999 +whtsp,0.4983 +misth,0.4922 +whimb,0.4658 +pereg,0.4235 +ferdu,0.3978 +hoowa,0.3658 +yebsa,0.3393 +corsh,0.3318 +noror,0.3030 +shag1,0.2168 +swath,0.2144 +whtpl,0.1505 +ybsbu,0.1489 +dunli,0.1438 +gloib,0.1429 +vertera,0.1370 +yebwa,0.1368 +evegr,0.1069 +boowa,0.0967 +grath,0.0966 +yebbu,0.0954 +litau,0.0590 +alpsw,0.0578 +rolle,0.0559 +pibgr,0.0474 +field,0.0327 +lanhach,0.0247 +lesre,0.0225 +sante,0.0166 +jackd,0.0130 +sogsh,0.0129 +henha,0.0095 +mamwa,0.0068 +proubis,0.0061 +blhbu,0.0057 +grgsh,0.0052 +categ,0.0040 +coot1,0.0040 +crama,0.0034 +ribgu,0.0030 +allga,0.0027 +litst,0.0023 +relpa,0.0001 +savsp,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv new file mode 100644 index 0000000000..fe8426d87f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +aytinis,20.6013 +meapi,13.8709 +moorh,6.3451 +garwa,5.1824 +honbu,3.5570 +egygo,2.4551 +crane,1.8441 +smew1,1.7416 +lapwi,1.4540 +reebu,1.3185 +duswa,1.2411 +turdo,1.1885 +sposa,1.1532 +caspl,1.1064 +sancr,0.8515 +legsh,0.8135 +siski,0.7959 +sarwa,0.7889 +shttr,0.7772 +chaff,0.7273 +ovenb,0.6270 +velsc,0.4999 +whtsp,0.4983 +misth,0.4922 +whimb,0.4658 +pereg,0.4235 +ferdu,0.3978 +hoowa,0.3658 +yebsa,0.3393 +corsh,0.3318 +noror,0.3030 +shag1,0.2168 +swath,0.2144 +whtpl,0.1505 +ybsbu,0.1489 +dunli,0.1438 +gloib,0.1429 +vertera,0.1370 +yebwa,0.1368 +evegr,0.1069 +boowa,0.0967 +grath,0.0966 +yebbu,0.0954 +litau,0.0590 +alpsw,0.0578 +rolle,0.0559 +pibgr,0.0474 +field,0.0327 +lanhach,0.0247 +lesre,0.0225 +sante,0.0166 +jackd,0.0130 +sogsh,0.0129 +henha,0.0095 +mamwa,0.0068 +proubis,0.0061 +blhbu,0.0057 +grgsh,0.0052 +categ,0.0040 +coot1,0.0040 +crama,0.0034 +ribgu,0.0030 +allga,0.0027 +litst,0.0023 +relpa,0.0001 +savsp,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv new file mode 100644 index 0000000000..9458fbd987 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +ovenb,0.6270 +swath,0.2144 +ybsbu,0.1489 +sante,0.0166 +litst,0.0023 +savsp,0.0001 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-usr.csv new file mode 100644 index 0000000000..2211c89854 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +whimb,0.4658 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv new file mode 100644 index 0000000000..ebc301163e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +aytinis,3.4335 +meapi,2.9918 +moorh,1.3685 +garwa,0.9805 +honbu,0.7905 +egygo,0.4092 +crane,0.3977 +smew1,0.3756 +lapwi,0.3136 +turdo,0.3113 +reebu,0.2862 +duswa,0.2677 +sposa,0.2487 +caspl,0.2263 +chaff,0.1951 +sarwa,0.1866 +sancr,0.1848 +legsh,0.1755 +siski,0.1717 +shttr,0.1676 +ovenb,0.1642 +velsc,0.1183 +whtsp,0.1075 +misth,0.1062 +whimb,0.1005 +pereg,0.0914 +yebsa,0.0889 +ferdu,0.0858 +noror,0.0813 +hoowa,0.0789 +corsh,0.0716 +shag1,0.0513 +swath,0.0507 +whtpl,0.0325 +ybsbu,0.0325 +dunli,0.0310 +vertera,0.0296 +yebwa,0.0295 +gloib,0.0270 +evegr,0.0231 +grath,0.0228 +yebbu,0.0226 +boowa,0.0209 +alpsw,0.0155 +litau,0.0127 +rolle,0.0121 +pibgr,0.0102 +field,0.0086 +lanhach,0.0058 +lesre,0.0043 +sante,0.0043 +sogsh,0.0028 +jackd,0.0025 +henha,0.0021 +mamwa,0.0015 +blhbu,0.0012 +grgsh,0.0011 +proubis,0.0010 +categ,0.0007 +coot1,0.0007 +ribgu,0.0007 +allga,0.0006 +crama,0.0006 +litst,0.0006 +relpa,0.0000 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv new file mode 100644 index 0000000000..ebc301163e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +aytinis,3.4335 +meapi,2.9918 +moorh,1.3685 +garwa,0.9805 +honbu,0.7905 +egygo,0.4092 +crane,0.3977 +smew1,0.3756 +lapwi,0.3136 +turdo,0.3113 +reebu,0.2862 +duswa,0.2677 +sposa,0.2487 +caspl,0.2263 +chaff,0.1951 +sarwa,0.1866 +sancr,0.1848 +legsh,0.1755 +siski,0.1717 +shttr,0.1676 +ovenb,0.1642 +velsc,0.1183 +whtsp,0.1075 +misth,0.1062 +whimb,0.1005 +pereg,0.0914 +yebsa,0.0889 +ferdu,0.0858 +noror,0.0813 +hoowa,0.0789 +corsh,0.0716 +shag1,0.0513 +swath,0.0507 +whtpl,0.0325 +ybsbu,0.0325 +dunli,0.0310 +vertera,0.0296 +yebwa,0.0295 +gloib,0.0270 +evegr,0.0231 +grath,0.0228 +yebbu,0.0226 +boowa,0.0209 +alpsw,0.0155 +litau,0.0127 +rolle,0.0121 +pibgr,0.0102 +field,0.0086 +lanhach,0.0058 +lesre,0.0043 +sante,0.0043 +sogsh,0.0028 +jackd,0.0025 +henha,0.0021 +mamwa,0.0015 +blhbu,0.0012 +grgsh,0.0011 +proubis,0.0010 +categ,0.0007 +coot1,0.0007 +ribgu,0.0007 +allga,0.0006 +crama,0.0006 +litst,0.0006 +relpa,0.0000 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv new file mode 100644 index 0000000000..18e18b0d5e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +ovenb,0.1642 +swath,0.0507 +ybsbu,0.0325 +sante,0.0043 +litst,0.0006 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-usr.csv new file mode 100644 index 0000000000..915f82f218 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +whimb,0.1005 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..71fc1c92bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +meapi,1.3871 +aytinis,1.3011 +moorh,0.6345 +garwa,0.3779 +honbu,0.3259 +crane,0.1844 +smew1,0.1742 +egygo,0.1551 +lapwi,0.1454 +turdo,0.1294 +duswa,0.1241 +reebu,0.1206 +sposa,0.1153 +caspl,0.0967 +sarwa,0.0823 +legsh,0.0813 +chaff,0.0800 +siski,0.0796 +sancr,0.0779 +shttr,0.0777 +ovenb,0.0683 +velsc,0.0521 +whtsp,0.0498 +misth,0.0492 +whimb,0.0466 +pereg,0.0424 +ferdu,0.0398 +yebsa,0.0370 +hoowa,0.0366 +noror,0.0333 +corsh,0.0332 +shag1,0.0226 +swath,0.0224 +whtpl,0.0150 +dunli,0.0144 +vertera,0.0137 +yebwa,0.0137 +ybsbu,0.0129 +evegr,0.0107 +gloib,0.0104 +grath,0.0101 +yebbu,0.0099 +boowa,0.0097 +alpsw,0.0064 +litau,0.0059 +rolle,0.0056 +pibgr,0.0047 +field,0.0036 +lanhach,0.0026 +sante,0.0018 +lesre,0.0016 +sogsh,0.0013 +henha,0.0010 +jackd,0.0009 +mamwa,0.0007 +blhbu,0.0006 +grgsh,0.0005 +proubis,0.0004 +allga,0.0003 +categ,0.0003 +coot1,0.0003 +ribgu,0.0003 +crama,0.0002 +litst,0.0002 +relpa,0.0000 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..71fc1c92bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +meapi,1.3871 +aytinis,1.3011 +moorh,0.6345 +garwa,0.3779 +honbu,0.3259 +crane,0.1844 +smew1,0.1742 +egygo,0.1551 +lapwi,0.1454 +turdo,0.1294 +duswa,0.1241 +reebu,0.1206 +sposa,0.1153 +caspl,0.0967 +sarwa,0.0823 +legsh,0.0813 +chaff,0.0800 +siski,0.0796 +sancr,0.0779 +shttr,0.0777 +ovenb,0.0683 +velsc,0.0521 +whtsp,0.0498 +misth,0.0492 +whimb,0.0466 +pereg,0.0424 +ferdu,0.0398 +yebsa,0.0370 +hoowa,0.0366 +noror,0.0333 +corsh,0.0332 +shag1,0.0226 +swath,0.0224 +whtpl,0.0150 +dunli,0.0144 +vertera,0.0137 +yebwa,0.0137 +ybsbu,0.0129 +evegr,0.0107 +gloib,0.0104 +grath,0.0101 +yebbu,0.0099 +boowa,0.0097 +alpsw,0.0064 +litau,0.0059 +rolle,0.0056 +pibgr,0.0047 +field,0.0036 +lanhach,0.0026 +sante,0.0018 +lesre,0.0016 +sogsh,0.0013 +henha,0.0010 +jackd,0.0009 +mamwa,0.0007 +blhbu,0.0006 +grgsh,0.0005 +proubis,0.0004 +allga,0.0003 +categ,0.0003 +coot1,0.0003 +ribgu,0.0003 +crama,0.0002 +litst,0.0002 +relpa,0.0000 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..07d2d3435c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +ovenb,0.0683 +swath,0.0224 +ybsbu,0.0129 +sante,0.0018 +litst,0.0002 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..895fbae7c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +whimb,0.0466 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv new file mode 100644 index 0000000000..ae9ee148ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +meapi,0.3963 +aytinis,0.3341 +moorh,0.1813 +garwa,0.0978 +honbu,0.0872 +crane,0.0527 +smew1,0.0498 +lapwi,0.0415 +egygo,0.0398 +duswa,0.0355 +turdo,0.0348 +sposa,0.0329 +reebu,0.0326 +caspl,0.0263 +legsh,0.0232 +sarwa,0.0228 +siski,0.0227 +shttr,0.0222 +chaff,0.0213 +sancr,0.0211 +ovenb,0.0183 +velsc,0.0145 +whtsp,0.0142 +misth,0.0141 +whimb,0.0133 +pereg,0.0121 +ferdu,0.0114 +hoowa,0.0105 +yebsa,0.0099 +corsh,0.0095 +noror,0.0089 +shag1,0.0063 +swath,0.0062 +whtpl,0.0043 +dunli,0.0041 +vertera,0.0039 +yebwa,0.0039 +ybsbu,0.0034 +evegr,0.0031 +boowa,0.0028 +grath,0.0028 +yebbu,0.0028 +gloib,0.0027 +alpsw,0.0017 +litau,0.0017 +rolle,0.0016 +pibgr,0.0014 +field,0.0010 +lanhach,0.0007 +sante,0.0005 +lesre,0.0004 +sogsh,0.0004 +henha,0.0003 +blhbu,0.0002 +jackd,0.0002 +mamwa,0.0002 +allga,0.0001 +categ,0.0001 +coot1,0.0001 +crama,0.0001 +grgsh,0.0001 +litst,0.0001 +proubis,0.0001 +ribgu,0.0001 +relpa,0.0000 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv new file mode 100644 index 0000000000..ae9ee148ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +meapi,0.3963 +aytinis,0.3341 +moorh,0.1813 +garwa,0.0978 +honbu,0.0872 +crane,0.0527 +smew1,0.0498 +lapwi,0.0415 +egygo,0.0398 +duswa,0.0355 +turdo,0.0348 +sposa,0.0329 +reebu,0.0326 +caspl,0.0263 +legsh,0.0232 +sarwa,0.0228 +siski,0.0227 +shttr,0.0222 +chaff,0.0213 +sancr,0.0211 +ovenb,0.0183 +velsc,0.0145 +whtsp,0.0142 +misth,0.0141 +whimb,0.0133 +pereg,0.0121 +ferdu,0.0114 +hoowa,0.0105 +yebsa,0.0099 +corsh,0.0095 +noror,0.0089 +shag1,0.0063 +swath,0.0062 +whtpl,0.0043 +dunli,0.0041 +vertera,0.0039 +yebwa,0.0039 +ybsbu,0.0034 +evegr,0.0031 +boowa,0.0028 +grath,0.0028 +yebbu,0.0028 +gloib,0.0027 +alpsw,0.0017 +litau,0.0017 +rolle,0.0016 +pibgr,0.0014 +field,0.0010 +lanhach,0.0007 +sante,0.0005 +lesre,0.0004 +sogsh,0.0004 +henha,0.0003 +blhbu,0.0002 +jackd,0.0002 +mamwa,0.0002 +allga,0.0001 +categ,0.0001 +coot1,0.0001 +crama,0.0001 +grgsh,0.0001 +litst,0.0001 +proubis,0.0001 +ribgu,0.0001 +relpa,0.0000 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv new file mode 100644 index 0000000000..4ccae36f6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +ovenb,0.0183 +swath,0.0062 +ybsbu,0.0034 +sante,0.0005 +litst,0.0001 +savsp,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-usr.csv new file mode 100644 index 0000000000..135878dc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Screwdriver CPU Utilization (%)" +whimb,0.0133 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv new file mode 100644 index 0000000000..b05f38792d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0090,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,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.1587,0,0.3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.2253,0,0,0,0,0,1.2000,0,0.6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.8952,0,2.0000,0.0034,0,0,0,0,0.8947,0,0.6000,0,0,1.3559,0,1.5498,0,0.5819,0.2533,0.3291,3.1220,0,0,0,0,0,0,0,0,0.3000,0,0,0,0.1425,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0049,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,0,0,0,2.0446,4.2672,0,0.6000,0,0,1.6312,0,2.4389,0.8329,1.4699,1.6000,1.6000,3.6000,0,0.3505,0,0,0,0.3662,0,0,0.3000,0.2012,0,0.1890,0.4000,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,41.2000,51.5980,13.1076,7.9626,0.3223,1.7124,1.9109,6.0638,4.0642,3.5068,0,0.7600,0.5077,0,2.9811,0,3.0000,3.9036,2.0531,1.6000,1.6000,3.6000,0,2.7000,0,1.4649,0.1876,1.1580,0.5790,0.2482,0.3000,0.6050,0.2403,0.9000,0.2772,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0.2427,0,0.0232,0.0299,0.0408,0,0,0.0105,0.0250,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,41.2000,48.8496,22.6731,6.3076,12.7775,9.5951,6.3813,11.4367,5.7014,2.6501,7.7129,3.2047,7.1616,0,2.5358,3.1832,1.3028,2.3574,1.9182,1.6000,1.6000,0.3377,0,2.0011,0.7116,1.5293,1.5000,1.5415,1.2150,1.1988,0.3000,0.8149,1.5376,0.5661,0.5138,0.5439,0.4022,0.3402,0.4196,1.0637,0.2073,0.2962,0.5000,0.0709,0.0272,0.0687,0.2783,0.0667,0.0084,0.0547,0.0074,0.0452,0.1126,0.0855,0.0201,0.0122,0.0145,0.0425,0.0081,0.0081,0.0235,0.0185,0.0293,0.0206,0.0011,0.0002 +2016-12-31,10.5124,22.9209,21.3729,12.2717,18.0378,3.4228,7.1245,1.6568,2.8769,1.1987,5.9391,3.1008,4.7517,0.0393,1.3368,5.7653,0.4629,3.6228,1.4976,1.6000,1.3809,0,3.6187,0.3000,2.4478,1.5000,1.5000,0.9582,1.3489,1.2000,0.3038,0.7013,1.1610,0,0.4075,0.1307,0,0.9523,0,0,0.0080,0.7438,0.3073,0.5116,0.5497,0.5239,0,0.1649,0.0405,0.0250,0,0.0459,0.0270,0.0090,0,0.0122,0.0478,0.0144,0.0081,0.0081,0,0.0147,0,0.0102,0,0.0004 +2017-01-01,0,2.4699,11.6497,5.1025,1.6458,0,4.8686,0,1.3067,1.5843,0,3.0692,0.2646,9.9375,0,0,0,0.6592,1.0281,1.3472,0.3871,0,1.8628,0.0631,1.9640,0.1648,1.1879,0,0.5890,1.0032,0.4200,0.1238,0,0,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0593,0.0223,0,0.1277,0.4221,0.0479,0,0,0.0018,0,0,0.0121,0,0,0.0081,0.0081,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv new file mode 100644 index 0000000000..b05f38792d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0090,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,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.1587,0,0.3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0.2253,0,0,0,0,0,1.2000,0,0.6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,3.8952,0,2.0000,0.0034,0,0,0,0,0.8947,0,0.6000,0,0,1.3559,0,1.5498,0,0.5819,0.2533,0.3291,3.1220,0,0,0,0,0,0,0,0,0.3000,0,0,0,0.1425,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0049,0,0,0,0,0,0,0,0,0,0,0 +2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,0,0,0,2.0446,4.2672,0,0.6000,0,0,1.6312,0,2.4389,0.8329,1.4699,1.6000,1.6000,3.6000,0,0.3505,0,0,0,0.3662,0,0,0.3000,0.2012,0,0.1890,0.4000,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0 +2016-12-29,41.2000,51.5980,13.1076,7.9626,0.3223,1.7124,1.9109,6.0638,4.0642,3.5068,0,0.7600,0.5077,0,2.9811,0,3.0000,3.9036,2.0531,1.6000,1.6000,3.6000,0,2.7000,0,1.4649,0.1876,1.1580,0.5790,0.2482,0.3000,0.6050,0.2403,0.9000,0.2772,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0.2427,0,0.0232,0.0299,0.0408,0,0,0.0105,0.0250,0,0,0,0,0,0,0,0,0,0,0 +2016-12-30,41.2000,48.8496,22.6731,6.3076,12.7775,9.5951,6.3813,11.4367,5.7014,2.6501,7.7129,3.2047,7.1616,0,2.5358,3.1832,1.3028,2.3574,1.9182,1.6000,1.6000,0.3377,0,2.0011,0.7116,1.5293,1.5000,1.5415,1.2150,1.1988,0.3000,0.8149,1.5376,0.5661,0.5138,0.5439,0.4022,0.3402,0.4196,1.0637,0.2073,0.2962,0.5000,0.0709,0.0272,0.0687,0.2783,0.0667,0.0084,0.0547,0.0074,0.0452,0.1126,0.0855,0.0201,0.0122,0.0145,0.0425,0.0081,0.0081,0.0235,0.0185,0.0293,0.0206,0.0011,0.0002 +2016-12-31,10.5124,22.9209,21.3729,12.2717,18.0378,3.4228,7.1245,1.6568,2.8769,1.1987,5.9391,3.1008,4.7517,0.0393,1.3368,5.7653,0.4629,3.6228,1.4976,1.6000,1.3809,0,3.6187,0.3000,2.4478,1.5000,1.5000,0.9582,1.3489,1.2000,0.3038,0.7013,1.1610,0,0.4075,0.1307,0,0.9523,0,0,0.0080,0.7438,0.3073,0.5116,0.5497,0.5239,0,0.1649,0.0405,0.0250,0,0.0459,0.0270,0.0090,0,0.0122,0.0478,0.0144,0.0081,0.0081,0,0.0147,0,0.0102,0,0.0004 +2017-01-01,0,2.4699,11.6497,5.1025,1.6458,0,4.8686,0,1.3067,1.5843,0,3.0692,0.2646,9.9375,0,0,0,0.6592,1.0281,1.3472,0.3871,0,1.8628,0.0631,1.9640,0.1648,1.1879,0,0.5890,1.0032,0.4200,0.1238,0,0,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0593,0.0223,0,0.1277,0.4221,0.0479,0,0,0.0018,0,0,0.0121,0,0,0.0081,0.0081,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv new file mode 100644 index 0000000000..77ca25a54d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016-12-23,0,0,0,0.0090,0,0 +2016-12-24,0,0,0,0.0250,0,0 +2016-12-25,0,0,0,0.0250,0,0 +2016-12-26,0,0,0,0.0250,0,0 +2016-12-27,0.3291,0,0.1425,0.0250,0,0 +2016-12-28,1.6000,0,0.4000,0.0250,0,0 +2016-12-29,1.6000,0.2403,0.2772,0.0408,0,0 +2016-12-30,1.6000,1.5376,0.5138,0.0074,0.0206,0.0002 +2016-12-31,1.3809,1.1610,0.4075,0,0.0102,0.0004 +2017-01-01,0.3871,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-usr.csv new file mode 100644 index 0000000000..6e6a9f7435 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Screwdriver CPU Utilization (%)" +2016-12-30,0.7116 +2016-12-31,2.4478 +2017-01-01,1.9640 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv new file mode 100644 index 0000000000..ce1fdd099f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016-12,24.7215,7.5055,2.9073,5.1957,2.9884,2.9461,0.7708,0.9579,0.7344,0.9095,0.9375,0.6826,0.6211,0.0066,0.6653,0.5386,0.6623,0.4474,0.4377,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.2857,0.1594,0.2913,0.2012,0.1324,0.1498,0.1522,0.0828,0.1583,0.0337,0.0646,0.0751,0.1667,0.0588,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0183,0.0166,0.0070,0.0152,0.0053,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0017,0.0015,0.0039,0.0017,0.0001,0.0001 +2017-01,0,0.0797,0.3758,0.1646,0.0531,0,0.1571,0,0.0422,0.0990,0.0511,0,0.0085,0.3206,0.0435,0.0213,0,0,0,0.0332,0.0125,0,0.0601,0.0020,0.0634,0.0053,0.0190,0.0383,0.0135,0,0.0324,0.0040,0,0,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0019,0.0004,0.0007,0,0.0041,0.0136,0.0015,0,0.0001,0,0,0,0,0,0.0004,0.0003,0.0003,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv new file mode 100644 index 0000000000..ce1fdd099f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016-12,24.7215,7.5055,2.9073,5.1957,2.9884,2.9461,0.7708,0.9579,0.7344,0.9095,0.9375,0.6826,0.6211,0.0066,0.6653,0.5386,0.6623,0.4474,0.4377,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.2857,0.1594,0.2913,0.2012,0.1324,0.1498,0.1522,0.0828,0.1583,0.0337,0.0646,0.0751,0.1667,0.0588,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0183,0.0166,0.0070,0.0152,0.0053,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0017,0.0015,0.0039,0.0017,0.0001,0.0001 +2017-01,0,0.0797,0.3758,0.1646,0.0531,0,0.1571,0,0.0422,0.0990,0.0511,0,0.0085,0.3206,0.0435,0.0213,0,0,0,0.0332,0.0125,0,0.0601,0.0020,0.0634,0.0053,0.0190,0.0383,0.0135,0,0.0324,0.0040,0,0,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0019,0.0004,0.0007,0,0.0041,0.0136,0.0015,0,0.0001,0,0,0,0,0,0.0004,0.0003,0.0003,0,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv new file mode 100644 index 0000000000..2a07f8d192 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016-12,0.5918,0.1522,0.1583,0.0166,0.0017,0.0001 +2017-01,0.0125,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-usr.csv new file mode 100644 index 0000000000..a2e4c22bc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Screwdriver CPU Utilization (%)" +2016-12,0.1580 +2017-01,0.0634 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..cd4a2a2bc9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +"2016 Q4",7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,2.9461,0.7344,0.9095,0.6826,0.9375,0.6211,0.0066,0.5386,0.4474,0.6653,0.4377,0.6623,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2857,0.2012,0.2913,0.1324,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.1667,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0152,0.0038,0.0031,0.0028,0.0049,0.0015,0.0032,0.0032,0.0017,0.0039,0.0017,0.0001,0.0001 +"2017 Q1",0.0274,0,0.1294,0.0567,0.0183,0.0541,0,0,0.0145,0.0341,0,0.0176,0.0029,0.1104,0.0073,0,0.0150,0,0,0.0114,0.0043,0,0.0207,0.0007,0.0218,0.0018,0.0132,0.0065,0,0.0047,0.0111,0.0014,0,0,0.0101,0.0024,0.0000,0,0,0,0.0004,0,0,0.0007,0.0001,0.0002,0,0.0014,0.0047,0,0.0005,0.0000,0,0,0,0,0,0.0001,0,0.0001,0.0001,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..cd4a2a2bc9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +"2016 Q4",7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,2.9461,0.7344,0.9095,0.6826,0.9375,0.6211,0.0066,0.5386,0.4474,0.6653,0.4377,0.6623,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2857,0.2012,0.2913,0.1324,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.1667,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0152,0.0038,0.0031,0.0028,0.0049,0.0015,0.0032,0.0032,0.0017,0.0039,0.0017,0.0001,0.0001 +"2017 Q1",0.0274,0,0.1294,0.0567,0.0183,0.0541,0,0,0.0145,0.0341,0,0.0176,0.0029,0.1104,0.0073,0,0.0150,0,0,0.0114,0.0043,0,0.0207,0.0007,0.0218,0.0018,0.0132,0.0065,0,0.0047,0.0111,0.0014,0,0,0.0101,0.0024,0.0000,0,0,0,0.0004,0,0,0.0007,0.0001,0.0002,0,0.0014,0.0047,0,0.0005,0.0000,0,0,0,0,0,0.0001,0,0.0001,0.0001,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..2de898d78e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +"2016 Q4",0.5918,0.1522,0.1583,0.0166,0.0017,0.0001 +"2017 Q1",0.0043,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..c930ca430e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Screwdriver CPU Utilization (%)" +"2016 Q4",0.1580 +"2017 Q1",0.0218 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv new file mode 100644 index 0000000000..4b38ab52a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016,7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,0.7344,2.9461,0.6826,0.9095,0.6211,0.9375,0.0066,0.4474,0.5386,0.4377,0.3760,0.6653,0.6623,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2012,0.2857,0.1324,0.2913,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.0532,0.0673,0.0677,0.1667,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0031,0.0152,0.0038,0.0015,0.0032,0.0032,0.0039,0.0028,0.0017,0.0049,0.0017,0.0001,0.0001 +2017,0.0068,0,0.0319,0.0140,0.0045,0.0133,0,0.0036,0,0,0.0084,0.0007,0.0043,0.0272,0,0.0018,0,0.0028,0.0037,0,0.0011,0,0.0051,0.0002,0.0054,0.0005,0.0033,0,0.0016,0.0027,0.0012,0.0003,0,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0,0.0002,0.0000,0.0001,0,0.0003,0.0012,0,0.0001,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv new file mode 100644 index 0000000000..4b38ab52a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016,7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,0.7344,2.9461,0.6826,0.9095,0.6211,0.9375,0.0066,0.4474,0.5386,0.4377,0.3760,0.6653,0.6623,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2012,0.2857,0.1324,0.2913,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.0532,0.0673,0.0677,0.1667,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0031,0.0152,0.0038,0.0015,0.0032,0.0032,0.0039,0.0028,0.0017,0.0049,0.0017,0.0001,0.0001 +2017,0.0068,0,0.0319,0.0140,0.0045,0.0133,0,0.0036,0,0,0.0084,0.0007,0.0043,0.0272,0,0.0018,0,0.0028,0.0037,0,0.0011,0,0.0051,0.0002,0.0054,0.0005,0.0033,0,0.0016,0.0027,0.0012,0.0003,0,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0,0.0002,0.0000,0.0001,0,0.0003,0.0012,0,0.0001,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv new file mode 100644 index 0000000000..5d2973fec8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" +2016,0.5918,0.1522,0.1583,0.0166,0.0017,0.0001 +2017,0.0011,0,0,0,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Jobs/username/utilization/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-usr.csv new file mode 100644 index 0000000000..825def6935 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Screwdriver CPU Utilization (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Screwdriver CPU Utilization (%)" +2016,0.1580 +2017,0.0054 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..42c0398e3f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Allocated (Core Count)" +Screwdriver,17882.3529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..024f8a0f3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Allocated (Core Count)" +Screwdriver,16235.2941 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7dbe6d718f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Allocated (Core Count)" +Screwdriver,18254.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3c17833107 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Allocated (Core Count)" +Screwdriver,19501.2987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1efed0951 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" +2016-12-22,12000.0000 +2016-12-23,12000.0000 +2016-12-24,12000.0000 +2016-12-25,12000.0000 +2016-12-26,16000.0000 +2016-12-27,20000.0000 +2016-12-28,20000.0000 +2016-12-29,20000.0000 +2016-12-30,20000.0000 +2016-12-31,20000.0000 +2017-01-01,20000.0000 +2017-01-02,20000.0000 +2017-01-03,20000.0000 +2017-01-04,20000.0000 +2017-01-05,20000.0000 +2017-01-06,20000.0000 +2017-01-07,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a46338c087 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" +2016-12,10400.0000 +2017-01,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..09f6b32e21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" +"2016 Q4",10400.0000 +"2017 Q1",20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5514302425 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" +2016,10400.0000 +2017,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64c0bb9b70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Allocated" +Screwdriver,1788.2353 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7fce163edb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Allocated" +Screwdriver,1623.5294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..acc46bfa37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Allocated" +Screwdriver,1825.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9412d427a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Allocated" +Screwdriver,1950.1299 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f9f63b996e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of CPU Nodes: Allocated" +2016-12-22,1200.0000 +2016-12-23,1200.0000 +2016-12-24,1200.0000 +2016-12-25,1200.0000 +2016-12-26,1600.0000 +2016-12-27,2000.0000 +2016-12-28,2000.0000 +2016-12-29,2000.0000 +2016-12-30,2000.0000 +2016-12-31,2000.0000 +2017-01-01,2000.0000 +2017-01-02,2000.0000 +2017-01-03,2000.0000 +2017-01-04,2000.0000 +2017-01-05,2000.0000 +2017-01-06,2000.0000 +2017-01-07,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9bbe3bdedc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of CPU Nodes: Allocated" +2016-12,1040.0000 +2017-01,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c93238ccdf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of CPU Nodes: Allocated" +"2016 Q4",1040.0000 +"2017 Q1",2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bfd18b6120 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of CPU Nodes: Allocated" +2016,1040.0000 +2017,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a9315795e2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Allocated" +Screwdriver,705.8824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a197297e14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Allocated" +Screwdriver,690.1961 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..86a25e4db4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Allocated" +Screwdriver,749.0909 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d590413bed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Allocated" +Screwdriver,785.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3ec9cc8d19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of GPU Nodes: Allocated" +2016-12-22,400.0000 +2016-12-23,400.0000 +2016-12-24,400.0000 +2016-12-25,400.0000 +2016-12-26,800.0000 +2016-12-27,800.0000 +2016-12-28,800.0000 +2016-12-29,800.0000 +2016-12-30,800.0000 +2016-12-31,800.0000 +2017-01-01,800.0000 +2017-01-02,800.0000 +2017-01-03,800.0000 +2017-01-04,800.0000 +2017-01-05,800.0000 +2017-01-06,800.0000 +2017-01-07,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dc2cfb3f02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of GPU Nodes: Allocated" +2016-12,520.0000 +2017-01,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a98b9ee862 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of GPU Nodes: Allocated" +"2016 Q4",520.0000 +"2017 Q1",800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..91beabc15a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of GPU Nodes: Allocated" +2016,520.0000 +2017,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e778ad090b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Allocated (GPU Count)" +Screwdriver,7058.8235 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..83f7be387b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Allocated (GPU Count)" +Screwdriver,6901.9608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1f5e3151b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Allocated (GPU Count)" +Screwdriver,7490.9091 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7248d20331 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Allocated (GPU Count)" +Screwdriver,7854.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ea98eabd07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" +2016-12-22,4000.0000 +2016-12-23,4000.0000 +2016-12-24,4000.0000 +2016-12-25,4000.0000 +2016-12-26,8000.0000 +2016-12-27,8000.0000 +2016-12-28,8000.0000 +2016-12-29,8000.0000 +2016-12-30,8000.0000 +2016-12-31,8000.0000 +2017-01-01,8000.0000 +2017-01-02,8000.0000 +2017-01-03,8000.0000 +2017-01-04,8000.0000 +2017-01-05,8000.0000 +2017-01-06,8000.0000 +2017-01-07,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..85ea602ef9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" +2016-12,5200.0000 +2017-01,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1ee9d1ff5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" +"2016 Q4",5200.0000 +"2017 Q1",8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..92e3056799 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" +2016,5200.0000 +2017,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c44da59ae9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Allocated" +Screwdriver,7296000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9988c02004 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Allocated" +Screwdriver,19872000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ab5c1933a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Allocated" +Screwdriver,48192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9d408161e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Allocated" +Screwdriver,180192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3cd117a809 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] CPU Hours: Allocated" +2016-12-22,288000.0000 +2016-12-23,288000.0000 +2016-12-24,288000.0000 +2016-12-25,288000.0000 +2016-12-26,384000.0000 +2016-12-27,480000.0000 +2016-12-28,480000.0000 +2016-12-29,480000.0000 +2016-12-30,480000.0000 +2016-12-31,480000.0000 +2017-01-01,480000.0000 +2017-01-02,480000.0000 +2017-01-03,480000.0000 +2017-01-04,480000.0000 +2017-01-05,480000.0000 +2017-01-06,480000.0000 +2017-01-07,480000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a85695aabb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] CPU Hours: Allocated" +2016-12,4992000.0000 +2017-01,14880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b019d3990b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] CPU Hours: Allocated" +"2016 Q4",4992000.0000 +"2017 Q1",43200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ee29a47c2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] CPU Hours: Allocated" +2016,4992000.0000 +2017,175200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f6bef579be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Allocated" +Screwdriver,729600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..982e0ab5fc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Allocated" +Screwdriver,1987200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bb8f49b042 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Allocated" +Screwdriver,4819200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8eace7b41d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Allocated" +Screwdriver,18019200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ea6cc3e6ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] CPU Node Hours: Allocated" +2016-12-22,28800.0000 +2016-12-23,28800.0000 +2016-12-24,28800.0000 +2016-12-25,28800.0000 +2016-12-26,38400.0000 +2016-12-27,48000.0000 +2016-12-28,48000.0000 +2016-12-29,48000.0000 +2016-12-30,48000.0000 +2016-12-31,48000.0000 +2017-01-01,48000.0000 +2017-01-02,48000.0000 +2017-01-03,48000.0000 +2017-01-04,48000.0000 +2017-01-05,48000.0000 +2017-01-06,48000.0000 +2017-01-07,48000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4fc0cf2b30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] CPU Node Hours: Allocated" +2016-12,499200.0000 +2017-01,1488000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6ebbef7a4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] CPU Node Hours: Allocated" +"2016 Q4",499200.0000 +"2017 Q1",4320000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a6726c92ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] CPU Node Hours: Allocated" +2016,499200.0000 +2017,17520000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..14c0fbc254 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Allocated" +Screwdriver,2880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..93cd0e556e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Allocated" +Screwdriver,8448000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..47e7ce50ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Allocated" +Screwdriver,19776000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..16b9f116c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Allocated" +Screwdriver,72576000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9aeb16997b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] GPU Hours: Allocated" +2016-12-22,96000.0000 +2016-12-23,96000.0000 +2016-12-24,96000.0000 +2016-12-25,96000.0000 +2016-12-26,192000.0000 +2016-12-27,192000.0000 +2016-12-28,192000.0000 +2016-12-29,192000.0000 +2016-12-30,192000.0000 +2016-12-31,192000.0000 +2017-01-01,192000.0000 +2017-01-02,192000.0000 +2017-01-03,192000.0000 +2017-01-04,192000.0000 +2017-01-05,192000.0000 +2017-01-06,192000.0000 +2017-01-07,192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..21fd5bedcc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] GPU Hours: Allocated" +2016-12,2496000.0000 +2017-01,5952000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b21a928810 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] GPU Hours: Allocated" +"2016 Q4",2496000.0000 +"2017 Q1",17280000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..825acbd553 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] GPU Hours: Allocated" +2016,2496000.0000 +2017,70080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..45e88fbedb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Allocated" +Screwdriver,288000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..db0e64b71e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Allocated" +Screwdriver,844800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8bd85f17e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Allocated" +Screwdriver,1977600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9182a8dff0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Allocated" +Screwdriver,7257600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..188272625b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] GPU Node Hours: Allocated" +2016-12-22,9600.0000 +2016-12-23,9600.0000 +2016-12-24,9600.0000 +2016-12-25,9600.0000 +2016-12-26,19200.0000 +2016-12-27,19200.0000 +2016-12-28,19200.0000 +2016-12-29,19200.0000 +2016-12-30,19200.0000 +2016-12-31,19200.0000 +2017-01-01,19200.0000 +2017-01-02,19200.0000 +2017-01-03,19200.0000 +2017-01-04,19200.0000 +2017-01-05,19200.0000 +2017-01-06,19200.0000 +2017-01-07,19200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ee3143806f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] GPU Node Hours: Allocated" +2016-12,249600.0000 +2017-01,595200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e44232c876 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] GPU Node Hours: Allocated" +"2016 Q4",249600.0000 +"2017 Q1",1728000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..39585fa2dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] GPU Node Hours: Allocated" +2016,249600.0000 +2017,7008000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fe45ad7ae0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Total (Core Count)" +Screwdriver,17882.3529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2f6a908be0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Total (Core Count)" +Screwdriver,16235.2941 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..140ec3b47e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Total (Core Count)" +Screwdriver,18254.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a6799c07cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Cores: Total (Core Count)" +Screwdriver,19501.2987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f1ced9c730 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" +2016-12-22,12000.0000 +2016-12-23,12000.0000 +2016-12-24,12000.0000 +2016-12-25,12000.0000 +2016-12-26,16000.0000 +2016-12-27,20000.0000 +2016-12-28,20000.0000 +2016-12-29,20000.0000 +2016-12-30,20000.0000 +2016-12-31,20000.0000 +2017-01-01,20000.0000 +2017-01-02,20000.0000 +2017-01-03,20000.0000 +2017-01-04,20000.0000 +2017-01-05,20000.0000 +2017-01-06,20000.0000 +2017-01-07,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..64395fefdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" +2016-12,10400.0000 +2017-01,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a9fb7c3191 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" +"2016 Q4",10400.0000 +"2017 Q1",20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..74219afb00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" +2016,10400.0000 +2017,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6990a579ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Total" +Screwdriver,1788.2353 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5457ec8d95 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Total" +Screwdriver,1623.5294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4d93b1b4fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Total" +Screwdriver,1825.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..50c54c0b05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of CPU Nodes: Total" +Screwdriver,1950.1299 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..070a78ed87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of CPU Nodes: Total" +2016-12-22,1200.0000 +2016-12-23,1200.0000 +2016-12-24,1200.0000 +2016-12-25,1200.0000 +2016-12-26,1600.0000 +2016-12-27,2000.0000 +2016-12-28,2000.0000 +2016-12-29,2000.0000 +2016-12-30,2000.0000 +2016-12-31,2000.0000 +2017-01-01,2000.0000 +2017-01-02,2000.0000 +2017-01-03,2000.0000 +2017-01-04,2000.0000 +2017-01-05,2000.0000 +2017-01-06,2000.0000 +2017-01-07,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2020cf0e1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of CPU Nodes: Total" +2016-12,1040.0000 +2017-01,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9324efe1d4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of CPU Nodes: Total" +"2016 Q4",1040.0000 +"2017 Q1",2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4c3d0da0b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of CPU Nodes: Total" +2016,1040.0000 +2017,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a8b919ef74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Total" +Screwdriver,705.8824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c35e2ed8e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Total" +Screwdriver,690.1961 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4bf1504b60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Total" +Screwdriver,749.0909 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..77b8b448c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPU Nodes: Total" +Screwdriver,785.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3d1a14161d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of GPU Nodes: Total" +2016-12-22,400.0000 +2016-12-23,400.0000 +2016-12-24,400.0000 +2016-12-25,400.0000 +2016-12-26,800.0000 +2016-12-27,800.0000 +2016-12-28,800.0000 +2016-12-29,800.0000 +2016-12-30,800.0000 +2016-12-31,800.0000 +2017-01-01,800.0000 +2017-01-02,800.0000 +2017-01-03,800.0000 +2017-01-04,800.0000 +2017-01-05,800.0000 +2017-01-06,800.0000 +2017-01-07,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b124423c49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of GPU Nodes: Total" +2016-12,520.0000 +2017-01,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e71e7d7575 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of GPU Nodes: Total" +"2016 Q4",520.0000 +"2017 Q1",800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dece531113 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of GPU Nodes: Total" +2016,520.0000 +2017,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b21d878249 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Total (GPU Count)" +Screwdriver,7058.8235 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..833a6bf896 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Total (GPU Count)" +Screwdriver,6901.9608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c36d9e5939 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Total (GPU Count)" +Screwdriver,7490.9091 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6e53c23a2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"Average Number of GPUs: Total (GPU Count)" +Screwdriver,7854.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3a1cdac052 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" +2016-12-22,4000.0000 +2016-12-23,4000.0000 +2016-12-24,4000.0000 +2016-12-25,4000.0000 +2016-12-26,8000.0000 +2016-12-27,8000.0000 +2016-12-28,8000.0000 +2016-12-29,8000.0000 +2016-12-30,8000.0000 +2016-12-31,8000.0000 +2017-01-01,8000.0000 +2017-01-02,8000.0000 +2017-01-03,8000.0000 +2017-01-04,8000.0000 +2017-01-05,8000.0000 +2017-01-06,8000.0000 +2017-01-07,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..89acacf136 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" +2016-12,5200.0000 +2017-01,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4066f7d76c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" +"2016 Q4",5200.0000 +"2017 Q1",8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f709d139c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" +2016,5200.0000 +2017,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d1e648c36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Total" +Screwdriver,7296000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e3f378b9b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Total" +Screwdriver,19872000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3aed7bef4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Total" +Screwdriver,48192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2d06d0cb23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Hours: Total" +Screwdriver,180192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ac51964571 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] CPU Hours: Total" +2016-12-22,288000.0000 +2016-12-23,288000.0000 +2016-12-24,288000.0000 +2016-12-25,288000.0000 +2016-12-26,384000.0000 +2016-12-27,480000.0000 +2016-12-28,480000.0000 +2016-12-29,480000.0000 +2016-12-30,480000.0000 +2016-12-31,480000.0000 +2017-01-01,480000.0000 +2017-01-02,480000.0000 +2017-01-03,480000.0000 +2017-01-04,480000.0000 +2017-01-05,480000.0000 +2017-01-06,480000.0000 +2017-01-07,480000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2c3f2a064c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] CPU Hours: Total" +2016-12,4992000.0000 +2017-01,14880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9bd40ec35f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] CPU Hours: Total" +"2016 Q4",4992000.0000 +"2017 Q1",43200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0236f18bad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] CPU Hours: Total" +2016,4992000.0000 +2017,175200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fae749164b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Total" +Screwdriver,729600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..24d1cd1554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Total" +Screwdriver,1987200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3e1301d1ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Total" +Screwdriver,4819200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fca3d81d90 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"CPU Node Hours: Total" +Screwdriver,18019200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b7236e0391 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] CPU Node Hours: Total" +2016-12-22,28800.0000 +2016-12-23,28800.0000 +2016-12-24,28800.0000 +2016-12-25,28800.0000 +2016-12-26,38400.0000 +2016-12-27,48000.0000 +2016-12-28,48000.0000 +2016-12-29,48000.0000 +2016-12-30,48000.0000 +2016-12-31,48000.0000 +2017-01-01,48000.0000 +2017-01-02,48000.0000 +2017-01-03,48000.0000 +2017-01-04,48000.0000 +2017-01-05,48000.0000 +2017-01-06,48000.0000 +2017-01-07,48000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b4340fab36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] CPU Node Hours: Total" +2016-12,499200.0000 +2017-01,1488000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..50d3489d71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] CPU Node Hours: Total" +"2016 Q4",499200.0000 +"2017 Q1",4320000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6f21547783 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] CPU Node Hours: Total" +2016,499200.0000 +2017,17520000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e5d49abbb7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Total" +Screwdriver,2880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..115c9d1c3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Total" +Screwdriver,8448000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..aa14b422b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Total" +Screwdriver,19776000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..796f8b795f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Hours: Total" +Screwdriver,72576000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f5887c93b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] GPU Hours: Total" +2016-12-22,96000.0000 +2016-12-23,96000.0000 +2016-12-24,96000.0000 +2016-12-25,96000.0000 +2016-12-26,192000.0000 +2016-12-27,192000.0000 +2016-12-28,192000.0000 +2016-12-29,192000.0000 +2016-12-30,192000.0000 +2016-12-31,192000.0000 +2017-01-01,192000.0000 +2017-01-02,192000.0000 +2017-01-03,192000.0000 +2017-01-04,192000.0000 +2017-01-05,192000.0000 +2017-01-06,192000.0000 +2017-01-07,192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..73c0b5de4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] GPU Hours: Total" +2016-12,2496000.0000 +2017-01,5952000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..540a3894bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] GPU Hours: Total" +"2016 Q4",2496000.0000 +"2017 Q1",17280000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..20402c0990 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] GPU Hours: Total" +2016,2496000.0000 +2017,70080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bd8a2d082e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Total" +Screwdriver,288000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dccaf84d32 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Total" +Screwdriver,844800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c46caf44b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Total" +Screwdriver,1977600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d48a774e7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Summary,"GPU Node Hours: Total" +Screwdriver,7257600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a50c715e42 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[Screwdriver] GPU Node Hours: Total" +2016-12-22,9600.0000 +2016-12-23,9600.0000 +2016-12-24,9600.0000 +2016-12-25,9600.0000 +2016-12-26,19200.0000 +2016-12-27,19200.0000 +2016-12-28,19200.0000 +2016-12-29,19200.0000 +2016-12-30,19200.0000 +2016-12-31,19200.0000 +2017-01-01,19200.0000 +2017-01-02,19200.0000 +2017-01-03,19200.0000 +2017-01-04,19200.0000 +2017-01-05,19200.0000 +2017-01-06,19200.0000 +2017-01-07,19200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b3086abf94 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[Screwdriver] GPU Node Hours: Total" +2016-12,249600.0000 +2017-01,595200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..57e67ea380 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[Screwdriver] GPU Node Hours: Total" +"2016 Q4",249600.0000 +"2017 Q1",1728000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..10715dc931 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[Screwdriver] GPU Node Hours: Total" +2016,249600.0000 +2017,7008000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5d6c15b534 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" +screw,13882.3529 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..976a67f1ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" +screw,12941.1765 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5c8f08d81a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" +screw,14581.8182 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0cf895f507 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" +screw,15594.8052 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..669922d588 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +2016-12-22,8000.0000,4000.0000 +2016-12-23,8000.0000,4000.0000 +2016-12-24,8000.0000,4000.0000 +2016-12-25,8000.0000,4000.0000 +2016-12-26,12000.0000,4000.0000 +2016-12-27,16000.0000,4000.0000 +2016-12-28,16000.0000,4000.0000 +2016-12-29,16000.0000,4000.0000 +2016-12-30,16000.0000,4000.0000 +2016-12-31,16000.0000,4000.0000 +2017-01-01,16000.0000,4000.0000 +2017-01-02,16000.0000,4000.0000 +2017-01-03,16000.0000,4000.0000 +2017-01-04,16000.0000,4000.0000 +2017-01-05,16000.0000,4000.0000 +2017-01-06,16000.0000,4000.0000 +2017-01-07,16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ccaa2bea50 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +2016-12,8200.0000,4000.0000 +2017-01,16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a384cd3385 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +"2016 Q4",8200.0000,4000.0000 +"2017 Q1",16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..618c834169 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +2016,8200.0000,4000.0000 +2017,16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3909c91132 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Allocated" +screw,1388.2353 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..02cf6391c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Allocated" +screw,1294.1176 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..70d0b83d60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Allocated" +screw,1458.1818 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d77cc1b763 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Allocated" +screw,1559.4805 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9482e98c00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +2016-12-22,800.0000,400.0000 +2016-12-23,800.0000,400.0000 +2016-12-24,800.0000,400.0000 +2016-12-25,800.0000,400.0000 +2016-12-26,1200.0000,400.0000 +2016-12-27,1600.0000,400.0000 +2016-12-28,1600.0000,400.0000 +2016-12-29,1600.0000,400.0000 +2016-12-30,1600.0000,400.0000 +2016-12-31,1600.0000,400.0000 +2017-01-01,1600.0000,400.0000 +2017-01-02,1600.0000,400.0000 +2017-01-03,1600.0000,400.0000 +2017-01-04,1600.0000,400.0000 +2017-01-05,1600.0000,400.0000 +2017-01-06,1600.0000,400.0000 +2017-01-07,1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ee6797ddad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +2016-12,820.0000,400.0000 +2017-01,1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6dba34f2c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +"2016 Q4",820.0000,400.0000 +"2017 Q1",1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b217c4b6dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +2016,820.0000,400.0000 +2017,1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e0007961f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Allocated" +screw,705.8824 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e73ece0755 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Allocated" +screw,690.1961 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e210e6fe43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Allocated" +screw,749.0909 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9dc7f1c7af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Allocated" +screw,785.4545 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a6503b19cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +2016-12-22,400.0000,0.0000 +2016-12-23,400.0000,0.0000 +2016-12-24,400.0000,0.0000 +2016-12-25,400.0000,0.0000 +2016-12-26,800.0000,0.0000 +2016-12-27,800.0000,0.0000 +2016-12-28,800.0000,0.0000 +2016-12-29,800.0000,0.0000 +2016-12-30,800.0000,0.0000 +2016-12-31,800.0000,0.0000 +2017-01-01,800.0000,0.0000 +2017-01-02,800.0000,0.0000 +2017-01-03,800.0000,0.0000 +2017-01-04,800.0000,0.0000 +2017-01-05,800.0000,0.0000 +2017-01-06,800.0000,0.0000 +2017-01-07,800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..66c87ce6aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +2016-12,520.0000,0.0000 +2017-01,800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..943d9896d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +"2016 Q4",520.0000,0.0000 +"2017 Q1",800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..add9016b3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +2016,520.0000,0.0000 +2017,800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1d53ebe955 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Allocated (GPU Count)" +screw,7058.8235 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e5396beaed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Allocated (GPU Count)" +screw,6901.9608 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7304f9b576 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Allocated (GPU Count)" +screw,7490.9091 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..80ea4d256f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Allocated (GPU Count)" +screw,7854.5455 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3209a4b162 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +2016-12-22,4000.0000,0.0000 +2016-12-23,4000.0000,0.0000 +2016-12-24,4000.0000,0.0000 +2016-12-25,4000.0000,0.0000 +2016-12-26,8000.0000,0.0000 +2016-12-27,8000.0000,0.0000 +2016-12-28,8000.0000,0.0000 +2016-12-29,8000.0000,0.0000 +2016-12-30,8000.0000,0.0000 +2016-12-31,8000.0000,0.0000 +2017-01-01,8000.0000,0.0000 +2017-01-02,8000.0000,0.0000 +2017-01-03,8000.0000,0.0000 +2017-01-04,8000.0000,0.0000 +2017-01-05,8000.0000,0.0000 +2017-01-06,8000.0000,0.0000 +2017-01-07,8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..697c62e867 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +2016-12,5200.0000,0.0000 +2017-01,8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..76a99f2d97 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +"2016 Q4",5200.0000,0.0000 +"2017 Q1",8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cc41b03c32 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +2016,5200.0000,0.0000 +2017,8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5d4a9965ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Allocated" +screw,5664000.0000 +wrench,1632000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4785bf3afe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Allocated" +screw,15840000.0000 +wrench,4032000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5073c1bc24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Allocated" +screw,38496000.0000 +wrench,9696000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2342b4c448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Allocated" +screw,144096000.0000 +wrench,36096000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7f4bd13d15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +2016-12-22,192000.0000,96000.0000 +2016-12-23,192000.0000,96000.0000 +2016-12-24,192000.0000,96000.0000 +2016-12-25,192000.0000,96000.0000 +2016-12-26,288000.0000,96000.0000 +2016-12-27,384000.0000,96000.0000 +2016-12-28,384000.0000,96000.0000 +2016-12-29,384000.0000,96000.0000 +2016-12-30,384000.0000,96000.0000 +2016-12-31,384000.0000,96000.0000 +2017-01-01,384000.0000,96000.0000 +2017-01-02,384000.0000,96000.0000 +2017-01-03,384000.0000,96000.0000 +2017-01-04,384000.0000,96000.0000 +2017-01-05,384000.0000,96000.0000 +2017-01-06,384000.0000,96000.0000 +2017-01-07,384000.0000,96000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..153de17327 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +2016-12,3936000.0000,1056000.0000 +2017-01,11904000.0000,2976000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7dc700c798 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +"2016 Q4",3936000.0000,1056000.0000 +"2017 Q1",34560000.0000,8640000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5d6fb2ac76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +2016,3936000.0000,1056000.0000 +2017,140160000.0000,35040000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5c8e65486e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Allocated" +screw,566400.0000 +wrench,163200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0811d7b70e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Allocated" +screw,1584000.0000 +wrench,403200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6fd45da5cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Allocated" +screw,3849600.0000 +wrench,969600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4a05206b82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Allocated" +screw,14409600.0000 +wrench,3609600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..db398f940b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +2016-12-22,19200.0000,9600.0000 +2016-12-23,19200.0000,9600.0000 +2016-12-24,19200.0000,9600.0000 +2016-12-25,19200.0000,9600.0000 +2016-12-26,28800.0000,9600.0000 +2016-12-27,38400.0000,9600.0000 +2016-12-28,38400.0000,9600.0000 +2016-12-29,38400.0000,9600.0000 +2016-12-30,38400.0000,9600.0000 +2016-12-31,38400.0000,9600.0000 +2017-01-01,38400.0000,9600.0000 +2017-01-02,38400.0000,9600.0000 +2017-01-03,38400.0000,9600.0000 +2017-01-04,38400.0000,9600.0000 +2017-01-05,38400.0000,9600.0000 +2017-01-06,38400.0000,9600.0000 +2017-01-07,38400.0000,9600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..093df6377a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +2016-12,393600.0000,105600.0000 +2017-01,1190400.0000,297600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..12dc1ff119 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +"2016 Q4",393600.0000,105600.0000 +"2017 Q1",3456000.0000,864000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3115dc6ad4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +2016,393600.0000,105600.0000 +2017,14016000.0000,3504000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6c198f4b6d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Allocated" +screw,2880000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a0f4e088b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Allocated" +screw,8448000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9283bba469 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Allocated" +screw,19776000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d27a58e248 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Allocated" +screw,72576000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2e71577893 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +2016-12-22,96000.0000,0.0000 +2016-12-23,96000.0000,0.0000 +2016-12-24,96000.0000,0.0000 +2016-12-25,96000.0000,0.0000 +2016-12-26,192000.0000,0.0000 +2016-12-27,192000.0000,0.0000 +2016-12-28,192000.0000,0.0000 +2016-12-29,192000.0000,0.0000 +2016-12-30,192000.0000,0.0000 +2016-12-31,192000.0000,0.0000 +2017-01-01,192000.0000,0.0000 +2017-01-02,192000.0000,0.0000 +2017-01-03,192000.0000,0.0000 +2017-01-04,192000.0000,0.0000 +2017-01-05,192000.0000,0.0000 +2017-01-06,192000.0000,0.0000 +2017-01-07,192000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c418e380ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +2016-12,2496000.0000,0.0000 +2017-01,5952000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6f133395b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +"2016 Q4",2496000.0000,0.0000 +"2017 Q1",17280000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cd826fd660 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +2016,2496000.0000,0.0000 +2017,70080000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..92911cbcfc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Allocated" +screw,288000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0f2db032ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Allocated" +screw,844800.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..937f3c90a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Allocated" +screw,1977600.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..86041432aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Allocated" +screw,7257600.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ae18812e59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +2016-12-22,9600.0000,0.0000 +2016-12-23,9600.0000,0.0000 +2016-12-24,9600.0000,0.0000 +2016-12-25,9600.0000,0.0000 +2016-12-26,19200.0000,0.0000 +2016-12-27,19200.0000,0.0000 +2016-12-28,19200.0000,0.0000 +2016-12-29,19200.0000,0.0000 +2016-12-30,19200.0000,0.0000 +2016-12-31,19200.0000,0.0000 +2017-01-01,19200.0000,0.0000 +2017-01-02,19200.0000,0.0000 +2017-01-03,19200.0000,0.0000 +2017-01-04,19200.0000,0.0000 +2017-01-05,19200.0000,0.0000 +2017-01-06,19200.0000,0.0000 +2017-01-07,19200.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7d6a51cb6d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +2016-12,249600.0000,0.0000 +2017-01,595200.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b9682d6b63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +"2016 Q4",249600.0000,0.0000 +"2017 Q1",1728000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4f74e1da23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +2016,249600.0000,0.0000 +2017,7008000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..973817347b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Total (Core Count)" +screw,13882.3529 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fab31495cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Total (Core Count)" +screw,12941.1765 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e68ca5551e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Total (Core Count)" +screw,14581.8182 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f28d790ff9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Cores: Total (Core Count)" +screw,15594.8052 +wrench,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..96bdb81ec7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +2016-12-22,8000.0000,4000.0000 +2016-12-23,8000.0000,4000.0000 +2016-12-24,8000.0000,4000.0000 +2016-12-25,8000.0000,4000.0000 +2016-12-26,12000.0000,4000.0000 +2016-12-27,16000.0000,4000.0000 +2016-12-28,16000.0000,4000.0000 +2016-12-29,16000.0000,4000.0000 +2016-12-30,16000.0000,4000.0000 +2016-12-31,16000.0000,4000.0000 +2017-01-01,16000.0000,4000.0000 +2017-01-02,16000.0000,4000.0000 +2017-01-03,16000.0000,4000.0000 +2017-01-04,16000.0000,4000.0000 +2017-01-05,16000.0000,4000.0000 +2017-01-06,16000.0000,4000.0000 +2017-01-07,16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6e1eea1551 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +2016-12,8200.0000,4000.0000 +2017-01,16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d5a4bfd260 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +"2016 Q4",8200.0000,4000.0000 +"2017 Q1",16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2f0f0470e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +2016,8200.0000,4000.0000 +2017,16000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..106419a091 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Total" +screw,1388.2353 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4bd8ba11a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Total" +screw,1294.1176 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0772084496 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Total" +screw,1458.1818 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ff62c11744 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of CPU Nodes: Total" +screw,1559.4805 +wrench,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6e34fe95b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +2016-12-22,800.0000,400.0000 +2016-12-23,800.0000,400.0000 +2016-12-24,800.0000,400.0000 +2016-12-25,800.0000,400.0000 +2016-12-26,1200.0000,400.0000 +2016-12-27,1600.0000,400.0000 +2016-12-28,1600.0000,400.0000 +2016-12-29,1600.0000,400.0000 +2016-12-30,1600.0000,400.0000 +2016-12-31,1600.0000,400.0000 +2017-01-01,1600.0000,400.0000 +2017-01-02,1600.0000,400.0000 +2017-01-03,1600.0000,400.0000 +2017-01-04,1600.0000,400.0000 +2017-01-05,1600.0000,400.0000 +2017-01-06,1600.0000,400.0000 +2017-01-07,1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..88ba64d745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +2016-12,820.0000,400.0000 +2017-01,1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..07c1563d5a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +"2016 Q4",820.0000,400.0000 +"2017 Q1",1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d998d6f4e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +2016,820.0000,400.0000 +2017,1600.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e0194ac6d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Total" +screw,705.8824 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..52c5508bac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Total" +screw,690.1961 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7e058ac616 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Total" +screw,749.0909 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..295331a6a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPU Nodes: Total" +screw,785.4545 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4e6a498cc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +2016-12-22,400.0000,0.0000 +2016-12-23,400.0000,0.0000 +2016-12-24,400.0000,0.0000 +2016-12-25,400.0000,0.0000 +2016-12-26,800.0000,0.0000 +2016-12-27,800.0000,0.0000 +2016-12-28,800.0000,0.0000 +2016-12-29,800.0000,0.0000 +2016-12-30,800.0000,0.0000 +2016-12-31,800.0000,0.0000 +2017-01-01,800.0000,0.0000 +2017-01-02,800.0000,0.0000 +2017-01-03,800.0000,0.0000 +2017-01-04,800.0000,0.0000 +2017-01-05,800.0000,0.0000 +2017-01-06,800.0000,0.0000 +2017-01-07,800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d71dc5b20a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +2016-12,520.0000,0.0000 +2017-01,800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..bc68d779bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +"2016 Q4",520.0000,0.0000 +"2017 Q1",800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8190d4ea3d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +2016,520.0000,0.0000 +2017,800.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e00601d26a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Total (GPU Count)" +screw,7058.8235 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a7fb730e3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Total (GPU Count)" +screw,6901.9608 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3ba701c307 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Total (GPU Count)" +screw,7490.9091 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ddd2bbab0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","Average Number of GPUs: Total (GPU Count)" +screw,7854.5455 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..06013272de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +2016-12-22,4000.0000,0.0000 +2016-12-23,4000.0000,0.0000 +2016-12-24,4000.0000,0.0000 +2016-12-25,4000.0000,0.0000 +2016-12-26,8000.0000,0.0000 +2016-12-27,8000.0000,0.0000 +2016-12-28,8000.0000,0.0000 +2016-12-29,8000.0000,0.0000 +2016-12-30,8000.0000,0.0000 +2016-12-31,8000.0000,0.0000 +2017-01-01,8000.0000,0.0000 +2017-01-02,8000.0000,0.0000 +2017-01-03,8000.0000,0.0000 +2017-01-04,8000.0000,0.0000 +2017-01-05,8000.0000,0.0000 +2017-01-06,8000.0000,0.0000 +2017-01-07,8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1e21595c8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +2016-12,5200.0000,0.0000 +2017-01,8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..957dcd14dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +"2016 Q4",5200.0000,0.0000 +"2017 Q1",8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1930569961 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +2016,5200.0000,0.0000 +2017,8000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3bea31de0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Total" +screw,5664000.0000 +wrench,1632000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ae8db1b3bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Total" +screw,15840000.0000 +wrench,4032000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2f7d3a301b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Total" +screw,38496000.0000 +wrench,9696000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..caa54e641c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Hours: Total" +screw,144096000.0000 +wrench,36096000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..25d4673573 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12-22,192000.0000,96000.0000 +2016-12-23,192000.0000,96000.0000 +2016-12-24,192000.0000,96000.0000 +2016-12-25,192000.0000,96000.0000 +2016-12-26,288000.0000,96000.0000 +2016-12-27,384000.0000,96000.0000 +2016-12-28,384000.0000,96000.0000 +2016-12-29,384000.0000,96000.0000 +2016-12-30,384000.0000,96000.0000 +2016-12-31,384000.0000,96000.0000 +2017-01-01,384000.0000,96000.0000 +2017-01-02,384000.0000,96000.0000 +2017-01-03,384000.0000,96000.0000 +2017-01-04,384000.0000,96000.0000 +2017-01-05,384000.0000,96000.0000 +2017-01-06,384000.0000,96000.0000 +2017-01-07,384000.0000,96000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..17b44ced00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12,3936000.0000,1056000.0000 +2017-01,11904000.0000,2976000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2509261c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +"2016 Q4",3936000.0000,1056000.0000 +"2017 Q1",34560000.0000,8640000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c1c6948504 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016,3936000.0000,1056000.0000 +2017,140160000.0000,35040000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9c0ce48607 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Total" +screw,566400.0000 +wrench,163200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8b307cf39e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Total" +screw,1584000.0000 +wrench,403200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..743810bc17 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Total" +screw,3849600.0000 +wrench,969600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..65590d956a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","CPU Node Hours: Total" +screw,14409600.0000 +wrench,3609600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..42f68bda2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +2016-12-22,19200.0000,9600.0000 +2016-12-23,19200.0000,9600.0000 +2016-12-24,19200.0000,9600.0000 +2016-12-25,19200.0000,9600.0000 +2016-12-26,28800.0000,9600.0000 +2016-12-27,38400.0000,9600.0000 +2016-12-28,38400.0000,9600.0000 +2016-12-29,38400.0000,9600.0000 +2016-12-30,38400.0000,9600.0000 +2016-12-31,38400.0000,9600.0000 +2017-01-01,38400.0000,9600.0000 +2017-01-02,38400.0000,9600.0000 +2017-01-03,38400.0000,9600.0000 +2017-01-04,38400.0000,9600.0000 +2017-01-05,38400.0000,9600.0000 +2017-01-06,38400.0000,9600.0000 +2017-01-07,38400.0000,9600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9c6f466f3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +2016-12,393600.0000,105600.0000 +2017-01,1190400.0000,297600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7d79d8dd57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +"2016 Q4",393600.0000,105600.0000 +"2017 Q1",3456000.0000,864000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..981f63fdef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +2016,393600.0000,105600.0000 +2017,14016000.0000,3504000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..af54345d07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Total" +screw,2880000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f7e5f65df7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Total" +screw,8448000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fd4e6d70e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Total" +screw,19776000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..71e6702604 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Hours: Total" +screw,72576000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7be065834f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12-22,96000.0000,0.0000 +2016-12-23,96000.0000,0.0000 +2016-12-24,96000.0000,0.0000 +2016-12-25,96000.0000,0.0000 +2016-12-26,192000.0000,0.0000 +2016-12-27,192000.0000,0.0000 +2016-12-28,192000.0000,0.0000 +2016-12-29,192000.0000,0.0000 +2016-12-30,192000.0000,0.0000 +2016-12-31,192000.0000,0.0000 +2017-01-01,192000.0000,0.0000 +2017-01-02,192000.0000,0.0000 +2017-01-03,192000.0000,0.0000 +2017-01-04,192000.0000,0.0000 +2017-01-05,192000.0000,0.0000 +2017-01-06,192000.0000,0.0000 +2017-01-07,192000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4243b64940 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12,2496000.0000,0.0000 +2017-01,5952000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..516f0947f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +"2016 Q4",2496000.0000,0.0000 +"2017 Q1",17280000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6f82cee0cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016,2496000.0000,0.0000 +2017,70080000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a3c1885cd9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Total" +screw,288000.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f24d1c95de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Total" +screw,844800.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..15fbd62ea5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Total" +screw,1977600.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..921d8b826a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Service Provider","GPU Node Hours: Total" +screw,7257600.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1a8704d42a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +2016-12-22,9600.0000,0.0000 +2016-12-23,9600.0000,0.0000 +2016-12-24,9600.0000,0.0000 +2016-12-25,9600.0000,0.0000 +2016-12-26,19200.0000,0.0000 +2016-12-27,19200.0000,0.0000 +2016-12-28,19200.0000,0.0000 +2016-12-29,19200.0000,0.0000 +2016-12-30,19200.0000,0.0000 +2016-12-31,19200.0000,0.0000 +2017-01-01,19200.0000,0.0000 +2017-01-02,19200.0000,0.0000 +2017-01-03,19200.0000,0.0000 +2017-01-04,19200.0000,0.0000 +2017-01-05,19200.0000,0.0000 +2017-01-06,19200.0000,0.0000 +2017-01-07,19200.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..25fdd3c585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +2016-12,249600.0000,0.0000 +2017-01,595200.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d89f4fe1ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +"2016 Q4",249600.0000,0.0000 +"2017 Q1",1728000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..994aa1dd22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +2016,249600.0000,0.0000 +2017,7008000.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..02a6714500 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Allocated (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..02a6714500 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Allocated (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..02a6714500 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Allocated (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..02a6714500 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Allocated (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..99de3082a5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" +2016-12-22,0,0,4000.0000,4000.0000,4000.0000 +2016-12-23,0,0,4000.0000,4000.0000,4000.0000 +2016-12-24,0,0,4000.0000,4000.0000,4000.0000 +2016-12-25,0,0,4000.0000,4000.0000,4000.0000 +2016-12-26,0,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-27,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-28,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-29,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-30,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-31,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-02,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-03,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-04,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-05,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-06,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-07,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..90cad4a034 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" +2016-12,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a3ebaa10f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" +"2016 Q4",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +"2017 Q1",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..31946376c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" +2016,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fa6fdb3703 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Allocated" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fa6fdb3703 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Allocated" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fa6fdb3703 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Allocated" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fa6fdb3703 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Allocated" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..996511ba59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" +2016-12-22,0,0,400.0000,400.0000,400.0000 +2016-12-23,0,0,400.0000,400.0000,400.0000 +2016-12-24,0,0,400.0000,400.0000,400.0000 +2016-12-25,0,0,400.0000,400.0000,400.0000 +2016-12-26,0,400.0000,400.0000,400.0000,400.0000 +2016-12-27,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-28,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-29,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-30,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-31,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-01,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-02,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-03,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-04,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-05,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-06,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-07,400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8be9a57087 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" +2016-12,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01,400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b6f0c456d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" +"2016 Q4",400.0000,400.0000,400.0000,400.0000,400.0000 +"2017 Q1",400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..82d16bf310 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" +2016,400.0000,400.0000,400.0000,400.0000,400.0000 +2017,400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..28cbf9dfe8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Allocated" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..28cbf9dfe8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Allocated" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..28cbf9dfe8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Allocated" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..28cbf9dfe8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Allocated" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cfbee63681 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" +2016-12-22,0,400.0000,0,0.0000,0.0000 +2016-12-23,0,400.0000,0,0.0000,0.0000 +2016-12-24,0,400.0000,0,0.0000,0.0000 +2016-12-25,0,400.0000,0,0.0000,0.0000 +2016-12-26,400.0000,400.0000,0,0.0000,0.0000 +2016-12-27,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-28,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-29,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-30,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-31,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-01,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-02,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-03,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-04,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-05,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-06,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-07,400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..05ac1d670c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" +2016-12,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01,400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3043b6c58e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" +"2016 Q4",400.0000,400.0000,0.0000,0.0000,0.0000 +"2017 Q1",400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..05bf628906 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" +2016,400.0000,400.0000,0.0000,0.0000,0.0000 +2017,400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..064e7c3071 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Allocated (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..064e7c3071 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Allocated (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..064e7c3071 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Allocated (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..064e7c3071 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Allocated (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..556e7861a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" +2016-12-22,0,4000.0000,0,0.0000,0.0000 +2016-12-23,0,4000.0000,0,0.0000,0.0000 +2016-12-24,0,4000.0000,0,0.0000,0.0000 +2016-12-25,0,4000.0000,0,0.0000,0.0000 +2016-12-26,4000.0000,4000.0000,0,0.0000,0.0000 +2016-12-27,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-28,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-29,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-30,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-31,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-02,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-03,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-04,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-05,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-06,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-07,4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a870cc1abe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" +2016-12,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60c5dcd2fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" +"2016 Q4",4000.0000,4000.0000,0.0000,0.0000,0.0000 +"2017 Q1",4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ee190558a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" +2016,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017,4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64377d1b99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Allocated" +phillips,1632000.0000 +pozidriv,1632000.0000 +robertson,1632000.0000 +mortorq,1248000.0000 +frearson,1152000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d00ec9a3bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Allocated" +robertson,4896000.0000 +pozidriv,4032000.0000 +phillips,3936000.0000 +mortorq,3552000.0000 +frearson,3456000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ce3acd6f8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Allocated" +robertson,10560000.0000 +pozidriv,9696000.0000 +phillips,9600000.0000 +mortorq,9216000.0000 +frearson,9120000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1d1f92fdde --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Allocated" +robertson,36960000.0000 +pozidriv,36096000.0000 +phillips,36000000.0000 +mortorq,35616000.0000 +frearson,35520000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cfaf954864 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[phillips] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[robertson] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" +2016-12-22,96000.0000,96000.0000,96000.0000,0,0 +2016-12-23,96000.0000,96000.0000,96000.0000,0,0 +2016-12-24,96000.0000,96000.0000,96000.0000,0,0 +2016-12-25,96000.0000,96000.0000,96000.0000,0,0 +2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000,0 +2016-12-27,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-28,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-29,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-30,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-31,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-01,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-02,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-03,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-04,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-05,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-06,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-07,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c409513f28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[phillips] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" +2016-12,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 +2017-01,2976000.0000,2976000.0000,2976000.0000,2976000.0000,2976000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..872cc46ccc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[phillips] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" +"2016 Q4",1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 +"2017 Q1",8640000.0000,8640000.0000,8640000.0000,8640000.0000,8640000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..23da84692e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[phillips] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" +2016,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 +2017,35040000.0000,35040000.0000,35040000.0000,35040000.0000,35040000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..446f98b6bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Allocated" +phillips,163200.0000 +pozidriv,163200.0000 +robertson,163200.0000 +mortorq,124800.0000 +frearson,115200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..51b910eb44 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Allocated" +robertson,489600.0000 +pozidriv,403200.0000 +phillips,393600.0000 +mortorq,355200.0000 +frearson,345600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9b93fe7e87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Allocated" +robertson,1056000.0000 +pozidriv,969600.0000 +phillips,960000.0000 +mortorq,921600.0000 +frearson,912000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3b4bde7121 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Allocated" +robertson,3696000.0000 +pozidriv,3609600.0000 +phillips,3600000.0000 +mortorq,3561600.0000 +frearson,3552000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..488e6c8e7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[phillips] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[robertson] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" +2016-12-22,9600.0000,9600.0000,9600.0000,0,0 +2016-12-23,9600.0000,9600.0000,9600.0000,0,0 +2016-12-24,9600.0000,9600.0000,9600.0000,0,0 +2016-12-25,9600.0000,9600.0000,9600.0000,0,0 +2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000,0 +2016-12-27,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-28,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-29,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-30,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-31,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-01,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-02,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-03,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-04,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-05,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-06,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-07,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c00a5acf0c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[phillips] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" +2016-12,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 +2017-01,297600.0000,297600.0000,297600.0000,297600.0000,297600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ddc3084cb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[phillips] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" +"2016 Q4",192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 +"2017 Q1",864000.0000,864000.0000,864000.0000,864000.0000,864000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fc43db338a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[phillips] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" +2016,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 +2017,3504000.0000,3504000.0000,3504000.0000,3504000.0000,3504000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cf633dd984 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Allocated" +robertson,1632000.0000 +mortorq,1248000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4705a93a2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Allocated" +robertson,4896000.0000 +mortorq,3552000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4b75d1edcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Allocated" +robertson,10560000.0000 +mortorq,9216000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7887419531 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Allocated" +robertson,36960000.0000 +mortorq,35616000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5e18924a1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" +2016-12-22,96000.0000,0,0,0.0000,0.0000 +2016-12-23,96000.0000,0,0,0.0000,0.0000 +2016-12-24,96000.0000,0,0,0.0000,0.0000 +2016-12-25,96000.0000,0,0,0.0000,0.0000 +2016-12-26,96000.0000,96000.0000,0,0.0000,0.0000 +2016-12-27,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-28,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-29,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-30,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-31,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-01,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-02,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-03,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-04,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-05,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-06,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-07,96000.0000,96000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5c9698f9ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" +2016-12,1920000.0000,576000.0000,0.0000,0.0000,0.0000 +2017-01,2976000.0000,2976000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..12b9ad07ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" +"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000,0.0000 +"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..69533182b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" +2016,1920000.0000,576000.0000,0.0000,0.0000,0.0000 +2017,35040000.0000,35040000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3538532379 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Allocated" +robertson,163200.0000 +mortorq,124800.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..02efa24e84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Allocated" +robertson,489600.0000 +mortorq,355200.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4dd3db750e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Allocated" +robertson,1056000.0000 +mortorq,921600.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..712fa71a8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Allocated" +robertson,3696000.0000 +mortorq,3561600.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7b70c34c23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" +2016-12-22,9600.0000,0,0,0.0000,0.0000 +2016-12-23,9600.0000,0,0,0.0000,0.0000 +2016-12-24,9600.0000,0,0,0.0000,0.0000 +2016-12-25,9600.0000,0,0,0.0000,0.0000 +2016-12-26,9600.0000,9600.0000,0,0.0000,0.0000 +2016-12-27,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-28,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-29,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-30,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-31,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-01,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-02,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-03,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-04,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-05,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-06,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-07,9600.0000,9600.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f78f391841 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" +2016-12,192000.0000,57600.0000,0.0000,0.0000,0.0000 +2017-01,297600.0000,297600.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8342ba5186 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" +"2016 Q4",192000.0000,57600.0000,0.0000,0.0000,0.0000 +"2017 Q1",864000.0000,864000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b793124914 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" +2016,192000.0000,57600.0000,0.0000,0.0000,0.0000 +2017,3504000.0000,3504000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..050429717c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Total (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..050429717c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Total (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..050429717c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Total (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..050429717c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Cores: Total (Core Count)" +frearson,4000.0000 +mortorq,4000.0000 +phillips,4000.0000 +pozidriv,4000.0000 +robertson,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..99a5e16ec0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" +2016-12-22,0,0,4000.0000,4000.0000,4000.0000 +2016-12-23,0,0,4000.0000,4000.0000,4000.0000 +2016-12-24,0,0,4000.0000,4000.0000,4000.0000 +2016-12-25,0,0,4000.0000,4000.0000,4000.0000 +2016-12-26,0,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-27,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-28,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-29,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-30,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-31,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-02,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-03,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-04,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-05,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-06,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01-07,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..00344bea3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" +2016-12,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1d6ce3c8b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" +"2016 Q4",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +"2017 Q1",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..82fe6d2bfb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" +2016,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +2017,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..da761b26d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Total" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..da761b26d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Total" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..da761b26d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Total" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..da761b26d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of CPU Nodes: Total" +frearson,400.0000 +mortorq,400.0000 +phillips,400.0000 +pozidriv,400.0000 +robertson,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..17008960bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" +2016-12-22,0,0,400.0000,400.0000,400.0000 +2016-12-23,0,0,400.0000,400.0000,400.0000 +2016-12-24,0,0,400.0000,400.0000,400.0000 +2016-12-25,0,0,400.0000,400.0000,400.0000 +2016-12-26,0,400.0000,400.0000,400.0000,400.0000 +2016-12-27,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-28,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-29,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-30,400.0000,400.0000,400.0000,400.0000,400.0000 +2016-12-31,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-01,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-02,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-03,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-04,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-05,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-06,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01-07,400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..671e5b0975 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" +2016-12,400.0000,400.0000,400.0000,400.0000,400.0000 +2017-01,400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ef35cfd757 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" +"2016 Q4",400.0000,400.0000,400.0000,400.0000,400.0000 +"2017 Q1",400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1f884bef41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" +2016,400.0000,400.0000,400.0000,400.0000,400.0000 +2017,400.0000,400.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ce0e98b4d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Total" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ce0e98b4d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Total" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ce0e98b4d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Total" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ce0e98b4d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPU Nodes: Total" +mortorq,400.0000 +robertson,400.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1c17c5e5fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" +2016-12-22,0,400.0000,0,0.0000,0.0000 +2016-12-23,0,400.0000,0,0.0000,0.0000 +2016-12-24,0,400.0000,0,0.0000,0.0000 +2016-12-25,0,400.0000,0,0.0000,0.0000 +2016-12-26,400.0000,400.0000,0,0.0000,0.0000 +2016-12-27,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-28,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-29,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-30,400.0000,400.0000,0.0000,0.0000,0.0000 +2016-12-31,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-01,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-02,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-03,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-04,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-05,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-06,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01-07,400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..73603ba097 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" +2016-12,400.0000,400.0000,0.0000,0.0000,0.0000 +2017-01,400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a2b8b63152 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" +"2016 Q4",400.0000,400.0000,0.0000,0.0000,0.0000 +"2017 Q1",400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..13a38d47c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" +2016,400.0000,400.0000,0.0000,0.0000,0.0000 +2017,400.0000,400.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b1a1999314 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Total (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b1a1999314 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Total (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b1a1999314 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Total (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b1a1999314 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"Average Number of GPUs: Total (GPU Count)" +mortorq,4000.0000 +robertson,4000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f890f4cdf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" +2016-12-22,0,4000.0000,0,0.0000,0.0000 +2016-12-23,0,4000.0000,0,0.0000,0.0000 +2016-12-24,0,4000.0000,0,0.0000,0.0000 +2016-12-25,0,4000.0000,0,0.0000,0.0000 +2016-12-26,4000.0000,4000.0000,0,0.0000,0.0000 +2016-12-27,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-28,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-29,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-30,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2016-12-31,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-02,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-03,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-04,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-05,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-06,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01-07,4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7a1fcc8404 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" +2016-12,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b5e1bcedf1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" +"2016 Q4",4000.0000,4000.0000,0.0000,0.0000,0.0000 +"2017 Q1",4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..375d7d2e92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" +2016,4000.0000,4000.0000,0.0000,0.0000,0.0000 +2017,4000.0000,4000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..912fc4907c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Total" +phillips,1632000.0000 +pozidriv,1632000.0000 +robertson,1632000.0000 +mortorq,1248000.0000 +frearson,1152000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..31acc00bd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Total" +robertson,4896000.0000 +pozidriv,4032000.0000 +phillips,3936000.0000 +mortorq,3552000.0000 +frearson,3456000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0e164670f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Total" +robertson,10560000.0000 +pozidriv,9696000.0000 +phillips,9600000.0000 +mortorq,9216000.0000 +frearson,9120000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..89211c364d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Hours: Total" +robertson,36960000.0000 +pozidriv,36096000.0000 +phillips,36000000.0000 +mortorq,35616000.0000 +frearson,35520000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8650857c03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[phillips] CPU Hours: Total","[pozidriv] CPU Hours: Total","[robertson] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" +2016-12-22,96000.0000,96000.0000,96000.0000,0,0 +2016-12-23,96000.0000,96000.0000,96000.0000,0,0 +2016-12-24,96000.0000,96000.0000,96000.0000,0,0 +2016-12-25,96000.0000,96000.0000,96000.0000,0,0 +2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000,0 +2016-12-27,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-28,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-29,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-30,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-31,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-01,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-02,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-03,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-04,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-05,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-06,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +2017-01-07,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e18ea86daa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" +2016-12,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 +2017-01,2976000.0000,2976000.0000,2976000.0000,2976000.0000,2976000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5d70821776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" +"2016 Q4",1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 +"2017 Q1",8640000.0000,8640000.0000,8640000.0000,8640000.0000,8640000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ab8527e95 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" +2016,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 +2017,35040000.0000,35040000.0000,35040000.0000,35040000.0000,35040000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6c8a7f90e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Total" +phillips,163200.0000 +pozidriv,163200.0000 +robertson,163200.0000 +mortorq,124800.0000 +frearson,115200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f688877565 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Total" +robertson,489600.0000 +pozidriv,403200.0000 +phillips,393600.0000 +mortorq,355200.0000 +frearson,345600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3ad87b8db0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Total" +robertson,1056000.0000 +pozidriv,969600.0000 +phillips,960000.0000 +mortorq,921600.0000 +frearson,912000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dfb6d3c597 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"CPU Node Hours: Total" +robertson,3696000.0000 +pozidriv,3609600.0000 +phillips,3600000.0000 +mortorq,3561600.0000 +frearson,3552000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..456f2dc349 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[phillips] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[robertson] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" +2016-12-22,9600.0000,9600.0000,9600.0000,0,0 +2016-12-23,9600.0000,9600.0000,9600.0000,0,0 +2016-12-24,9600.0000,9600.0000,9600.0000,0,0 +2016-12-25,9600.0000,9600.0000,9600.0000,0,0 +2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000,0 +2016-12-27,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-28,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-29,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-30,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-31,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-01,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-02,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-03,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-04,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-05,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-06,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +2017-01-07,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..71fbc0e6a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[phillips] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" +2016-12,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 +2017-01,297600.0000,297600.0000,297600.0000,297600.0000,297600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a16a773aab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[phillips] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" +"2016 Q4",192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 +"2017 Q1",864000.0000,864000.0000,864000.0000,864000.0000,864000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2462564c45 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[phillips] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" +2016,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 +2017,3504000.0000,3504000.0000,3504000.0000,3504000.0000,3504000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..55b76f0b7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Total" +robertson,1632000.0000 +mortorq,1248000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a538cb9f63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Total" +robertson,4896000.0000 +mortorq,3552000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..efa854d761 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Total" +robertson,10560000.0000 +mortorq,9216000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6bfcf673d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Hours: Total" +robertson,36960000.0000 +mortorq,35616000.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5966da8620 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" +2016-12-22,96000.0000,0,0,0.0000,0.0000 +2016-12-23,96000.0000,0,0,0.0000,0.0000 +2016-12-24,96000.0000,0,0,0.0000,0.0000 +2016-12-25,96000.0000,0,0,0.0000,0.0000 +2016-12-26,96000.0000,96000.0000,0,0.0000,0.0000 +2016-12-27,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-28,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-29,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-30,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2016-12-31,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-01,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-02,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-03,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-04,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-05,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-06,96000.0000,96000.0000,0.0000,0.0000,0.0000 +2017-01-07,96000.0000,96000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5b7db6bc3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" +2016-12,1920000.0000,576000.0000,0.0000,0.0000,0.0000 +2017-01,2976000.0000,2976000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..90b7781863 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" +"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000,0.0000 +"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8d155e5667 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" +2016,1920000.0000,576000.0000,0.0000,0.0000,0.0000 +2017,35040000.0000,35040000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4ee6494180 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Total" +robertson,163200.0000 +mortorq,124800.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..da1b6714f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Total" +robertson,489600.0000 +mortorq,355200.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..92e08b76cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Total" +robertson,1056000.0000 +mortorq,921600.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c57594ae6d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Resource,"GPU Node Hours: Total" +robertson,3696000.0000 +mortorq,3561600.0000 +frearson,0.0000 +phillips,0.0000 +pozidriv,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a137db0dd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" +2016-12-22,9600.0000,0,0,0.0000,0.0000 +2016-12-23,9600.0000,0,0,0.0000,0.0000 +2016-12-24,9600.0000,0,0,0.0000,0.0000 +2016-12-25,9600.0000,0,0,0.0000,0.0000 +2016-12-26,9600.0000,9600.0000,0,0.0000,0.0000 +2016-12-27,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-28,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-29,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-30,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2016-12-31,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-01,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-02,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-03,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-04,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-05,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-06,9600.0000,9600.0000,0.0000,0.0000,0.0000 +2017-01-07,9600.0000,9600.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e02fcee774 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" +2016-12,192000.0000,57600.0000,0.0000,0.0000,0.0000 +2017-01,297600.0000,297600.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7a44ada10e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" +"2016 Q4",192000.0000,57600.0000,0.0000,0.0000,0.0000 +"2017 Q1",864000.0000,864000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..513a8b5812 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" +2016,192000.0000,57600.0000,0.0000,0.0000,0.0000 +2017,3504000.0000,3504000.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..90ef540aca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" +"CPU Allocated",6823.5294 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..63abd4da4f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" +"CPU Allocated",7428.5714 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..002548410d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" +"CPU Allocated",7762.3762 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..be4c4862fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" +"CPU Allocated",7936.1702 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7a06b0ea27 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" +2016-12-22,4000.0000,0,4000.0000,4000.0000 +2016-12-23,4000.0000,0,4000.0000,4000.0000 +2016-12-24,4000.0000,0,4000.0000,4000.0000 +2016-12-25,4000.0000,0,4000.0000,4000.0000 +2016-12-26,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-27,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-28,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-29,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-30,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-31,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-01,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-02,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-03,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-04,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-05,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-06,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-07,8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7074e29043 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" +2016-12,5818.1818,4000.0000,4000.0000,4000.0000 +2017-01,8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..992280939a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" +"2016 Q4",5818.1818,4000.0000,4000.0000,4000.0000 +"2017 Q1",8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dad43c8b36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" +2016,5818.1818,4000.0000,4000.0000,4000.0000 +2017,8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3ee8ae4125 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Allocated" +"CPU Allocated",682.3529 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..694de44e13 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Allocated" +"CPU Allocated",742.8571 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2d556c6e19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Allocated" +"CPU Allocated",776.2376 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..82abd2ed9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Allocated" +"CPU Allocated",793.6170 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..244d61de15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" +2016-12-22,400.0000,0,400.0000,400.0000 +2016-12-23,400.0000,0,400.0000,400.0000 +2016-12-24,400.0000,0,400.0000,400.0000 +2016-12-25,400.0000,0,400.0000,400.0000 +2016-12-26,400.0000,400.0000,400.0000,400.0000 +2016-12-27,800.0000,400.0000,400.0000,400.0000 +2016-12-28,800.0000,400.0000,400.0000,400.0000 +2016-12-29,800.0000,400.0000,400.0000,400.0000 +2016-12-30,800.0000,400.0000,400.0000,400.0000 +2016-12-31,800.0000,400.0000,400.0000,400.0000 +2017-01-01,800.0000,400.0000,400.0000,400.0000 +2017-01-02,800.0000,400.0000,400.0000,400.0000 +2017-01-03,800.0000,400.0000,400.0000,400.0000 +2017-01-04,800.0000,400.0000,400.0000,400.0000 +2017-01-05,800.0000,400.0000,400.0000,400.0000 +2017-01-06,800.0000,400.0000,400.0000,400.0000 +2017-01-07,800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..18d96f6172 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" +2016-12,581.8182,400.0000,400.0000,400.0000 +2017-01,800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2b5db35cfd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" +"2016 Q4",581.8182,400.0000,400.0000,400.0000 +"2017 Q1",800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2cecb02b3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" +2016,581.8182,400.0000,400.0000,400.0000 +2017,800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..deffebdce5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Allocated" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..deffebdce5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Allocated" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..deffebdce5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Allocated" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..deffebdce5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Allocated" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cfd5a1f89d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" +2016-12-22,0,400.0000,0.0000,0.0000 +2016-12-23,0,400.0000,0.0000,0.0000 +2016-12-24,0,400.0000,0.0000,0.0000 +2016-12-25,0,400.0000,0.0000,0.0000 +2016-12-26,400.0000,400.0000,0.0000,0.0000 +2016-12-27,400.0000,400.0000,0.0000,0.0000 +2016-12-28,400.0000,400.0000,0.0000,0.0000 +2016-12-29,400.0000,400.0000,0.0000,0.0000 +2016-12-30,400.0000,400.0000,0.0000,0.0000 +2016-12-31,400.0000,400.0000,0.0000,0.0000 +2017-01-01,400.0000,400.0000,0.0000,0.0000 +2017-01-02,400.0000,400.0000,0.0000,0.0000 +2017-01-03,400.0000,400.0000,0.0000,0.0000 +2017-01-04,400.0000,400.0000,0.0000,0.0000 +2017-01-05,400.0000,400.0000,0.0000,0.0000 +2017-01-06,400.0000,400.0000,0.0000,0.0000 +2017-01-07,400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e39c00ef2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" +2016-12,400.0000,400.0000,0.0000,0.0000 +2017-01,400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5749549d00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" +"2016 Q4",400.0000,400.0000,0.0000,0.0000 +"2017 Q1",400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e28a408ccf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" +2016,400.0000,400.0000,0.0000,0.0000 +2017,400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5683081f06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5683081f06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5683081f06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5683081f06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c89b7fa1fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" +2016-12-22,0,4000.0000,0.0000,0.0000 +2016-12-23,0,4000.0000,0.0000,0.0000 +2016-12-24,0,4000.0000,0.0000,0.0000 +2016-12-25,0,4000.0000,0.0000,0.0000 +2016-12-26,4000.0000,4000.0000,0.0000,0.0000 +2016-12-27,4000.0000,4000.0000,0.0000,0.0000 +2016-12-28,4000.0000,4000.0000,0.0000,0.0000 +2016-12-29,4000.0000,4000.0000,0.0000,0.0000 +2016-12-30,4000.0000,4000.0000,0.0000,0.0000 +2016-12-31,4000.0000,4000.0000,0.0000,0.0000 +2017-01-01,4000.0000,4000.0000,0.0000,0.0000 +2017-01-02,4000.0000,4000.0000,0.0000,0.0000 +2017-01-03,4000.0000,4000.0000,0.0000,0.0000 +2017-01-04,4000.0000,4000.0000,0.0000,0.0000 +2017-01-05,4000.0000,4000.0000,0.0000,0.0000 +2017-01-06,4000.0000,4000.0000,0.0000,0.0000 +2017-01-07,4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7936bbc38e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" +2016-12,4000.0000,4000.0000,0.0000,0.0000 +2017-01,4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6e677959bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" +"2016 Q4",4000.0000,4000.0000,0.0000,0.0000 +"2017 Q1",4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..583e485ba6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" +2016,4000.0000,4000.0000,0.0000,0.0000 +2017,4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a258e8e5fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Allocated" +"CPU Allocated",2784000.0000 +"CPU Node Allocated",1632000.0000 +"GPU Node Allocated",1632000.0000 +"GPU Allocated",1248000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fdafdb6ffc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Allocated" +"CPU Allocated",7488000.0000 +"GPU Node Allocated",4896000.0000 +"CPU Node Allocated",3936000.0000 +"GPU Allocated",3552000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60857f89a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Allocated" +"CPU Allocated",18816000.0000 +"GPU Node Allocated",10560000.0000 +"CPU Node Allocated",9600000.0000 +"GPU Allocated",9216000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8c5a1052d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Allocated" +"CPU Allocated",71616000.0000 +"GPU Node Allocated",36960000.0000 +"CPU Node Allocated",36000000.0000 +"GPU Allocated",35616000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0e3a22a588 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" +2016-12-22,96000.0000,96000.0000,96000.0000,0 +2016-12-23,96000.0000,96000.0000,96000.0000,0 +2016-12-24,96000.0000,96000.0000,96000.0000,0 +2016-12-25,96000.0000,96000.0000,96000.0000,0 +2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-27,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-28,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-29,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-30,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-31,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-01,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-02,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-03,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-04,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-05,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-06,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-07,192000.0000,96000.0000,96000.0000,96000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8fc3a3a349 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" +2016-12,1536000.0000,1920000.0000,960000.0000,576000.0000 +2017-01,5952000.0000,2976000.0000,2976000.0000,2976000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..10ae0f784f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" +"2016 Q4",1536000.0000,1920000.0000,960000.0000,576000.0000 +"2017 Q1",17280000.0000,8640000.0000,8640000.0000,8640000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..971aeb1450 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" +2016,1536000.0000,1920000.0000,960000.0000,576000.0000 +2017,70080000.0000,35040000.0000,35040000.0000,35040000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1f6b0d28e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Allocated" +"CPU Allocated",278400.0000 +"CPU Node Allocated",163200.0000 +"GPU Node Allocated",163200.0000 +"GPU Allocated",124800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dbfb53d5fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Allocated" +"CPU Allocated",748800.0000 +"GPU Node Allocated",489600.0000 +"CPU Node Allocated",393600.0000 +"GPU Allocated",355200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5feb5de0ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Allocated" +"CPU Allocated",1881600.0000 +"GPU Node Allocated",1056000.0000 +"CPU Node Allocated",960000.0000 +"GPU Allocated",921600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f092a7eebb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Allocated" +"CPU Allocated",7161600.0000 +"GPU Node Allocated",3696000.0000 +"CPU Node Allocated",3600000.0000 +"GPU Allocated",3561600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b60f5f6fa0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" +2016-12-22,9600.0000,9600.0000,9600.0000,0 +2016-12-23,9600.0000,9600.0000,9600.0000,0 +2016-12-24,9600.0000,9600.0000,9600.0000,0 +2016-12-25,9600.0000,9600.0000,9600.0000,0 +2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-27,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-28,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-29,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-30,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-31,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-01,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-02,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-03,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-04,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-05,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-06,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-07,19200.0000,9600.0000,9600.0000,9600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..aaf8923e58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" +2016-12,153600.0000,192000.0000,96000.0000,57600.0000 +2017-01,595200.0000,297600.0000,297600.0000,297600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4aedf2259b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" +"2016 Q4",153600.0000,192000.0000,96000.0000,57600.0000 +"2017 Q1",1728000.0000,864000.0000,864000.0000,864000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ec6f59cd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" +2016,153600.0000,192000.0000,96000.0000,57600.0000 +2017,7008000.0000,3504000.0000,3504000.0000,3504000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e352b212ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Allocated" +"GPU Node Allocated",1632000.0000 +"GPU Allocated",1248000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..89edbe693c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Allocated" +"GPU Node Allocated",4896000.0000 +"GPU Allocated",3552000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c698df1e4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Allocated" +"GPU Node Allocated",10560000.0000 +"GPU Allocated",9216000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..42982bd507 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Allocated" +"GPU Node Allocated",36960000.0000 +"GPU Allocated",35616000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..eb9c87c7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" +2016-12-22,96000.0000,0,0.0000,0.0000 +2016-12-23,96000.0000,0,0.0000,0.0000 +2016-12-24,96000.0000,0,0.0000,0.0000 +2016-12-25,96000.0000,0,0.0000,0.0000 +2016-12-26,96000.0000,96000.0000,0.0000,0.0000 +2016-12-27,96000.0000,96000.0000,0.0000,0.0000 +2016-12-28,96000.0000,96000.0000,0.0000,0.0000 +2016-12-29,96000.0000,96000.0000,0.0000,0.0000 +2016-12-30,96000.0000,96000.0000,0.0000,0.0000 +2016-12-31,96000.0000,96000.0000,0.0000,0.0000 +2017-01-01,96000.0000,96000.0000,0.0000,0.0000 +2017-01-02,96000.0000,96000.0000,0.0000,0.0000 +2017-01-03,96000.0000,96000.0000,0.0000,0.0000 +2017-01-04,96000.0000,96000.0000,0.0000,0.0000 +2017-01-05,96000.0000,96000.0000,0.0000,0.0000 +2017-01-06,96000.0000,96000.0000,0.0000,0.0000 +2017-01-07,96000.0000,96000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a92c6c1592 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" +2016-12,1920000.0000,576000.0000,0.0000,0.0000 +2017-01,2976000.0000,2976000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c2a2e13e9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" +"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000 +"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..631ed3fd1f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" +2016,1920000.0000,576000.0000,0.0000,0.0000 +2017,35040000.0000,35040000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6598151c07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Allocated" +"GPU Node Allocated",163200.0000 +"GPU Allocated",124800.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e328f8841f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Allocated" +"GPU Node Allocated",489600.0000 +"GPU Allocated",355200.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f9a127a3fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Allocated" +"GPU Node Allocated",1056000.0000 +"GPU Allocated",921600.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..688576006e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Allocated" +"GPU Node Allocated",3696000.0000 +"GPU Allocated",3561600.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b6ac641bb2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" +2016-12-22,9600.0000,0,0.0000,0.0000 +2016-12-23,9600.0000,0,0.0000,0.0000 +2016-12-24,9600.0000,0,0.0000,0.0000 +2016-12-25,9600.0000,0,0.0000,0.0000 +2016-12-26,9600.0000,9600.0000,0.0000,0.0000 +2016-12-27,9600.0000,9600.0000,0.0000,0.0000 +2016-12-28,9600.0000,9600.0000,0.0000,0.0000 +2016-12-29,9600.0000,9600.0000,0.0000,0.0000 +2016-12-30,9600.0000,9600.0000,0.0000,0.0000 +2016-12-31,9600.0000,9600.0000,0.0000,0.0000 +2017-01-01,9600.0000,9600.0000,0.0000,0.0000 +2017-01-02,9600.0000,9600.0000,0.0000,0.0000 +2017-01-03,9600.0000,9600.0000,0.0000,0.0000 +2017-01-04,9600.0000,9600.0000,0.0000,0.0000 +2017-01-05,9600.0000,9600.0000,0.0000,0.0000 +2017-01-06,9600.0000,9600.0000,0.0000,0.0000 +2017-01-07,9600.0000,9600.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0c38ff238f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" +2016-12,192000.0000,57600.0000,0.0000,0.0000 +2017-01,297600.0000,297600.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f275f3f597 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" +"2016 Q4",192000.0000,57600.0000,0.0000,0.0000 +"2017 Q1",864000.0000,864000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7fedf89597 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" +2016,192000.0000,57600.0000,0.0000,0.0000 +2017,3504000.0000,3504000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..225dbb0115 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" +"CPU Allocated",6823.5294 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8744742552 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" +"CPU Allocated",7428.5714 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..05aa05a8d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" +"CPU Allocated",7762.3762 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ab0ffe194f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" +"CPU Allocated",7936.1702 +"GPU Allocated",4000.0000 +"CPU Node Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d2cfd758bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" +2016-12-22,4000.0000,0,4000.0000,4000.0000 +2016-12-23,4000.0000,0,4000.0000,4000.0000 +2016-12-24,4000.0000,0,4000.0000,4000.0000 +2016-12-25,4000.0000,0,4000.0000,4000.0000 +2016-12-26,4000.0000,4000.0000,4000.0000,4000.0000 +2016-12-27,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-28,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-29,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-30,8000.0000,4000.0000,4000.0000,4000.0000 +2016-12-31,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-01,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-02,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-03,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-04,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-05,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-06,8000.0000,4000.0000,4000.0000,4000.0000 +2017-01-07,8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4b7eeeecdf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" +2016-12,5818.1818,4000.0000,4000.0000,4000.0000 +2017-01,8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cb76fa473c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" +"2016 Q4",5818.1818,4000.0000,4000.0000,4000.0000 +"2017 Q1",8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..046de60ae2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" +2016,5818.1818,4000.0000,4000.0000,4000.0000 +2017,8000.0000,4000.0000,4000.0000,4000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3d5998fce4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Total" +"CPU Allocated",682.3529 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b636a48abb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Total" +"CPU Allocated",742.8571 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f8ec2abfd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Total" +"CPU Allocated",776.2376 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2bee62bebb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of CPU Nodes: Total" +"CPU Allocated",793.6170 +"GPU Allocated",400.0000 +"CPU Node Allocated",400.0000 +"GPU Node Allocated",400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..80824c632e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" +2016-12-22,400.0000,0,400.0000,400.0000 +2016-12-23,400.0000,0,400.0000,400.0000 +2016-12-24,400.0000,0,400.0000,400.0000 +2016-12-25,400.0000,0,400.0000,400.0000 +2016-12-26,400.0000,400.0000,400.0000,400.0000 +2016-12-27,800.0000,400.0000,400.0000,400.0000 +2016-12-28,800.0000,400.0000,400.0000,400.0000 +2016-12-29,800.0000,400.0000,400.0000,400.0000 +2016-12-30,800.0000,400.0000,400.0000,400.0000 +2016-12-31,800.0000,400.0000,400.0000,400.0000 +2017-01-01,800.0000,400.0000,400.0000,400.0000 +2017-01-02,800.0000,400.0000,400.0000,400.0000 +2017-01-03,800.0000,400.0000,400.0000,400.0000 +2017-01-04,800.0000,400.0000,400.0000,400.0000 +2017-01-05,800.0000,400.0000,400.0000,400.0000 +2017-01-06,800.0000,400.0000,400.0000,400.0000 +2017-01-07,800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cc6dd27d64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" +2016-12,581.8182,400.0000,400.0000,400.0000 +2017-01,800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..54ad32077d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" +"2016 Q4",581.8182,400.0000,400.0000,400.0000 +"2017 Q1",800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..24f594f0e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" +2016,581.8182,400.0000,400.0000,400.0000 +2017,800.0000,400.0000,400.0000,400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..805b57e030 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Total" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..805b57e030 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Total" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..805b57e030 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Total" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..805b57e030 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPU Nodes: Total" +"GPU Allocated",400.0000 +"GPU Node Allocated",400.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..756e6c4d74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" +2016-12-22,0,400.0000,0.0000,0.0000 +2016-12-23,0,400.0000,0.0000,0.0000 +2016-12-24,0,400.0000,0.0000,0.0000 +2016-12-25,0,400.0000,0.0000,0.0000 +2016-12-26,400.0000,400.0000,0.0000,0.0000 +2016-12-27,400.0000,400.0000,0.0000,0.0000 +2016-12-28,400.0000,400.0000,0.0000,0.0000 +2016-12-29,400.0000,400.0000,0.0000,0.0000 +2016-12-30,400.0000,400.0000,0.0000,0.0000 +2016-12-31,400.0000,400.0000,0.0000,0.0000 +2017-01-01,400.0000,400.0000,0.0000,0.0000 +2017-01-02,400.0000,400.0000,0.0000,0.0000 +2017-01-03,400.0000,400.0000,0.0000,0.0000 +2017-01-04,400.0000,400.0000,0.0000,0.0000 +2017-01-05,400.0000,400.0000,0.0000,0.0000 +2017-01-06,400.0000,400.0000,0.0000,0.0000 +2017-01-07,400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..16c6130969 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" +2016-12,400.0000,400.0000,0.0000,0.0000 +2017-01,400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..50c743849a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" +"2016 Q4",400.0000,400.0000,0.0000,0.0000 +"2017 Q1",400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..25eec88c3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" +2016,400.0000,400.0000,0.0000,0.0000 +2017,400.0000,400.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0545625c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0545625c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0545625c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0545625c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" +"GPU Allocated",4000.0000 +"GPU Node Allocated",4000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..78bb793996 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" +2016-12-22,0,4000.0000,0.0000,0.0000 +2016-12-23,0,4000.0000,0.0000,0.0000 +2016-12-24,0,4000.0000,0.0000,0.0000 +2016-12-25,0,4000.0000,0.0000,0.0000 +2016-12-26,4000.0000,4000.0000,0.0000,0.0000 +2016-12-27,4000.0000,4000.0000,0.0000,0.0000 +2016-12-28,4000.0000,4000.0000,0.0000,0.0000 +2016-12-29,4000.0000,4000.0000,0.0000,0.0000 +2016-12-30,4000.0000,4000.0000,0.0000,0.0000 +2016-12-31,4000.0000,4000.0000,0.0000,0.0000 +2017-01-01,4000.0000,4000.0000,0.0000,0.0000 +2017-01-02,4000.0000,4000.0000,0.0000,0.0000 +2017-01-03,4000.0000,4000.0000,0.0000,0.0000 +2017-01-04,4000.0000,4000.0000,0.0000,0.0000 +2017-01-05,4000.0000,4000.0000,0.0000,0.0000 +2017-01-06,4000.0000,4000.0000,0.0000,0.0000 +2017-01-07,4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3b0a21236e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" +2016-12,4000.0000,4000.0000,0.0000,0.0000 +2017-01,4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0556041708 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" +"2016 Q4",4000.0000,4000.0000,0.0000,0.0000 +"2017 Q1",4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..34c379017f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" +2016,4000.0000,4000.0000,0.0000,0.0000 +2017,4000.0000,4000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..78398c9b00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Total" +"CPU Allocated",2784000.0000 +"CPU Node Allocated",1632000.0000 +"GPU Node Allocated",1632000.0000 +"GPU Allocated",1248000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4254f218c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Total" +"CPU Allocated",7488000.0000 +"GPU Node Allocated",4896000.0000 +"CPU Node Allocated",3936000.0000 +"GPU Allocated",3552000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cf95e93181 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Total" +"CPU Allocated",18816000.0000 +"GPU Node Allocated",10560000.0000 +"CPU Node Allocated",9600000.0000 +"GPU Allocated",9216000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..82cdd49d20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Hours: Total" +"CPU Allocated",71616000.0000 +"GPU Node Allocated",36960000.0000 +"CPU Node Allocated",36000000.0000 +"GPU Allocated",35616000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..89a0f181d0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" +2016-12-22,96000.0000,96000.0000,96000.0000,0 +2016-12-23,96000.0000,96000.0000,96000.0000,0 +2016-12-24,96000.0000,96000.0000,96000.0000,0 +2016-12-25,96000.0000,96000.0000,96000.0000,0 +2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000 +2016-12-27,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-28,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-29,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-30,192000.0000,96000.0000,96000.0000,96000.0000 +2016-12-31,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-01,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-02,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-03,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-04,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-05,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-06,192000.0000,96000.0000,96000.0000,96000.0000 +2017-01-07,192000.0000,96000.0000,96000.0000,96000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..86de7d71a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" +2016-12,1536000.0000,1920000.0000,960000.0000,576000.0000 +2017-01,5952000.0000,2976000.0000,2976000.0000,2976000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..120b96338f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" +"2016 Q4",1536000.0000,1920000.0000,960000.0000,576000.0000 +"2017 Q1",17280000.0000,8640000.0000,8640000.0000,8640000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2842026582 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" +2016,1536000.0000,1920000.0000,960000.0000,576000.0000 +2017,70080000.0000,35040000.0000,35040000.0000,35040000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8f4caa6bad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Total" +"CPU Allocated",278400.0000 +"CPU Node Allocated",163200.0000 +"GPU Node Allocated",163200.0000 +"GPU Allocated",124800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a05ec77c6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Total" +"CPU Allocated",748800.0000 +"GPU Node Allocated",489600.0000 +"CPU Node Allocated",393600.0000 +"GPU Allocated",355200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7b9a52a1ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Total" +"CPU Allocated",1881600.0000 +"GPU Node Allocated",1056000.0000 +"CPU Node Allocated",960000.0000 +"GPU Allocated",921600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bb07566264 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","CPU Node Hours: Total" +"CPU Allocated",7161600.0000 +"GPU Node Allocated",3696000.0000 +"CPU Node Allocated",3600000.0000 +"GPU Allocated",3561600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9d6f9e6315 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[CPU Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" +2016-12-22,9600.0000,9600.0000,9600.0000,0 +2016-12-23,9600.0000,9600.0000,9600.0000,0 +2016-12-24,9600.0000,9600.0000,9600.0000,0 +2016-12-25,9600.0000,9600.0000,9600.0000,0 +2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000 +2016-12-27,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-28,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-29,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-30,19200.0000,9600.0000,9600.0000,9600.0000 +2016-12-31,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-01,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-02,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-03,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-04,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-05,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-06,19200.0000,9600.0000,9600.0000,9600.0000 +2017-01-07,19200.0000,9600.0000,9600.0000,9600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fffeae2635 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[CPU Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" +2016-12,153600.0000,192000.0000,96000.0000,57600.0000 +2017-01,595200.0000,297600.0000,297600.0000,297600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7c9763b3a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[CPU Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" +"2016 Q4",153600.0000,192000.0000,96000.0000,57600.0000 +"2017 Q1",1728000.0000,864000.0000,864000.0000,864000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a0b0a16aed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[CPU Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" +2016,153600.0000,192000.0000,96000.0000,57600.0000 +2017,7008000.0000,3504000.0000,3504000.0000,3504000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dc6a08e343 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Total" +"GPU Node Allocated",1632000.0000 +"GPU Allocated",1248000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b5e8d2e148 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Total" +"GPU Node Allocated",4896000.0000 +"GPU Allocated",3552000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cfc71f062e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Total" +"GPU Node Allocated",10560000.0000 +"GPU Allocated",9216000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c415b45947 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Hours: Total" +"GPU Node Allocated",36960000.0000 +"GPU Allocated",35616000.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9c17b717d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" +2016-12-22,96000.0000,0,0.0000,0.0000 +2016-12-23,96000.0000,0,0.0000,0.0000 +2016-12-24,96000.0000,0,0.0000,0.0000 +2016-12-25,96000.0000,0,0.0000,0.0000 +2016-12-26,96000.0000,96000.0000,0.0000,0.0000 +2016-12-27,96000.0000,96000.0000,0.0000,0.0000 +2016-12-28,96000.0000,96000.0000,0.0000,0.0000 +2016-12-29,96000.0000,96000.0000,0.0000,0.0000 +2016-12-30,96000.0000,96000.0000,0.0000,0.0000 +2016-12-31,96000.0000,96000.0000,0.0000,0.0000 +2017-01-01,96000.0000,96000.0000,0.0000,0.0000 +2017-01-02,96000.0000,96000.0000,0.0000,0.0000 +2017-01-03,96000.0000,96000.0000,0.0000,0.0000 +2017-01-04,96000.0000,96000.0000,0.0000,0.0000 +2017-01-05,96000.0000,96000.0000,0.0000,0.0000 +2017-01-06,96000.0000,96000.0000,0.0000,0.0000 +2017-01-07,96000.0000,96000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fbf7c3c69b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" +2016-12,1920000.0000,576000.0000,0.0000,0.0000 +2017-01,2976000.0000,2976000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c14bc658ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" +"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000 +"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..497f1e1881 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" +2016,1920000.0000,576000.0000,0.0000,0.0000 +2017,35040000.0000,35040000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6e0dcaf357 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Total" +"GPU Node Allocated",163200.0000 +"GPU Allocated",124800.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d4afd6aa55 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Total" +"GPU Node Allocated",489600.0000 +"GPU Allocated",355200.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4c116a1d8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Total" +"GPU Node Allocated",1056000.0000 +"GPU Allocated",921600.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ed80615ca8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,13 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Allocation Type","GPU Node Hours: Total" +"GPU Node Allocated",3696000.0000 +"GPU Allocated",3561600.0000 +"CPU Allocated",0.0000 +"CPU Node Allocated",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c2e758a372 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" +2016-12-22,9600.0000,0,0.0000,0.0000 +2016-12-23,9600.0000,0,0.0000,0.0000 +2016-12-24,9600.0000,0,0.0000,0.0000 +2016-12-25,9600.0000,0,0.0000,0.0000 +2016-12-26,9600.0000,9600.0000,0.0000,0.0000 +2016-12-27,9600.0000,9600.0000,0.0000,0.0000 +2016-12-28,9600.0000,9600.0000,0.0000,0.0000 +2016-12-29,9600.0000,9600.0000,0.0000,0.0000 +2016-12-30,9600.0000,9600.0000,0.0000,0.0000 +2016-12-31,9600.0000,9600.0000,0.0000,0.0000 +2017-01-01,9600.0000,9600.0000,0.0000,0.0000 +2017-01-02,9600.0000,9600.0000,0.0000,0.0000 +2017-01-03,9600.0000,9600.0000,0.0000,0.0000 +2017-01-04,9600.0000,9600.0000,0.0000,0.0000 +2017-01-05,9600.0000,9600.0000,0.0000,0.0000 +2017-01-06,9600.0000,9600.0000,0.0000,0.0000 +2017-01-07,9600.0000,9600.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bfeafcc231 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" +2016-12,192000.0000,57600.0000,0.0000,0.0000 +2017-01,297600.0000,297600.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ab067ed57d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" +"2016 Q4",192000.0000,57600.0000,0.0000,0.0000 +"2017 Q1",864000.0000,864000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8a21e51be7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource Allocation Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" +2016,192000.0000,57600.0000,0.0000,0.0000 +2017,3504000.0000,3504000.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cee39cf979 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" +"High-performance computing",17882.3529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..58778f961c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" +"High-performance computing",16235.2941 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2d20a643f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" +"High-performance computing",18254.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e596aad411 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" +"High-performance computing",19501.2987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0ab5b37f65 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" +2016-12-22,12000.0000 +2016-12-23,12000.0000 +2016-12-24,12000.0000 +2016-12-25,12000.0000 +2016-12-26,16000.0000 +2016-12-27,20000.0000 +2016-12-28,20000.0000 +2016-12-29,20000.0000 +2016-12-30,20000.0000 +2016-12-31,20000.0000 +2017-01-01,20000.0000 +2017-01-02,20000.0000 +2017-01-03,20000.0000 +2017-01-04,20000.0000 +2017-01-05,20000.0000 +2017-01-06,20000.0000 +2017-01-07,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cfa59a8d28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" +2016-12,10400.0000 +2017-01,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4082dbfd96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" +"2016 Q4",10400.0000 +"2017 Q1",20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..502bc61d60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" +2016,10400.0000 +2017,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b0f2827863 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Allocated" +"High-performance computing",1788.2353 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6515427c3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Allocated" +"High-performance computing",1623.5294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1f0222fe9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Allocated" +"High-performance computing",1825.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4769d9a6f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Allocated" +"High-performance computing",1950.1299 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b13177e08e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of CPU Nodes: Allocated" +2016-12-22,1200.0000 +2016-12-23,1200.0000 +2016-12-24,1200.0000 +2016-12-25,1200.0000 +2016-12-26,1600.0000 +2016-12-27,2000.0000 +2016-12-28,2000.0000 +2016-12-29,2000.0000 +2016-12-30,2000.0000 +2016-12-31,2000.0000 +2017-01-01,2000.0000 +2017-01-02,2000.0000 +2017-01-03,2000.0000 +2017-01-04,2000.0000 +2017-01-05,2000.0000 +2017-01-06,2000.0000 +2017-01-07,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..12231730a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of CPU Nodes: Allocated" +2016-12,1040.0000 +2017-01,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..26d7a7dee5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of CPU Nodes: Allocated" +"2016 Q4",1040.0000 +"2017 Q1",2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2c09d13c7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of CPU Nodes: Allocated" +2016,1040.0000 +2017,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..99df266f53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Allocated" +"High-performance computing",705.8824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..00156aa56b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Allocated" +"High-performance computing",690.1961 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5dac11ac95 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Allocated" +"High-performance computing",749.0909 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5997780d95 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Allocated" +"High-performance computing",785.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7e3d7c0a65 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of GPU Nodes: Allocated" +2016-12-22,400.0000 +2016-12-23,400.0000 +2016-12-24,400.0000 +2016-12-25,400.0000 +2016-12-26,800.0000 +2016-12-27,800.0000 +2016-12-28,800.0000 +2016-12-29,800.0000 +2016-12-30,800.0000 +2016-12-31,800.0000 +2017-01-01,800.0000 +2017-01-02,800.0000 +2017-01-03,800.0000 +2017-01-04,800.0000 +2017-01-05,800.0000 +2017-01-06,800.0000 +2017-01-07,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c0a3a5f285 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of GPU Nodes: Allocated" +2016-12,520.0000 +2017-01,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f8f321c1f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of GPU Nodes: Allocated" +"2016 Q4",520.0000 +"2017 Q1",800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3870eaa483 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of GPU Nodes: Allocated" +2016,520.0000 +2017,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d1bc225d8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Allocated (GPU Count)" +"High-performance computing",7058.8235 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d494c9418e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Allocated (GPU Count)" +"High-performance computing",6901.9608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b15e1f33b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Allocated (GPU Count)" +"High-performance computing",7490.9091 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a426fea5be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Allocated (GPU Count)" +"High-performance computing",7854.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d2a563fa61 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" +2016-12-22,4000.0000 +2016-12-23,4000.0000 +2016-12-24,4000.0000 +2016-12-25,4000.0000 +2016-12-26,8000.0000 +2016-12-27,8000.0000 +2016-12-28,8000.0000 +2016-12-29,8000.0000 +2016-12-30,8000.0000 +2016-12-31,8000.0000 +2017-01-01,8000.0000 +2017-01-02,8000.0000 +2017-01-03,8000.0000 +2017-01-04,8000.0000 +2017-01-05,8000.0000 +2017-01-06,8000.0000 +2017-01-07,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..383f5121ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" +2016-12,5200.0000 +2017-01,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5701d01f2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" +"2016 Q4",5200.0000 +"2017 Q1",8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..939c6f080d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Allocated (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" +2016,5200.0000 +2017,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e2fcf36acb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Allocated" +"High-performance computing",7296000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e3f3a3c952 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Allocated" +"High-performance computing",19872000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..aab308616c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Allocated" +"High-performance computing",48192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bdbb7a84dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Allocated" +"High-performance computing",180192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8cfe8ccc4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] CPU Hours: Allocated" +2016-12-22,288000.0000 +2016-12-23,288000.0000 +2016-12-24,288000.0000 +2016-12-25,288000.0000 +2016-12-26,384000.0000 +2016-12-27,480000.0000 +2016-12-28,480000.0000 +2016-12-29,480000.0000 +2016-12-30,480000.0000 +2016-12-31,480000.0000 +2017-01-01,480000.0000 +2017-01-02,480000.0000 +2017-01-03,480000.0000 +2017-01-04,480000.0000 +2017-01-05,480000.0000 +2017-01-06,480000.0000 +2017-01-07,480000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..09bb710429 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] CPU Hours: Allocated" +2016-12,4992000.0000 +2017-01,14880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..bf9b9a051f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] CPU Hours: Allocated" +"2016 Q4",4992000.0000 +"2017 Q1",43200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7dd4b42392 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] CPU Hours: Allocated" +2016,4992000.0000 +2017,175200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..343a01de57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Allocated" +"High-performance computing",729600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d65240874b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Allocated" +"High-performance computing",1987200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2a3bb2b4a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Allocated" +"High-performance computing",4819200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6daacc166d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Allocated" +"High-performance computing",18019200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..914377ce8a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] CPU Node Hours: Allocated" +2016-12-22,28800.0000 +2016-12-23,28800.0000 +2016-12-24,28800.0000 +2016-12-25,28800.0000 +2016-12-26,38400.0000 +2016-12-27,48000.0000 +2016-12-28,48000.0000 +2016-12-29,48000.0000 +2016-12-30,48000.0000 +2016-12-31,48000.0000 +2017-01-01,48000.0000 +2017-01-02,48000.0000 +2017-01-03,48000.0000 +2017-01-04,48000.0000 +2017-01-05,48000.0000 +2017-01-06,48000.0000 +2017-01-07,48000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9b1fd3474a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] CPU Node Hours: Allocated" +2016-12,499200.0000 +2017-01,1488000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ff39029068 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] CPU Node Hours: Allocated" +"2016 Q4",499200.0000 +"2017 Q1",4320000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6b78af2a8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] CPU Node Hours: Allocated" +2016,499200.0000 +2017,17520000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dd4c7655ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Allocated" +"High-performance computing",2880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..76d34d27c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Allocated" +"High-performance computing",8448000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..786d1a9507 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Allocated" +"High-performance computing",19776000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ab92252bfd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Allocated" +"High-performance computing",72576000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..53cb36dffa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] GPU Hours: Allocated" +2016-12-22,96000.0000 +2016-12-23,96000.0000 +2016-12-24,96000.0000 +2016-12-25,96000.0000 +2016-12-26,192000.0000 +2016-12-27,192000.0000 +2016-12-28,192000.0000 +2016-12-29,192000.0000 +2016-12-30,192000.0000 +2016-12-31,192000.0000 +2017-01-01,192000.0000 +2017-01-02,192000.0000 +2017-01-03,192000.0000 +2017-01-04,192000.0000 +2017-01-05,192000.0000 +2017-01-06,192000.0000 +2017-01-07,192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5baf04a01e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] GPU Hours: Allocated" +2016-12,2496000.0000 +2017-01,5952000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3537edee78 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] GPU Hours: Allocated" +"2016 Q4",2496000.0000 +"2017 Q1",17280000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bc5753d5d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] GPU Hours: Allocated" +2016,2496000.0000 +2017,70080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c4e19c56f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Allocated" +"High-performance computing",288000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..088e3fc57d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Allocated" +"High-performance computing",844800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c26326ed4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Allocated" +"High-performance computing",1977600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9f86d2923a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Allocated" +"High-performance computing",7257600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a663926d90 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] GPU Node Hours: Allocated" +2016-12-22,9600.0000 +2016-12-23,9600.0000 +2016-12-24,9600.0000 +2016-12-25,9600.0000 +2016-12-26,19200.0000 +2016-12-27,19200.0000 +2016-12-28,19200.0000 +2016-12-29,19200.0000 +2016-12-30,19200.0000 +2016-12-31,19200.0000 +2017-01-01,19200.0000 +2017-01-02,19200.0000 +2017-01-03,19200.0000 +2017-01-04,19200.0000 +2017-01-05,19200.0000 +2017-01-06,19200.0000 +2017-01-07,19200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9174a05247 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] GPU Node Hours: Allocated" +2016-12,249600.0000 +2017-01,595200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b8d4875bb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] GPU Node Hours: Allocated" +"2016 Q4",249600.0000 +"2017 Q1",1728000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8cea1d0eb0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Allocated: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] GPU Node Hours: Allocated" +2016,249600.0000 +2017,7008000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv new file mode 100644 index 0000000000..878497f86d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Total (Core Count)" +"High-performance computing",17882.3529 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv new file mode 100644 index 0000000000..48bfec8dbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Total (Core Count)" +"High-performance computing",16235.2941 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..30f2f21c5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Total (Core Count)" +"High-performance computing",18254.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv new file mode 100644 index 0000000000..103234f9af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Cores: Total (Core Count)" +"High-performance computing",19501.2987 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c0e4456373 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" +2016-12-22,12000.0000 +2016-12-23,12000.0000 +2016-12-24,12000.0000 +2016-12-25,12000.0000 +2016-12-26,16000.0000 +2016-12-27,20000.0000 +2016-12-28,20000.0000 +2016-12-29,20000.0000 +2016-12-30,20000.0000 +2016-12-31,20000.0000 +2017-01-01,20000.0000 +2017-01-02,20000.0000 +2017-01-03,20000.0000 +2017-01-04,20000.0000 +2017-01-05,20000.0000 +2017-01-06,20000.0000 +2017-01-07,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv new file mode 100644 index 0000000000..322a3040fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" +2016-12,10400.0000 +2017-01,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dcb2cf9dfe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" +"2016 Q4",10400.0000 +"2017 Q1",20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d21e8f17a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Cores: Total (Core Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" +2016,10400.0000 +2017,20000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2c73c41926 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Total" +"High-performance computing",1788.2353 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5b46f719e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Total" +"High-performance computing",1623.5294 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..00a75a5321 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Total" +"High-performance computing",1825.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2cfdebe37e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of CPU Nodes: Total" +"High-performance computing",1950.1299 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..85d93a8491 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of CPU Nodes: Total" +2016-12-22,1200.0000 +2016-12-23,1200.0000 +2016-12-24,1200.0000 +2016-12-25,1200.0000 +2016-12-26,1600.0000 +2016-12-27,2000.0000 +2016-12-28,2000.0000 +2016-12-29,2000.0000 +2016-12-30,2000.0000 +2016-12-31,2000.0000 +2017-01-01,2000.0000 +2017-01-02,2000.0000 +2017-01-03,2000.0000 +2017-01-04,2000.0000 +2017-01-05,2000.0000 +2017-01-06,2000.0000 +2017-01-07,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5a8eb44c43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of CPU Nodes: Total" +2016-12,1040.0000 +2017-01,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c048df7226 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of CPU Nodes: Total" +"2016 Q4",1040.0000 +"2017 Q1",2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..677f1921f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of CPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of CPU Nodes: Total" +2016,1040.0000 +2017,2000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv new file mode 100644 index 0000000000..017ac7621d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Total" +"High-performance computing",705.8824 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9b4ce85142 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Total" +"High-performance computing",690.1961 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..62aa01a4db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Total" +"High-performance computing",749.0909 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv new file mode 100644 index 0000000000..95cdc8703f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPU Nodes: Total" +"High-performance computing",785.4545 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7fe802d21 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of GPU Nodes: Total" +2016-12-22,400.0000 +2016-12-23,400.0000 +2016-12-24,400.0000 +2016-12-25,400.0000 +2016-12-26,800.0000 +2016-12-27,800.0000 +2016-12-28,800.0000 +2016-12-29,800.0000 +2016-12-30,800.0000 +2016-12-31,800.0000 +2017-01-01,800.0000 +2017-01-02,800.0000 +2017-01-03,800.0000 +2017-01-04,800.0000 +2017-01-05,800.0000 +2017-01-06,800.0000 +2017-01-07,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ec83ba2c0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of GPU Nodes: Total" +2016-12,520.0000 +2017-01,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6a72da52c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of GPU Nodes: Total" +"2016 Q4",520.0000 +"2017 Q1",800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv new file mode 100644 index 0000000000..436fbfd838 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPU Nodes: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of GPU Nodes: Total" +2016,520.0000 +2017,800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3650432381 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Total (GPU Count)" +"High-performance computing",7058.8235 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8e2e6361a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Total (GPU Count)" +"High-performance computing",6901.9608 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..971c4adc19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Total (GPU Count)" +"High-performance computing",7490.9091 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2d64faa954 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","Average Number of GPUs: Total (GPU Count)" +"High-performance computing",7854.5455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8783e6d434 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" +2016-12-22,4000.0000 +2016-12-23,4000.0000 +2016-12-24,4000.0000 +2016-12-25,4000.0000 +2016-12-26,8000.0000 +2016-12-27,8000.0000 +2016-12-28,8000.0000 +2016-12-29,8000.0000 +2016-12-30,8000.0000 +2016-12-31,8000.0000 +2017-01-01,8000.0000 +2017-01-02,8000.0000 +2017-01-03,8000.0000 +2017-01-04,8000.0000 +2017-01-05,8000.0000 +2017-01-06,8000.0000 +2017-01-07,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..28b1b83d6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" +2016-12,5200.0000 +2017-01,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..46cdc69983 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" +"2016 Q4",5200.0000 +"2017 Q1",8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b483fdbfdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Average Number of GPUs: Total (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" +2016,5200.0000 +2017,8000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9b77b53db1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",7296000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9a109cac66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",19872000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7563e682a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",48192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..073919dc36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Hours: Total" +"High-performance computing",180192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fed7ca285d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] CPU Hours: Total" +2016-12-22,288000.0000 +2016-12-23,288000.0000 +2016-12-24,288000.0000 +2016-12-25,288000.0000 +2016-12-26,384000.0000 +2016-12-27,480000.0000 +2016-12-28,480000.0000 +2016-12-29,480000.0000 +2016-12-30,480000.0000 +2016-12-31,480000.0000 +2017-01-01,480000.0000 +2017-01-02,480000.0000 +2017-01-03,480000.0000 +2017-01-04,480000.0000 +2017-01-05,480000.0000 +2017-01-06,480000.0000 +2017-01-07,480000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..568352192d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] CPU Hours: Total" +2016-12,4992000.0000 +2017-01,14880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b8f046d077 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] CPU Hours: Total" +"2016 Q4",4992000.0000 +"2017 Q1",43200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5ce7961558 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] CPU Hours: Total" +2016,4992000.0000 +2017,175200000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..aa506e3bd1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Total" +"High-performance computing",729600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cc2b3a7097 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Total" +"High-performance computing",1987200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..09c19448be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Total" +"High-performance computing",4819200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5941214e54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","CPU Node Hours: Total" +"High-performance computing",18019200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..85c8687476 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] CPU Node Hours: Total" +2016-12-22,28800.0000 +2016-12-23,28800.0000 +2016-12-24,28800.0000 +2016-12-25,28800.0000 +2016-12-26,38400.0000 +2016-12-27,48000.0000 +2016-12-28,48000.0000 +2016-12-29,48000.0000 +2016-12-30,48000.0000 +2016-12-31,48000.0000 +2017-01-01,48000.0000 +2017-01-02,48000.0000 +2017-01-03,48000.0000 +2017-01-04,48000.0000 +2017-01-05,48000.0000 +2017-01-06,48000.0000 +2017-01-07,48000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..372843edab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] CPU Node Hours: Total" +2016-12,499200.0000 +2017-01,1488000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1339ba9608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] CPU Node Hours: Total" +"2016 Q4",499200.0000 +"2017 Q1",4320000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2615611cfe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] CPU Node Hours: Total" +2016,499200.0000 +2017,17520000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e549b73877 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",2880000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4d610e2a52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",8448000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..91db1c8552 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",19776000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..29483d595b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",72576000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fec0863e0c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] GPU Hours: Total" +2016-12-22,96000.0000 +2016-12-23,96000.0000 +2016-12-24,96000.0000 +2016-12-25,96000.0000 +2016-12-26,192000.0000 +2016-12-27,192000.0000 +2016-12-28,192000.0000 +2016-12-29,192000.0000 +2016-12-30,192000.0000 +2016-12-31,192000.0000 +2017-01-01,192000.0000 +2017-01-02,192000.0000 +2017-01-03,192000.0000 +2017-01-04,192000.0000 +2017-01-05,192000.0000 +2017-01-06,192000.0000 +2017-01-07,192000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d297e5f740 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] GPU Hours: Total" +2016-12,2496000.0000 +2017-01,5952000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3faec50387 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] GPU Hours: Total" +"2016 Q4",2496000.0000 +"2017 Q1",17280000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..74c0d2ee8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] GPU Hours: Total" +2016,2496000.0000 +2017,70080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7c275acb43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Total" +"High-performance computing",288000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3bf744521e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Total" +"High-performance computing",844800.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6a67600752 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Total" +"High-performance computing",1977600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0e5dfd94ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +"Resource Type","GPU Node Hours: Total" +"High-performance computing",7257600.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b6ab58f39e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,26 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Day,"[High-performance computing] GPU Node Hours: Total" +2016-12-22,9600.0000 +2016-12-23,9600.0000 +2016-12-24,9600.0000 +2016-12-25,9600.0000 +2016-12-26,19200.0000 +2016-12-27,19200.0000 +2016-12-28,19200.0000 +2016-12-29,19200.0000 +2016-12-30,19200.0000 +2016-12-31,19200.0000 +2017-01-01,19200.0000 +2017-01-02,19200.0000 +2017-01-03,19200.0000 +2017-01-04,19200.0000 +2017-01-05,19200.0000 +2017-01-06,19200.0000 +2017-01-07,19200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c5a930ffc8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Month,"[High-performance computing] GPU Node Hours: Total" +2016-12,249600.0000 +2017-01,595200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ca26c7ba3f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Quarter,"[High-performance computing] GPU Node Hours: Total" +"2016 Q4",249600.0000 +"2017 Q1",1728000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..15f4d84e07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Node Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-07 +--------- +Year,"[High-performance computing] GPU Node Hours: Total" +2016,249600.0000 +2017,7008000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cd77d7bcbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","File Count (Number of files)" +Unknown,221213085.9000 +"Mechanics and Materials",3520651.6000 +Biophysics,2977661.6000 +"Algebra and Number Theory",2149021.2000 +"Organic and Macromolecular Chemistry",1526295.4000 +"Solid-State and Microstructures",915302.0000 +Seismology,321035.9000 +"Galactic Astronomy",223503.7000 +"Systematic and Population Biology",62708.5000 +Geophysics,44052.2000 +"Cell Biology",37273.8000 +"Geology and Paleontology",26641.7000 +"Theoretical Physics",20072.0000 +"Physical Chemistry",15086.8000 +"Structures and Building Systems",6979.0000 +"Solid State Chemistry and Polymers",6965.5000 +Sociology,6529.3000 +"Experimental Systems",5339.0000 +"Volcanology and Mantle Geochemistry",896.0000 +"Statistics and Probability",583.6000 +"Polar Aeronomy and Astrophysics",470.0000 +"Polar Meteorology",334.2000 +"Decision, Risk, and Management Science",81.0000 +"Quantum Electronics, Waves, and Beams",75.5000 +Tectonics,52.3000 +"Fluid, Particulate, and Hydraulic Systems",51.0000 +"Global Atmospheric Research",48.0000 +Economics,43.0000 +"Biochemistry and Molecular Structure and Function",36.0000 +Arts,8.0000 +"Law and Social Sciences",1.0000 +"Metals, Ceramics, and Electronic Materials",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6fbbf215b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","File Count (Number of files)" +Unknown,221221886.0000 +"Mechanics and Materials",3520651.0000 +Biophysics,2977661.0000 +"Algebra and Number Theory",2149021.0000 +"Organic and Macromolecular Chemistry",1526295.5000 +"Solid-State and Microstructures",915302.0000 +Seismology,321036.0000 +"Galactic Astronomy",223503.5000 +"Systematic and Population Biology",62708.5000 +Geophysics,44053.0000 +"Cell Biology",37274.0000 +"Geology and Paleontology",26641.5000 +"Theoretical Physics",20072.0000 +"Physical Chemistry",15087.0000 +"Structures and Building Systems",6979.0000 +"Solid State Chemistry and Polymers",6965.5000 +Sociology,6529.5000 +"Experimental Systems",5339.0000 +"Volcanology and Mantle Geochemistry",896.0000 +"Statistics and Probability",583.5000 +"Polar Aeronomy and Astrophysics",470.0000 +"Polar Meteorology",334.0000 +"Decision, Risk, and Management Science",81.0000 +"Quantum Electronics, Waves, and Beams",75.5000 +Tectonics,52.5000 +"Fluid, Particulate, and Hydraulic Systems",51.0000 +"Global Atmospheric Research",48.0000 +Economics,43.0000 +"Biochemistry and Molecular Structure and Function",36.0000 +Arts,8.0000 +"Law and Social Sciences",1.0000 +"Metals, Ceramics, and Electronic Materials",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6fbbf215b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","File Count (Number of files)" +Unknown,221221886.0000 +"Mechanics and Materials",3520651.0000 +Biophysics,2977661.0000 +"Algebra and Number Theory",2149021.0000 +"Organic and Macromolecular Chemistry",1526295.5000 +"Solid-State and Microstructures",915302.0000 +Seismology,321036.0000 +"Galactic Astronomy",223503.5000 +"Systematic and Population Biology",62708.5000 +Geophysics,44053.0000 +"Cell Biology",37274.0000 +"Geology and Paleontology",26641.5000 +"Theoretical Physics",20072.0000 +"Physical Chemistry",15087.0000 +"Structures and Building Systems",6979.0000 +"Solid State Chemistry and Polymers",6965.5000 +Sociology,6529.5000 +"Experimental Systems",5339.0000 +"Volcanology and Mantle Geochemistry",896.0000 +"Statistics and Probability",583.5000 +"Polar Aeronomy and Astrophysics",470.0000 +"Polar Meteorology",334.0000 +"Decision, Risk, and Management Science",81.0000 +"Quantum Electronics, Waves, and Beams",75.5000 +Tectonics,52.5000 +"Fluid, Particulate, and Hydraulic Systems",51.0000 +"Global Atmospheric Research",48.0000 +Economics,43.0000 +"Biochemistry and Molecular Structure and Function",36.0000 +Arts,8.0000 +"Law and Social Sciences",1.0000 +"Metals, Ceramics, and Electronic Materials",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6fbbf215b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","File Count (Number of files)" +Unknown,221221886.0000 +"Mechanics and Materials",3520651.0000 +Biophysics,2977661.0000 +"Algebra and Number Theory",2149021.0000 +"Organic and Macromolecular Chemistry",1526295.5000 +"Solid-State and Microstructures",915302.0000 +Seismology,321036.0000 +"Galactic Astronomy",223503.5000 +"Systematic and Population Biology",62708.5000 +Geophysics,44053.0000 +"Cell Biology",37274.0000 +"Geology and Paleontology",26641.5000 +"Theoretical Physics",20072.0000 +"Physical Chemistry",15087.0000 +"Structures and Building Systems",6979.0000 +"Solid State Chemistry and Polymers",6965.5000 +Sociology,6529.5000 +"Experimental Systems",5339.0000 +"Volcanology and Mantle Geochemistry",896.0000 +"Statistics and Probability",583.5000 +"Polar Aeronomy and Astrophysics",470.0000 +"Polar Meteorology",334.0000 +"Decision, Risk, and Management Science",81.0000 +"Quantum Electronics, Waves, and Beams",75.5000 +Tectonics,52.5000 +"Fluid, Particulate, and Hydraulic Systems",51.0000 +"Global Atmospheric Research",48.0000 +Economics,43.0000 +"Biochemistry and Molecular Structure and Function",36.0000 +Arts,8.0000 +"Law and Social Sciences",1.0000 +"Metals, Ceramics, and Electronic Materials",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6c44c14dba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" +2018-12-27,219505360,2933536,3012988,2147160,1513246,929384,321035,227914,62606,15705,37282,19294,20072,15126,6979,6975,6973,5339,896,600,470,270,81,77,55,51,48,43,36,8,1,1 +2018-12-28,220199493,2933773,3013062,2146330,1513519,942423,321035,253961,62604,123243,37279,28732,20072,15150,6979,6975,6971,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 +2018-12-29,220909652,3265079,3013110,2146330,1530321,942502,321035,221585,62690,39429,37279,31393,20072,15134,6979,6975,6974,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 +2018-12-30,220869065,3500581,3013153,2146330,1530320,913045,321035,252098,62719,57256,37279,31393,20072,15134,6979,6975,6974,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 +2018-12-31,220996200,3777518,2988859,2146330,1530282,913024,321035,245325,62713,68497,37272,29359,20072,15134,6979,6975,6923,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 +2019-01-01,221233693,3784793,2947443,2151475,1530282,900004,321035,232953,62732,70541,37274,28386,20072,15038,6979,6956,5845,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 +2019-01-02,221578786,3786969,2947498,2151475,1529662,899701,321038,202989,62739,17507,37267,25614,20072,15038,6979,6956,5943,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 +2019-01-03,221982330,3664040,2945748,2151594,1528702,899847,321037,199890,62743,13829,37267,24429,20072,15038,6979,6956,6230,5339,896,396,470,328,81,72,52,51,48,43,36,8,1,1 +2019-01-04,222401952,3739730,2947361,2151594,1528310,911605,321037,197097,62736,16138,37270,24311,20072,15038,6979,6956,6230,5339,896,658,470,328,81,72,52,51,48,43,36,8,1,1 +2019-01-05,222454328,3820497,2947394,2151594,1528310,901485,321037,201225,62803,18377,37269,23506,20072,15038,6979,6956,6230,5339,896,582,470,448,81,72,52,51,48,43,36,8,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7bda39e5f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" +2018-12,220513553,3282097,3008234,2146496,1523538,928075,321035,240177,62666,60826,37279,28034,20072,15136,6979,6975,6963,5339,896,600,470,316,81,77,53,51,48,43,36,8,1,1 +2019-01,221930219,3759205,2947088,2151546,1529053,902529,321037,206830,62751,27280,37269,25249,20072,15038,6979,6956,6096,5339,896,567,470,352,81,74,52,51,48,43,36,8,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c0e408937 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" +"2018 Q4",220513553,3282097,3008234,2146496,1523538,928075,321035,240177,62666,60826,37279,28034,20072,15136,6979,6975,6963,5339,896,600,470,316,81,77,53,51,48,43,36,8,1,1 +"2019 Q1",221930219,3759205,2947088,2151546,1529053,902529,321037,206830,62751,27280,37269,25249,20072,15038,6979,6956,6096,5339,896,567,470,352,81,74,52,51,48,43,36,8,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..14c692c434 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" +2018,220513553,3282097,3008234,2146496,1523538,928075,321035,240177,62666,60826,37279,28034,20072,15136,6979,6975,6963,5339,896,600,470,316,81,77,53,51,48,43,36,8,1,1 +2019,221930219,3759205,2947088,2151546,1529053,902529,321037,206830,62751,27280,37269,25249,20072,15038,6979,6956,6096,5339,896,567,470,352,81,74,52,51,48,43,36,8,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7ab9b57d82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Cell Biology",220015017984000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10005000192000.0000 +"Organic and Macromolecular Chemistry",10005000192000.0000 +Seismology,10005000192000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7ab9b57d82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Cell Biology",220015017984000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10005000192000.0000 +"Organic and Macromolecular Chemistry",10005000192000.0000 +Seismology,10005000192000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7ab9b57d82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Cell Biology",220015017984000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10005000192000.0000 +"Organic and Macromolecular Chemistry",10005000192000.0000 +Seismology,10005000192000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7ab9b57d82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Cell Biology",220015017984000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10005000192000.0000 +"Organic and Macromolecular Chemistry",10005000192000.0000 +Seismology,10005000192000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..af8ac5988c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" +2018-12-27,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..32ce1a5cf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" +2018-12,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b792807831 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" +"2018 Q4",1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..469ac8e519 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" +2018,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1ab53c24f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Logical Usage (Bytes)" +Unknown,533918117529600.0000 +Biophysics,157675908224000.0000 +Seismology,50376874368000.0000 +"Mechanics and Materials",14837865497600.0000 +"Galactic Astronomy",10697016486400.0000 +"Algebra and Number Theory",8972348544000.0000 +"Organic and Macromolecular Chemistry",8639812684800.0000 +"Cell Biology",1507261952000.0000 +Geophysics,1340020812800.0000 +"Geology and Paleontology",1336851827200.0000 +"Solid-State and Microstructures",635384230400.0000 +"Physical Chemistry",143814592000.0000 +"Polar Meteorology",129129152000.0000 +"Systematic and Population Biology",91059212800.0000 +"Statistics and Probability",6953753600.0000 +Tectonics,3000576000.0000 +Sociology,2518976000.0000 +"Quantum Electronics, Waves, and Beams",1986227200.0000 +"Solid State Chemistry and Polymers",821760000.0000 +"Biochemistry and Molecular Structure and Function",178432000.0000 +"Theoretical Physics",8576000.0000 +"Decision, Risk, and Management Science",6272000.0000 +"Structures and Building Systems",2176000.0000 +"Volcanology and Mantle Geochemistry",1920000.0000 +Economics,896000.0000 +Arts,128000.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7df7dfb39a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Logical Usage (Bytes)" +Unknown,533920377053866.5000 +Biophysics,157675908224000.0000 +Seismology,50376874368000.0000 +"Mechanics and Materials",14837865497600.0000 +"Galactic Astronomy",10697016486400.0000 +"Algebra and Number Theory",8972348544000.0000 +"Organic and Macromolecular Chemistry",8639812684800.0000 +"Cell Biology",1507261952000.0000 +Geophysics,1340020864000.0000 +"Geology and Paleontology",1336851827200.0000 +"Solid-State and Microstructures",635384230400.0000 +"Physical Chemistry",143814592000.0000 +"Polar Meteorology",129129152000.0000 +"Systematic and Population Biology",91059212800.0000 +"Statistics and Probability",6953753600.0000 +Tectonics,3000576000.0000 +Sociology,2518976000.0000 +"Quantum Electronics, Waves, and Beams",1986227200.0000 +"Solid State Chemistry and Polymers",821760000.0000 +"Biochemistry and Molecular Structure and Function",178432000.0000 +"Theoretical Physics",8576000.0000 +"Decision, Risk, and Management Science",6272000.0000 +"Structures and Building Systems",2176000.0000 +"Volcanology and Mantle Geochemistry",1920000.0000 +Economics,896000.0000 +Arts,128000.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7df7dfb39a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Logical Usage (Bytes)" +Unknown,533920377053866.5000 +Biophysics,157675908224000.0000 +Seismology,50376874368000.0000 +"Mechanics and Materials",14837865497600.0000 +"Galactic Astronomy",10697016486400.0000 +"Algebra and Number Theory",8972348544000.0000 +"Organic and Macromolecular Chemistry",8639812684800.0000 +"Cell Biology",1507261952000.0000 +Geophysics,1340020864000.0000 +"Geology and Paleontology",1336851827200.0000 +"Solid-State and Microstructures",635384230400.0000 +"Physical Chemistry",143814592000.0000 +"Polar Meteorology",129129152000.0000 +"Systematic and Population Biology",91059212800.0000 +"Statistics and Probability",6953753600.0000 +Tectonics,3000576000.0000 +Sociology,2518976000.0000 +"Quantum Electronics, Waves, and Beams",1986227200.0000 +"Solid State Chemistry and Polymers",821760000.0000 +"Biochemistry and Molecular Structure and Function",178432000.0000 +"Theoretical Physics",8576000.0000 +"Decision, Risk, and Management Science",6272000.0000 +"Structures and Building Systems",2176000.0000 +"Volcanology and Mantle Geochemistry",1920000.0000 +Economics,896000.0000 +Arts,128000.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7df7dfb39a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Logical Usage (Bytes)" +Unknown,533920377053866.5000 +Biophysics,157675908224000.0000 +Seismology,50376874368000.0000 +"Mechanics and Materials",14837865497600.0000 +"Galactic Astronomy",10697016486400.0000 +"Algebra and Number Theory",8972348544000.0000 +"Organic and Macromolecular Chemistry",8639812684800.0000 +"Cell Biology",1507261952000.0000 +Geophysics,1340020864000.0000 +"Geology and Paleontology",1336851827200.0000 +"Solid-State and Microstructures",635384230400.0000 +"Physical Chemistry",143814592000.0000 +"Polar Meteorology",129129152000.0000 +"Systematic and Population Biology",91059212800.0000 +"Statistics and Probability",6953753600.0000 +Tectonics,3000576000.0000 +Sociology,2518976000.0000 +"Quantum Electronics, Waves, and Beams",1986227200.0000 +"Solid State Chemistry and Polymers",821760000.0000 +"Biochemistry and Molecular Structure and Function",178432000.0000 +"Theoretical Physics",8576000.0000 +"Decision, Risk, and Management Science",6272000.0000 +"Structures and Building Systems",2176000.0000 +"Volcanology and Mantle Geochemistry",1920000.0000 +Economics,896000.0000 +Arts,128000.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..85e0d38934 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" +2018-12-27,524570273664000,167719861120000,50376874368000,15153054208000,14713539456000,8965095552000,8641234944000,1507901184000,339780224000,1304879616000,632371200000,173944704000,129027072000,87247488000,6572160000,3000576000,2500864000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2018-12-28,531035237504000,167789414016000,50376874368000,15153504768000,12472681088000,8966348544000,8641716736000,1507249024000,2218578560000,1522301312000,635075712000,177120768000,129104640000,87256320000,6572160000,3000576000,2500864000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2018-12-29,532739234688000,167857545344000,50376874368000,15161905024000,12238492160000,8966348544000,8644306560000,1507249280000,1754258944000,1715639680000,637568128000,178164736000,129104640000,91802240000,6572160000,3000576000,2501504000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2018-12-30,536250099456000,167913174144000,50376874368000,15166902528000,12078699776000,8966348544000,8644697600000,1507249536000,2039249152000,1715639680000,640210176000,178164736000,129104640000,91831296000,6572160000,3000576000,2501504000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2018-12-31,539090300288000,156896478080000,50376874368000,15172477696000,17173988480000,8966340608000,8644679808000,1507249792000,2326958080000,1655432960000,640387712000,178164736000,129104640000,91836928000,6572160000,3000576000,2490624000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019-01-01,538444631936000,152464707968000,50376874368000,15171164032000,14641606016000,8977937792000,8644679808000,1507249920000,2510009088000,1579033984000,638805248000,110517248000,129104640000,91868672000,6572160000,3000576000,2467328000,1986688000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019-01-02,535212295680000,152523825536000,50376874368000,15156379904000,8085082240000,8977937792000,8635160192000,1507117312000,641892992000,1081856128000,647182336000,110517248000,129104640000,91883648000,6572160000,3000576000,2399232000,1986688000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019-01-03,534387396736000,147763957376000,50376874368000,14191799040000,7385004544000,8979042688000,8634912256000,1507117568000,454935936000,940511616000,641761920000,110517248000,129104640000,91886720000,5099008000,3000576000,2609280000,1985152000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019-01-04,534486134016000,147868405376000,50376874368000,14026529408000,5711420288000,8979042688000,8633369472000,1507117824000,519761152000,937147392000,651415936000,110517248000,129104640000,91868800000,9945728000,3000576000,2609280000,1985152000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019-01-05,532965571328000,147961713280000,50376874368000,14024938368000,2469650816000,8979042688000,8633369472000,1507118080000,594784000000,916075904000,589063936000,110517248000,129427328000,93110016000,8487680000,3000576000,2609280000,1985152000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b59200db67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" +2018-12,532741548168533,165635294540800,50376874368000,15161568844800,13735480192000,8966096358400,8643327129600,1507379763200,1735764992000,1582778649600,637122585600,177111936000,129089126400,89994854400,6572160000,3000576000,2499072000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019-01,535099205939200,149716521907200,50376874368000,14514162150400,7658552780800,8978600729600,8636298240000,1507144140800,944276736000,1090925004800,633645875200,110517248000,129169177600,92123571200,7335347200,3000576000,2538880000,1985766400,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..42d44bc82d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" +"2018 Q4",532741548168533,165635294540800,50376874368000,15161568844800,13735480192000,8966096358400,8643327129600,1507379763200,1735764992000,1582778649600,637122585600,177111936000,129089126400,89994854400,6572160000,3000576000,2499072000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +"2019 Q1",535099205939200,149716521907200,50376874368000,14514162150400,7658552780800,8978600729600,8636298240000,1507144140800,944276736000,1090925004800,633645875200,110517248000,129169177600,92123571200,7335347200,3000576000,2538880000,1985766400,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0f8a77dbf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" +2018,532741548168533,165635294540800,50376874368000,15161568844800,13735480192000,8966096358400,8643327129600,1507379763200,1735764992000,1582778649600,637122585600,177111936000,129089126400,89994854400,6572160000,3000576000,2499072000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +2019,535099205939200,149716521907200,50376874368000,14514162150400,7658552780800,8978600729600,8636298240000,1507144140800,944276736000,1090925004800,633645875200,110517248000,129169177600,92123571200,7335347200,3000576000,2538880000,1985766400,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0b1b22b427 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota Utilization: Logical (%)" +Biophysics,525.5863 +Seismology,503.7686 +"Algebra and Number Theory",89.7235 +"Organic and Macromolecular Chemistry",86.3981 +Unknown,68.3634 +"Solid-State and Microstructures",2.5415 +"Cell Biology",1.2994 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c304f7cb2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota Utilization: Logical (%)" +Biophysics,525.5863 +Seismology,503.7686 +"Algebra and Number Theory",89.7235 +"Organic and Macromolecular Chemistry",86.3981 +Unknown,68.3637 +"Solid-State and Microstructures",2.5415 +"Cell Biology",1.2994 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c304f7cb2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota Utilization: Logical (%)" +Biophysics,525.5863 +Seismology,503.7686 +"Algebra and Number Theory",89.7235 +"Organic and Macromolecular Chemistry",86.3981 +Unknown,68.3637 +"Solid-State and Microstructures",2.5415 +"Cell Biology",1.2994 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c304f7cb2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota Utilization: Logical (%)" +Biophysics,525.5863 +Seismology,503.7686 +"Algebra and Number Theory",89.7235 +"Organic and Macromolecular Chemistry",86.3981 +Unknown,68.3637 +"Solid-State and Microstructures",2.5415 +"Cell Biology",1.2994 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8899cc5be7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" +2018-12-27,559.0662,503.7686,89.6509,86.4123,67.1665,2.5295,1.2999,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,559.2980,503.7686,89.6635,86.4171,67.9943,2.5403,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,559.5251,503.7686,89.6635,86.4430,68.2124,2.5503,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,559.7106,503.7686,89.6635,86.4469,68.6620,2.5608,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,522.9882,503.7686,89.6634,86.4468,69.0256,2.5616,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,508.2157,503.7686,89.7794,86.4468,68.9430,2.5552,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,508.4127,503.7686,89.7794,86.3516,68.5291,2.5887,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,492.5465,503.7686,89.7904,86.3491,68.4235,2.5670,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,492.8947,503.7686,89.7904,86.3337,68.4361,2.6057,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,493.2057,503.7686,89.7904,86.3337,68.2414,2.3563,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5c507bdcce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" +2018-12,552.1176,503.7686,89.6609,86.4332,68.2127,2.5485,1.2995,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,499.0551,503.7686,89.7860,86.3630,68.5146,2.5346,1.2993,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fca9b545a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" +"2018 Q4",552.1176,503.7686,89.6609,86.4332,68.2127,2.5485,1.2995,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",499.0551,503.7686,89.7860,86.3630,68.5146,2.5346,1.2993,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2c6d5e4c38 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" +2018,552.1176,503.7686,89.6609,86.4332,68.2127,2.5485,1.2995,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,499.0551,503.7686,89.7860,86.3630,68.5146,2.5346,1.2993,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..02546e0a3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Physical Usage (Bytes)" +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +Biophysics,0.0000 +"Cell Biology",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +Unknown,0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..02546e0a3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Physical Usage (Bytes)" +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +Biophysics,0.0000 +"Cell Biology",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +Unknown,0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..02546e0a3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Physical Usage (Bytes)" +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +Biophysics,0.0000 +"Cell Biology",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +Unknown,0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..02546e0a3b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Physical Usage (Bytes)" +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +Biophysics,0.0000 +"Cell Biology",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +Unknown,0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0915c04d22 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6dcc52fe5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..270fb8356b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..69838f0226 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c5000957dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Cell Biology",116000014336000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10000003072000.0000 +"Organic and Macromolecular Chemistry",10000003072000.0000 +Seismology,10000003072000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c5000957dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Cell Biology",116000014336000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10000003072000.0000 +"Organic and Macromolecular Chemistry",10000003072000.0000 +Seismology,10000003072000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c5000957dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Cell Biology",116000014336000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10000003072000.0000 +"Organic and Macromolecular Chemistry",10000003072000.0000 +Seismology,10000003072000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c5000957dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Cell Biology",116000014336000.0000 +Biophysics,30000001024000.0000 +"Solid-State and Microstructures",25000001536000.0000 +"Algebra and Number Theory",10000003072000.0000 +"Organic and Macromolecular Chemistry",10000003072000.0000 +Seismology,10000003072000.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Decision, Risk, and Management Science",0.0000 +Economics,0.0000 +"Experimental Systems",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Statistics and Probability",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..adc9c15cf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" +2018-12-27,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7757855164 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" +2018-12,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..afa6bb9b1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" +"2018 Q4",781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0625a536c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" +2018,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..36d9a7293d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv @@ -0,0 +1,41 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","User Count (Number of Users)" +Unknown,188 +"Mechanics and Materials",20 +"Cell Biology",15 +"Galactic Astronomy",15 +"Solid-State and Microstructures",12 +"Geology and Paleontology",10 +"Physical Chemistry",10 +Sociology,9 +"Organic and Macromolecular Chemistry",8 +Geophysics,6 +"Biochemistry and Molecular Structure and Function",5 +Biophysics,4 +"Experimental Systems",4 +"Decision, Risk, and Management Science",3 +"Polar Meteorology",3 +"Quantum Electronics, Waves, and Beams",3 +"Statistics and Probability",3 +"Theoretical Physics",3 +"Algebra and Number Theory",2 +Arts,2 +Economics,2 +"Fluid, Particulate, and Hydraulic Systems",2 +"Polar Aeronomy and Astrophysics",2 +Seismology,2 +"Solid State Chemistry and Polymers",2 +"Structures and Building Systems",2 +Tectonics,2 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Systematic and Population Biology",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..36d9a7293d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv @@ -0,0 +1,41 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","User Count (Number of Users)" +Unknown,188 +"Mechanics and Materials",20 +"Cell Biology",15 +"Galactic Astronomy",15 +"Solid-State and Microstructures",12 +"Geology and Paleontology",10 +"Physical Chemistry",10 +Sociology,9 +"Organic and Macromolecular Chemistry",8 +Geophysics,6 +"Biochemistry and Molecular Structure and Function",5 +Biophysics,4 +"Experimental Systems",4 +"Decision, Risk, and Management Science",3 +"Polar Meteorology",3 +"Quantum Electronics, Waves, and Beams",3 +"Statistics and Probability",3 +"Theoretical Physics",3 +"Algebra and Number Theory",2 +Arts,2 +Economics,2 +"Fluid, Particulate, and Hydraulic Systems",2 +"Polar Aeronomy and Astrophysics",2 +Seismology,2 +"Solid State Chemistry and Polymers",2 +"Structures and Building Systems",2 +Tectonics,2 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Systematic and Population Biology",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..36d9a7293d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,41 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","User Count (Number of Users)" +Unknown,188 +"Mechanics and Materials",20 +"Cell Biology",15 +"Galactic Astronomy",15 +"Solid-State and Microstructures",12 +"Geology and Paleontology",10 +"Physical Chemistry",10 +Sociology,9 +"Organic and Macromolecular Chemistry",8 +Geophysics,6 +"Biochemistry and Molecular Structure and Function",5 +Biophysics,4 +"Experimental Systems",4 +"Decision, Risk, and Management Science",3 +"Polar Meteorology",3 +"Quantum Electronics, Waves, and Beams",3 +"Statistics and Probability",3 +"Theoretical Physics",3 +"Algebra and Number Theory",2 +Arts,2 +Economics,2 +"Fluid, Particulate, and Hydraulic Systems",2 +"Polar Aeronomy and Astrophysics",2 +Seismology,2 +"Solid State Chemistry and Polymers",2 +"Structures and Building Systems",2 +Tectonics,2 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Systematic and Population Biology",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..36d9a7293d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv @@ -0,0 +1,41 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"PI Group","User Count (Number of Users)" +Unknown,188 +"Mechanics and Materials",20 +"Cell Biology",15 +"Galactic Astronomy",15 +"Solid-State and Microstructures",12 +"Geology and Paleontology",10 +"Physical Chemistry",10 +Sociology,9 +"Organic and Macromolecular Chemistry",8 +Geophysics,6 +"Biochemistry and Molecular Structure and Function",5 +Biophysics,4 +"Experimental Systems",4 +"Decision, Risk, and Management Science",3 +"Polar Meteorology",3 +"Quantum Electronics, Waves, and Beams",3 +"Statistics and Probability",3 +"Theoretical Physics",3 +"Algebra and Number Theory",2 +Arts,2 +Economics,2 +"Fluid, Particulate, and Hydraulic Systems",2 +"Polar Aeronomy and Astrophysics",2 +Seismology,2 +"Solid State Chemistry and Polymers",2 +"Structures and Building Systems",2 +Tectonics,2 +"Global Atmospheric Research",1 +"Law and Social Sciences",1 +"Metals, Ceramics, and Electronic Materials",1 +"Systematic and Population Biology",1 +"Volcanology and Mantle Geochemistry",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..051d97fe2f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" +2018-12-27,187,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2018-12-28,187,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2018-12-29,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2018-12-30,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2018-12-31,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019-01-01,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019-01-02,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019-01-03,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019-01-04,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019-01-05,188,20,15,15,12,10,10,9,8,5,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c923c3c005 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" +2018-12,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019-01,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..25e96060d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" +"2018 Q4",188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +"2019 Q1",188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a096d01ad4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by PI Group" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" +2018,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +2019,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f2f5c02bd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"File Count (Number of files)" +/data,110334700.8000 +/projects,106201985.8000 +/scratch,16544199.1000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f0d71f0937 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"File Count (Number of files)" +/data,110334701.0000 +/projects,106201986.0000 +/scratch,16552998.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f0d71f0937 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"File Count (Number of files)" +/data,110334701.0000 +/projects,106201986.0000 +/scratch,16552998.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f0d71f0937 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"File Count (Number of files)" +/data,110334701.0000 +/projects,106201986.0000 +/scratch,16552998.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f995bf140c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" +2018-12-27,110343256,105461206,14985149 +2018-12-28,110355316,105607366,15676950 +2018-12-29,110355409,105764653,16464508 +2018-12-30,110325883,105846614,16625942 +2018-12-31,110325953,105984506,16870069 +2019-01-01,110324741,106246430,16792361 +2019-01-02,110325091,106487415,16811758 +2019-01-03,110325197,106661455,16907901 +2019-01-04,110337548,106861134,17203818 +2019-01-05,110328614,107099079,17103535 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..14339152e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" +2018-12,110341163,105732869,16142123 +2019-01,110328239,106671103,16963874 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cb90a17d7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" +"2018 Q4",110341163,105732869,16142123 +"2019 Q1",110328239,106671103,16963874 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..525b859c9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" +2018,110341163,105732869,16142123 +2019,110328239,106671103,16963874 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c5ddd176fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Hard Threshold (Bytes)" +/projects,1219010023424000.0000 +/data,128035016704000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c5ddd176fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Hard Threshold (Bytes)" +/projects,1219010023424000.0000 +/data,128035016704000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c5ddd176fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Hard Threshold (Bytes)" +/projects,1219010023424000.0000 +/data,128035016704000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c5ddd176fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Hard Threshold (Bytes)" +/projects,1219010023424000.0000 +/data,128035016704000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c592e303fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" +2018-12-27,1219010023424000,128035016704000,0 +2018-12-28,1219010023424000,128035016704000,0 +2018-12-29,1219010023424000,128035016704000,0 +2018-12-30,1219010023424000,128035016704000,0 +2018-12-31,1219010023424000,128035016704000,0 +2019-01-01,1219010023424000,128035016704000,0 +2019-01-02,1219010023424000,128035016704000,0 +2019-01-03,1219010023424000,128035016704000,0 +2019-01-04,1219010023424000,128035016704000,0 +2019-01-05,1219010023424000,128035016704000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c0b4725a30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" +2018-12,1219010023424000,128035016704000,0 +2019-01,1219010023424000,128035016704000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..486e4820b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" +"2018 Q4",1219010023424000,128035016704000,0 +"2019 Q1",1219010023424000,128035016704000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b6f9df692 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" +2018,1219010023424000,128035016704000,0 +2019,1219010023424000,128035016704000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1c6813e7da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Logical Usage (Bytes)" +/projects,405899529715200.0000 +/scratch,305008872128000.0000 +/data,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..352ef5f31d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Logical Usage (Bytes)" +/projects,405899529715200.0000 +/scratch,305011131703466.5000 +/data,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..352ef5f31d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Logical Usage (Bytes)" +/projects,405899529715200.0000 +/scratch,305011131703466.5000 +/data,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..352ef5f31d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Logical Usage (Bytes)" +/projects,405899529715200.0000 +/scratch,305011131703466.5000 +/data,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..172acc7d99 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" +2018-12-27,405199056512000,310083867648000,79048061440000 +2018-12-28,405348609536000,315914283776000,79465470848000 +2018-12-29,405521223424000,316922688256000,79570484096000 +2018-12-30,405639849856000,320418982784000,79655314432000 +2018-12-31,405820763776000,317371603840000,79673797120000 +2019-01-01,406010692736000,309597755648000,79693968896000 +2019-01-02,406167469952000,297237200512000,79786598016000 +2019-01-03,406303176576000,290475407744000,78829132160000 +2019-01-04,406419426560000,288469426048000,79157596544000 +2019-01-05,406565028224000,283597505024000,79205006080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bbdaa02061 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" +2018-12,405505900620800,316146804309333,79482625587200 +2019-01,406293158809600,293875459097600,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..26dbb1a0ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" +"2018 Q4",405505900620800,316146804309333,79482625587200 +"2019 Q1",406293158809600,293875459097600,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7ea1b7d099 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" +2018,405505900620800,316146804309333,79482625587200 +2019,406293158809600,293875459097600,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..01754a36c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota Utilization: Logical (%)" +/data,62.5264 +/projects,47.4736 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..01754a36c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota Utilization: Logical (%)" +/data,62.5264 +/projects,47.4736 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..01754a36c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota Utilization: Logical (%)" +/data,62.5264 +/projects,47.4736 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..01754a36c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota Utilization: Logical (%)" +/data,62.5264 +/projects,47.4736 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7873ee8bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" +2018-12-27,62.2426,47.3917,0.0000 +2018-12-28,62.5712,47.4092,0.0000 +2018-12-29,62.6539,47.4294,0.0000 +2018-12-30,62.7207,47.4433,0.0000 +2018-12-31,62.7353,47.4644,0.0000 +2019-01-01,62.7511,47.4866,0.0000 +2019-01-02,62.8241,47.5050,0.0000 +2019-01-03,62.0702,47.5208,0.0000 +2019-01-04,62.3288,47.5344,0.0000 +2019-01-05,62.3661,47.5515,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b25e0a89ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" +2018-12,62.5847,47.4276,0.0000 +2019-01,62.4681,47.5197,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..54e78d4848 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" +"2018 Q4",62.5847,47.4276,0.0000 +"2019 Q1",62.4681,47.5197,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6ff062e57c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" +2018,62.5847,47.4276,0.0000 +2019,62.4681,47.5197,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b4d26626ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Physical Usage (Bytes)" +/data,0.0000 +/projects,0.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b4d26626ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Physical Usage (Bytes)" +/data,0.0000 +/projects,0.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b4d26626ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Physical Usage (Bytes)" +/data,0.0000 +/projects,0.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b4d26626ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Physical Usage (Bytes)" +/data,0.0000 +/projects,0.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1a157b06f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" +2018-12-27,0,0,0 +2018-12-28,0,0,0 +2018-12-29,0,0,0 +2018-12-30,0,0,0 +2018-12-31,0,0,0 +2019-01-01,0,0,0 +2019-01-02,0,0,0 +2019-01-03,0,0,0 +2019-01-04,0,0,0 +2019-01-05,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b1cd4679aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" +2018-12,0,0,0 +2019-01,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9d99280104 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" +"2018 Q4",0,0,0 +"2019 Q1",0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4f0c424b24 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" +2018,0,0,0 +2019,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9585cb60f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Soft Threshold (Bytes)" +/projects,855000018944000.0000 +/data,127000027136000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9585cb60f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Soft Threshold (Bytes)" +/projects,855000018944000.0000 +/data,127000027136000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9585cb60f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Soft Threshold (Bytes)" +/projects,855000018944000.0000 +/data,127000027136000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9585cb60f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"Quota: Soft Threshold (Bytes)" +/projects,855000018944000.0000 +/data,127000027136000.0000 +/scratch,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1a1800f8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" +2018-12-27,855000018944000,127000027136000,0 +2018-12-28,855000018944000,127000027136000,0 +2018-12-29,855000018944000,127000027136000,0 +2018-12-30,855000018944000,127000027136000,0 +2018-12-31,855000018944000,127000027136000,0 +2019-01-01,855000018944000,127000027136000,0 +2019-01-02,855000018944000,127000027136000,0 +2019-01-03,855000018944000,127000027136000,0 +2019-01-04,855000018944000,127000027136000,0 +2019-01-05,855000018944000,127000027136000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d3412fa5c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" +2018-12,855000018944000,127000027136000,0 +2019-01,855000018944000,127000027136000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..bdf737cb81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" +"2018 Q4",855000018944000,127000027136000,0 +"2019 Q1",855000018944000,127000027136000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3cd1a63597 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" +2018,855000018944000,127000027136000,0 +2019,855000018944000,127000027136000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fd2d155bdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"User Count (Number of Users)" +/scratch,334 +/data,10 +/projects,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fd2d155bdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"User Count (Number of Users)" +/scratch,334 +/data,10 +/projects,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fd2d155bdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"User Count (Number of Users)" +/scratch,334 +/data,10 +/projects,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fd2d155bdb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Mountpoint,"User Count (Number of Users)" +/scratch,334 +/data,10 +/projects,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3c6d2376c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" +2018-12-27,333,10,10 +2018-12-28,333,10,10 +2018-12-29,334,10,10 +2018-12-30,334,10,10 +2018-12-31,334,10,10 +2019-01-01,334,10,10 +2019-01-02,334,10,10 +2019-01-03,334,10,10 +2019-01-04,334,10,10 +2019-01-05,333,10,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..171a5dd43b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" +2018-12,334,10,10 +2019-01,334,10,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f230bf99ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" +"2018 Q4",334,10,10 +"2019 Q1",334,10,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2370cd0abb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Mountpoint" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" +2018,334,10,10 +2019,334,10,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bb583ca102 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"File Count (Number of files)" +Screwdriver,233080885.7000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4fc6e9dbab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"File Count (Number of files)" +Screwdriver,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4fc6e9dbab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"File Count (Number of files)" +Screwdriver,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4fc6e9dbab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"File Count (Number of files)" +Screwdriver,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0e88aca1ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] File Count (Number of files)" +2018-12-27,230789611 +2018-12-28,231639632 +2018-12-29,232584570 +2018-12-30,232798439 +2018-12-31,233180528 +2019-01-01,233363532 +2019-01-02,233624264 +2019-01-03,233894553 +2019-01-04,234402500 +2019-01-05,234531228 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..faff3c332a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] File Count (Number of files)" +2018-12,232216155 +2019-01,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..20a5117e57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] File Count (Number of files)" +"2018 Q4",232216155 +"2019 Q1",233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0cb10956dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] File Count (Number of files)" +2018,232216155 +2019,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4f8c6290a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Hard Threshold (Bytes)" +Screwdriver,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4f8c6290a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Hard Threshold (Bytes)" +Screwdriver,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4f8c6290a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Hard Threshold (Bytes)" +Screwdriver,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4f8c6290a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Hard Threshold (Bytes)" +Screwdriver,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8d4eccb0ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] Quota: Hard Threshold (Bytes)" +2018-12-27,1347045040128000 +2018-12-28,1347045040128000 +2018-12-29,1347045040128000 +2018-12-30,1347045040128000 +2018-12-31,1347045040128000 +2019-01-01,1347045040128000 +2019-01-02,1347045040128000 +2019-01-03,1347045040128000 +2019-01-04,1347045040128000 +2019-01-05,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d78543fa76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] Quota: Hard Threshold (Bytes)" +2018-12,1347045040128000 +2019-01,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e8353a37de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] Quota: Hard Threshold (Bytes)" +"2018 Q4",1347045040128000 +"2019 Q1",1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..070d1d745d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] Quota: Hard Threshold (Bytes)" +2018,1347045040128000 +2019,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..75040f3679 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Logical Usage (Bytes)" +Screwdriver,790316944806400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..26b79ea809 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Logical Usage (Bytes)" +Screwdriver,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..26b79ea809 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Logical Usage (Bytes)" +Screwdriver,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..26b79ea809 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Logical Usage (Bytes)" +Screwdriver,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0186fa29f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] Logical Usage (Bytes)" +2018-12-27,794330985600000 +2018-12-28,800728364160000 +2018-12-29,802014395776000 +2018-12-30,805714147072000 +2018-12-31,802866164736000 +2019-01-01,795302417280000 +2019-01-02,783191268480000 +2019-01-03,775607716480000 +2019-01-04,774046449152000 +2019-01-05,769367539328000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..97c75e5aa7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] Logical Usage (Bytes)" +2018-12,801135330517333 +2019-01,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8027eed7bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] Logical Usage (Bytes)" +"2018 Q4",801135330517333 +"2019 Q1",779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..65b8a1b2df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] Logical Usage (Bytes)" +2018,801135330517333 +2019,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cecd3eb40f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota Utilization: Logical (%)" +Screwdriver,80.4803 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..be34b6820e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota Utilization: Logical (%)" +Screwdriver,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..be34b6820e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota Utilization: Logical (%)" +Screwdriver,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..be34b6820e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota Utilization: Logical (%)" +Screwdriver,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..62aa5b027a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] Quota Utilization: Logical (%)" +2018-12-27,80.8891 +2018-12-28,81.5406 +2018-12-29,81.6715 +2018-12-30,82.0483 +2018-12-31,81.7583 +2019-01-01,80.9880 +2019-01-02,79.7547 +2019-01-03,78.9825 +2019-01-04,78.8235 +2019-01-05,78.3470 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d0bd9732ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] Quota Utilization: Logical (%)" +2018-12,81.5820 +2019-01,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..082f9bc271 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] Quota Utilization: Logical (%)" +"2018 Q4",81.5820 +"2019 Q1",79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9d82e7660d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] Quota Utilization: Logical (%)" +2018,81.5820 +2019,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..698dd04769 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Physical Usage (Bytes)" +Screwdriver,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..698dd04769 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Physical Usage (Bytes)" +Screwdriver,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..698dd04769 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Physical Usage (Bytes)" +Screwdriver,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..698dd04769 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Physical Usage (Bytes)" +Screwdriver,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8b005b7f5e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] Physical Usage (Bytes)" +2018-12-27,0 +2018-12-28,0 +2018-12-29,0 +2018-12-30,0 +2018-12-31,0 +2019-01-01,0 +2019-01-02,0 +2019-01-03,0 +2019-01-04,0 +2019-01-05,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8aa9479b57 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] Physical Usage (Bytes)" +2018-12,0 +2019-01,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e6378d0db8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] Physical Usage (Bytes)" +"2018 Q4",0 +"2019 Q1",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4c6bf84971 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] Physical Usage (Bytes)" +2018,0 +2019,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fe50a3f80b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Soft Threshold (Bytes)" +Screwdriver,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fe50a3f80b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Soft Threshold (Bytes)" +Screwdriver,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fe50a3f80b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Soft Threshold (Bytes)" +Screwdriver,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fe50a3f80b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"Quota: Soft Threshold (Bytes)" +Screwdriver,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..92766324a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] Quota: Soft Threshold (Bytes)" +2018-12-27,982000046080000 +2018-12-28,982000046080000 +2018-12-29,982000046080000 +2018-12-30,982000046080000 +2018-12-31,982000046080000 +2019-01-01,982000046080000 +2019-01-02,982000046080000 +2019-01-03,982000046080000 +2019-01-04,982000046080000 +2019-01-05,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..71921aacf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] Quota: Soft Threshold (Bytes)" +2018-12,982000046080000 +2019-01,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d831178b05 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] Quota: Soft Threshold (Bytes)" +"2018 Q4",982000046080000 +"2019 Q1",982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6cd6b97415 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] Quota: Soft Threshold (Bytes)" +2018,982000046080000 +2019,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b78afd05cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"User Count (Number of Users)" +Screwdriver,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b78afd05cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"User Count (Number of Users)" +Screwdriver,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b78afd05cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"User Count (Number of Users)" +Screwdriver,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b78afd05cc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Summary,"User Count (Number of Users)" +Screwdriver,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4af46babe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Screwdriver] User Count (Number of Users)" +2018-12-27,343 +2018-12-28,343 +2018-12-29,344 +2018-12-30,344 +2018-12-31,344 +2019-01-01,344 +2019-01-02,344 +2019-01-03,344 +2019-01-04,344 +2019-01-05,343 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2283747957 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Screwdriver] User Count (Number of Users)" +2018-12,344 +2019-01,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5bfe0a033d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Screwdriver] User Count (Number of Users)" +"2018 Q4",344 +"2019 Q1",344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e36e889ea3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users)" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Screwdriver] User Count (Number of Users)" +2018,344 +2019,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..618f87c321 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","File Count (Number of files)" +Unknown,221213085.9000 +Engineering,4443059.1000 +"Mathematical and Physical Sciences",3941529.2000 +"Biological Sciences",3077679.9000 +Geosciences,393530.3000 +"Social, Behavioral, and Economic Sciences",6654.3000 +"Computer and Information Science and Engineering",5339.0000 +Humanities/Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a1501337d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","File Count (Number of files)" +Unknown,221221886.0000 +Engineering,4443058.5000 +"Mathematical and Physical Sciences",3941529.0000 +"Biological Sciences",3077679.5000 +Geosciences,393531.0000 +"Social, Behavioral, and Economic Sciences",6654.5000 +"Computer and Information Science and Engineering",5339.0000 +Humanities/Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a1501337d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","File Count (Number of files)" +Unknown,221221886.0000 +Engineering,4443058.5000 +"Mathematical and Physical Sciences",3941529.0000 +"Biological Sciences",3077679.5000 +Geosciences,393531.0000 +"Social, Behavioral, and Economic Sciences",6654.5000 +"Computer and Information Science and Engineering",5339.0000 +Humanities/Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a1501337d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","File Count (Number of files)" +Unknown,221221886.0000 +Engineering,4443058.5000 +"Mathematical and Physical Sciences",3941529.0000 +"Biological Sciences",3077679.5000 +Geosciences,393531.0000 +"Social, Behavioral, and Economic Sciences",6654.5000 +"Computer and Information Science and Engineering",5339.0000 +Humanities/Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5408f67c4f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" +2018-12-27,219505360,3870027,3931094,3112912,357773,7098,5339,8 +2018-12-28,220199493,3883303,3956608,3112981,474804,7096,5339,8 +2018-12-29,220909652,4214688,3941018,3113115,393651,7099,5339,8 +2018-12-30,220869065,4420733,3971530,3113187,411478,7099,5339,8 +2018-12-31,220996200,4697649,3964719,3088880,420685,7048,5339,8 +2019-01-01,221233693,4691904,3957377,3047485,421756,5970,5339,8 +2019-01-02,221578786,4693777,3926793,3047540,365953,6068,5339,8 +2019-01-03,221982330,4570989,3922649,3045794,361089,6355,5339,8 +2019-01-04,222401952,4658437,3919726,3047403,363280,6355,5339,8 +2019-01-05,222454328,4729084,3923778,3047502,364834,6355,5339,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ceb78a2d4f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" +2018-12,220513553,4217279,3952995,3108215,411678,7088,5339,8 +2019-01,221930219,4668838,3930063,3047144,375384,6221,5339,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..859fdd5f6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" +"2018 Q4",220513553,4217279,3952995,3108215,411678,7088,5339,8 +"2019 Q1",221930219,4668838,3930063,3047144,375384,6221,5339,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c4d8885275 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" +2018,220513553,4217279,3952995,3108215,411678,7088,5339,8 +2019,221930219,4668838,3930063,3047144,375384,6221,5339,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e564fd355e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Biological Sciences",250015019008000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20010000384000.0000 +Geosciences,10005000192000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e564fd355e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Biological Sciences",250015019008000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20010000384000.0000 +Geosciences,10005000192000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e564fd355e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Biological Sciences",250015019008000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20010000384000.0000 +Geosciences,10005000192000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e564fd355e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Biological Sciences",250015019008000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20010000384000.0000 +Geosciences,10005000192000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..650fd79392 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" +2018-12-27,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2018-12-28,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2018-12-29,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2018-12-30,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2018-12-31,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019-01-01,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019-01-02,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019-01-03,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019-01-04,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019-01-05,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..164c485e1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" +2018-12,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019-01,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..37180b1305 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" +"2018 Q4",1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +"2019 Q1",1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c598eefefb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" +2018,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +2019,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..90d72aa9b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Logical Usage (Bytes)" +Unknown,533918117529600.0000 +"Biological Sciences",159274407820800.0000 +Geosciences,53185878656000.0000 +"Mathematical and Physical Sciences",28460776396800.0000 +Engineering,15475238131200.0000 +"Social, Behavioral, and Economic Sciences",2526144000.0000 +Humanities/Arts,128000.0000 +"Computer and Information Science and Engineering",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ac2b4e1f6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Logical Usage (Bytes)" +Unknown,533920377053866.5000 +"Biological Sciences",159274407820800.0000 +Geosciences,53185878707200.0000 +"Mathematical and Physical Sciences",28460776396800.0000 +Engineering,15475238131200.0000 +"Social, Behavioral, and Economic Sciences",2526144000.0000 +Humanities/Arts,128000.0000 +"Computer and Information Science and Engineering",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ac2b4e1f6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Logical Usage (Bytes)" +Unknown,533920377053866.5000 +"Biological Sciences",159274407820800.0000 +Geosciences,53185878707200.0000 +"Mathematical and Physical Sciences",28460776396800.0000 +Engineering,15475238131200.0000 +"Social, Behavioral, and Economic Sciences",2526144000.0000 +Humanities/Arts,128000.0000 +"Computer and Information Science and Engineering",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ac2b4e1f6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Logical Usage (Bytes)" +Unknown,533920377053866.5000 +"Biological Sciences",159274407820800.0000 +Geosciences,53185878707200.0000 +"Mathematical and Physical Sciences",28460776396800.0000 +Engineering,15475238131200.0000 +"Social, Behavioral, and Economic Sciences",2526144000.0000 +Humanities/Arts,128000.0000 +"Computer and Information Science and Engineering",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..207a0bf646 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" +2018-12-27,524570273664000,169315188224000,52153563776000,32502037504000,15787414272000,2508032000,128000,0 +2018-12-28,531035237504000,169384097792000,54249861376000,30266089984000,15790569344000,2508032000,128000,0 +2018-12-29,532739234688000,169456775296000,53978880128000,30035534848000,15801462016000,2508672000,128000,0 +2018-12-30,536250099456000,169512433408000,54263870336000,29876133504000,15809101568000,2508672000,128000,0 +2018-12-31,539090300288000,158495743232000,54491372544000,34971396480000,15814854272000,2497792000,128000,0 +2019-01-01,538444631936000,154064004992000,54598024576000,32381323008000,15811958144000,2474496000,128000,0 +2019-01-02,535212295680000,154123004928000,52232730624000,25815279616000,15805551104000,2406400000,128000,0 +2019-01-03,534387396736000,149363140096000,51904429056000,25114585728000,14835548288000,2616448000,128000,0 +2019-01-04,534486134016000,149467570432000,51965890048000,23444305408000,14679932672000,2616448000,128000,0 +2019-01-05,532965571328000,149562119808000,52020164096000,20201077888000,14615989632000,2616448000,128000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..81beade8ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" +2018-12,532741548168533,167232847590400,53827509632000,31530238464000,15800680294400,2506240000,128000,0 +2019-01,535099205939200,151315968051200,52544247782400,25391314329600,15149795968000,2546048000,128000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ce0af8a7ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" +"2018 Q4",532741548168533,167232847590400,53827509632000,31530238464000,15800680294400,2506240000,128000,0 +"2019 Q1",535099205939200,151315968051200,52544247782400,25391314329600,15149795968000,2546048000,128000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6209573806 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" +2018,532741548168533,167232847590400,53827509632000,31530238464000,15800680294400,2506240000,128000,0 +2019,535099205939200,151315968051200,52544247782400,25391314329600,15149795968000,2546048000,128000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..39eae62cf1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota Utilization: Logical (%)" +Geosciences,531.8586 +"Mathematical and Physical Sciences",142.3038 +"Biological Sciences",109.0920 +Unknown,68.3634 +Engineering,61.9009 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0ab854c191 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota Utilization: Logical (%)" +Geosciences,531.8586 +"Mathematical and Physical Sciences",142.3038 +"Biological Sciences",109.0920 +Unknown,68.3637 +Engineering,61.9009 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0ab854c191 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota Utilization: Logical (%)" +Geosciences,531.8586 +"Mathematical and Physical Sciences",142.3038 +"Biological Sciences",109.0920 +Unknown,68.3637 +Engineering,61.9009 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0ab854c191 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota Utilization: Logical (%)" +Geosciences,531.8586 +"Mathematical and Physical Sciences",142.3038 +"Biological Sciences",109.0920 +Unknown,68.3637 +Engineering,61.9009 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2f882fa72f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" +2018-12-27,521.5355,162.5101,115.9693,67.1665,63.1497,0.0000,0.0000,0.0000 +2018-12-28,542.4984,151.3304,116.0165,67.9943,63.1623,0.0000,0.0000,0.0000 +2018-12-29,539.7886,150.1776,116.0663,68.2124,63.2058,0.0000,0.0000,0.0000 +2018-12-30,542.6385,149.3806,116.1044,68.6620,63.2364,0.0000,0.0000,0.0000 +2018-12-31,544.9136,174.8569,108.5587,69.0256,63.2594,0.0000,0.0000,0.0000 +2019-01-01,545.9801,161.9066,105.5233,68.9430,63.2478,0.0000,0.0000,0.0000 +2019-01-02,522.3271,129.0764,105.5637,68.5291,63.2222,0.0000,0.0000,0.0000 +2019-01-03,519.0441,125.5729,102.3035,68.4235,59.3422,0.0000,0.0000,0.0000 +2019-01-04,519.6587,117.2215,102.3750,68.4361,58.7197,0.0000,0.0000,0.0000 +2019-01-05,520.2015,101.0054,102.4398,68.2414,58.4640,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e82dcdf481 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" +2018-12,538.2749,157.6511,114.5430,68.2127,63.2027,0.0000,0.0000,0.0000 +2019-01,525.4423,126.9565,103.6411,68.5146,60.5992,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ae710aab54 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" +"2018 Q4",538.2749,157.6511,114.5430,68.2127,63.2027,0.0000,0.0000,0.0000 +"2019 Q1",525.4423,126.9565,103.6411,68.5146,60.5992,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..540064b306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" +2018,538.2749,157.6511,114.5430,68.2127,63.2027,0.0000,0.0000,0.0000 +2019,525.4423,126.9565,103.6411,68.5146,60.5992,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d4e5baaeb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Physical Usage (Bytes)" +"Biological Sciences",0.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d4e5baaeb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Physical Usage (Bytes)" +"Biological Sciences",0.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d4e5baaeb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Physical Usage (Bytes)" +"Biological Sciences",0.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d4e5baaeb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Physical Usage (Bytes)" +"Biological Sciences",0.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fe5c7656b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4b95a88b2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f77157aeea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5035eb4e6a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..da415ff4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Biological Sciences",146000015360000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20000006144000.0000 +Geosciences,10000003072000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..da415ff4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Biological Sciences",146000015360000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20000006144000.0000 +Geosciences,10000003072000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..da415ff4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Biological Sciences",146000015360000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20000006144000.0000 +Geosciences,10000003072000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..da415ff4a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Biological Sciences",146000015360000.0000 +Engineering,25000001536000.0000 +"Mathematical and Physical Sciences",20000006144000.0000 +Geosciences,10000003072000.0000 +"Computer and Information Science and Engineering",0.0000 +Humanities/Arts,0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5072b33256 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" +2018-12-27,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2018-12-28,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2018-12-29,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2018-12-30,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2018-12-31,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019-01-01,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019-01-02,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019-01-03,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019-01-04,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019-01-05,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4a453c6ed6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" +2018-12,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019-01,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4fa52ccc9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" +"2018 Q4",781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +"2019 Q1",781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ad9f8d36c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" +2018,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +2019,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..67db1f8c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","User Count (Number of Users)" +Unknown,188 +"Mathematical and Physical Sciences",44 +Engineering,39 +Geosciences,27 +"Biological Sciences",25 +"Social, Behavioral, and Economic Sciences",15 +"Computer and Information Science and Engineering",4 +Humanities/Arts,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..67db1f8c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","User Count (Number of Users)" +Unknown,188 +"Mathematical and Physical Sciences",44 +Engineering,39 +Geosciences,27 +"Biological Sciences",25 +"Social, Behavioral, and Economic Sciences",15 +"Computer and Information Science and Engineering",4 +Humanities/Arts,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..67db1f8c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","User Count (Number of Users)" +Unknown,188 +"Mathematical and Physical Sciences",44 +Engineering,39 +Geosciences,27 +"Biological Sciences",25 +"Social, Behavioral, and Economic Sciences",15 +"Computer and Information Science and Engineering",4 +Humanities/Arts,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..67db1f8c40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Decanal Unit","User Count (Number of Users)" +Unknown,188 +"Mathematical and Physical Sciences",44 +Engineering,39 +Geosciences,27 +"Biological Sciences",25 +"Social, Behavioral, and Economic Sciences",15 +"Computer and Information Science and Engineering",4 +Humanities/Arts,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6093ba40ed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" +2018-12-27,187,44,39,27,25,15,4,2 +2018-12-28,187,44,39,27,25,15,4,2 +2018-12-29,188,44,39,27,25,15,4,2 +2018-12-30,188,44,39,27,25,15,4,2 +2018-12-31,188,44,39,27,25,15,4,2 +2019-01-01,188,44,39,27,25,15,4,2 +2019-01-02,188,44,39,27,25,15,4,2 +2019-01-03,188,44,39,27,25,15,4,2 +2019-01-04,188,44,39,27,25,15,4,2 +2019-01-05,188,44,39,26,25,15,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..361f6d89b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" +2018-12,188,44,39,27,25,15,4,2 +2019-01,188,44,39,27,25,15,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..068a085f13 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" +"2018 Q4",188,44,39,27,25,15,4,2 +"2019 Q1",188,44,39,27,25,15,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d2aa193963 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Decanal Unit" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" +2018,188,44,39,27,25,15,4,2 +2019,188,44,39,27,25,15,4,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6c23c1c1de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"File Count (Number of files)" +Unknown,221213085.9000 +"Mechanical and Structural Systems",3527630.6000 +"Molecular Biosciences",3014971.4000 +"Mathematical Sciences",2149604.8000 +Chemistry,1541382.2000 +"Electrical and Communication Systems",915377.5000 +"Earth Sciences",392678.1000 +"Astronomical Sciences",223503.7000 +"Environmental Biology",62708.5000 +Physics,20072.0000 +"Materials Research",6966.5000 +"Social and Economic Science",6654.3000 +"Microelectronic Information Processing Systems",5339.0000 +"Polar Programs",804.2000 +"Chemical, Thermal Systems",51.0000 +"Atmospheric Sciences",48.0000 +Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1547caa3a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"File Count (Number of files)" +Unknown,221221886.0000 +"Mechanical and Structural Systems",3527630.0000 +"Molecular Biosciences",3014971.0000 +"Mathematical Sciences",2149604.5000 +Chemistry,1541382.5000 +"Electrical and Communication Systems",915377.5000 +"Earth Sciences",392679.0000 +"Astronomical Sciences",223503.5000 +"Environmental Biology",62708.5000 +Physics,20072.0000 +"Materials Research",6966.5000 +"Social and Economic Science",6654.5000 +"Microelectronic Information Processing Systems",5339.0000 +"Polar Programs",804.0000 +"Chemical, Thermal Systems",51.0000 +"Atmospheric Sciences",48.0000 +Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1547caa3a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"File Count (Number of files)" +Unknown,221221886.0000 +"Mechanical and Structural Systems",3527630.0000 +"Molecular Biosciences",3014971.0000 +"Mathematical Sciences",2149604.5000 +Chemistry,1541382.5000 +"Electrical and Communication Systems",915377.5000 +"Earth Sciences",392679.0000 +"Astronomical Sciences",223503.5000 +"Environmental Biology",62708.5000 +Physics,20072.0000 +"Materials Research",6966.5000 +"Social and Economic Science",6654.5000 +"Microelectronic Information Processing Systems",5339.0000 +"Polar Programs",804.0000 +"Chemical, Thermal Systems",51.0000 +"Atmospheric Sciences",48.0000 +Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1547caa3a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"File Count (Number of files)" +Unknown,221221886.0000 +"Mechanical and Structural Systems",3527630.0000 +"Molecular Biosciences",3014971.0000 +"Mathematical Sciences",2149604.5000 +Chemistry,1541382.5000 +"Electrical and Communication Systems",915377.5000 +"Earth Sciences",392679.0000 +"Astronomical Sciences",223503.5000 +"Environmental Biology",62708.5000 +Physics,20072.0000 +"Materials Research",6966.5000 +"Social and Economic Science",6654.5000 +"Microelectronic Information Processing Systems",5339.0000 +"Polar Programs",804.0000 +"Chemical, Thermal Systems",51.0000 +"Atmospheric Sciences",48.0000 +Arts,8.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..83006ebe2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" +2018-12-27,219505360,2940515,3050306,2147760,1528372,929461,356985,227914,62606,20072,6976,7098,5339,740,51,48,8 +2018-12-28,220199493,2940752,3050377,2146930,1528669,942500,473958,253961,62604,20072,6976,7096,5339,798,51,48,8 +2018-12-29,220909652,3272058,3050425,2146930,1545455,942579,392805,221585,62690,20072,6976,7099,5339,798,51,48,8 +2018-12-30,220869065,3507560,3050468,2146930,1545454,913122,410632,252098,62719,20072,6976,7099,5339,798,51,48,8 +2018-12-31,220996200,3784497,3026167,2146930,1545416,913101,419839,245325,62713,20072,6976,7048,5339,798,51,48,8 +2019-01-01,221233693,3791772,2984753,2152075,1545320,900081,420910,232953,62732,20072,6957,5970,5339,798,51,48,8 +2019-01-02,221578786,3793948,2984801,2152075,1544700,899778,365107,202989,62739,20072,6957,6068,5339,798,51,48,8 +2019-01-03,221982330,3671019,2983051,2151990,1543740,899919,360243,199890,62743,20072,6957,6355,5339,798,51,48,8 +2019-01-04,222401952,3746709,2984667,2152252,1543348,911677,362434,197097,62736,20072,6957,6355,5339,798,51,48,8 +2019-01-05,222454328,3827476,2984699,2152176,1543348,901557,363868,201225,62803,20072,6957,6355,5339,918,51,48,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d821f516b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" +2018-12,220513553,3289076,3045549,2147096,1538674,928152,410844,240177,62666,20072,6976,7088,5339,786,51,48,8 +2019-01,221930219,3766184,2984393,2152113,1544091,902603,374514,206830,62751,20072,6957,6221,5339,822,51,48,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..860dc9c264 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" +"2018 Q4",220513553,3289076,3045549,2147096,1538674,928152,410844,240177,62666,20072,6976,7088,5339,786,51,48,8 +"2019 Q1",221930219,3766184,2984393,2152113,1544091,902603,374514,206830,62751,20072,6957,6221,5339,822,51,48,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3c50e5eadb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" +2018,220513553,3289076,3045549,2147096,1538674,928152,410844,240177,62666,20072,6976,7088,5339,786,51,48,8 +2019,221930219,3766184,2984393,2152113,1544091,902603,374514,206830,62751,20072,6957,6221,5339,822,51,48,8 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..006573f386 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Molecular Biosciences",250015019008000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10005000192000.0000 +"Earth Sciences",10005000192000.0000 +"Mathematical Sciences",10005000192000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..006573f386 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Molecular Biosciences",250015019008000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10005000192000.0000 +"Earth Sciences",10005000192000.0000 +"Mathematical Sciences",10005000192000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..006573f386 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Molecular Biosciences",250015019008000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10005000192000.0000 +"Earth Sciences",10005000192000.0000 +"Mathematical Sciences",10005000192000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..006573f386 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Hard Threshold (Bytes)" +Unknown,1042015019008000.0000 +"Molecular Biosciences",250015019008000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10005000192000.0000 +"Earth Sciences",10005000192000.0000 +"Mathematical Sciences",10005000192000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..21c77e980e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" +2018-12-27,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2fd62bf975 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" +2018-12,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019-01,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4522228598 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" +"2018 Q4",1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..de61dfed0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" +2018,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +2019,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bfb8a246ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Logical Usage (Bytes)" +Unknown,533918117529600.0000 +"Molecular Biosciences",159183348608000.0000 +"Earth Sciences",53056749504000.0000 +"Mechanical and Structural Systems",14837867673600.0000 +"Astronomical Sciences",10697016486400.0000 +"Mathematical Sciences",8979302297600.0000 +Chemistry,8783627276800.0000 +"Electrical and Communication Systems",637370457600.0000 +"Polar Programs",129129152000.0000 +"Environmental Biology",91059212800.0000 +"Social and Economic Science",2526144000.0000 +"Materials Research",821760000.0000 +Physics,8576000.0000 +Arts,128000.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8a7657ea6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Logical Usage (Bytes)" +Unknown,533920377053866.5000 +"Molecular Biosciences",159183348608000.0000 +"Earth Sciences",53056749555200.0000 +"Mechanical and Structural Systems",14837867673600.0000 +"Astronomical Sciences",10697016486400.0000 +"Mathematical Sciences",8979302297600.0000 +Chemistry,8783627276800.0000 +"Electrical and Communication Systems",637370457600.0000 +"Polar Programs",129129152000.0000 +"Environmental Biology",91059212800.0000 +"Social and Economic Science",2526144000.0000 +"Materials Research",821760000.0000 +Physics,8576000.0000 +Arts,128000.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8a7657ea6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Logical Usage (Bytes)" +Unknown,533920377053866.5000 +"Molecular Biosciences",159183348608000.0000 +"Earth Sciences",53056749555200.0000 +"Mechanical and Structural Systems",14837867673600.0000 +"Astronomical Sciences",10697016486400.0000 +"Mathematical Sciences",8979302297600.0000 +Chemistry,8783627276800.0000 +"Electrical and Communication Systems",637370457600.0000 +"Polar Programs",129129152000.0000 +"Environmental Biology",91059212800.0000 +"Social and Economic Science",2526144000.0000 +"Materials Research",821760000.0000 +Physics,8576000.0000 +Arts,128000.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8a7657ea6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Logical Usage (Bytes)" +Unknown,533920377053866.5000 +"Molecular Biosciences",159183348608000.0000 +"Earth Sciences",53056749555200.0000 +"Mechanical and Structural Systems",14837867673600.0000 +"Astronomical Sciences",10697016486400.0000 +"Mathematical Sciences",8979302297600.0000 +Chemistry,8783627276800.0000 +"Electrical and Communication Systems",637370457600.0000 +"Polar Programs",129129152000.0000 +"Environmental Biology",91059212800.0000 +"Social and Economic Science",2526144000.0000 +"Materials Research",821760000.0000 +Physics,8576000.0000 +Arts,128000.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..19c25e5fc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" +2018-12-27,524570273664000,169227940736000,52024536704000,15153056384000,14713539456000,8971667712000,8815179648000,634357888000,129027072000,87247488000,2508032000,1642112000,8576000,128000,0,0,0 +2018-12-28,531035237504000,169296841472000,54120756736000,15153506944000,12472681088000,8972920704000,8818837504000,637062400000,129104640000,87256320000,2508032000,1642112000,8576000,128000,0,0,0 +2018-12-29,532739234688000,169364973056000,53849775488000,15161907200000,12238492160000,8972920704000,8822471296000,639554816000,129104640000,91802240000,2508672000,1642112000,8576000,128000,0,0,0 +2018-12-30,536250099456000,169420602112000,54134765696000,15166904704000,12078699776000,8972920704000,8822862336000,642196864000,129104640000,91831296000,2508672000,1642112000,8576000,128000,0,0,0 +2018-12-31,539090300288000,158403906304000,54362267904000,15172479872000,17173988480000,8972912768000,8822844544000,642374400000,129104640000,91836928000,2497792000,1642112000,8576000,128000,0,0,0 +2019-01-01,538444631936000,153972136320000,54468919936000,15171166208000,14641606016000,8984509952000,8755197056000,640791936000,129104640000,91868672000,2474496000,1408000,8576000,128000,0,0,0 +2019-01-02,535212295680000,154031121280000,52103625984000,15156382080000,8085082240000,8984509952000,8745677440000,649169024000,129104640000,91883648000,2406400000,1408000,8576000,128000,0,0,0 +2019-01-03,534387396736000,149271253376000,51775324416000,14191801216000,7385004544000,8984141696000,8745429504000,643747072000,129104640000,91886720000,2616448000,1408000,8576000,128000,0,0,0 +2019-01-04,534486134016000,149375701632000,51836785408000,14026531584000,5711420288000,8988988416000,8743886720000,653401088000,129104640000,91868800000,2616448000,1408000,8576000,128000,0,0,0 +2019-01-05,532965571328000,149469009792000,51890736768000,14024940544000,2469650816000,8987530368000,8743886720000,591049088000,129427328000,93110016000,2616448000,1408000,8576000,128000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1e51db463a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" +2018-12,532741548168533,167142852736000,53698420505600,15161571020800,13735480192000,8972668518400,8820439065600,639109273600,129089126400,89994854400,2506240000,1642112000,8576000,128000,0,0,0 +2019-01,535099205939200,151223844480000,52415078604800,14514164326400,7658552780800,8985936076800,8746815488000,635631641600,129169177600,92123571200,2546048000,1408000,8576000,128000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d2ffcd506d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" +"2018 Q4",532741548168533,167142852736000,53698420505600,15161571020800,13735480192000,8972668518400,8820439065600,639109273600,129089126400,89994854400,2506240000,1642112000,8576000,128000,0,0,0 +"2019 Q1",535099205939200,151223844480000,52415078604800,14514164326400,7658552780800,8985936076800,8746815488000,635631641600,129169177600,92123571200,2546048000,1408000,8576000,128000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1435aeb016 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" +2018,532741548168533,167142852736000,53698420505600,15161571020800,13735480192000,8972668518400,8820439065600,639109273600,129089126400,89994854400,2506240000,1642112000,8576000,128000,0,0,0 +2019,535099205939200,151223844480000,52415078604800,14514164326400,7658552780800,8985936076800,8746815488000,635631641600,129169177600,92123571200,2546048000,1408000,8576000,128000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3a8269d0f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota Utilization: Logical (%)" +"Earth Sciences",530.5673 +"Molecular Biosciences",109.0297 +"Mathematical Sciences",89.7930 +Chemistry,87.8362 +Unknown,68.3634 +"Electrical and Communication Systems",2.5495 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cd7f629ca9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota Utilization: Logical (%)" +"Earth Sciences",530.5673 +"Molecular Biosciences",109.0297 +"Mathematical Sciences",89.7930 +Chemistry,87.8362 +Unknown,68.3637 +"Electrical and Communication Systems",2.5495 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cd7f629ca9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota Utilization: Logical (%)" +"Earth Sciences",530.5673 +"Molecular Biosciences",109.0297 +"Mathematical Sciences",89.7930 +Chemistry,87.8362 +Unknown,68.3637 +"Electrical and Communication Systems",2.5495 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..cd7f629ca9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota Utilization: Logical (%)" +"Earth Sciences",530.5673 +"Molecular Biosciences",109.0297 +"Mathematical Sciences",89.7930 +Chemistry,87.8362 +Unknown,68.3637 +"Electrical and Communication Systems",2.5495 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..725af70db2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" +2018-12-27,520.2452,115.9095,89.7166,88.1518,67.1665,2.5374,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,541.2074,115.9567,89.7292,88.1883,67.9943,2.5482,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,538.4976,116.0034,89.7292,88.2247,68.2124,2.5582,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,541.3475,116.0415,89.7292,88.2286,68.6620,2.5688,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,543.6225,108.4958,89.7291,88.2284,69.0256,2.5695,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,544.6890,105.4604,89.8451,87.5519,68.9430,2.5632,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,521.0361,105.5008,89.8451,87.4567,68.5291,2.5967,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,517.7531,102.2406,89.8414,87.4543,68.4235,2.5750,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,518.3677,102.3121,89.8899,87.4388,68.4361,2.6136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,518.9072,102.3760,89.8753,87.4388,68.2414,2.3642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60192285d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" +2018-12,536.9840,114.4814,89.7267,88.2044,68.2127,2.5564,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,524.1506,103.5780,89.8593,87.4681,68.5146,2.5425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..433dcb942b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" +"2018 Q4",536.9840,114.4814,89.7267,88.2044,68.2127,2.5564,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",524.1506,103.5780,89.8593,87.4681,68.5146,2.5425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b590d35b30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" +2018,536.9840,114.4814,89.7267,88.2044,68.2127,2.5564,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,524.1506,103.5780,89.8593,87.4681,68.5146,2.5425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..dce01550dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Physical Usage (Bytes)" +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +"Molecular Biosciences",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..dce01550dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Physical Usage (Bytes)" +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +"Molecular Biosciences",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..dce01550dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Physical Usage (Bytes)" +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +"Molecular Biosciences",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..dce01550dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Physical Usage (Bytes)" +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +"Molecular Biosciences",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +Unknown,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c272be94dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1af2fd2558 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d6e07766a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5e9d7c37cd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f89b273b9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Molecular Biosciences",146000015360000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10000003072000.0000 +"Earth Sciences",10000003072000.0000 +"Mathematical Sciences",10000003072000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f89b273b9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Molecular Biosciences",146000015360000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10000003072000.0000 +"Earth Sciences",10000003072000.0000 +"Mathematical Sciences",10000003072000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f89b273b9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Molecular Biosciences",146000015360000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10000003072000.0000 +"Earth Sciences",10000003072000.0000 +"Mathematical Sciences",10000003072000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f89b273b9e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"Quota: Soft Threshold (Bytes)" +Unknown,781000019968000.0000 +"Molecular Biosciences",146000015360000.0000 +"Electrical and Communication Systems",25000001536000.0000 +Chemistry,10000003072000.0000 +"Earth Sciences",10000003072000.0000 +"Mathematical Sciences",10000003072000.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b1840f8ab4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" +2018-12-27,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..829a98db9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" +2018-12,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019-01,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6484e53f82 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" +"2018 Q4",781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2302c3e98d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" +2018,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +2019,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f1a39b715f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv @@ -0,0 +1,26 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"User Count (Number of Users)" +Unknown,188 +"Molecular Biosciences",24 +"Mechanical and Structural Systems",22 +"Earth Sciences",21 +Chemistry,18 +"Astronomical Sciences",15 +"Electrical and Communication Systems",15 +"Social and Economic Science",15 +"Mathematical Sciences",5 +"Polar Programs",5 +"Microelectronic Information Processing Systems",4 +"Materials Research",3 +Physics,3 +Arts,2 +"Chemical, Thermal Systems",2 +"Atmospheric Sciences",1 +"Environmental Biology",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f1a39b715f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv @@ -0,0 +1,26 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"User Count (Number of Users)" +Unknown,188 +"Molecular Biosciences",24 +"Mechanical and Structural Systems",22 +"Earth Sciences",21 +Chemistry,18 +"Astronomical Sciences",15 +"Electrical and Communication Systems",15 +"Social and Economic Science",15 +"Mathematical Sciences",5 +"Polar Programs",5 +"Microelectronic Information Processing Systems",4 +"Materials Research",3 +Physics,3 +Arts,2 +"Chemical, Thermal Systems",2 +"Atmospheric Sciences",1 +"Environmental Biology",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f1a39b715f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,26 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"User Count (Number of Users)" +Unknown,188 +"Molecular Biosciences",24 +"Mechanical and Structural Systems",22 +"Earth Sciences",21 +Chemistry,18 +"Astronomical Sciences",15 +"Electrical and Communication Systems",15 +"Social and Economic Science",15 +"Mathematical Sciences",5 +"Polar Programs",5 +"Microelectronic Information Processing Systems",4 +"Materials Research",3 +Physics,3 +Arts,2 +"Chemical, Thermal Systems",2 +"Atmospheric Sciences",1 +"Environmental Biology",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f1a39b715f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv @@ -0,0 +1,26 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Department,"User Count (Number of Users)" +Unknown,188 +"Molecular Biosciences",24 +"Mechanical and Structural Systems",22 +"Earth Sciences",21 +Chemistry,18 +"Astronomical Sciences",15 +"Electrical and Communication Systems",15 +"Social and Economic Science",15 +"Mathematical Sciences",5 +"Polar Programs",5 +"Microelectronic Information Processing Systems",4 +"Materials Research",3 +Physics,3 +Arts,2 +"Chemical, Thermal Systems",2 +"Atmospheric Sciences",1 +"Environmental Biology",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..616455154f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" +2018-12-27,187,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2018-12-28,187,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2018-12-29,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2018-12-30,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2018-12-31,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019-01-01,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019-01-02,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019-01-03,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019-01-04,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019-01-05,188,24,22,20,18,15,15,15,5,5,4,3,3,2,2,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6c1884b60c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" +2018-12,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019-01,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ba0aab272b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" +"2018 Q4",188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +"2019 Q1",188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4b5d9cc800 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Department" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" +2018,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +2019,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ca7cb7f1b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"File Count (Number of files)" +"Warbler, Magnolia",105192388.3000 +"Cowbird, Brown-headed",89120484.8000 +Bobolink,15196470.0000 +"Bunting, Chestnut-eared",6091664.1000 +"Reed, Pallas's",2275235.8000 +"Kestrel, Lesser",2148624.5000 +"Bunting, Little",1365060.7000 +Chaffinch,1227901.8000 +Coot,1185344.0000 +"Waterthrush, Northern",1135809.0000 +"Scaup, Lesser",943505.0000 +Yellowhammer,938054.4000 +"Chiffchaff, Iberian",785457.2000 +"Martin, Purple",748238.5000 +"Warbler, Black-and-white",630272.0000 +"Bunting, Cirl",595394.0000 +"Sparrow, White-crowned",509822.5000 +"Oriole, Baltimore",381957.1000 +"Junco, Dark-eyed",292582.3000 +"Auk, Little",288362.9000 +"Bunting, Pine",174607.9000 +"Thrush, Swainson's",160124.7000 +"Bunting, Rock",143440.2000 +"Grosbeak, Rose-breasted",123610.8000 +"Bunting, Black-faced",121125.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +"Bunting, Cretzschmar's",101637.5000 +"Swift, Alpine",86623.1000 +Twite,79552.6000 +"Bunting, Snow",73344.0000 +Dunlin,62708.5000 +Ovenbird,55522.9000 +"Tanager, Scarlet",54479.7000 +"Sparrow, Lark",51464.8000 +Linnet,33143.8000 +"Martin, Sand",32673.0000 +"Crossbill, Common",31883.8000 +"Thrush, Rock",30131.0000 +Roller,24220.7000 +"Wagtail, Citrine",23780.0000 +"Warbler, Yellow",21001.0000 +"Plover, White-tailed",20036.0000 +"Egret, Cattle",18325.0000 +"Sandpiper, Purple",16500.5000 +"Sparrow, Rock",15288.0000 +"Bunting, Reed",14496.8000 +"Warbler, Tennessee",14270.0000 +"Warbler, Hume's",13556.3000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Blyth's",12295.0000 +"Rock, Blue",11988.0000 +"Pipit, Tawny",11130.8000 +"Parula, Northern",10410.6000 +"Towhee, Eastern",8955.0000 +"Flycatcher, Collared",8530.0000 +"Wheatear, Black-eared",7417.0000 +"Crossbill, Parrot",7042.1000 +Bluethroat,7009.4000 +"Redstart, Moussier's",6970.0000 +"Crane, Sandhill",6954.5000 +"Grebe, Pied-billed",6781.0000 +"Treecreeper, Short-toed",6025.8000 +Serin,5866.0000 +Honey-buzzard,5423.0000 +"Warbler, Hooded",5262.0000 +"Grosbeak, Pine",4624.8000 +Redwing,4617.0000 +"Finch, Trumpeter",4360.0000 +"Warbler, Blackburnian",2916.0000 +"Black, White-crowned",2875.7000 +"Redpoll, Arctic",2842.6000 +"Pipit, Water",2828.3000 +"Wheatear, Isabelline",2742.0000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.3000 +Goldfinch,2503.8000 +"Thrush, Grey-cheeked",2498.3000 +"Thrush, Siberian",2362.0000 +"Thrush, Naumann's",2350.0000 +"Blue, Siberian",2215.0000 +Greenfinch,2199.3000 +"Rubythroat, Siberian",2063.0000 +"Crossbill, Two-barred",1958.5000 +"Redstart, Black",1648.0000 +Hawfinch,1548.7000 +Whinchat,1442.0000 +"Bunting, Corn",1334.0000 +Wheatear,1306.0000 +"Lark, Black",1225.0000 +Redstart,1111.0000 +Bullfinch,1058.3000 +"Flycatcher, Pied",1051.0000 +"Wagtail, Grey",995.9000 +Dipper,915.0000 +Starling,896.0000 +"Pipit, Olive-backed",822.7000 +"Lark, White-winged",788.0000 +"Crossbill, Scottish",776.0000 +"Sparrow, Savannah",678.0000 +Stonechat,609.0000 +"Wheatear, Pied",605.0000 +"Bluetail, Red-flanked",504.6000 +"Thrush, Eyebrowed",494.0000 +"Bunting, Yellow-browed",468.0000 +"Thrush, Varied",452.0000 +"Pipit, Pechora",448.0000 +Wren,425.0000 +"Lark, Bimaculated",404.0000 +"Sparrow, House",396.7000 +"Waxwing, Cedar",373.0000 +"Thrasher, Brown",368.0000 +"Nightingale, Thrush",352.7000 +"Pipit, Rock",328.0000 +"Grey, Southern",327.2000 +"Pipit, Richard's",321.4000 +"Grouse, Red",314.0000 +"Bush, Rufous",289.0000 +Treecreeper,175.0000 +"Mockingbird, Northern",171.0000 +"Martin, Crag",167.6000 +Robin,163.0000 +"Reed, Great",161.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.4000 +Brambling,142.6000 +"Dove, Turtle",138.0000 +"Lark, Calandra",130.0000 +"Ouzel, Ring",123.0000 +"Thrush, Black-throated",113.0000 +"Tit, Marsh",106.0000 +Veery,103.0000 +"Tit, Coal",102.0000 +"Sparrow, Spanish",101.5000 +"Tern, Sandwich",97.0000 +"Wheatear, Desert",91.4000 +"Warbler, River",90.0000 +"Tit, Crested",86.0000 +"Warbler, Garden",78.0000 +"Warbler, Cetti's",75.0000 +"Warbler, Dartford",75.0000 +"Tit, Great",72.0000 +"Thrush, Wood",69.0000 +"Shrike, Long-tailed",65.0000 +"Catbird, Grey",60.0000 +"Warbler, Olive-tree",57.0000 +"Warbler, Aquatic",53.0000 +"Flycatcher, Brown",52.8000 +"Warbler, Reed",52.0000 +"Flycatcher, Red-breasted",51.3000 +"Tit, Blue",51.0000 +"Warbler, Dusky",50.0000 +"Warbler, Spectacled",50.0000 +Whitethroat,50.0000 +"Tit, Penduline",49.0000 +"Warbler, Yellow-browed",48.0000 +Firecrest,43.0000 +"Robin, Rufous-tailed",42.0000 +"Warbler, Melodious",39.0000 +Raven,38.0000 +"Thrush, Song",37.0000 +"Warbler, Golden-winged",36.0000 +Dunnock,34.0000 +"Warbler, Marsh",34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Ruppell's",31.0000 +"Crow, Carrion",29.0000 +Nutcracker,29.0000 +Rook,29.0000 +Jay,28.0000 +Magpie,28.0000 +Chough,26.0000 +"Shearwater, Cory's",25.0000 +"Shrike, Masked",25.0000 +"Orphean, Western",24.0000 +"Robin, American",22.0000 +"Shrike, Woodchat",22.0000 +"Reed, Blyth's",19.0000 +"Shrike, Red-backed",17.0000 +"Oriole, Golden",15.0000 +"Shrike, Isabelline",15.0000 +"Vireo, Red-eyed",14.0000 +"Warbler, Sedge",13.0000 +"Tanager, Summer",12.0000 +"Phoebe, Eastern",11.0000 +"Shearwater, Balearic",11.0000 +"Vireo, Philadelphia",11.0000 +"Vireo, Yellow-throated",11.0000 +"Warbler, Grasshopper",11.0000 +"Warbler, Thick-billed",11.0000 +Blackbird,10.8889 +"Falcon, Gyr",10.0000 +Hobby,10.0000 +"Olivaceous, Eastern",10.0000 +"Parakeet, Ring-necked",10.0000 +Shag,10.0000 +"Warbler, Lanceolated",10.0000 +"Whitethroat, Lesser",10.0000 +"Falcon, Amur",9.0000 +"Falcon, Red-footed",9.0000 +"Kestrel, American",9.0000 +"Tit, Long-tailed",9.0000 +"Warbler, Greenish",9.0000 +Kestrel,7.0000 +"Swallow, Cliff",7.0000 +"Warbler, Icterine",7.0000 +"Woodpecker, Green",7.0000 +"Grasshopper, Pallas's",6.5000 +Waxwing,6.4000 +Bee-eater,6.0000 +"Bee-eater, Blue-cheeked",6.0000 +Hoopoe,6.0000 +Wryneck,6.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Nightjar, Egyptian",5.0000 +"Nightjar, Red-necked",5.0000 +Swift,5.0000 +"Swift, Chimney",5.0000 +"Swift, Needle-tailed",5.0000 +"Swift, Pacific",5.0000 +"Swift, Pallid",5.0000 +"Warbler, Yellow-rumped",5.0000 +"Crowned, Eastern",4.0000 +Nightjar,4.0000 +"Owl, Hawk",4.0000 +"Owl, Long-eared",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Owl, Tawny",4.0000 +"Owl, Tengmalm's",4.0000 +"Sandpiper, Spotted",4.0000 +"Scoter, Velvet",4.0000 +"Swallow, Red-rumped",4.0000 +"Warbler, Green",4.0000 +"Warbler, Subalpine",4.0000 +"Bonelli's, Western",3.0000 +Cuckoo,3.0000 +"Cuckoo, Yellow-billed",3.0000 +"Dove, Collared",3.0000 +"Dove, Mourning",3.0000 +"Dove, Stock",3.0000 +"Martin, House",3.0000 +"Owl, Barn",3.0000 +"Owl, Scops",3.0000 +"Spotted, Great",3.0000 +"Turtle, Rufous",3.0000 +Wallcreeper,3.0000 +Woodpigeon,3.0000 +"Black-backed, Great",2.0000 +"Black-backed, Lesser",2.0000 +Blackcap,2.0000 +"Dove, Rock",2.0000 +"Gull, Caspian",2.0000 +"Gull, Glaucous",2.0000 +"Gull, Iceland",2.0000 +"Gull, Slaty-backed",2.0000 +"Herring, American",2.0000 +"May, Cape",2.0000 +"Sandgrouse, Pallas's",2.0000 +Swallow,2.0000 +"Swallow, Tree",2.0000 +"Wagtail, Yellow",2.0000 +"Warbler, Pallas's",2.0000 +"Warbler, Willow",2.0000 +"Auk, Great",1.0000 +Bittern,1.0000 +"Black, White-winged",1.0000 +"Courser, Cream-coloured",1.0000 +"Crested, Lesser",1.0000 +"Dowitcher, Long-billed",1.0000 +Greenshank,1.0000 +"Grosbeak, Evening",1.0000 +Guillemot,1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Black-headed",1.0000 +"Gull, Common",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Ivory",1.0000 +"Gull, Laughing",1.0000 +"Gull, Little",1.0000 +"Gull, Mediterranean",1.0000 +"Gull, Ross's",1.0000 +"Gull, Sabine's",1.0000 +"Gull, Slender-billed",1.0000 +Kittiwake,1.0000 +"Lark, Crested",1.0000 +"Lark, Shore",1.0000 +"Lark, Short-toed",1.0000 +"Murrelet, Ancient",1.0000 +"Murrelet, Long-billed",1.0000 +"Phalarope, Grey",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +"Pipit, Tree",1.0000 +"Pratincole, Black-winged",1.0000 +"Pratincole, Collared",1.0000 +"Pratincole, Oriental",1.0000 +"Puffin, Tufted",1.0000 +Razorbill,1.0000 +Redshank,1.0000 +"Rosefinch, Common",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Common",1.0000 +"Sandpiper, Green",1.0000 +"Sandpiper, Least",1.0000 +"Sandpiper, Marsh",1.0000 +"Sandpiper, Pectoral",1.0000 +"Sandpiper, Semipalmated",1.0000 +"Sandpiper, Solitary",1.0000 +"Sandpiper, Terek",1.0000 +"Sandpiper, White-rumped",1.0000 +"Sandpiper, Wood",1.0000 +"Short-toed, Lesser",1.0000 +"Skua, Great",1.0000 +"Skua, Long-tailed",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Snipe, Jack",1.0000 +"Snipe, Wilson's",1.0000 +"Tattler, Grey-tailed",1.0000 +"Tern, Aleutian",1.0000 +"Tern, Arctic",1.0000 +"Tern, Black",1.0000 +"Tern, Bridled",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +"Tern, Forster's",1.0000 +"Tern, Little",1.0000 +"Tern, Roseate",1.0000 +"Tern, Royal",1.0000 +"Tern, Sooty",1.0000 +"Tern, Whiskered",1.0000 +"Warbler, Wood",1.0000 +Woodcock,1.0000 +Woodlark,1.0000 +"Yellowlegs, Greater",1.0000 +"Yellowlegs, Lesser",1.0000 +"Warbler, Sardinian",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..477a0ae44c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"File Count (Number of files)" +"Warbler, Magnolia",105192388.5000 +"Cowbird, Brown-headed",89120485.0000 +Bobolink,15196470.0000 +"Bunting, Chestnut-eared",6091664.0000 +"Reed, Pallas's",2275235.5000 +"Kestrel, Lesser",2148624.5000 +"Bunting, Little",1365060.5000 +Chaffinch,1227901.5000 +Coot,1185344.0000 +"Waterthrush, Northern",1135809.0000 +"Scaup, Lesser",943505.0000 +Yellowhammer,938054.0000 +"Chiffchaff, Iberian",785457.0000 +"Martin, Purple",748238.5000 +"Warbler, Black-and-white",630272.0000 +"Bunting, Cirl",595394.0000 +"Sparrow, White-crowned",509822.5000 +"Oriole, Baltimore",381957.0000 +"Junco, Dark-eyed",292582.5000 +"Auk, Little",288363.0000 +"Bunting, Pine",174608.0000 +"Thrush, Swainson's",160124.5000 +"Bunting, Rock",143440.0000 +"Grosbeak, Rose-breasted",123611.0000 +"Bunting, Black-faced",121125.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +"Bunting, Cretzschmar's",101637.5000 +"Swift, Alpine",86623.0000 +Twite,79552.5000 +"Bunting, Snow",73344.0000 +Dunlin,62708.5000 +Ovenbird,55523.0000 +"Tanager, Scarlet",54480.0000 +"Sparrow, Lark",51465.0000 +Linnet,33144.0000 +"Martin, Sand",32673.0000 +"Crossbill, Common",31883.5000 +"Thrush, Rock",30131.0000 +Roller,24220.5000 +"Wagtail, Citrine",23780.0000 +"Sandpiper, Purple",21999.5000 +"Warbler, Yellow",21001.0000 +"Plover, White-tailed",20036.0000 +"Egret, Cattle",18325.0000 +"Sparrow, Rock",15288.0000 +"Bunting, Reed",14497.0000 +"Warbler, Tennessee",14270.0000 +"Warbler, Hume's",13556.5000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Blyth's",12295.0000 +"Rock, Blue",11988.0000 +"Pipit, Tawny",11130.5000 +"Parula, Northern",10411.0000 +"Towhee, Eastern",8955.0000 +"Flycatcher, Collared",8530.0000 +"Wheatear, Black-eared",7417.0000 +"Crossbill, Parrot",7042.0000 +Bluethroat,7009.5000 +"Redstart, Moussier's",6970.0000 +"Crane, Sandhill",6954.5000 +"Grebe, Pied-billed",6781.0000 +"Treecreeper, Short-toed",6026.0000 +Serin,5866.0000 +Honey-buzzard,5423.0000 +"Warbler, Hooded",5262.0000 +"Grosbeak, Pine",4625.0000 +Redwing,4617.0000 +"Finch, Trumpeter",4360.0000 +"Warbler, Blackburnian",2916.0000 +"Black, White-crowned",2875.5000 +"Redpoll, Arctic",2842.5000 +"Pipit, Water",2828.5000 +"Wheatear, Isabelline",2742.0000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.5000 +Goldfinch,2503.5000 +"Thrush, Grey-cheeked",2498.5000 +"Thrush, Siberian",2362.0000 +"Thrush, Naumann's",2350.0000 +"Blue, Siberian",2215.0000 +Greenfinch,2199.5000 +"Rubythroat, Siberian",2063.0000 +"Crossbill, Two-barred",1958.5000 +"Redstart, Black",1648.0000 +Hawfinch,1548.5000 +Whinchat,1442.0000 +"Bunting, Corn",1334.0000 +Wheatear,1306.0000 +"Lark, Black",1225.0000 +Redstart,1111.0000 +Bullfinch,1058.0000 +"Flycatcher, Pied",1051.0000 +"Wagtail, Grey",996.0000 +Dipper,915.0000 +Starling,896.0000 +"Pipit, Olive-backed",822.5000 +"Lark, White-winged",788.0000 +"Crossbill, Scottish",776.0000 +"Sparrow, Savannah",678.0000 +Stonechat,609.0000 +"Wheatear, Pied",605.0000 +"Bluetail, Red-flanked",504.5000 +"Thrush, Eyebrowed",494.0000 +"Bunting, Yellow-browed",468.0000 +"Thrush, Varied",452.0000 +"Pipit, Pechora",448.0000 +Wren,425.0000 +"Lark, Bimaculated",404.0000 +"Sparrow, House",396.5000 +"Waxwing, Cedar",373.0000 +"Thrasher, Brown",368.0000 +"Nightingale, Thrush",352.5000 +"Pipit, Rock",328.0000 +"Grey, Southern",327.0000 +"Pipit, Richard's",321.5000 +"Grouse, Red",314.0000 +"Bush, Rufous",289.0000 +Treecreeper,175.0000 +"Mockingbird, Northern",171.0000 +"Martin, Crag",167.5000 +Robin,163.0000 +"Reed, Great",161.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.5000 +Brambling,142.5000 +"Dove, Turtle",138.0000 +"Lark, Calandra",130.0000 +"Ouzel, Ring",123.0000 +"Thrush, Black-throated",113.0000 +"Tit, Marsh",106.0000 +Veery,103.0000 +"Tit, Coal",102.0000 +"Sparrow, Spanish",101.5000 +"Tern, Sandwich",97.0000 +"Wheatear, Desert",91.5000 +"Warbler, River",90.0000 +"Tit, Crested",86.0000 +"Warbler, Garden",78.0000 +"Warbler, Cetti's",75.0000 +"Warbler, Dartford",75.0000 +"Tit, Great",72.0000 +"Thrush, Wood",69.0000 +"Shrike, Long-tailed",65.0000 +"Catbird, Grey",60.0000 +"Warbler, Olive-tree",57.0000 +"Flycatcher, Brown",53.0000 +"Warbler, Aquatic",53.0000 +"Warbler, Reed",52.0000 +"Flycatcher, Red-breasted",51.5000 +"Tit, Blue",51.0000 +"Warbler, Dusky",50.0000 +"Warbler, Spectacled",50.0000 +Whitethroat,50.0000 +"Tit, Penduline",49.0000 +"Warbler, Yellow-browed",48.0000 +Firecrest,43.0000 +"Robin, Rufous-tailed",42.0000 +"Warbler, Melodious",39.0000 +Raven,38.0000 +"Thrush, Song",37.0000 +"Warbler, Golden-winged",36.0000 +Dunnock,34.0000 +"Warbler, Marsh",34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Ruppell's",31.0000 +"Crow, Carrion",29.0000 +Nutcracker,29.0000 +Rook,29.0000 +Jay,28.0000 +Magpie,28.0000 +Chough,26.0000 +"Shearwater, Cory's",25.0000 +"Shrike, Masked",25.0000 +"Orphean, Western",24.0000 +"Robin, American",22.0000 +"Shrike, Woodchat",22.0000 +"Reed, Blyth's",19.0000 +"Shrike, Red-backed",17.0000 +"Oriole, Golden",15.0000 +"Shrike, Isabelline",15.0000 +"Vireo, Red-eyed",14.0000 +"Warbler, Sedge",13.0000 +"Tanager, Summer",12.0000 +Blackbird,11.0000 +"Phoebe, Eastern",11.0000 +"Shearwater, Balearic",11.0000 +"Vireo, Philadelphia",11.0000 +"Vireo, Yellow-throated",11.0000 +"Warbler, Grasshopper",11.0000 +"Warbler, Thick-billed",11.0000 +"Falcon, Gyr",10.0000 +Hobby,10.0000 +"Olivaceous, Eastern",10.0000 +"Parakeet, Ring-necked",10.0000 +Shag,10.0000 +"Warbler, Lanceolated",10.0000 +"Whitethroat, Lesser",10.0000 +"Falcon, Amur",9.0000 +"Falcon, Red-footed",9.0000 +"Kestrel, American",9.0000 +"Tit, Long-tailed",9.0000 +"Warbler, Greenish",9.0000 +Kestrel,7.0000 +"Swallow, Cliff",7.0000 +"Warbler, Icterine",7.0000 +"Woodpecker, Green",7.0000 +"Grasshopper, Pallas's",6.5000 +Waxwing,6.5000 +Bee-eater,6.0000 +"Bee-eater, Blue-cheeked",6.0000 +Hoopoe,6.0000 +Wryneck,6.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Nightjar, Egyptian",5.0000 +"Nightjar, Red-necked",5.0000 +Swift,5.0000 +"Swift, Chimney",5.0000 +"Swift, Needle-tailed",5.0000 +"Swift, Pacific",5.0000 +"Swift, Pallid",5.0000 +"Warbler, Yellow-rumped",5.0000 +"Crowned, Eastern",4.0000 +Nightjar,4.0000 +"Owl, Hawk",4.0000 +"Owl, Long-eared",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Owl, Tawny",4.0000 +"Owl, Tengmalm's",4.0000 +"Sandpiper, Spotted",4.0000 +"Scoter, Velvet",4.0000 +"Swallow, Red-rumped",4.0000 +"Warbler, Green",4.0000 +"Warbler, Subalpine",4.0000 +"Bonelli's, Western",3.0000 +Cuckoo,3.0000 +"Cuckoo, Yellow-billed",3.0000 +"Dove, Collared",3.0000 +"Dove, Mourning",3.0000 +"Dove, Stock",3.0000 +"Martin, House",3.0000 +"Owl, Barn",3.0000 +"Owl, Scops",3.0000 +"Spotted, Great",3.0000 +"Turtle, Rufous",3.0000 +Wallcreeper,3.0000 +Woodpigeon,3.0000 +"Black-backed, Great",2.0000 +"Black-backed, Lesser",2.0000 +Blackcap,2.0000 +"Dove, Rock",2.0000 +"Gull, Caspian",2.0000 +"Gull, Glaucous",2.0000 +"Gull, Iceland",2.0000 +"Gull, Slaty-backed",2.0000 +"Herring, American",2.0000 +"May, Cape",2.0000 +"Sandgrouse, Pallas's",2.0000 +Swallow,2.0000 +"Swallow, Tree",2.0000 +"Wagtail, Yellow",2.0000 +"Warbler, Pallas's",2.0000 +"Warbler, Willow",2.0000 +"Auk, Great",1.0000 +Bittern,1.0000 +"Black, White-winged",1.0000 +"Courser, Cream-coloured",1.0000 +"Crested, Lesser",1.0000 +"Dowitcher, Long-billed",1.0000 +Greenshank,1.0000 +"Grosbeak, Evening",1.0000 +Guillemot,1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Black-headed",1.0000 +"Gull, Common",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Ivory",1.0000 +"Gull, Laughing",1.0000 +"Gull, Little",1.0000 +"Gull, Mediterranean",1.0000 +"Gull, Ross's",1.0000 +"Gull, Sabine's",1.0000 +"Gull, Slender-billed",1.0000 +Kittiwake,1.0000 +"Lark, Crested",1.0000 +"Lark, Shore",1.0000 +"Lark, Short-toed",1.0000 +"Murrelet, Ancient",1.0000 +"Murrelet, Long-billed",1.0000 +"Phalarope, Grey",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +"Pipit, Tree",1.0000 +"Pratincole, Black-winged",1.0000 +"Pratincole, Collared",1.0000 +"Pratincole, Oriental",1.0000 +"Puffin, Tufted",1.0000 +Razorbill,1.0000 +Redshank,1.0000 +"Rosefinch, Common",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Common",1.0000 +"Sandpiper, Green",1.0000 +"Sandpiper, Least",1.0000 +"Sandpiper, Marsh",1.0000 +"Sandpiper, Pectoral",1.0000 +"Sandpiper, Semipalmated",1.0000 +"Sandpiper, Solitary",1.0000 +"Sandpiper, Terek",1.0000 +"Sandpiper, White-rumped",1.0000 +"Sandpiper, Wood",1.0000 +"Short-toed, Lesser",1.0000 +"Skua, Great",1.0000 +"Skua, Long-tailed",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Snipe, Jack",1.0000 +"Snipe, Wilson's",1.0000 +"Tattler, Grey-tailed",1.0000 +"Tern, Aleutian",1.0000 +"Tern, Arctic",1.0000 +"Tern, Black",1.0000 +"Tern, Bridled",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +"Tern, Forster's",1.0000 +"Tern, Little",1.0000 +"Tern, Roseate",1.0000 +"Tern, Royal",1.0000 +"Tern, Sooty",1.0000 +"Tern, Whiskered",1.0000 +"Warbler, Wood",1.0000 +Woodcock,1.0000 +Woodlark,1.0000 +"Yellowlegs, Greater",1.0000 +"Yellowlegs, Lesser",1.0000 +"Warbler, Sardinian",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..477a0ae44c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"File Count (Number of files)" +"Warbler, Magnolia",105192388.5000 +"Cowbird, Brown-headed",89120485.0000 +Bobolink,15196470.0000 +"Bunting, Chestnut-eared",6091664.0000 +"Reed, Pallas's",2275235.5000 +"Kestrel, Lesser",2148624.5000 +"Bunting, Little",1365060.5000 +Chaffinch,1227901.5000 +Coot,1185344.0000 +"Waterthrush, Northern",1135809.0000 +"Scaup, Lesser",943505.0000 +Yellowhammer,938054.0000 +"Chiffchaff, Iberian",785457.0000 +"Martin, Purple",748238.5000 +"Warbler, Black-and-white",630272.0000 +"Bunting, Cirl",595394.0000 +"Sparrow, White-crowned",509822.5000 +"Oriole, Baltimore",381957.0000 +"Junco, Dark-eyed",292582.5000 +"Auk, Little",288363.0000 +"Bunting, Pine",174608.0000 +"Thrush, Swainson's",160124.5000 +"Bunting, Rock",143440.0000 +"Grosbeak, Rose-breasted",123611.0000 +"Bunting, Black-faced",121125.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +"Bunting, Cretzschmar's",101637.5000 +"Swift, Alpine",86623.0000 +Twite,79552.5000 +"Bunting, Snow",73344.0000 +Dunlin,62708.5000 +Ovenbird,55523.0000 +"Tanager, Scarlet",54480.0000 +"Sparrow, Lark",51465.0000 +Linnet,33144.0000 +"Martin, Sand",32673.0000 +"Crossbill, Common",31883.5000 +"Thrush, Rock",30131.0000 +Roller,24220.5000 +"Wagtail, Citrine",23780.0000 +"Sandpiper, Purple",21999.5000 +"Warbler, Yellow",21001.0000 +"Plover, White-tailed",20036.0000 +"Egret, Cattle",18325.0000 +"Sparrow, Rock",15288.0000 +"Bunting, Reed",14497.0000 +"Warbler, Tennessee",14270.0000 +"Warbler, Hume's",13556.5000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Blyth's",12295.0000 +"Rock, Blue",11988.0000 +"Pipit, Tawny",11130.5000 +"Parula, Northern",10411.0000 +"Towhee, Eastern",8955.0000 +"Flycatcher, Collared",8530.0000 +"Wheatear, Black-eared",7417.0000 +"Crossbill, Parrot",7042.0000 +Bluethroat,7009.5000 +"Redstart, Moussier's",6970.0000 +"Crane, Sandhill",6954.5000 +"Grebe, Pied-billed",6781.0000 +"Treecreeper, Short-toed",6026.0000 +Serin,5866.0000 +Honey-buzzard,5423.0000 +"Warbler, Hooded",5262.0000 +"Grosbeak, Pine",4625.0000 +Redwing,4617.0000 +"Finch, Trumpeter",4360.0000 +"Warbler, Blackburnian",2916.0000 +"Black, White-crowned",2875.5000 +"Redpoll, Arctic",2842.5000 +"Pipit, Water",2828.5000 +"Wheatear, Isabelline",2742.0000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.5000 +Goldfinch,2503.5000 +"Thrush, Grey-cheeked",2498.5000 +"Thrush, Siberian",2362.0000 +"Thrush, Naumann's",2350.0000 +"Blue, Siberian",2215.0000 +Greenfinch,2199.5000 +"Rubythroat, Siberian",2063.0000 +"Crossbill, Two-barred",1958.5000 +"Redstart, Black",1648.0000 +Hawfinch,1548.5000 +Whinchat,1442.0000 +"Bunting, Corn",1334.0000 +Wheatear,1306.0000 +"Lark, Black",1225.0000 +Redstart,1111.0000 +Bullfinch,1058.0000 +"Flycatcher, Pied",1051.0000 +"Wagtail, Grey",996.0000 +Dipper,915.0000 +Starling,896.0000 +"Pipit, Olive-backed",822.5000 +"Lark, White-winged",788.0000 +"Crossbill, Scottish",776.0000 +"Sparrow, Savannah",678.0000 +Stonechat,609.0000 +"Wheatear, Pied",605.0000 +"Bluetail, Red-flanked",504.5000 +"Thrush, Eyebrowed",494.0000 +"Bunting, Yellow-browed",468.0000 +"Thrush, Varied",452.0000 +"Pipit, Pechora",448.0000 +Wren,425.0000 +"Lark, Bimaculated",404.0000 +"Sparrow, House",396.5000 +"Waxwing, Cedar",373.0000 +"Thrasher, Brown",368.0000 +"Nightingale, Thrush",352.5000 +"Pipit, Rock",328.0000 +"Grey, Southern",327.0000 +"Pipit, Richard's",321.5000 +"Grouse, Red",314.0000 +"Bush, Rufous",289.0000 +Treecreeper,175.0000 +"Mockingbird, Northern",171.0000 +"Martin, Crag",167.5000 +Robin,163.0000 +"Reed, Great",161.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.5000 +Brambling,142.5000 +"Dove, Turtle",138.0000 +"Lark, Calandra",130.0000 +"Ouzel, Ring",123.0000 +"Thrush, Black-throated",113.0000 +"Tit, Marsh",106.0000 +Veery,103.0000 +"Tit, Coal",102.0000 +"Sparrow, Spanish",101.5000 +"Tern, Sandwich",97.0000 +"Wheatear, Desert",91.5000 +"Warbler, River",90.0000 +"Tit, Crested",86.0000 +"Warbler, Garden",78.0000 +"Warbler, Cetti's",75.0000 +"Warbler, Dartford",75.0000 +"Tit, Great",72.0000 +"Thrush, Wood",69.0000 +"Shrike, Long-tailed",65.0000 +"Catbird, Grey",60.0000 +"Warbler, Olive-tree",57.0000 +"Flycatcher, Brown",53.0000 +"Warbler, Aquatic",53.0000 +"Warbler, Reed",52.0000 +"Flycatcher, Red-breasted",51.5000 +"Tit, Blue",51.0000 +"Warbler, Dusky",50.0000 +"Warbler, Spectacled",50.0000 +Whitethroat,50.0000 +"Tit, Penduline",49.0000 +"Warbler, Yellow-browed",48.0000 +Firecrest,43.0000 +"Robin, Rufous-tailed",42.0000 +"Warbler, Melodious",39.0000 +Raven,38.0000 +"Thrush, Song",37.0000 +"Warbler, Golden-winged",36.0000 +Dunnock,34.0000 +"Warbler, Marsh",34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Ruppell's",31.0000 +"Crow, Carrion",29.0000 +Nutcracker,29.0000 +Rook,29.0000 +Jay,28.0000 +Magpie,28.0000 +Chough,26.0000 +"Shearwater, Cory's",25.0000 +"Shrike, Masked",25.0000 +"Orphean, Western",24.0000 +"Robin, American",22.0000 +"Shrike, Woodchat",22.0000 +"Reed, Blyth's",19.0000 +"Shrike, Red-backed",17.0000 +"Oriole, Golden",15.0000 +"Shrike, Isabelline",15.0000 +"Vireo, Red-eyed",14.0000 +"Warbler, Sedge",13.0000 +"Tanager, Summer",12.0000 +Blackbird,11.0000 +"Phoebe, Eastern",11.0000 +"Shearwater, Balearic",11.0000 +"Vireo, Philadelphia",11.0000 +"Vireo, Yellow-throated",11.0000 +"Warbler, Grasshopper",11.0000 +"Warbler, Thick-billed",11.0000 +"Falcon, Gyr",10.0000 +Hobby,10.0000 +"Olivaceous, Eastern",10.0000 +"Parakeet, Ring-necked",10.0000 +Shag,10.0000 +"Warbler, Lanceolated",10.0000 +"Whitethroat, Lesser",10.0000 +"Falcon, Amur",9.0000 +"Falcon, Red-footed",9.0000 +"Kestrel, American",9.0000 +"Tit, Long-tailed",9.0000 +"Warbler, Greenish",9.0000 +Kestrel,7.0000 +"Swallow, Cliff",7.0000 +"Warbler, Icterine",7.0000 +"Woodpecker, Green",7.0000 +"Grasshopper, Pallas's",6.5000 +Waxwing,6.5000 +Bee-eater,6.0000 +"Bee-eater, Blue-cheeked",6.0000 +Hoopoe,6.0000 +Wryneck,6.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Nightjar, Egyptian",5.0000 +"Nightjar, Red-necked",5.0000 +Swift,5.0000 +"Swift, Chimney",5.0000 +"Swift, Needle-tailed",5.0000 +"Swift, Pacific",5.0000 +"Swift, Pallid",5.0000 +"Warbler, Yellow-rumped",5.0000 +"Crowned, Eastern",4.0000 +Nightjar,4.0000 +"Owl, Hawk",4.0000 +"Owl, Long-eared",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Owl, Tawny",4.0000 +"Owl, Tengmalm's",4.0000 +"Sandpiper, Spotted",4.0000 +"Scoter, Velvet",4.0000 +"Swallow, Red-rumped",4.0000 +"Warbler, Green",4.0000 +"Warbler, Subalpine",4.0000 +"Bonelli's, Western",3.0000 +Cuckoo,3.0000 +"Cuckoo, Yellow-billed",3.0000 +"Dove, Collared",3.0000 +"Dove, Mourning",3.0000 +"Dove, Stock",3.0000 +"Martin, House",3.0000 +"Owl, Barn",3.0000 +"Owl, Scops",3.0000 +"Spotted, Great",3.0000 +"Turtle, Rufous",3.0000 +Wallcreeper,3.0000 +Woodpigeon,3.0000 +"Black-backed, Great",2.0000 +"Black-backed, Lesser",2.0000 +Blackcap,2.0000 +"Dove, Rock",2.0000 +"Gull, Caspian",2.0000 +"Gull, Glaucous",2.0000 +"Gull, Iceland",2.0000 +"Gull, Slaty-backed",2.0000 +"Herring, American",2.0000 +"May, Cape",2.0000 +"Sandgrouse, Pallas's",2.0000 +Swallow,2.0000 +"Swallow, Tree",2.0000 +"Wagtail, Yellow",2.0000 +"Warbler, Pallas's",2.0000 +"Warbler, Willow",2.0000 +"Auk, Great",1.0000 +Bittern,1.0000 +"Black, White-winged",1.0000 +"Courser, Cream-coloured",1.0000 +"Crested, Lesser",1.0000 +"Dowitcher, Long-billed",1.0000 +Greenshank,1.0000 +"Grosbeak, Evening",1.0000 +Guillemot,1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Black-headed",1.0000 +"Gull, Common",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Ivory",1.0000 +"Gull, Laughing",1.0000 +"Gull, Little",1.0000 +"Gull, Mediterranean",1.0000 +"Gull, Ross's",1.0000 +"Gull, Sabine's",1.0000 +"Gull, Slender-billed",1.0000 +Kittiwake,1.0000 +"Lark, Crested",1.0000 +"Lark, Shore",1.0000 +"Lark, Short-toed",1.0000 +"Murrelet, Ancient",1.0000 +"Murrelet, Long-billed",1.0000 +"Phalarope, Grey",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +"Pipit, Tree",1.0000 +"Pratincole, Black-winged",1.0000 +"Pratincole, Collared",1.0000 +"Pratincole, Oriental",1.0000 +"Puffin, Tufted",1.0000 +Razorbill,1.0000 +Redshank,1.0000 +"Rosefinch, Common",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Common",1.0000 +"Sandpiper, Green",1.0000 +"Sandpiper, Least",1.0000 +"Sandpiper, Marsh",1.0000 +"Sandpiper, Pectoral",1.0000 +"Sandpiper, Semipalmated",1.0000 +"Sandpiper, Solitary",1.0000 +"Sandpiper, Terek",1.0000 +"Sandpiper, White-rumped",1.0000 +"Sandpiper, Wood",1.0000 +"Short-toed, Lesser",1.0000 +"Skua, Great",1.0000 +"Skua, Long-tailed",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Snipe, Jack",1.0000 +"Snipe, Wilson's",1.0000 +"Tattler, Grey-tailed",1.0000 +"Tern, Aleutian",1.0000 +"Tern, Arctic",1.0000 +"Tern, Black",1.0000 +"Tern, Bridled",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +"Tern, Forster's",1.0000 +"Tern, Little",1.0000 +"Tern, Roseate",1.0000 +"Tern, Royal",1.0000 +"Tern, Sooty",1.0000 +"Tern, Whiskered",1.0000 +"Warbler, Wood",1.0000 +Woodcock,1.0000 +Woodlark,1.0000 +"Yellowlegs, Greater",1.0000 +"Yellowlegs, Lesser",1.0000 +"Warbler, Sardinian",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..477a0ae44c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"File Count (Number of files)" +"Warbler, Magnolia",105192388.5000 +"Cowbird, Brown-headed",89120485.0000 +Bobolink,15196470.0000 +"Bunting, Chestnut-eared",6091664.0000 +"Reed, Pallas's",2275235.5000 +"Kestrel, Lesser",2148624.5000 +"Bunting, Little",1365060.5000 +Chaffinch,1227901.5000 +Coot,1185344.0000 +"Waterthrush, Northern",1135809.0000 +"Scaup, Lesser",943505.0000 +Yellowhammer,938054.0000 +"Chiffchaff, Iberian",785457.0000 +"Martin, Purple",748238.5000 +"Warbler, Black-and-white",630272.0000 +"Bunting, Cirl",595394.0000 +"Sparrow, White-crowned",509822.5000 +"Oriole, Baltimore",381957.0000 +"Junco, Dark-eyed",292582.5000 +"Auk, Little",288363.0000 +"Bunting, Pine",174608.0000 +"Thrush, Swainson's",160124.5000 +"Bunting, Rock",143440.0000 +"Grosbeak, Rose-breasted",123611.0000 +"Bunting, Black-faced",121125.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +"Bunting, Cretzschmar's",101637.5000 +"Swift, Alpine",86623.0000 +Twite,79552.5000 +"Bunting, Snow",73344.0000 +Dunlin,62708.5000 +Ovenbird,55523.0000 +"Tanager, Scarlet",54480.0000 +"Sparrow, Lark",51465.0000 +Linnet,33144.0000 +"Martin, Sand",32673.0000 +"Crossbill, Common",31883.5000 +"Thrush, Rock",30131.0000 +Roller,24220.5000 +"Wagtail, Citrine",23780.0000 +"Sandpiper, Purple",21999.5000 +"Warbler, Yellow",21001.0000 +"Plover, White-tailed",20036.0000 +"Egret, Cattle",18325.0000 +"Sparrow, Rock",15288.0000 +"Bunting, Reed",14497.0000 +"Warbler, Tennessee",14270.0000 +"Warbler, Hume's",13556.5000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Blyth's",12295.0000 +"Rock, Blue",11988.0000 +"Pipit, Tawny",11130.5000 +"Parula, Northern",10411.0000 +"Towhee, Eastern",8955.0000 +"Flycatcher, Collared",8530.0000 +"Wheatear, Black-eared",7417.0000 +"Crossbill, Parrot",7042.0000 +Bluethroat,7009.5000 +"Redstart, Moussier's",6970.0000 +"Crane, Sandhill",6954.5000 +"Grebe, Pied-billed",6781.0000 +"Treecreeper, Short-toed",6026.0000 +Serin,5866.0000 +Honey-buzzard,5423.0000 +"Warbler, Hooded",5262.0000 +"Grosbeak, Pine",4625.0000 +Redwing,4617.0000 +"Finch, Trumpeter",4360.0000 +"Warbler, Blackburnian",2916.0000 +"Black, White-crowned",2875.5000 +"Redpoll, Arctic",2842.5000 +"Pipit, Water",2828.5000 +"Wheatear, Isabelline",2742.0000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.5000 +Goldfinch,2503.5000 +"Thrush, Grey-cheeked",2498.5000 +"Thrush, Siberian",2362.0000 +"Thrush, Naumann's",2350.0000 +"Blue, Siberian",2215.0000 +Greenfinch,2199.5000 +"Rubythroat, Siberian",2063.0000 +"Crossbill, Two-barred",1958.5000 +"Redstart, Black",1648.0000 +Hawfinch,1548.5000 +Whinchat,1442.0000 +"Bunting, Corn",1334.0000 +Wheatear,1306.0000 +"Lark, Black",1225.0000 +Redstart,1111.0000 +Bullfinch,1058.0000 +"Flycatcher, Pied",1051.0000 +"Wagtail, Grey",996.0000 +Dipper,915.0000 +Starling,896.0000 +"Pipit, Olive-backed",822.5000 +"Lark, White-winged",788.0000 +"Crossbill, Scottish",776.0000 +"Sparrow, Savannah",678.0000 +Stonechat,609.0000 +"Wheatear, Pied",605.0000 +"Bluetail, Red-flanked",504.5000 +"Thrush, Eyebrowed",494.0000 +"Bunting, Yellow-browed",468.0000 +"Thrush, Varied",452.0000 +"Pipit, Pechora",448.0000 +Wren,425.0000 +"Lark, Bimaculated",404.0000 +"Sparrow, House",396.5000 +"Waxwing, Cedar",373.0000 +"Thrasher, Brown",368.0000 +"Nightingale, Thrush",352.5000 +"Pipit, Rock",328.0000 +"Grey, Southern",327.0000 +"Pipit, Richard's",321.5000 +"Grouse, Red",314.0000 +"Bush, Rufous",289.0000 +Treecreeper,175.0000 +"Mockingbird, Northern",171.0000 +"Martin, Crag",167.5000 +Robin,163.0000 +"Reed, Great",161.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.5000 +Brambling,142.5000 +"Dove, Turtle",138.0000 +"Lark, Calandra",130.0000 +"Ouzel, Ring",123.0000 +"Thrush, Black-throated",113.0000 +"Tit, Marsh",106.0000 +Veery,103.0000 +"Tit, Coal",102.0000 +"Sparrow, Spanish",101.5000 +"Tern, Sandwich",97.0000 +"Wheatear, Desert",91.5000 +"Warbler, River",90.0000 +"Tit, Crested",86.0000 +"Warbler, Garden",78.0000 +"Warbler, Cetti's",75.0000 +"Warbler, Dartford",75.0000 +"Tit, Great",72.0000 +"Thrush, Wood",69.0000 +"Shrike, Long-tailed",65.0000 +"Catbird, Grey",60.0000 +"Warbler, Olive-tree",57.0000 +"Flycatcher, Brown",53.0000 +"Warbler, Aquatic",53.0000 +"Warbler, Reed",52.0000 +"Flycatcher, Red-breasted",51.5000 +"Tit, Blue",51.0000 +"Warbler, Dusky",50.0000 +"Warbler, Spectacled",50.0000 +Whitethroat,50.0000 +"Tit, Penduline",49.0000 +"Warbler, Yellow-browed",48.0000 +Firecrest,43.0000 +"Robin, Rufous-tailed",42.0000 +"Warbler, Melodious",39.0000 +Raven,38.0000 +"Thrush, Song",37.0000 +"Warbler, Golden-winged",36.0000 +Dunnock,34.0000 +"Warbler, Marsh",34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Ruppell's",31.0000 +"Crow, Carrion",29.0000 +Nutcracker,29.0000 +Rook,29.0000 +Jay,28.0000 +Magpie,28.0000 +Chough,26.0000 +"Shearwater, Cory's",25.0000 +"Shrike, Masked",25.0000 +"Orphean, Western",24.0000 +"Robin, American",22.0000 +"Shrike, Woodchat",22.0000 +"Reed, Blyth's",19.0000 +"Shrike, Red-backed",17.0000 +"Oriole, Golden",15.0000 +"Shrike, Isabelline",15.0000 +"Vireo, Red-eyed",14.0000 +"Warbler, Sedge",13.0000 +"Tanager, Summer",12.0000 +Blackbird,11.0000 +"Phoebe, Eastern",11.0000 +"Shearwater, Balearic",11.0000 +"Vireo, Philadelphia",11.0000 +"Vireo, Yellow-throated",11.0000 +"Warbler, Grasshopper",11.0000 +"Warbler, Thick-billed",11.0000 +"Falcon, Gyr",10.0000 +Hobby,10.0000 +"Olivaceous, Eastern",10.0000 +"Parakeet, Ring-necked",10.0000 +Shag,10.0000 +"Warbler, Lanceolated",10.0000 +"Whitethroat, Lesser",10.0000 +"Falcon, Amur",9.0000 +"Falcon, Red-footed",9.0000 +"Kestrel, American",9.0000 +"Tit, Long-tailed",9.0000 +"Warbler, Greenish",9.0000 +Kestrel,7.0000 +"Swallow, Cliff",7.0000 +"Warbler, Icterine",7.0000 +"Woodpecker, Green",7.0000 +"Grasshopper, Pallas's",6.5000 +Waxwing,6.5000 +Bee-eater,6.0000 +"Bee-eater, Blue-cheeked",6.0000 +Hoopoe,6.0000 +Wryneck,6.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Nightjar, Egyptian",5.0000 +"Nightjar, Red-necked",5.0000 +Swift,5.0000 +"Swift, Chimney",5.0000 +"Swift, Needle-tailed",5.0000 +"Swift, Pacific",5.0000 +"Swift, Pallid",5.0000 +"Warbler, Yellow-rumped",5.0000 +"Crowned, Eastern",4.0000 +Nightjar,4.0000 +"Owl, Hawk",4.0000 +"Owl, Long-eared",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Owl, Tawny",4.0000 +"Owl, Tengmalm's",4.0000 +"Sandpiper, Spotted",4.0000 +"Scoter, Velvet",4.0000 +"Swallow, Red-rumped",4.0000 +"Warbler, Green",4.0000 +"Warbler, Subalpine",4.0000 +"Bonelli's, Western",3.0000 +Cuckoo,3.0000 +"Cuckoo, Yellow-billed",3.0000 +"Dove, Collared",3.0000 +"Dove, Mourning",3.0000 +"Dove, Stock",3.0000 +"Martin, House",3.0000 +"Owl, Barn",3.0000 +"Owl, Scops",3.0000 +"Spotted, Great",3.0000 +"Turtle, Rufous",3.0000 +Wallcreeper,3.0000 +Woodpigeon,3.0000 +"Black-backed, Great",2.0000 +"Black-backed, Lesser",2.0000 +Blackcap,2.0000 +"Dove, Rock",2.0000 +"Gull, Caspian",2.0000 +"Gull, Glaucous",2.0000 +"Gull, Iceland",2.0000 +"Gull, Slaty-backed",2.0000 +"Herring, American",2.0000 +"May, Cape",2.0000 +"Sandgrouse, Pallas's",2.0000 +Swallow,2.0000 +"Swallow, Tree",2.0000 +"Wagtail, Yellow",2.0000 +"Warbler, Pallas's",2.0000 +"Warbler, Willow",2.0000 +"Auk, Great",1.0000 +Bittern,1.0000 +"Black, White-winged",1.0000 +"Courser, Cream-coloured",1.0000 +"Crested, Lesser",1.0000 +"Dowitcher, Long-billed",1.0000 +Greenshank,1.0000 +"Grosbeak, Evening",1.0000 +Guillemot,1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Black-headed",1.0000 +"Gull, Common",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Ivory",1.0000 +"Gull, Laughing",1.0000 +"Gull, Little",1.0000 +"Gull, Mediterranean",1.0000 +"Gull, Ross's",1.0000 +"Gull, Sabine's",1.0000 +"Gull, Slender-billed",1.0000 +Kittiwake,1.0000 +"Lark, Crested",1.0000 +"Lark, Shore",1.0000 +"Lark, Short-toed",1.0000 +"Murrelet, Ancient",1.0000 +"Murrelet, Long-billed",1.0000 +"Phalarope, Grey",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +"Pipit, Tree",1.0000 +"Pratincole, Black-winged",1.0000 +"Pratincole, Collared",1.0000 +"Pratincole, Oriental",1.0000 +"Puffin, Tufted",1.0000 +Razorbill,1.0000 +Redshank,1.0000 +"Rosefinch, Common",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Common",1.0000 +"Sandpiper, Green",1.0000 +"Sandpiper, Least",1.0000 +"Sandpiper, Marsh",1.0000 +"Sandpiper, Pectoral",1.0000 +"Sandpiper, Semipalmated",1.0000 +"Sandpiper, Solitary",1.0000 +"Sandpiper, Terek",1.0000 +"Sandpiper, White-rumped",1.0000 +"Sandpiper, Wood",1.0000 +"Short-toed, Lesser",1.0000 +"Skua, Great",1.0000 +"Skua, Long-tailed",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Snipe, Jack",1.0000 +"Snipe, Wilson's",1.0000 +"Tattler, Grey-tailed",1.0000 +"Tern, Aleutian",1.0000 +"Tern, Arctic",1.0000 +"Tern, Black",1.0000 +"Tern, Bridled",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +"Tern, Forster's",1.0000 +"Tern, Little",1.0000 +"Tern, Roseate",1.0000 +"Tern, Royal",1.0000 +"Tern, Sooty",1.0000 +"Tern, Whiskered",1.0000 +"Warbler, Wood",1.0000 +Woodcock,1.0000 +Woodlark,1.0000 +"Yellowlegs, Greater",1.0000 +"Yellowlegs, Lesser",1.0000 +"Warbler, Sardinian",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ecdc586f1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" +2018-12-27,105192075,88379723,15196470,5253665,2268748,2146799,1365058,1227794,1185344,1135809,943505,267748,796289,830795,630272,595394,460467,417394,292342,288362,174610,160112,155276,126913,120893,108834,102408,108721,86950,4627,60440,62606,60567,55507,50225,43541,32673,3525,30131,14838,23780,21001,20036,18325,0,15288,14536,14270,3,13512,12295,11988,6104,10363,8911,8530,7417,6421,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2668,4279,2742,2703,2450,2296,2359,2362,2350,2215,2654,2063,3842,1648,1636,1442,1316,1306,1225,1111,1109,1051,1442,915,896,791,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,263,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,54,51,50,50,50,49,48,43,49,39,38,19,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-28,105191961,88525879,15196470,5725604,2269042,2145969,1365062,1227794,1185344,1135809,943505,267985,809270,830795,630272,595394,525804,417464,292619,288362,174610,160112,155290,126913,120893,108834,102408,116599,86950,4681,60436,62604,88969,54942,50496,43541,32673,111063,30131,24276,23780,21001,20036,18325,0,15288,14560,14270,3,13512,12295,11988,9070,10386,8928,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2730,4279,2742,2703,2223,2296,2411,2362,2350,2215,2651,2063,3842,1648,1642,1442,1320,1306,1225,1111,1110,1051,1440,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-29,105191993,88683162,15196470,6133060,2275982,2145969,1365062,1227794,1185344,1135809,943505,599291,809314,830795,630272,595394,530750,417512,292619,288362,174610,160112,155276,126916,121086,108834,102408,118427,86950,4747,77045,62690,56593,54295,50647,43541,32673,27249,30131,26937,23780,21001,20036,18325,131976,15288,14544,14270,3,13512,12295,11988,10115,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2708,2877,2742,2703,2865,2296,2421,2362,2350,2215,2651,2063,3842,1648,1664,1442,1324,1306,1225,1111,1110,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-30,105192014,88765119,15196470,6133060,2283593,2145969,1365062,1227794,1185344,1135809,943505,834793,779767,830795,630272,595394,530750,417555,292619,288362,174610,160112,155131,126912,121085,108834,102408,118427,86950,4801,77045,62719,87106,54295,50870,43541,32673,45076,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12045,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4671,4617,4360,2916,3510,2791,2877,2742,2703,2669,2296,2502,2362,2350,2215,2605,2063,3842,1648,1677,1442,1328,1306,1225,1111,1111,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-31,105192032,88903007,15196470,6133066,2279381,2145969,1365062,1227846,1185344,1135809,943505,1111730,779767,830795,630272,595394,530750,393209,292604,288362,174610,160112,155117,126861,121085,108834,102408,118427,86950,4843,77022,62713,80333,54295,51256,37479,32673,56318,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12048,10403,8794,8530,7417,4066,10012,6970,6964,6781,6025,5866,5423,5262,4638,4617,4360,2916,3510,2833,2731,2742,2703,2652,2228,2532,2362,2350,2215,1894,2063,1949,1648,1677,1442,1332,1306,1225,1111,1111,1051,1389,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,76,97,81,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,41,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-01,105192102,89164927,15196470,6133066,2278806,2151114,1365062,1227998,1185344,1135809,943505,1117520,773170,832280,630272,595394,511013,351641,292604,288362,174610,160112,131858,120439,121085,108834,102408,118427,86950,4843,77022,62732,68070,54293,51169,37479,32673,58362,30131,26937,23780,21001,20036,18325,4,15288,14448,14270,19788,13512,12295,11988,12142,10421,8794,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4617,4617,4360,2916,3510,2805,2717,2742,2703,2452,2433,2531,2362,2350,2215,1867,2063,1017,1648,1677,1442,1336,1306,1225,1111,1111,1051,311,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,31,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,43,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-02,105192452,89405908,15196470,6133066,2278458,2151114,1365062,1227998,1185344,1135809,943505,1117323,773170,835274,630272,595394,465501,351696,292604,288365,174610,160112,131859,120129,121134,108834,102408,90285,86950,191746,76353,62739,38106,54293,51595,22343,32673,5328,30131,24281,23780,21001,20036,18325,4,15288,14448,14270,25861,13512,12295,11988,12142,10421,8796,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2889,2863,2241,2742,2703,2447,2554,2538,2362,2350,2215,1865,2063,1017,1648,1677,1442,1340,1306,1225,1111,959,1051,409,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,19,328,321,301,314,289,175,171,176,163,161,145,146,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-03,105192460,89579944,15196470,6346696,2274084,2151114,1365056,1228000,1185344,1135809,943505,1253518,773259,576225,630272,595394,513281,349950,292604,288364,174603,160125,131756,120245,121263,108834,102408,83169,85861,191746,76353,62743,33523,54293,52145,22343,32673,1685,30131,24035,23780,21001,20036,18325,4,15288,14448,14270,14111,13512,12295,11988,12144,10428,9237,8530,7417,5428,2,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2814,2916,2241,2742,2703,2685,2695,2557,2362,2350,2215,1865,2063,78,1648,1599,1442,1344,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,317,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,132,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-04,105193030,89779619,15196470,6547360,2272673,2151114,1365060,1228000,1185344,1135809,943505,1363753,785029,542542,630272,595394,514946,351559,292604,288364,174603,160138,131458,120307,121363,108834,102408,77536,85860,191746,75862,62736,30267,54293,53185,22343,32673,3994,30131,23917,23780,21001,20036,18325,4,15288,14448,14270,37255,13512,12295,11988,12415,10439,9261,8530,7417,5878,2,6970,6945,6781,6025,5866,5423,5262,4524,4617,4360,2916,1952,3016,2043,2742,2703,2685,2898,2566,2362,2350,2215,1865,2063,78,1648,1516,1442,1348,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,579,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,6,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,55,52,51,51,50,50,50,49,48,43,39,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-05,105193764,90017560,15196470,6377998,2271591,2151114,1365061,1228000,1185344,1135809,943505,1446883,775537,542089,630272,595394,514963,351591,292604,288364,174603,160200,131381,120473,121363,108834,102408,66357,85860,191746,75862,62803,11695,54291,53060,15287,32673,6238,30131,23112,23780,21001,20036,18325,4,15288,14448,14270,38533,13512,12295,11988,13083,10439,9261,8530,7417,28516,2,6970,6945,6781,6025,5866,5423,5262,4502,4617,4360,2916,42,3096,1998,2742,2703,2685,3046,2566,2362,2350,2215,2076,2063,78,1648,722,1442,1352,1306,1225,1111,988,1051,696,915,896,1046,788,776,678,609,605,503,494,468,452,448,425,404,480,373,368,19,328,441,301,314,289,175,171,148,163,161,145,1,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,57,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,0,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cb4c03d9e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" +2018-12,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,52,53,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,13,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,54,53,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,9,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..804690eee5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" +"2018 Q4",105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,52,53,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,13,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +"2019 Q1",105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,54,53,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,9,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..69fd73a2e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" +2018,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,52,53,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,13,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,54,53,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,9,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9651b4c95d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +"Warbler, Yellow",200000000000000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"May, Cape",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Warbler, Blackburnian",9000009728000.0000 +"Bunting, Corn",2000003072000.0000 +"Treecreeper, Short-toed",1010008064000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9651b4c95d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +"Warbler, Yellow",200000000000000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"May, Cape",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Warbler, Blackburnian",9000009728000.0000 +"Bunting, Corn",2000003072000.0000 +"Treecreeper, Short-toed",1010008064000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9651b4c95d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +"Warbler, Yellow",200000000000000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"May, Cape",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Warbler, Blackburnian",9000009728000.0000 +"Bunting, Corn",2000003072000.0000 +"Treecreeper, Short-toed",1010008064000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9651b4c95d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +"Warbler, Yellow",200000000000000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"May, Cape",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Warbler, Blackburnian",9000009728000.0000 +"Bunting, Corn",2000003072000.0000 +"Treecreeper, Short-toed",1010008064000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ac1b700fce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" +2018-12-27,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a0b4ba5cbf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" +2018-12,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c6c098a0e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" +"2018 Q4",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e032f132c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" +2018,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..251b82d72f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +"Oriole, Baltimore",120848346406400.0000 +"Redstart, American",94668546688000.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Reed, Pallas's",46405301388800.0000 +"Auk, Little",40448713728000.0000 +Chaffinch,29285570009600.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Warbler, Magnolia",17870231244800.0000 +"Bunting, Cretzschmar's",16087800473600.0000 +"Towhee, Eastern",15545744473600.0000 +"Warbler, Tennessee",13832863872000.0000 +Ovenbird,10221160128000.0000 +"Martin, Sand",9928160640000.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8964344115200.0000 +"Bunting, Little",7541796608000.0000 +Coot,6034834048000.0000 +"Bunting, Rock",5392457907200.0000 +"Crossbill, Scottish",4457590784000.0000 +"Martin, Purple",3843580377600.0000 +"Scaup, Lesser",3707448192000.0000 +"Swift, Alpine",2970285811200.0000 +"Bunting, Cirl",2706318336000.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Chestnut-eared",2466790976000.0000 +Yellowhammer,2249345779200.0000 +"Sparrow, Lark",2009530739200.0000 +Serin,1944329728000.0000 +"Bunting, Pine",1733976166400.0000 +"Warbler, Blackburnian",1506957094400.0000 +"Crossbill, Common",1340005606400.0000 +"Bunting, Black-faced",923557043200.0000 +"Junco, Dark-eyed",813028595200.0000 +Roller,693861888000.0000 +"Sparrow, White-crowned",601996505600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Chiffchaff, Iberian",489881305600.0000 +Brambling,485586636800.0000 +"Crossbill, Parrot",463271065600.0000 +"Pipit, Rock",297982336000.0000 +"Tanager, Scarlet",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Bunting, Snow",225457203200.0000 +"Pipit, Pechora",203318016000.0000 +"Crossbill, Two-barred",150338624000.0000 +"Bunting, Reed",143756608000.0000 +"Grey, Southern",129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +Hawfinch,87268083200.0000 +"Grosbeak, Pine",77630118400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Grosbeak, Rose-breasted",50593497600.0000 +"Bunting, Corn",43913408000.0000 +"Pipit, Richard's",20188313600.0000 +"Pipit, Water",19298982400.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",8558368000.0000 +"Sparrow, House",8004428800.0000 +"Thrush, Grey-cheeked",7550720000.0000 +"Bluetail, Red-flanked",6938905600.0000 +"Thrush, Swainson's",6804044800.0000 +"Tern, Sandwich",5779584000.0000 +"Sparrow, Spanish",5368076800.0000 +"Wheatear, Pied",4905216000.0000 +"Flycatcher, Red-breasted",3000576000.0000 +"Wagtail, Grey",2207552000.0000 +"Warbler, Hume's",1995968000.0000 +"Egret, Cattle",1991040000.0000 +"Scoter, Velvet",1984768000.0000 +"Wheatear, Desert",1695833600.0000 +Stonechat,1615104000.0000 +"Crane, Sandhill",821760000.0000 +"Pipit, Blyth's",620928000.0000 +"Black, White-crowned",493644800.0000 +"Thrush, Song",458163200.0000 +"Wheatear, Black-eared",382848000.0000 +Honey-buzzard,281728000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Citrine",213504000.0000 +"Wheatear, Isabelline",195200000.0000 +Wheatear,183040000.0000 +"Robin, American",177792000.0000 +"Sparrow, Rock",151808000.0000 +"Robin, Rufous-tailed",146649600.0000 +"Treecreeper, Short-toed",142592000.0000 +Whinchat,134784000.0000 +Nightingale,99072000.0000 +"Redstart, Moussier's",64640000.0000 +Redstart,55168000.0000 +"Nightingale, Thrush",43430400.0000 +Robin,42496000.0000 +"Goose, Egyptian",41344000.0000 +"Redstart, Black",37760000.0000 +"Flycatcher, Pied",35456000.0000 +"Flycatcher, Collared",34816000.0000 +"Thrush, Wood",34432000.0000 +Waxwing,28800000.0000 +Wallcreeper,28544000.0000 +"Rubythroat, Siberian",26112000.0000 +"Flycatcher, Spotted",23820800.0000 +"Bush, Rufous",20864000.0000 +"Catbird, Grey",17280000.0000 +"Warbler, Garden",14848000.0000 +"Thrush, Black-throated",13184000.0000 +"Warbler, Yellow",13184000.0000 +"Rock, Blue",12544000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Thrush, Rock",8064000.0000 +"Dove, Turtle",7552000.0000 +"Ouzel, Ring",7552000.0000 +"Blue, Siberian",7424000.0000 +"Plover, White-tailed",7424000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, Varied",2816000.0000 +"Martin, Crag",1945600.0000 +Dipper,1920000.0000 +Starling,1920000.0000 +Redwing,1664000.0000 +"Grasshopper, Pallas's",1331200.0000 +"Thrush, Naumann's",1280000.0000 +Bluethroat,1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Mockingbird, Northern",1024000.0000 +"Reed, Blyth's",1024000.0000 +"Thrasher, Brown",1024000.0000 +"Warbler, Marsh",1024000.0000 +"Warbler, Sedge",896000.0000 +Wren,896000.0000 +Blackbird,796444.4444 +Blackcap,768000.0000 +"Warbler, Aquatic",768000.0000 +"Warbler, Golden-winged",768000.0000 +"Warbler, Melodious",768000.0000 +"Sparrow, Savannah",640000.0000 +"Warbler, Olive-tree",640000.0000 +"Warbler, Willow",640000.0000 +"Olivaceous, Eastern",512000.0000 +"Thrush, Siberian",512000.0000 +Treecreeper,512000.0000 +"Warbler, Wood",512000.0000 +"Bonelli's, Western",384000.0000 +"Lark, Calandra",384000.0000 +"Warbler, Pallas's",384000.0000 +"Warbler, Thick-billed",384000.0000 +"Warbler, Yellow-rumped",384000.0000 +"Crowned, Eastern",256000.0000 +"Warbler, Grasshopper",256000.0000 +"Warbler, Green",256000.0000 +"Warbler, Greenish",256000.0000 +"Warbler, Icterine",256000.0000 +"Warbler, Lanceolated",256000.0000 +"Warbler, River",256000.0000 +"Grebe, Pied-billed",128000.0000 +"Lark, Crested",128000.0000 +"Lark, Shore",128000.0000 +"Lark, Short-toed",128000.0000 +"Martin, House",128000.0000 +"Orphean, Western",128000.0000 +"Reed, Great",128000.0000 +"Short-toed, Lesser",128000.0000 +"Shrike, Long-tailed",128000.0000 +Skylark,128000.0000 +Swallow,128000.0000 +"Swallow, Cliff",128000.0000 +"Swallow, Red-rumped",128000.0000 +"Swallow, Tree",128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Dartford",128000.0000 +"Warbler, Ruppell's",128000.0000 +"Warbler, Spectacled",128000.0000 +"Waxwing, Cedar",128000.0000 +Whitethroat,128000.0000 +"Whitethroat, Lesser",128000.0000 +Woodlark,128000.0000 +"Auk, Great",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-winged",0.0000 +"Bunting, Yellow-browed",0.0000 +Chough,0.0000 +"Courser, Cream-coloured",0.0000 +"Crested, Lesser",0.0000 +"Crow, Carrion",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +Firecrest,0.0000 +Greenshank,0.0000 +"Grosbeak, Evening",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, White-winged",0.0000 +Magpie,0.0000 +"May, Cape",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Oriole, Golden",0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Tree",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +Redshank,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Spotted, Great",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Turtle, Rufous",0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Yellow-browed",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wryneck,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1d2f5b3cdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +"Oriole, Baltimore",120848346406400.0000 +"Redstart, American",94668546688000.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Reed, Pallas's",46405301388800.0000 +"Auk, Little",40448713728000.0000 +Chaffinch,29285570009600.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Warbler, Magnolia",17870231244800.0000 +"Bunting, Cretzschmar's",16087800473600.0000 +"Towhee, Eastern",15545744473600.0000 +"Warbler, Tennessee",13832863872000.0000 +Ovenbird,10221160128000.0000 +"Martin, Sand",9928160640000.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8964344115200.0000 +"Bunting, Little",7541796608000.0000 +Coot,6034834048000.0000 +"Bunting, Rock",5392457907200.0000 +"Crossbill, Scottish",4457590784000.0000 +"Martin, Purple",3843580377600.0000 +"Scaup, Lesser",3707448192000.0000 +"Swift, Alpine",2970285811200.0000 +"Bunting, Cirl",2706318336000.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Chestnut-eared",2466790976000.0000 +Yellowhammer,2249345779200.0000 +"Sparrow, Lark",2009530739200.0000 +Serin,1944329728000.0000 +"Bunting, Pine",1733976166400.0000 +"Warbler, Blackburnian",1506957094400.0000 +"Crossbill, Common",1340005606400.0000 +"Bunting, Black-faced",923557043200.0000 +"Junco, Dark-eyed",813028595200.0000 +Roller,693861888000.0000 +"Sparrow, White-crowned",601996505600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Chiffchaff, Iberian",489881305600.0000 +Brambling,485586636800.0000 +"Crossbill, Parrot",463271065600.0000 +"Pipit, Rock",297982336000.0000 +"Tanager, Scarlet",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Bunting, Snow",225457203200.0000 +"Pipit, Pechora",203318016000.0000 +"Crossbill, Two-barred",150338624000.0000 +"Bunting, Reed",143756608000.0000 +"Grey, Southern",129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +Hawfinch,87268083200.0000 +"Grosbeak, Pine",77630118400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Grosbeak, Rose-breasted",50593497600.0000 +"Bunting, Corn",43913408000.0000 +"Pipit, Richard's",20188313600.0000 +"Pipit, Water",19298982400.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",9106218666.5000 +"Sparrow, House",8004428800.0000 +"Thrush, Grey-cheeked",7550720000.0000 +"Bluetail, Red-flanked",6938905600.0000 +"Thrush, Swainson's",6804044800.0000 +"Tern, Sandwich",5779584000.0000 +"Sparrow, Spanish",5368076800.0000 +"Wheatear, Pied",4905216000.0000 +"Flycatcher, Red-breasted",3000576000.0000 +"Wagtail, Grey",2207552000.0000 +"Warbler, Hume's",1995968000.0000 +"Egret, Cattle",1991040000.0000 +"Scoter, Velvet",1984768000.0000 +"Wheatear, Desert",1695833600.0000 +Stonechat,1615104000.0000 +"Crane, Sandhill",821760000.0000 +"Pipit, Blyth's",620928000.0000 +"Black, White-crowned",493644800.0000 +"Thrush, Song",458163200.0000 +"Wheatear, Black-eared",382848000.0000 +Honey-buzzard,281728000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Citrine",213504000.0000 +"Wheatear, Isabelline",195200000.0000 +Wheatear,183040000.0000 +"Robin, American",177792000.0000 +"Sparrow, Rock",151808000.0000 +"Robin, Rufous-tailed",146649600.0000 +"Treecreeper, Short-toed",142592000.0000 +Whinchat,134784000.0000 +Nightingale,99072000.0000 +"Redstart, Moussier's",64640000.0000 +Redstart,55168000.0000 +"Nightingale, Thrush",43430400.0000 +Robin,42496000.0000 +"Goose, Egyptian",41344000.0000 +"Redstart, Black",37760000.0000 +"Flycatcher, Pied",35456000.0000 +"Flycatcher, Collared",34816000.0000 +"Thrush, Wood",34432000.0000 +Waxwing,28800000.0000 +Wallcreeper,28544000.0000 +"Rubythroat, Siberian",26112000.0000 +"Flycatcher, Spotted",23820800.0000 +"Bush, Rufous",20864000.0000 +"Catbird, Grey",17280000.0000 +"Warbler, Garden",14848000.0000 +"Thrush, Black-throated",13184000.0000 +"Warbler, Yellow",13184000.0000 +"Rock, Blue",12544000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Thrush, Rock",8064000.0000 +"Dove, Turtle",7552000.0000 +"Ouzel, Ring",7552000.0000 +"Blue, Siberian",7424000.0000 +"Plover, White-tailed",7424000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, Varied",2816000.0000 +"Martin, Crag",1945600.0000 +Dipper,1920000.0000 +Starling,1920000.0000 +Redwing,1664000.0000 +"Grasshopper, Pallas's",1331200.0000 +"Thrush, Naumann's",1280000.0000 +Bluethroat,1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Mockingbird, Northern",1024000.0000 +"Reed, Blyth's",1024000.0000 +"Thrasher, Brown",1024000.0000 +"Warbler, Marsh",1024000.0000 +"Warbler, Sedge",896000.0000 +Wren,896000.0000 +Blackbird,768000.0000 +Blackcap,768000.0000 +"Warbler, Aquatic",768000.0000 +"Warbler, Golden-winged",768000.0000 +"Warbler, Melodious",768000.0000 +"Sparrow, Savannah",640000.0000 +"Warbler, Olive-tree",640000.0000 +"Warbler, Willow",640000.0000 +"Olivaceous, Eastern",512000.0000 +"Thrush, Siberian",512000.0000 +Treecreeper,512000.0000 +"Warbler, Wood",512000.0000 +"Bonelli's, Western",384000.0000 +"Lark, Calandra",384000.0000 +"Warbler, Pallas's",384000.0000 +"Warbler, Thick-billed",384000.0000 +"Warbler, Yellow-rumped",384000.0000 +"Crowned, Eastern",256000.0000 +"Warbler, Grasshopper",256000.0000 +"Warbler, Green",256000.0000 +"Warbler, Greenish",256000.0000 +"Warbler, Icterine",256000.0000 +"Warbler, Lanceolated",256000.0000 +"Warbler, River",256000.0000 +"Grebe, Pied-billed",128000.0000 +"Lark, Crested",128000.0000 +"Lark, Shore",128000.0000 +"Lark, Short-toed",128000.0000 +"Martin, House",128000.0000 +"Orphean, Western",128000.0000 +"Reed, Great",128000.0000 +"Short-toed, Lesser",128000.0000 +"Shrike, Long-tailed",128000.0000 +Skylark,128000.0000 +Swallow,128000.0000 +"Swallow, Cliff",128000.0000 +"Swallow, Red-rumped",128000.0000 +"Swallow, Tree",128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Dartford",128000.0000 +"Warbler, Ruppell's",128000.0000 +"Warbler, Spectacled",128000.0000 +"Waxwing, Cedar",128000.0000 +Whitethroat,128000.0000 +"Whitethroat, Lesser",128000.0000 +Woodlark,128000.0000 +"Auk, Great",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-winged",0.0000 +"Bunting, Yellow-browed",0.0000 +Chough,0.0000 +"Courser, Cream-coloured",0.0000 +"Crested, Lesser",0.0000 +"Crow, Carrion",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +Firecrest,0.0000 +Greenshank,0.0000 +"Grosbeak, Evening",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, White-winged",0.0000 +Magpie,0.0000 +"May, Cape",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Oriole, Golden",0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Tree",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +Redshank,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Spotted, Great",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Turtle, Rufous",0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Yellow-browed",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wryneck,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1d2f5b3cdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +"Oriole, Baltimore",120848346406400.0000 +"Redstart, American",94668546688000.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Reed, Pallas's",46405301388800.0000 +"Auk, Little",40448713728000.0000 +Chaffinch,29285570009600.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Warbler, Magnolia",17870231244800.0000 +"Bunting, Cretzschmar's",16087800473600.0000 +"Towhee, Eastern",15545744473600.0000 +"Warbler, Tennessee",13832863872000.0000 +Ovenbird,10221160128000.0000 +"Martin, Sand",9928160640000.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8964344115200.0000 +"Bunting, Little",7541796608000.0000 +Coot,6034834048000.0000 +"Bunting, Rock",5392457907200.0000 +"Crossbill, Scottish",4457590784000.0000 +"Martin, Purple",3843580377600.0000 +"Scaup, Lesser",3707448192000.0000 +"Swift, Alpine",2970285811200.0000 +"Bunting, Cirl",2706318336000.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Chestnut-eared",2466790976000.0000 +Yellowhammer,2249345779200.0000 +"Sparrow, Lark",2009530739200.0000 +Serin,1944329728000.0000 +"Bunting, Pine",1733976166400.0000 +"Warbler, Blackburnian",1506957094400.0000 +"Crossbill, Common",1340005606400.0000 +"Bunting, Black-faced",923557043200.0000 +"Junco, Dark-eyed",813028595200.0000 +Roller,693861888000.0000 +"Sparrow, White-crowned",601996505600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Chiffchaff, Iberian",489881305600.0000 +Brambling,485586636800.0000 +"Crossbill, Parrot",463271065600.0000 +"Pipit, Rock",297982336000.0000 +"Tanager, Scarlet",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Bunting, Snow",225457203200.0000 +"Pipit, Pechora",203318016000.0000 +"Crossbill, Two-barred",150338624000.0000 +"Bunting, Reed",143756608000.0000 +"Grey, Southern",129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +Hawfinch,87268083200.0000 +"Grosbeak, Pine",77630118400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Grosbeak, Rose-breasted",50593497600.0000 +"Bunting, Corn",43913408000.0000 +"Pipit, Richard's",20188313600.0000 +"Pipit, Water",19298982400.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",9106218666.5000 +"Sparrow, House",8004428800.0000 +"Thrush, Grey-cheeked",7550720000.0000 +"Bluetail, Red-flanked",6938905600.0000 +"Thrush, Swainson's",6804044800.0000 +"Tern, Sandwich",5779584000.0000 +"Sparrow, Spanish",5368076800.0000 +"Wheatear, Pied",4905216000.0000 +"Flycatcher, Red-breasted",3000576000.0000 +"Wagtail, Grey",2207552000.0000 +"Warbler, Hume's",1995968000.0000 +"Egret, Cattle",1991040000.0000 +"Scoter, Velvet",1984768000.0000 +"Wheatear, Desert",1695833600.0000 +Stonechat,1615104000.0000 +"Crane, Sandhill",821760000.0000 +"Pipit, Blyth's",620928000.0000 +"Black, White-crowned",493644800.0000 +"Thrush, Song",458163200.0000 +"Wheatear, Black-eared",382848000.0000 +Honey-buzzard,281728000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Citrine",213504000.0000 +"Wheatear, Isabelline",195200000.0000 +Wheatear,183040000.0000 +"Robin, American",177792000.0000 +"Sparrow, Rock",151808000.0000 +"Robin, Rufous-tailed",146649600.0000 +"Treecreeper, Short-toed",142592000.0000 +Whinchat,134784000.0000 +Nightingale,99072000.0000 +"Redstart, Moussier's",64640000.0000 +Redstart,55168000.0000 +"Nightingale, Thrush",43430400.0000 +Robin,42496000.0000 +"Goose, Egyptian",41344000.0000 +"Redstart, Black",37760000.0000 +"Flycatcher, Pied",35456000.0000 +"Flycatcher, Collared",34816000.0000 +"Thrush, Wood",34432000.0000 +Waxwing,28800000.0000 +Wallcreeper,28544000.0000 +"Rubythroat, Siberian",26112000.0000 +"Flycatcher, Spotted",23820800.0000 +"Bush, Rufous",20864000.0000 +"Catbird, Grey",17280000.0000 +"Warbler, Garden",14848000.0000 +"Thrush, Black-throated",13184000.0000 +"Warbler, Yellow",13184000.0000 +"Rock, Blue",12544000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Thrush, Rock",8064000.0000 +"Dove, Turtle",7552000.0000 +"Ouzel, Ring",7552000.0000 +"Blue, Siberian",7424000.0000 +"Plover, White-tailed",7424000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, Varied",2816000.0000 +"Martin, Crag",1945600.0000 +Dipper,1920000.0000 +Starling,1920000.0000 +Redwing,1664000.0000 +"Grasshopper, Pallas's",1331200.0000 +"Thrush, Naumann's",1280000.0000 +Bluethroat,1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Mockingbird, Northern",1024000.0000 +"Reed, Blyth's",1024000.0000 +"Thrasher, Brown",1024000.0000 +"Warbler, Marsh",1024000.0000 +"Warbler, Sedge",896000.0000 +Wren,896000.0000 +Blackbird,768000.0000 +Blackcap,768000.0000 +"Warbler, Aquatic",768000.0000 +"Warbler, Golden-winged",768000.0000 +"Warbler, Melodious",768000.0000 +"Sparrow, Savannah",640000.0000 +"Warbler, Olive-tree",640000.0000 +"Warbler, Willow",640000.0000 +"Olivaceous, Eastern",512000.0000 +"Thrush, Siberian",512000.0000 +Treecreeper,512000.0000 +"Warbler, Wood",512000.0000 +"Bonelli's, Western",384000.0000 +"Lark, Calandra",384000.0000 +"Warbler, Pallas's",384000.0000 +"Warbler, Thick-billed",384000.0000 +"Warbler, Yellow-rumped",384000.0000 +"Crowned, Eastern",256000.0000 +"Warbler, Grasshopper",256000.0000 +"Warbler, Green",256000.0000 +"Warbler, Greenish",256000.0000 +"Warbler, Icterine",256000.0000 +"Warbler, Lanceolated",256000.0000 +"Warbler, River",256000.0000 +"Grebe, Pied-billed",128000.0000 +"Lark, Crested",128000.0000 +"Lark, Shore",128000.0000 +"Lark, Short-toed",128000.0000 +"Martin, House",128000.0000 +"Orphean, Western",128000.0000 +"Reed, Great",128000.0000 +"Short-toed, Lesser",128000.0000 +"Shrike, Long-tailed",128000.0000 +Skylark,128000.0000 +Swallow,128000.0000 +"Swallow, Cliff",128000.0000 +"Swallow, Red-rumped",128000.0000 +"Swallow, Tree",128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Dartford",128000.0000 +"Warbler, Ruppell's",128000.0000 +"Warbler, Spectacled",128000.0000 +"Waxwing, Cedar",128000.0000 +Whitethroat,128000.0000 +"Whitethroat, Lesser",128000.0000 +Woodlark,128000.0000 +"Auk, Great",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-winged",0.0000 +"Bunting, Yellow-browed",0.0000 +Chough,0.0000 +"Courser, Cream-coloured",0.0000 +"Crested, Lesser",0.0000 +"Crow, Carrion",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +Firecrest,0.0000 +Greenshank,0.0000 +"Grosbeak, Evening",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, White-winged",0.0000 +Magpie,0.0000 +"May, Cape",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Oriole, Golden",0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Tree",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +Redshank,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Spotted, Great",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Turtle, Rufous",0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Yellow-browed",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wryneck,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1d2f5b3cdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +"Oriole, Baltimore",120848346406400.0000 +"Redstart, American",94668546688000.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Reed, Pallas's",46405301388800.0000 +"Auk, Little",40448713728000.0000 +Chaffinch,29285570009600.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Warbler, Magnolia",17870231244800.0000 +"Bunting, Cretzschmar's",16087800473600.0000 +"Towhee, Eastern",15545744473600.0000 +"Warbler, Tennessee",13832863872000.0000 +Ovenbird,10221160128000.0000 +"Martin, Sand",9928160640000.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8964344115200.0000 +"Bunting, Little",7541796608000.0000 +Coot,6034834048000.0000 +"Bunting, Rock",5392457907200.0000 +"Crossbill, Scottish",4457590784000.0000 +"Martin, Purple",3843580377600.0000 +"Scaup, Lesser",3707448192000.0000 +"Swift, Alpine",2970285811200.0000 +"Bunting, Cirl",2706318336000.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Chestnut-eared",2466790976000.0000 +Yellowhammer,2249345779200.0000 +"Sparrow, Lark",2009530739200.0000 +Serin,1944329728000.0000 +"Bunting, Pine",1733976166400.0000 +"Warbler, Blackburnian",1506957094400.0000 +"Crossbill, Common",1340005606400.0000 +"Bunting, Black-faced",923557043200.0000 +"Junco, Dark-eyed",813028595200.0000 +Roller,693861888000.0000 +"Sparrow, White-crowned",601996505600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Chiffchaff, Iberian",489881305600.0000 +Brambling,485586636800.0000 +"Crossbill, Parrot",463271065600.0000 +"Pipit, Rock",297982336000.0000 +"Tanager, Scarlet",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Bunting, Snow",225457203200.0000 +"Pipit, Pechora",203318016000.0000 +"Crossbill, Two-barred",150338624000.0000 +"Bunting, Reed",143756608000.0000 +"Grey, Southern",129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +Hawfinch,87268083200.0000 +"Grosbeak, Pine",77630118400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Grosbeak, Rose-breasted",50593497600.0000 +"Bunting, Corn",43913408000.0000 +"Pipit, Richard's",20188313600.0000 +"Pipit, Water",19298982400.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",9106218666.5000 +"Sparrow, House",8004428800.0000 +"Thrush, Grey-cheeked",7550720000.0000 +"Bluetail, Red-flanked",6938905600.0000 +"Thrush, Swainson's",6804044800.0000 +"Tern, Sandwich",5779584000.0000 +"Sparrow, Spanish",5368076800.0000 +"Wheatear, Pied",4905216000.0000 +"Flycatcher, Red-breasted",3000576000.0000 +"Wagtail, Grey",2207552000.0000 +"Warbler, Hume's",1995968000.0000 +"Egret, Cattle",1991040000.0000 +"Scoter, Velvet",1984768000.0000 +"Wheatear, Desert",1695833600.0000 +Stonechat,1615104000.0000 +"Crane, Sandhill",821760000.0000 +"Pipit, Blyth's",620928000.0000 +"Black, White-crowned",493644800.0000 +"Thrush, Song",458163200.0000 +"Wheatear, Black-eared",382848000.0000 +Honey-buzzard,281728000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Citrine",213504000.0000 +"Wheatear, Isabelline",195200000.0000 +Wheatear,183040000.0000 +"Robin, American",177792000.0000 +"Sparrow, Rock",151808000.0000 +"Robin, Rufous-tailed",146649600.0000 +"Treecreeper, Short-toed",142592000.0000 +Whinchat,134784000.0000 +Nightingale,99072000.0000 +"Redstart, Moussier's",64640000.0000 +Redstart,55168000.0000 +"Nightingale, Thrush",43430400.0000 +Robin,42496000.0000 +"Goose, Egyptian",41344000.0000 +"Redstart, Black",37760000.0000 +"Flycatcher, Pied",35456000.0000 +"Flycatcher, Collared",34816000.0000 +"Thrush, Wood",34432000.0000 +Waxwing,28800000.0000 +Wallcreeper,28544000.0000 +"Rubythroat, Siberian",26112000.0000 +"Flycatcher, Spotted",23820800.0000 +"Bush, Rufous",20864000.0000 +"Catbird, Grey",17280000.0000 +"Warbler, Garden",14848000.0000 +"Thrush, Black-throated",13184000.0000 +"Warbler, Yellow",13184000.0000 +"Rock, Blue",12544000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Thrush, Rock",8064000.0000 +"Dove, Turtle",7552000.0000 +"Ouzel, Ring",7552000.0000 +"Blue, Siberian",7424000.0000 +"Plover, White-tailed",7424000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, Varied",2816000.0000 +"Martin, Crag",1945600.0000 +Dipper,1920000.0000 +Starling,1920000.0000 +Redwing,1664000.0000 +"Grasshopper, Pallas's",1331200.0000 +"Thrush, Naumann's",1280000.0000 +Bluethroat,1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Mockingbird, Northern",1024000.0000 +"Reed, Blyth's",1024000.0000 +"Thrasher, Brown",1024000.0000 +"Warbler, Marsh",1024000.0000 +"Warbler, Sedge",896000.0000 +Wren,896000.0000 +Blackbird,768000.0000 +Blackcap,768000.0000 +"Warbler, Aquatic",768000.0000 +"Warbler, Golden-winged",768000.0000 +"Warbler, Melodious",768000.0000 +"Sparrow, Savannah",640000.0000 +"Warbler, Olive-tree",640000.0000 +"Warbler, Willow",640000.0000 +"Olivaceous, Eastern",512000.0000 +"Thrush, Siberian",512000.0000 +Treecreeper,512000.0000 +"Warbler, Wood",512000.0000 +"Bonelli's, Western",384000.0000 +"Lark, Calandra",384000.0000 +"Warbler, Pallas's",384000.0000 +"Warbler, Thick-billed",384000.0000 +"Warbler, Yellow-rumped",384000.0000 +"Crowned, Eastern",256000.0000 +"Warbler, Grasshopper",256000.0000 +"Warbler, Green",256000.0000 +"Warbler, Greenish",256000.0000 +"Warbler, Icterine",256000.0000 +"Warbler, Lanceolated",256000.0000 +"Warbler, River",256000.0000 +"Grebe, Pied-billed",128000.0000 +"Lark, Crested",128000.0000 +"Lark, Shore",128000.0000 +"Lark, Short-toed",128000.0000 +"Martin, House",128000.0000 +"Orphean, Western",128000.0000 +"Reed, Great",128000.0000 +"Short-toed, Lesser",128000.0000 +"Shrike, Long-tailed",128000.0000 +Skylark,128000.0000 +Swallow,128000.0000 +"Swallow, Cliff",128000.0000 +"Swallow, Red-rumped",128000.0000 +"Swallow, Tree",128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Dartford",128000.0000 +"Warbler, Ruppell's",128000.0000 +"Warbler, Spectacled",128000.0000 +"Waxwing, Cedar",128000.0000 +Whitethroat,128000.0000 +"Whitethroat, Lesser",128000.0000 +Woodlark,128000.0000 +"Auk, Great",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-winged",0.0000 +"Bunting, Yellow-browed",0.0000 +Chough,0.0000 +"Courser, Cream-coloured",0.0000 +"Crested, Lesser",0.0000 +"Crow, Carrion",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +Firecrest,0.0000 +Greenshank,0.0000 +"Grosbeak, Evening",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, White-winged",0.0000 +Magpie,0.0000 +"May, Cape",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Oriole, Golden",0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Tree",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +Redshank,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Spotted, Great",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Turtle, Rufous",0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Yellow-browed",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wryneck,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a319d446b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" +2018-12-27,161970387072000,130882300416000,94668546688000,55029891456000,50638493824000,38336309632000,40448713728000,29295568896000,27267411328000,17505628032000,15494882432000,15702943232000,13832863872000,14242280064000,9928160640000,9218944768000,8957422592000,7541796608000,6034834048000,5937893248000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2230504704000,2228458624000,1952837504000,1944329728000,1733989376000,1506955904000,339764480000,921950848000,812594176000,370410752000,603500800000,575703936000,474718208000,491007360000,662139648000,459477248000,297982336000,297141376000,230846848000,256112512000,244283904000,228683648000,203318016000,256331776000,173886720000,129027072000,139109120000,117884160000,97863680000,87247488000,90370688000,96233600000,108636160000,66818816000,50535936000,43912832000,23900416000,33932800000,9422592000,18692736000,0,7672960000,366592000,6557312000,6000896000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,154496000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,787072000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,162119939712000,130951853312000,94668546688000,55029891456000,50638493824000,41442712960000,40448713728000,29295568896000,27267411328000,17921053824000,17998195200000,15771797504000,13832863872000,12001895936000,9928160640000,9218971392000,8958675584000,7541796608000,6034834048000,5937961216000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2357435776000,2228909184000,1986484736000,1944329728000,1733989376000,1506956160000,2218562816000,921950848000,813076864000,587832448000,631372544000,575703936000,474718208000,491711360000,662139648000,458981632000,297982336000,295846144000,245742848000,260281472000,233874944000,228682752000,203318016000,256331776000,177062784000,129104640000,138835584000,118649472000,97863936000,87256320000,90336384000,96233600000,128210944000,66818816000,50535936000,43912960000,23900416000,33932800000,14527872000,18692736000,0,7672960000,2401408000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,162292553216000,131019984640000,94668546688000,55029891456000,50638493824000,42669537408000,40448713728000,29295568896000,27267411328000,18024812544000,18278423680000,15449285376000,13832863872000,11767707008000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936964864000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2237309440000,2049042048000,1944329728000,1733989376000,1506956416000,1754243200000,923198464000,813076864000,781170816000,633516288000,575703936000,474718208000,492912512000,662139648000,458981632000,297982336000,295037568000,263454848000,256227456000,267489664000,230024960000,203318016000,256331776000,178106752000,129104640000,138835584000,118649472000,97863936000,91802240000,90581120000,96233600000,141851776000,66818816000,51429504000,43913088000,23900416000,21396992000,16625536000,18692736000,20063232000,7672960000,2554368000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,162411179264000,131075613568000,94668546688000,55029891456000,50638493824000,45937860608000,40448713728000,29295568768000,27267411328000,18114090752000,18284034944000,15470170880000,13832863872000,11607914624000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936318080000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2242306944000,2067007872000,1944329728000,1733989376000,1506956672000,2039233408000,923594240000,813076864000,781170816000,633521792000,575703936000,474718208000,488464640000,662139648000,458981632000,297982336000,295037568000,277430144000,263643776000,253159424000,230020224000,203318016000,256331776000,178106752000,129104640000,137997440000,118649472000,97864320000,91831296000,90685696000,93119232000,141851776000,66818816000,51429888000,43913216000,23900416000,21396992000,17486336000,18692736000,6914816000,7672960000,9539328000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,162592092800000,120058848256000,94668546688000,55029891456000,50638493824000,48469915392000,40448713728000,29295638016000,27267411328000,18132494464000,18284034944000,15482173184000,13832863872000,16703203328000,9928160640000,9219024768000,8958667648000,7541796608000,6034834048000,5936241792000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2247882112000,2202024704000,1944329728000,1733989376000,1506956928000,2326942336000,923594240000,813076864000,781170816000,633514240000,575703936000,467375104000,488482304000,662139648000,458981632000,297982336000,295037568000,286533888000,266416768000,248449920000,230002432000,203318016000,207372032000,178106752000,129104640000,121020032000,118649472000,97864320000,91836928000,90685696000,77647104000,141851776000,66818816000,51319296000,43913344000,23900416000,18674048000,16938112000,16437504000,6914816000,7672960000,9809792000,6557312000,6022272000,5779584000,2627712000,4905216000,3000576000,2179072000,384000,1991040000,1984768000,2121984000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,162782021504000,115647463040000,94668546688000,55029891456000,50638493824000,48922220416000,40448713728000,29275253120000,27267411328000,18162174336000,18284034944000,15482173184000,13832863872000,14173657216000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4858566912000,4457590784000,4179763584000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2246351232000,2154197888000,1944329728000,1733989376000,1506957056000,2509993344000,923594240000,813076864000,781170816000,590948992000,575703936000,455522560000,487712384000,662139648000,456145280000,297982336000,295034880000,286533888000,263296256000,250212096000,230002432000,203318016000,135342208000,110459264000,129104640000,118758272000,118649472000,97864320000,91868672000,90686848000,68341888000,14694144000,66818816000,50483456000,43913472000,23900416000,18548608000,17168640000,16437504000,6914816000,7672960000,9831936000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2155776000,2352896000,1991040000,1984768000,380544000,1615104000,1408000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,2048000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,162938798080000,115706580608000,94668546688000,55029891456000,50638493824000,48778744448000,40448713728000,29275253120000,27267411328000,18254786560000,15088759168000,15482173184000,13832863872000,7617133440000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4859111040000,4457590784000,4180527744000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2230907392000,2039886592000,1944329728000,1733989376000,1506957568000,641877248000,923734144000,813076864000,725375488000,553673344000,575703936000,480148608000,487729280000,220757120000,456145280000,297982336000,295034880000,299565824000,267783296000,241470336000,220342912000,203318016000,135342208000,110459264000,129104640000,118663552000,118649472000,97835520000,91883648000,99767808000,65239936000,14694144000,66818816000,49484672000,43913600000,14620160000,13108096000,17168640000,8721664000,6914816000,7672960000,10109952000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2087680000,2682752000,1991040000,1984768000,380544000,1615104000,1408000,620928000,499072000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,163074504320000,110946205440000,94668546688000,55029891456000,50638493824000,49634929024000,40448713728000,29275760128000,27267411328000,17296789376000,14102226048000,15482548096000,13832863872000,6897737344000,9928160640000,9219050752000,8970264832000,7541796608000,6034834048000,4849261312000,4457590784000,3210803456000,3707448192000,2969734144000,2706318336000,2698908288000,2524024064000,2236060800000,1986328960000,1944329728000,1733945344000,1506957824000,454921984000,924274304000,813076864000,719372288000,572017024000,575703936000,533945344000,487777152000,220757120000,473995392000,297982336000,295034880000,299565824000,271555584000,261224192000,220342912000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91886720000,93556224000,65239936000,14694144000,66818816000,50107392000,43913728000,14620160000,13108096000,17168640000,8721664000,6914816000,8777856000,10230528000,5084160000,7490560000,5779584000,0,4905216000,3000576000,2297728000,4085888000,1991040000,1984768000,380544000,1615104000,1408000,620928000,489088000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,18560000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,163190753920000,111050653440000,94668546688000,55029891456000,50638493824000,49865353728000,40448713728000,29275760128000,27267411328000,17623511680000,13348862848000,15527354752000,13832863872000,5220590592000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4837305472000,4457590784000,2984752768000,3707448192000,2969734144000,2706318336000,2698908288000,2598213248000,2297008256000,1995541632000,1944329728000,1733945344000,1506958080000,519747200000,924839552000,813076864000,716008064000,588576256000,575703936000,570769536000,489505920000,220757120000,476100224000,297982336000,295034880000,299565824000,281917568000,261224192000,218234880000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91868800000,101219968000,65197312000,14694144000,66818816000,50277120000,43913856000,14620160000,10179840000,17180160000,8721664000,6914816000,8777856000,10322304000,9930880000,8948224000,5779584000,0,4905216000,3000576000,2297728000,5751808000,1991040000,1984768000,380544000,1615104000,1408000,620928000,322688000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,4352000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,163336355200000,111143961344000,94668546688000,55029891456000,50638493824000,49995430272000,40448713728000,29275760128000,27267411328000,17666970880000,11714550528000,15606825344000,13832863872000,1979481728000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4834955136000,4457590784000,2982224384000,3707448192000,2969734144000,2706318336000,2698908288000,2622437632000,2298263808000,1661955456000,1944329728000,1733945344000,1506958336000,594770048000,924839552000,813076864000,694936576000,579323776000,575703936000,608921728000,493510144000,220757120000,474920704000,297982336000,295034752000,299565824000,287111552000,261224192000,218234880000,203318016000,896000,110459264000,129427328000,125946624000,118706560000,134671616000,93110016000,34790400000,52814976000,14694144000,66818816000,50331776000,43913984000,14620160000,8711552000,18124160000,7718912000,6914816000,8777856000,10340992000,8472832000,9467136000,5779584000,0,4905216000,3000576000,2297728000,5084416000,1991040000,1984768000,380544000,1615104000,1408000,620928000,4480000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,0,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d7f24778ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" +2018-12,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,512000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d97969ab14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" +"2018 Q4",162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,512000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4529f99d4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" +2018,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,512000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0c8255c5de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota Utilization: Logical (%)" +"Martin, Sand",99.2816 +Chaffinch,97.6186 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.6434 +"Warbler, Magnolia",89.3511 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +"Scaup, Lesser",37.0745 +Bobolink,36.6866 +"Warbler, Blackburnian",30.1391 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",1.9595 +"Grouse, Red",0.5757 +"Treecreeper, Short-toed",0.0143 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0c8255c5de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota Utilization: Logical (%)" +"Martin, Sand",99.2816 +Chaffinch,97.6186 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.6434 +"Warbler, Magnolia",89.3511 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +"Scaup, Lesser",37.0745 +Bobolink,36.6866 +"Warbler, Blackburnian",30.1391 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",1.9595 +"Grouse, Red",0.5757 +"Treecreeper, Short-toed",0.0143 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0c8255c5de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota Utilization: Logical (%)" +"Martin, Sand",99.2816 +Chaffinch,97.6186 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.6434 +"Warbler, Magnolia",89.3511 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +"Scaup, Lesser",37.0745 +Bobolink,36.6866 +"Warbler, Blackburnian",30.1391 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",1.9595 +"Grouse, Red",0.5757 +"Treecreeper, Short-toed",0.0143 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0c8255c5de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota Utilization: Logical (%)" +"Martin, Sand",99.2816 +Chaffinch,97.6186 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.6434 +"Warbler, Magnolia",89.3511 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +"Scaup, Lesser",37.0745 +Bobolink,36.6866 +"Warbler, Blackburnian",30.1391 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",1.9595 +"Grouse, Red",0.5757 +"Treecreeper, Short-toed",0.0143 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6df766d4b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" +2018-12-27,99.2816,97.6519,94.6685,92.1894,89.5742,87.5281,80.9852,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9640,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,99.2816,97.6519,94.6685,92.1897,89.5867,89.6053,81.0600,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9668,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,99.2816,97.6519,94.6685,92.1902,89.5867,90.1241,81.1463,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9716,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,99.2816,97.6519,94.6685,92.1902,89.5867,90.5704,81.2056,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,99.2816,97.6521,94.6685,92.1902,89.5866,90.6625,81.2960,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,99.2816,97.5842,94.6685,92.1907,89.7026,90.8109,81.3910,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9508,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,99.2816,97.5842,94.6685,92.1907,89.7026,91.2739,81.4694,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9509,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,99.2816,97.5859,94.6685,92.1905,89.7026,86.4839,81.5373,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9511,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,99.2816,97.5859,94.6685,92.1906,89.7026,88.1175,81.5954,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9580,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,99.2816,97.5859,94.6685,92.1906,89.7026,88.3348,81.6682,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9740,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bd137f7d74 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" +2018-12,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..393ea21204 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" +"2018 Q4",99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..706b4f6c84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" +2018,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..43e296c582 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Physical Usage (Bytes)" +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +Bobolink,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Corn",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +"Chiffchaff, Iberian",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +"Grouse, Red",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Martin, Sand",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Parula, Northern",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, American",0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Treecreeper, Short-toed",0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Tennessee",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +"Waterthrush, Northern",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..43e296c582 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Physical Usage (Bytes)" +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +Bobolink,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Corn",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +"Chiffchaff, Iberian",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +"Grouse, Red",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Martin, Sand",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Parula, Northern",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, American",0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Treecreeper, Short-toed",0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Tennessee",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +"Waterthrush, Northern",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..43e296c582 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Physical Usage (Bytes)" +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +Bobolink,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Corn",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +"Chiffchaff, Iberian",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +"Grouse, Red",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Martin, Sand",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Parula, Northern",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, American",0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Treecreeper, Short-toed",0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Tennessee",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +"Waterthrush, Northern",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..43e296c582 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Physical Usage (Bytes)" +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +Bobolink,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Corn",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +"Chiffchaff, Iberian",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +"Grouse, Red",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Martin, Sand",0.0000 +"May, Cape",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Parula, Northern",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, American",0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Treecreeper, Short-toed",0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Tennessee",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +"Waterthrush, Northern",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a079357795 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..46faca5b03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..517bfdf129 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e274751cd3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eeb9627075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Warbler, Yellow",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"May, Cape",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Warbler, Blackburnian",5000003584000.0000 +"Treecreeper, Short-toed",1000005632000.0000 +"Bunting, Corn",1000001536000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eeb9627075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Warbler, Yellow",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"May, Cape",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Warbler, Blackburnian",5000003584000.0000 +"Treecreeper, Short-toed",1000005632000.0000 +"Bunting, Corn",1000001536000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eeb9627075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Warbler, Yellow",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"May, Cape",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Warbler, Blackburnian",5000003584000.0000 +"Treecreeper, Short-toed",1000005632000.0000 +"Bunting, Corn",1000001536000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eeb9627075 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Warbler, Yellow",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"May, Cape",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Warbler, Blackburnian",5000003584000.0000 +"Treecreeper, Short-toed",1000005632000.0000 +"Bunting, Corn",1000001536000.0000 +"Auk, Great",0.0000 +"Auk, Little",0.0000 +Bee-eater,0.0000 +"Bee-eater, Blue-cheeked",0.0000 +Bittern,0.0000 +"Black-backed, Great",0.0000 +"Black-backed, Lesser",0.0000 +"Black, White-crowned",0.0000 +"Black, White-winged",0.0000 +Blackbird,0.0000 +Blackcap,0.0000 +"Blue, Siberian",0.0000 +"Bluetail, Red-flanked",0.0000 +Bluethroat,0.0000 +"Bonelli's, Western",0.0000 +Brambling,0.0000 +Bullfinch,0.0000 +"Bunting, Black-faced",0.0000 +"Bunting, Chestnut-eared",0.0000 +"Bunting, Cirl",0.0000 +"Bunting, Cretzschmar's",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Little",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Snow",0.0000 +"Bunting, Yellow-browed",0.0000 +"Bush, Rufous",0.0000 +"Catbird, Grey",0.0000 +Chough,0.0000 +Coot,0.0000 +"Courser, Cream-coloured",0.0000 +"Crane, Sandhill",0.0000 +"Crested, Lesser",0.0000 +"Crossbill, Common",0.0000 +"Crossbill, Parrot",0.0000 +"Crossbill, Scottish",0.0000 +"Crossbill, Two-barred",0.0000 +"Crow, Carrion",0.0000 +"Crowned, Eastern",0.0000 +Cuckoo,0.0000 +"Cuckoo, Yellow-billed",0.0000 +"Desert, Asian",0.0000 +Dipper,0.0000 +"Dove, Collared",0.0000 +"Dove, Mourning",0.0000 +"Dove, Rock",0.0000 +"Dove, Stock",0.0000 +"Dove, Turtle",0.0000 +"Dowitcher, Long-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Egret, Cattle",0.0000 +"Falcon, Amur",0.0000 +"Falcon, Gyr",0.0000 +"Falcon, Red-footed",0.0000 +"Finch, Trumpeter",0.0000 +Firecrest,0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Collared",0.0000 +"Flycatcher, Pied",0.0000 +"Flycatcher, Red-breasted",0.0000 +"Flycatcher, Spotted",0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Grasshopper, Pallas's",0.0000 +"Grebe, Pied-billed",0.0000 +Greenfinch,0.0000 +Greenshank,0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Grosbeak, Pine",0.0000 +"Grosbeak, Rose-breasted",0.0000 +Guillemot,0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Black-headed",0.0000 +"Gull, Caspian",0.0000 +"Gull, Common",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Iceland",0.0000 +"Gull, Ivory",0.0000 +"Gull, Laughing",0.0000 +"Gull, Little",0.0000 +"Gull, Mediterranean",0.0000 +"Gull, Ross's",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Slender-billed",0.0000 +Hawfinch,0.0000 +"Herring, American",0.0000 +Hobby,0.0000 +Honey-buzzard,0.0000 +Hoopoe,0.0000 +Jay,0.0000 +"Junco, Dark-eyed",0.0000 +Kestrel,0.0000 +"Kestrel, American",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Kittiwake,0.0000 +"Lark, Bimaculated",0.0000 +"Lark, Black",0.0000 +"Lark, Calandra",0.0000 +"Lark, Crested",0.0000 +"Lark, Shore",0.0000 +"Lark, Short-toed",0.0000 +"Lark, White-winged",0.0000 +Linnet,0.0000 +Magpie,0.0000 +"Martin, Crag",0.0000 +"Martin, House",0.0000 +"Martin, Purple",0.0000 +"Mockingbird, Northern",0.0000 +"Murrelet, Ancient",0.0000 +"Murrelet, Long-billed",0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +"Nightingale, Thrush",0.0000 +Nightjar,0.0000 +"Nightjar, Egyptian",0.0000 +"Nightjar, Red-necked",0.0000 +Nutcracker,0.0000 +"Nuthatch, Red-breasted",0.0000 +"Olivaceous, Eastern",0.0000 +"Oriole, Baltimore",0.0000 +"Oriole, Golden",0.0000 +"Orphean, Western",0.0000 +"Ouzel, Ring",0.0000 +Ovenbird,0.0000 +"Owl, Barn",0.0000 +"Owl, Hawk",0.0000 +"Owl, Long-eared",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Owl, Tawny",0.0000 +"Owl, Tengmalm's",0.0000 +"Parakeet, Ring-necked",0.0000 +"Phalarope, Grey",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Phoebe, Eastern",0.0000 +"Pipit, Blyth's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Pechora",0.0000 +"Pipit, Richard's",0.0000 +"Pipit, Rock",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +"Pipit, Water",0.0000 +"Plover, White-tailed",0.0000 +"Pratincole, Black-winged",0.0000 +"Pratincole, Collared",0.0000 +"Pratincole, Oriental",0.0000 +"Puffin, Tufted",0.0000 +Raven,0.0000 +Razorbill,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +Redshank,0.0000 +Redstart,0.0000 +"Redstart, Black",0.0000 +"Redstart, Moussier's",0.0000 +Redwing,0.0000 +"Reed, Blyth's",0.0000 +"Reed, Great",0.0000 +"Reed, Pallas's",0.0000 +Robin,0.0000 +"Robin, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Rock, Blue",0.0000 +Roller,0.0000 +Rook,0.0000 +"Rosefinch, Common",0.0000 +"Rubythroat, Siberian",0.0000 +"Sandgrouse, Pallas's",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Common",0.0000 +"Sandpiper, Green",0.0000 +"Sandpiper, Least",0.0000 +"Sandpiper, Marsh",0.0000 +"Sandpiper, Pectoral",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Semipalmated",0.0000 +"Sandpiper, Solitary",0.0000 +"Sandpiper, Spotted",0.0000 +"Sandpiper, Terek",0.0000 +"Sandpiper, White-rumped",0.0000 +"Sandpiper, Wood",0.0000 +"Scoter, Velvet",0.0000 +Serin,0.0000 +Shag,0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Cory's",0.0000 +"Short-toed, Lesser",0.0000 +"Shrike, Isabelline",0.0000 +"Shrike, Long-tailed",0.0000 +"Shrike, Masked",0.0000 +"Shrike, Red-backed",0.0000 +"Shrike, Woodchat",0.0000 +"Skua, Great",0.0000 +"Skua, Long-tailed",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Snipe, Jack",0.0000 +"Snipe, Wilson's",0.0000 +"Sparrow, House",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Rock",0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, Spanish",0.0000 +"Sparrow, White-crowned",0.0000 +"Spotted, Great",0.0000 +Starling,0.0000 +Stonechat,0.0000 +Swallow,0.0000 +"Swallow, Cliff",0.0000 +"Swallow, Red-rumped",0.0000 +"Swallow, Tree",0.0000 +Swift,0.0000 +"Swift, Alpine",0.0000 +"Swift, Chimney",0.0000 +"Swift, Needle-tailed",0.0000 +"Swift, Pacific",0.0000 +"Swift, Pallid",0.0000 +"Tanager, Scarlet",0.0000 +"Tanager, Summer",0.0000 +"Tattler, Grey-tailed",0.0000 +"Tern, Aleutian",0.0000 +"Tern, Arctic",0.0000 +"Tern, Black",0.0000 +"Tern, Bridled",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Forster's",0.0000 +"Tern, Little",0.0000 +"Tern, Roseate",0.0000 +"Tern, Royal",0.0000 +"Tern, Sandwich",0.0000 +"Tern, Sooty",0.0000 +"Tern, Whiskered",0.0000 +"Thrasher, Brown",0.0000 +"Thrush, Black-throated",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Naumann's",0.0000 +"Thrush, Rock",0.0000 +"Thrush, Siberian",0.0000 +"Thrush, Song",0.0000 +"Thrush, Swainson's",0.0000 +"Thrush, Varied",0.0000 +"Thrush, Wood",0.0000 +"Tit, Blue",0.0000 +"Tit, Coal",0.0000 +"Tit, Crested",0.0000 +"Tit, Great",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Marsh",0.0000 +"Tit, Penduline",0.0000 +"Towhee, Eastern",0.0000 +Treecreeper,0.0000 +"Turtle, Rufous",0.0000 +Twite,0.0000 +Veery,0.0000 +"Vireo, Philadelphia",0.0000 +"Vireo, Red-eyed",0.0000 +"Vireo, Yellow-throated",0.0000 +"Wagtail, Citrine",0.0000 +"Wagtail, Grey",0.0000 +"Wagtail, Yellow",0.0000 +Wallcreeper,0.0000 +"Warbler, Aquatic",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Dartford",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Grasshopper",0.0000 +"Warbler, Green",0.0000 +"Warbler, Greenish",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Hume's",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Lanceolated",0.0000 +"Warbler, Marsh",0.0000 +"Warbler, Melodious",0.0000 +"Warbler, Olive-tree",0.0000 +"Warbler, Pallas's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, River",0.0000 +"Warbler, Ruppell's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Sedge",0.0000 +"Warbler, Spectacled",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Thick-billed",0.0000 +"Warbler, Willow",0.0000 +"Warbler, Wood",0.0000 +"Warbler, Yellow-browed",0.0000 +"Warbler, Yellow-rumped",0.0000 +Waxwing,0.0000 +"Waxwing, Cedar",0.0000 +Wheatear,0.0000 +"Wheatear, Black-eared",0.0000 +"Wheatear, Desert",0.0000 +"Wheatear, Isabelline",0.0000 +"Wheatear, Pied",0.0000 +Whinchat,0.0000 +Whitethroat,0.0000 +"Whitethroat, Lesser",0.0000 +Woodcock,0.0000 +Woodlark,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +Wren,0.0000 +Wryneck,0.0000 +Yellowhammer,0.0000 +"Yellowlegs, Greater",0.0000 +"Yellowlegs, Lesser",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ba3cf151d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" +2018-12-27,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b2376a18f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" +2018-12,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c78b6ec2a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" +"2018 Q4",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..6d43060c03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" +2018,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e3ecf8a451 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"User Count (Number of Users)" +"Auk, Great",1 +"Auk, Little",1 +Bee-eater,1 +"Bee-eater, Blue-cheeked",1 +Bittern,1 +"Black-backed, Great",1 +"Black-backed, Lesser",1 +"Black, White-crowned",1 +"Black, White-winged",1 +Blackbird,1 +Blackcap,1 +"Blue, Siberian",1 +"Bluetail, Red-flanked",1 +Bluethroat,1 +Bobolink,1 +"Bonelli's, Western",1 +Brambling,1 +Bullfinch,1 +"Bunting, Black-faced",1 +"Bunting, Chestnut-eared",1 +"Bunting, Cirl",1 +"Bunting, Corn",1 +"Bunting, Cretzschmar's",1 +"Bunting, Lapland",1 +"Bunting, Little",1 +"Bunting, Pine",1 +"Bunting, Reed",1 +"Bunting, Rock",1 +"Bunting, Snow",1 +"Bunting, Yellow-browed",1 +"Bush, Rufous",1 +"Catbird, Grey",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Chough,1 +Coot,1 +"Courser, Cream-coloured",1 +"Cowbird, Brown-headed",1 +"Crane, Sandhill",1 +"Crested, Lesser",1 +"Crossbill, Common",1 +"Crossbill, Parrot",1 +"Crossbill, Scottish",1 +"Crossbill, Two-barred",1 +"Crow, Carrion",1 +"Crowned, Eastern",1 +Cuckoo,1 +"Cuckoo, Yellow-billed",1 +"Desert, Asian",1 +Dipper,1 +"Dove, Collared",1 +"Dove, Mourning",1 +"Dove, Rock",1 +"Dove, Stock",1 +"Dove, Turtle",1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Egret, Cattle",1 +"Falcon, Amur",1 +"Falcon, Gyr",1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +Firecrest,1 +"Flycatcher, Brown",1 +"Flycatcher, Collared",1 +"Flycatcher, Pied",1 +"Flycatcher, Red-breasted",1 +"Flycatcher, Spotted",1 +Goldfinch,1 +"Goose, Egyptian",1 +"Grasshopper, Pallas's",1 +"Grebe, Pied-billed",1 +Greenfinch,1 +Greenshank,1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Grosbeak, Pine",1 +"Grosbeak, Rose-breasted",1 +"Grouse, Red",1 +Guillemot,1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Black-headed",1 +"Gull, Caspian",1 +"Gull, Common",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Iceland",1 +"Gull, Ivory",1 +"Gull, Laughing",1 +"Gull, Little",1 +"Gull, Mediterranean",1 +"Gull, Ross's",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Slender-billed",1 +Hawfinch,1 +"Herring, American",1 +Hobby,1 +Honey-buzzard,1 +Hoopoe,1 +Jay,1 +"Junco, Dark-eyed",1 +Kestrel,1 +"Kestrel, American",1 +"Kestrel, Lesser",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Kittiwake,1 +"Lark, Bimaculated",1 +"Lark, Black",1 +"Lark, Calandra",1 +"Lark, Crested",1 +"Lark, Shore",1 +"Lark, Short-toed",1 +"Lark, White-winged",1 +Linnet,1 +Magpie,1 +"Martin, Crag",1 +"Martin, House",1 +"Martin, Purple",1 +"Martin, Sand",1 +"May, Cape",1 +"Mockingbird, Northern",1 +"Murrelet, Ancient",1 +"Murrelet, Long-billed",1 +"Nighthawk, Common",1 +Nightingale,1 +"Nightingale, Thrush",1 +Nightjar,1 +"Nightjar, Egyptian",1 +"Nightjar, Red-necked",1 +Nutcracker,1 +"Nuthatch, Red-breasted",1 +"Olivaceous, Eastern",1 +"Oriole, Baltimore",1 +"Oriole, Golden",1 +"Orphean, Western",1 +"Ouzel, Ring",1 +Ovenbird,1 +"Owl, Barn",1 +"Owl, Hawk",1 +"Owl, Long-eared",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Owl, Tawny",1 +"Owl, Tengmalm's",1 +"Parakeet, Ring-necked",1 +"Parula, Northern",1 +"Phalarope, Grey",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Phoebe, Eastern",1 +"Pipit, Blyth's",1 +"Pipit, Olive-backed",1 +"Pipit, Pechora",1 +"Pipit, Richard's",1 +"Pipit, Rock",1 +"Pipit, Tawny",1 +"Pipit, Tree",1 +"Pipit, Water",1 +"Plover, White-tailed",1 +"Pratincole, Black-winged",1 +"Pratincole, Collared",1 +"Pratincole, Oriental",1 +"Puffin, Tufted",1 +Raven,1 +Razorbill,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +Redshank,1 +Redstart,1 +"Redstart, American",1 +"Redstart, Black",1 +"Redstart, Moussier's",1 +Redwing,1 +"Reed, Blyth's",1 +"Reed, Great",1 +"Reed, Pallas's",1 +Robin,1 +"Robin, American",1 +"Robin, Rufous-tailed",1 +"Rock, Blue",1 +Roller,1 +Rook,1 +"Rosefinch, Common",1 +"Rubythroat, Siberian",1 +"Sandgrouse, Pallas's",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Common",1 +"Sandpiper, Green",1 +"Sandpiper, Least",1 +"Sandpiper, Marsh",1 +"Sandpiper, Pectoral",1 +"Sandpiper, Purple",1 +"Sandpiper, Semipalmated",1 +"Sandpiper, Solitary",1 +"Sandpiper, Spotted",1 +"Sandpiper, Terek",1 +"Sandpiper, White-rumped",1 +"Sandpiper, Wood",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Serin,1 +Shag,1 +"Shearwater, Balearic",1 +"Shearwater, Cory's",1 +"Short-toed, Lesser",1 +"Shrike, Isabelline",1 +"Shrike, Long-tailed",1 +"Shrike, Masked",1 +"Shrike, Red-backed",1 +"Shrike, Woodchat",1 +"Skua, Great",1 +"Skua, Long-tailed",1 +"Skua, Pomarine",1 +Skylark,1 +Snipe,1 +"Snipe, Great",1 +"Snipe, Jack",1 +"Snipe, Wilson's",1 +"Sparrow, House",1 +"Sparrow, Lark",1 +"Sparrow, Rock",1 +"Sparrow, Savannah",1 +"Sparrow, Spanish",1 +"Sparrow, White-crowned",1 +"Spotted, Great",1 +Starling,1 +Stonechat,1 +Swallow,1 +"Swallow, Cliff",1 +"Swallow, Red-rumped",1 +"Swallow, Tree",1 +Swift,1 +"Swift, Alpine",1 +"Swift, Chimney",1 +"Swift, Needle-tailed",1 +"Swift, Pacific",1 +"Swift, Pallid",1 +"Tanager, Scarlet",1 +"Tanager, Summer",1 +"Tattler, Grey-tailed",1 +"Tern, Aleutian",1 +"Tern, Arctic",1 +"Tern, Black",1 +"Tern, Bridled",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Tern, Forster's",1 +"Tern, Little",1 +"Tern, Roseate",1 +"Tern, Royal",1 +"Tern, Sandwich",1 +"Tern, Sooty",1 +"Tern, Whiskered",1 +"Thrasher, Brown",1 +"Thrush, Black-throated",1 +"Thrush, Eyebrowed",1 +"Thrush, Grey-cheeked",1 +"Thrush, Naumann's",1 +"Thrush, Rock",1 +"Thrush, Siberian",1 +"Thrush, Song",1 +"Thrush, Swainson's",1 +"Thrush, Varied",1 +"Thrush, Wood",1 +"Tit, Blue",1 +"Tit, Coal",1 +"Tit, Crested",1 +"Tit, Great",1 +"Tit, Long-tailed",1 +"Tit, Marsh",1 +"Tit, Penduline",1 +"Towhee, Eastern",1 +Treecreeper,1 +"Treecreeper, Short-toed",1 +"Turtle, Rufous",1 +Twite,1 +Veery,1 +"Vireo, Philadelphia",1 +"Vireo, Red-eyed",1 +"Vireo, Yellow-throated",1 +"Wagtail, Citrine",1 +"Wagtail, Grey",1 +"Wagtail, Yellow",1 +Wallcreeper,1 +"Warbler, Aquatic",1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Cetti's",1 +"Warbler, Dartford",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Grasshopper",1 +"Warbler, Green",1 +"Warbler, Greenish",1 +"Warbler, Hooded",1 +"Warbler, Hume's",1 +"Warbler, Icterine",1 +"Warbler, Lanceolated",1 +"Warbler, Magnolia",1 +"Warbler, Marsh",1 +"Warbler, Melodious",1 +"Warbler, Olive-tree",1 +"Warbler, Pallas's",1 +"Warbler, Reed",1 +"Warbler, River",1 +"Warbler, Ruppell's",1 +"Warbler, Sardinian",1 +"Warbler, Sedge",1 +"Warbler, Spectacled",1 +"Warbler, Subalpine",1 +"Warbler, Tennessee",1 +"Warbler, Thick-billed",1 +"Warbler, Willow",1 +"Warbler, Wood",1 +"Warbler, Yellow",1 +"Warbler, Yellow-browed",1 +"Warbler, Yellow-rumped",1 +"Waterthrush, Northern",1 +Waxwing,1 +"Waxwing, Cedar",1 +Wheatear,1 +"Wheatear, Black-eared",1 +"Wheatear, Desert",1 +"Wheatear, Isabelline",1 +"Wheatear, Pied",1 +Whinchat,1 +Whitethroat,1 +"Whitethroat, Lesser",1 +Woodcock,1 +Woodlark,1 +"Woodpecker, Green",1 +Woodpigeon,1 +Wren,1 +Wryneck,1 +Yellowhammer,1 +"Yellowlegs, Greater",1 +"Yellowlegs, Lesser",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e3ecf8a451 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"User Count (Number of Users)" +"Auk, Great",1 +"Auk, Little",1 +Bee-eater,1 +"Bee-eater, Blue-cheeked",1 +Bittern,1 +"Black-backed, Great",1 +"Black-backed, Lesser",1 +"Black, White-crowned",1 +"Black, White-winged",1 +Blackbird,1 +Blackcap,1 +"Blue, Siberian",1 +"Bluetail, Red-flanked",1 +Bluethroat,1 +Bobolink,1 +"Bonelli's, Western",1 +Brambling,1 +Bullfinch,1 +"Bunting, Black-faced",1 +"Bunting, Chestnut-eared",1 +"Bunting, Cirl",1 +"Bunting, Corn",1 +"Bunting, Cretzschmar's",1 +"Bunting, Lapland",1 +"Bunting, Little",1 +"Bunting, Pine",1 +"Bunting, Reed",1 +"Bunting, Rock",1 +"Bunting, Snow",1 +"Bunting, Yellow-browed",1 +"Bush, Rufous",1 +"Catbird, Grey",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Chough,1 +Coot,1 +"Courser, Cream-coloured",1 +"Cowbird, Brown-headed",1 +"Crane, Sandhill",1 +"Crested, Lesser",1 +"Crossbill, Common",1 +"Crossbill, Parrot",1 +"Crossbill, Scottish",1 +"Crossbill, Two-barred",1 +"Crow, Carrion",1 +"Crowned, Eastern",1 +Cuckoo,1 +"Cuckoo, Yellow-billed",1 +"Desert, Asian",1 +Dipper,1 +"Dove, Collared",1 +"Dove, Mourning",1 +"Dove, Rock",1 +"Dove, Stock",1 +"Dove, Turtle",1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Egret, Cattle",1 +"Falcon, Amur",1 +"Falcon, Gyr",1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +Firecrest,1 +"Flycatcher, Brown",1 +"Flycatcher, Collared",1 +"Flycatcher, Pied",1 +"Flycatcher, Red-breasted",1 +"Flycatcher, Spotted",1 +Goldfinch,1 +"Goose, Egyptian",1 +"Grasshopper, Pallas's",1 +"Grebe, Pied-billed",1 +Greenfinch,1 +Greenshank,1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Grosbeak, Pine",1 +"Grosbeak, Rose-breasted",1 +"Grouse, Red",1 +Guillemot,1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Black-headed",1 +"Gull, Caspian",1 +"Gull, Common",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Iceland",1 +"Gull, Ivory",1 +"Gull, Laughing",1 +"Gull, Little",1 +"Gull, Mediterranean",1 +"Gull, Ross's",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Slender-billed",1 +Hawfinch,1 +"Herring, American",1 +Hobby,1 +Honey-buzzard,1 +Hoopoe,1 +Jay,1 +"Junco, Dark-eyed",1 +Kestrel,1 +"Kestrel, American",1 +"Kestrel, Lesser",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Kittiwake,1 +"Lark, Bimaculated",1 +"Lark, Black",1 +"Lark, Calandra",1 +"Lark, Crested",1 +"Lark, Shore",1 +"Lark, Short-toed",1 +"Lark, White-winged",1 +Linnet,1 +Magpie,1 +"Martin, Crag",1 +"Martin, House",1 +"Martin, Purple",1 +"Martin, Sand",1 +"May, Cape",1 +"Mockingbird, Northern",1 +"Murrelet, Ancient",1 +"Murrelet, Long-billed",1 +"Nighthawk, Common",1 +Nightingale,1 +"Nightingale, Thrush",1 +Nightjar,1 +"Nightjar, Egyptian",1 +"Nightjar, Red-necked",1 +Nutcracker,1 +"Nuthatch, Red-breasted",1 +"Olivaceous, Eastern",1 +"Oriole, Baltimore",1 +"Oriole, Golden",1 +"Orphean, Western",1 +"Ouzel, Ring",1 +Ovenbird,1 +"Owl, Barn",1 +"Owl, Hawk",1 +"Owl, Long-eared",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Owl, Tawny",1 +"Owl, Tengmalm's",1 +"Parakeet, Ring-necked",1 +"Parula, Northern",1 +"Phalarope, Grey",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Phoebe, Eastern",1 +"Pipit, Blyth's",1 +"Pipit, Olive-backed",1 +"Pipit, Pechora",1 +"Pipit, Richard's",1 +"Pipit, Rock",1 +"Pipit, Tawny",1 +"Pipit, Tree",1 +"Pipit, Water",1 +"Plover, White-tailed",1 +"Pratincole, Black-winged",1 +"Pratincole, Collared",1 +"Pratincole, Oriental",1 +"Puffin, Tufted",1 +Raven,1 +Razorbill,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +Redshank,1 +Redstart,1 +"Redstart, American",1 +"Redstart, Black",1 +"Redstart, Moussier's",1 +Redwing,1 +"Reed, Blyth's",1 +"Reed, Great",1 +"Reed, Pallas's",1 +Robin,1 +"Robin, American",1 +"Robin, Rufous-tailed",1 +"Rock, Blue",1 +Roller,1 +Rook,1 +"Rosefinch, Common",1 +"Rubythroat, Siberian",1 +"Sandgrouse, Pallas's",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Common",1 +"Sandpiper, Green",1 +"Sandpiper, Least",1 +"Sandpiper, Marsh",1 +"Sandpiper, Pectoral",1 +"Sandpiper, Purple",1 +"Sandpiper, Semipalmated",1 +"Sandpiper, Solitary",1 +"Sandpiper, Spotted",1 +"Sandpiper, Terek",1 +"Sandpiper, White-rumped",1 +"Sandpiper, Wood",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Serin,1 +Shag,1 +"Shearwater, Balearic",1 +"Shearwater, Cory's",1 +"Short-toed, Lesser",1 +"Shrike, Isabelline",1 +"Shrike, Long-tailed",1 +"Shrike, Masked",1 +"Shrike, Red-backed",1 +"Shrike, Woodchat",1 +"Skua, Great",1 +"Skua, Long-tailed",1 +"Skua, Pomarine",1 +Skylark,1 +Snipe,1 +"Snipe, Great",1 +"Snipe, Jack",1 +"Snipe, Wilson's",1 +"Sparrow, House",1 +"Sparrow, Lark",1 +"Sparrow, Rock",1 +"Sparrow, Savannah",1 +"Sparrow, Spanish",1 +"Sparrow, White-crowned",1 +"Spotted, Great",1 +Starling,1 +Stonechat,1 +Swallow,1 +"Swallow, Cliff",1 +"Swallow, Red-rumped",1 +"Swallow, Tree",1 +Swift,1 +"Swift, Alpine",1 +"Swift, Chimney",1 +"Swift, Needle-tailed",1 +"Swift, Pacific",1 +"Swift, Pallid",1 +"Tanager, Scarlet",1 +"Tanager, Summer",1 +"Tattler, Grey-tailed",1 +"Tern, Aleutian",1 +"Tern, Arctic",1 +"Tern, Black",1 +"Tern, Bridled",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Tern, Forster's",1 +"Tern, Little",1 +"Tern, Roseate",1 +"Tern, Royal",1 +"Tern, Sandwich",1 +"Tern, Sooty",1 +"Tern, Whiskered",1 +"Thrasher, Brown",1 +"Thrush, Black-throated",1 +"Thrush, Eyebrowed",1 +"Thrush, Grey-cheeked",1 +"Thrush, Naumann's",1 +"Thrush, Rock",1 +"Thrush, Siberian",1 +"Thrush, Song",1 +"Thrush, Swainson's",1 +"Thrush, Varied",1 +"Thrush, Wood",1 +"Tit, Blue",1 +"Tit, Coal",1 +"Tit, Crested",1 +"Tit, Great",1 +"Tit, Long-tailed",1 +"Tit, Marsh",1 +"Tit, Penduline",1 +"Towhee, Eastern",1 +Treecreeper,1 +"Treecreeper, Short-toed",1 +"Turtle, Rufous",1 +Twite,1 +Veery,1 +"Vireo, Philadelphia",1 +"Vireo, Red-eyed",1 +"Vireo, Yellow-throated",1 +"Wagtail, Citrine",1 +"Wagtail, Grey",1 +"Wagtail, Yellow",1 +Wallcreeper,1 +"Warbler, Aquatic",1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Cetti's",1 +"Warbler, Dartford",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Grasshopper",1 +"Warbler, Green",1 +"Warbler, Greenish",1 +"Warbler, Hooded",1 +"Warbler, Hume's",1 +"Warbler, Icterine",1 +"Warbler, Lanceolated",1 +"Warbler, Magnolia",1 +"Warbler, Marsh",1 +"Warbler, Melodious",1 +"Warbler, Olive-tree",1 +"Warbler, Pallas's",1 +"Warbler, Reed",1 +"Warbler, River",1 +"Warbler, Ruppell's",1 +"Warbler, Sardinian",1 +"Warbler, Sedge",1 +"Warbler, Spectacled",1 +"Warbler, Subalpine",1 +"Warbler, Tennessee",1 +"Warbler, Thick-billed",1 +"Warbler, Willow",1 +"Warbler, Wood",1 +"Warbler, Yellow",1 +"Warbler, Yellow-browed",1 +"Warbler, Yellow-rumped",1 +"Waterthrush, Northern",1 +Waxwing,1 +"Waxwing, Cedar",1 +Wheatear,1 +"Wheatear, Black-eared",1 +"Wheatear, Desert",1 +"Wheatear, Isabelline",1 +"Wheatear, Pied",1 +Whinchat,1 +Whitethroat,1 +"Whitethroat, Lesser",1 +Woodcock,1 +Woodlark,1 +"Woodpecker, Green",1 +Woodpigeon,1 +Wren,1 +Wryneck,1 +Yellowhammer,1 +"Yellowlegs, Greater",1 +"Yellowlegs, Lesser",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e3ecf8a451 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"User Count (Number of Users)" +"Auk, Great",1 +"Auk, Little",1 +Bee-eater,1 +"Bee-eater, Blue-cheeked",1 +Bittern,1 +"Black-backed, Great",1 +"Black-backed, Lesser",1 +"Black, White-crowned",1 +"Black, White-winged",1 +Blackbird,1 +Blackcap,1 +"Blue, Siberian",1 +"Bluetail, Red-flanked",1 +Bluethroat,1 +Bobolink,1 +"Bonelli's, Western",1 +Brambling,1 +Bullfinch,1 +"Bunting, Black-faced",1 +"Bunting, Chestnut-eared",1 +"Bunting, Cirl",1 +"Bunting, Corn",1 +"Bunting, Cretzschmar's",1 +"Bunting, Lapland",1 +"Bunting, Little",1 +"Bunting, Pine",1 +"Bunting, Reed",1 +"Bunting, Rock",1 +"Bunting, Snow",1 +"Bunting, Yellow-browed",1 +"Bush, Rufous",1 +"Catbird, Grey",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Chough,1 +Coot,1 +"Courser, Cream-coloured",1 +"Cowbird, Brown-headed",1 +"Crane, Sandhill",1 +"Crested, Lesser",1 +"Crossbill, Common",1 +"Crossbill, Parrot",1 +"Crossbill, Scottish",1 +"Crossbill, Two-barred",1 +"Crow, Carrion",1 +"Crowned, Eastern",1 +Cuckoo,1 +"Cuckoo, Yellow-billed",1 +"Desert, Asian",1 +Dipper,1 +"Dove, Collared",1 +"Dove, Mourning",1 +"Dove, Rock",1 +"Dove, Stock",1 +"Dove, Turtle",1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Egret, Cattle",1 +"Falcon, Amur",1 +"Falcon, Gyr",1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +Firecrest,1 +"Flycatcher, Brown",1 +"Flycatcher, Collared",1 +"Flycatcher, Pied",1 +"Flycatcher, Red-breasted",1 +"Flycatcher, Spotted",1 +Goldfinch,1 +"Goose, Egyptian",1 +"Grasshopper, Pallas's",1 +"Grebe, Pied-billed",1 +Greenfinch,1 +Greenshank,1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Grosbeak, Pine",1 +"Grosbeak, Rose-breasted",1 +"Grouse, Red",1 +Guillemot,1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Black-headed",1 +"Gull, Caspian",1 +"Gull, Common",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Iceland",1 +"Gull, Ivory",1 +"Gull, Laughing",1 +"Gull, Little",1 +"Gull, Mediterranean",1 +"Gull, Ross's",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Slender-billed",1 +Hawfinch,1 +"Herring, American",1 +Hobby,1 +Honey-buzzard,1 +Hoopoe,1 +Jay,1 +"Junco, Dark-eyed",1 +Kestrel,1 +"Kestrel, American",1 +"Kestrel, Lesser",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Kittiwake,1 +"Lark, Bimaculated",1 +"Lark, Black",1 +"Lark, Calandra",1 +"Lark, Crested",1 +"Lark, Shore",1 +"Lark, Short-toed",1 +"Lark, White-winged",1 +Linnet,1 +Magpie,1 +"Martin, Crag",1 +"Martin, House",1 +"Martin, Purple",1 +"Martin, Sand",1 +"May, Cape",1 +"Mockingbird, Northern",1 +"Murrelet, Ancient",1 +"Murrelet, Long-billed",1 +"Nighthawk, Common",1 +Nightingale,1 +"Nightingale, Thrush",1 +Nightjar,1 +"Nightjar, Egyptian",1 +"Nightjar, Red-necked",1 +Nutcracker,1 +"Nuthatch, Red-breasted",1 +"Olivaceous, Eastern",1 +"Oriole, Baltimore",1 +"Oriole, Golden",1 +"Orphean, Western",1 +"Ouzel, Ring",1 +Ovenbird,1 +"Owl, Barn",1 +"Owl, Hawk",1 +"Owl, Long-eared",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Owl, Tawny",1 +"Owl, Tengmalm's",1 +"Parakeet, Ring-necked",1 +"Parula, Northern",1 +"Phalarope, Grey",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Phoebe, Eastern",1 +"Pipit, Blyth's",1 +"Pipit, Olive-backed",1 +"Pipit, Pechora",1 +"Pipit, Richard's",1 +"Pipit, Rock",1 +"Pipit, Tawny",1 +"Pipit, Tree",1 +"Pipit, Water",1 +"Plover, White-tailed",1 +"Pratincole, Black-winged",1 +"Pratincole, Collared",1 +"Pratincole, Oriental",1 +"Puffin, Tufted",1 +Raven,1 +Razorbill,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +Redshank,1 +Redstart,1 +"Redstart, American",1 +"Redstart, Black",1 +"Redstart, Moussier's",1 +Redwing,1 +"Reed, Blyth's",1 +"Reed, Great",1 +"Reed, Pallas's",1 +Robin,1 +"Robin, American",1 +"Robin, Rufous-tailed",1 +"Rock, Blue",1 +Roller,1 +Rook,1 +"Rosefinch, Common",1 +"Rubythroat, Siberian",1 +"Sandgrouse, Pallas's",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Common",1 +"Sandpiper, Green",1 +"Sandpiper, Least",1 +"Sandpiper, Marsh",1 +"Sandpiper, Pectoral",1 +"Sandpiper, Purple",1 +"Sandpiper, Semipalmated",1 +"Sandpiper, Solitary",1 +"Sandpiper, Spotted",1 +"Sandpiper, Terek",1 +"Sandpiper, White-rumped",1 +"Sandpiper, Wood",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Serin,1 +Shag,1 +"Shearwater, Balearic",1 +"Shearwater, Cory's",1 +"Short-toed, Lesser",1 +"Shrike, Isabelline",1 +"Shrike, Long-tailed",1 +"Shrike, Masked",1 +"Shrike, Red-backed",1 +"Shrike, Woodchat",1 +"Skua, Great",1 +"Skua, Long-tailed",1 +"Skua, Pomarine",1 +Skylark,1 +Snipe,1 +"Snipe, Great",1 +"Snipe, Jack",1 +"Snipe, Wilson's",1 +"Sparrow, House",1 +"Sparrow, Lark",1 +"Sparrow, Rock",1 +"Sparrow, Savannah",1 +"Sparrow, Spanish",1 +"Sparrow, White-crowned",1 +"Spotted, Great",1 +Starling,1 +Stonechat,1 +Swallow,1 +"Swallow, Cliff",1 +"Swallow, Red-rumped",1 +"Swallow, Tree",1 +Swift,1 +"Swift, Alpine",1 +"Swift, Chimney",1 +"Swift, Needle-tailed",1 +"Swift, Pacific",1 +"Swift, Pallid",1 +"Tanager, Scarlet",1 +"Tanager, Summer",1 +"Tattler, Grey-tailed",1 +"Tern, Aleutian",1 +"Tern, Arctic",1 +"Tern, Black",1 +"Tern, Bridled",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Tern, Forster's",1 +"Tern, Little",1 +"Tern, Roseate",1 +"Tern, Royal",1 +"Tern, Sandwich",1 +"Tern, Sooty",1 +"Tern, Whiskered",1 +"Thrasher, Brown",1 +"Thrush, Black-throated",1 +"Thrush, Eyebrowed",1 +"Thrush, Grey-cheeked",1 +"Thrush, Naumann's",1 +"Thrush, Rock",1 +"Thrush, Siberian",1 +"Thrush, Song",1 +"Thrush, Swainson's",1 +"Thrush, Varied",1 +"Thrush, Wood",1 +"Tit, Blue",1 +"Tit, Coal",1 +"Tit, Crested",1 +"Tit, Great",1 +"Tit, Long-tailed",1 +"Tit, Marsh",1 +"Tit, Penduline",1 +"Towhee, Eastern",1 +Treecreeper,1 +"Treecreeper, Short-toed",1 +"Turtle, Rufous",1 +Twite,1 +Veery,1 +"Vireo, Philadelphia",1 +"Vireo, Red-eyed",1 +"Vireo, Yellow-throated",1 +"Wagtail, Citrine",1 +"Wagtail, Grey",1 +"Wagtail, Yellow",1 +Wallcreeper,1 +"Warbler, Aquatic",1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Cetti's",1 +"Warbler, Dartford",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Grasshopper",1 +"Warbler, Green",1 +"Warbler, Greenish",1 +"Warbler, Hooded",1 +"Warbler, Hume's",1 +"Warbler, Icterine",1 +"Warbler, Lanceolated",1 +"Warbler, Magnolia",1 +"Warbler, Marsh",1 +"Warbler, Melodious",1 +"Warbler, Olive-tree",1 +"Warbler, Pallas's",1 +"Warbler, Reed",1 +"Warbler, River",1 +"Warbler, Ruppell's",1 +"Warbler, Sardinian",1 +"Warbler, Sedge",1 +"Warbler, Spectacled",1 +"Warbler, Subalpine",1 +"Warbler, Tennessee",1 +"Warbler, Thick-billed",1 +"Warbler, Willow",1 +"Warbler, Wood",1 +"Warbler, Yellow",1 +"Warbler, Yellow-browed",1 +"Warbler, Yellow-rumped",1 +"Waterthrush, Northern",1 +Waxwing,1 +"Waxwing, Cedar",1 +Wheatear,1 +"Wheatear, Black-eared",1 +"Wheatear, Desert",1 +"Wheatear, Isabelline",1 +"Wheatear, Pied",1 +Whinchat,1 +Whitethroat,1 +"Whitethroat, Lesser",1 +Woodcock,1 +Woodlark,1 +"Woodpecker, Green",1 +Woodpigeon,1 +Wren,1 +Wryneck,1 +Yellowhammer,1 +"Yellowlegs, Greater",1 +"Yellowlegs, Lesser",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e3ecf8a451 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +User,"User Count (Number of Users)" +"Auk, Great",1 +"Auk, Little",1 +Bee-eater,1 +"Bee-eater, Blue-cheeked",1 +Bittern,1 +"Black-backed, Great",1 +"Black-backed, Lesser",1 +"Black, White-crowned",1 +"Black, White-winged",1 +Blackbird,1 +Blackcap,1 +"Blue, Siberian",1 +"Bluetail, Red-flanked",1 +Bluethroat,1 +Bobolink,1 +"Bonelli's, Western",1 +Brambling,1 +Bullfinch,1 +"Bunting, Black-faced",1 +"Bunting, Chestnut-eared",1 +"Bunting, Cirl",1 +"Bunting, Corn",1 +"Bunting, Cretzschmar's",1 +"Bunting, Lapland",1 +"Bunting, Little",1 +"Bunting, Pine",1 +"Bunting, Reed",1 +"Bunting, Rock",1 +"Bunting, Snow",1 +"Bunting, Yellow-browed",1 +"Bush, Rufous",1 +"Catbird, Grey",1 +Chaffinch,1 +"Chiffchaff, Iberian",1 +Chough,1 +Coot,1 +"Courser, Cream-coloured",1 +"Cowbird, Brown-headed",1 +"Crane, Sandhill",1 +"Crested, Lesser",1 +"Crossbill, Common",1 +"Crossbill, Parrot",1 +"Crossbill, Scottish",1 +"Crossbill, Two-barred",1 +"Crow, Carrion",1 +"Crowned, Eastern",1 +Cuckoo,1 +"Cuckoo, Yellow-billed",1 +"Desert, Asian",1 +Dipper,1 +"Dove, Collared",1 +"Dove, Mourning",1 +"Dove, Rock",1 +"Dove, Stock",1 +"Dove, Turtle",1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Egret, Cattle",1 +"Falcon, Amur",1 +"Falcon, Gyr",1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +Firecrest,1 +"Flycatcher, Brown",1 +"Flycatcher, Collared",1 +"Flycatcher, Pied",1 +"Flycatcher, Red-breasted",1 +"Flycatcher, Spotted",1 +Goldfinch,1 +"Goose, Egyptian",1 +"Grasshopper, Pallas's",1 +"Grebe, Pied-billed",1 +Greenfinch,1 +Greenshank,1 +"Grey, Southern",1 +"Grosbeak, Evening",1 +"Grosbeak, Pine",1 +"Grosbeak, Rose-breasted",1 +"Grouse, Red",1 +Guillemot,1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Black-headed",1 +"Gull, Caspian",1 +"Gull, Common",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Iceland",1 +"Gull, Ivory",1 +"Gull, Laughing",1 +"Gull, Little",1 +"Gull, Mediterranean",1 +"Gull, Ross's",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Slender-billed",1 +Hawfinch,1 +"Herring, American",1 +Hobby,1 +Honey-buzzard,1 +Hoopoe,1 +Jay,1 +"Junco, Dark-eyed",1 +Kestrel,1 +"Kestrel, American",1 +"Kestrel, Lesser",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Kittiwake,1 +"Lark, Bimaculated",1 +"Lark, Black",1 +"Lark, Calandra",1 +"Lark, Crested",1 +"Lark, Shore",1 +"Lark, Short-toed",1 +"Lark, White-winged",1 +Linnet,1 +Magpie,1 +"Martin, Crag",1 +"Martin, House",1 +"Martin, Purple",1 +"Martin, Sand",1 +"May, Cape",1 +"Mockingbird, Northern",1 +"Murrelet, Ancient",1 +"Murrelet, Long-billed",1 +"Nighthawk, Common",1 +Nightingale,1 +"Nightingale, Thrush",1 +Nightjar,1 +"Nightjar, Egyptian",1 +"Nightjar, Red-necked",1 +Nutcracker,1 +"Nuthatch, Red-breasted",1 +"Olivaceous, Eastern",1 +"Oriole, Baltimore",1 +"Oriole, Golden",1 +"Orphean, Western",1 +"Ouzel, Ring",1 +Ovenbird,1 +"Owl, Barn",1 +"Owl, Hawk",1 +"Owl, Long-eared",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Owl, Tawny",1 +"Owl, Tengmalm's",1 +"Parakeet, Ring-necked",1 +"Parula, Northern",1 +"Phalarope, Grey",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Phoebe, Eastern",1 +"Pipit, Blyth's",1 +"Pipit, Olive-backed",1 +"Pipit, Pechora",1 +"Pipit, Richard's",1 +"Pipit, Rock",1 +"Pipit, Tawny",1 +"Pipit, Tree",1 +"Pipit, Water",1 +"Plover, White-tailed",1 +"Pratincole, Black-winged",1 +"Pratincole, Collared",1 +"Pratincole, Oriental",1 +"Puffin, Tufted",1 +Raven,1 +Razorbill,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +Redshank,1 +Redstart,1 +"Redstart, American",1 +"Redstart, Black",1 +"Redstart, Moussier's",1 +Redwing,1 +"Reed, Blyth's",1 +"Reed, Great",1 +"Reed, Pallas's",1 +Robin,1 +"Robin, American",1 +"Robin, Rufous-tailed",1 +"Rock, Blue",1 +Roller,1 +Rook,1 +"Rosefinch, Common",1 +"Rubythroat, Siberian",1 +"Sandgrouse, Pallas's",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Common",1 +"Sandpiper, Green",1 +"Sandpiper, Least",1 +"Sandpiper, Marsh",1 +"Sandpiper, Pectoral",1 +"Sandpiper, Purple",1 +"Sandpiper, Semipalmated",1 +"Sandpiper, Solitary",1 +"Sandpiper, Spotted",1 +"Sandpiper, Terek",1 +"Sandpiper, White-rumped",1 +"Sandpiper, Wood",1 +"Scaup, Lesser",1 +"Scoter, Velvet",1 +Serin,1 +Shag,1 +"Shearwater, Balearic",1 +"Shearwater, Cory's",1 +"Short-toed, Lesser",1 +"Shrike, Isabelline",1 +"Shrike, Long-tailed",1 +"Shrike, Masked",1 +"Shrike, Red-backed",1 +"Shrike, Woodchat",1 +"Skua, Great",1 +"Skua, Long-tailed",1 +"Skua, Pomarine",1 +Skylark,1 +Snipe,1 +"Snipe, Great",1 +"Snipe, Jack",1 +"Snipe, Wilson's",1 +"Sparrow, House",1 +"Sparrow, Lark",1 +"Sparrow, Rock",1 +"Sparrow, Savannah",1 +"Sparrow, Spanish",1 +"Sparrow, White-crowned",1 +"Spotted, Great",1 +Starling,1 +Stonechat,1 +Swallow,1 +"Swallow, Cliff",1 +"Swallow, Red-rumped",1 +"Swallow, Tree",1 +Swift,1 +"Swift, Alpine",1 +"Swift, Chimney",1 +"Swift, Needle-tailed",1 +"Swift, Pacific",1 +"Swift, Pallid",1 +"Tanager, Scarlet",1 +"Tanager, Summer",1 +"Tattler, Grey-tailed",1 +"Tern, Aleutian",1 +"Tern, Arctic",1 +"Tern, Black",1 +"Tern, Bridled",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Tern, Forster's",1 +"Tern, Little",1 +"Tern, Roseate",1 +"Tern, Royal",1 +"Tern, Sandwich",1 +"Tern, Sooty",1 +"Tern, Whiskered",1 +"Thrasher, Brown",1 +"Thrush, Black-throated",1 +"Thrush, Eyebrowed",1 +"Thrush, Grey-cheeked",1 +"Thrush, Naumann's",1 +"Thrush, Rock",1 +"Thrush, Siberian",1 +"Thrush, Song",1 +"Thrush, Swainson's",1 +"Thrush, Varied",1 +"Thrush, Wood",1 +"Tit, Blue",1 +"Tit, Coal",1 +"Tit, Crested",1 +"Tit, Great",1 +"Tit, Long-tailed",1 +"Tit, Marsh",1 +"Tit, Penduline",1 +"Towhee, Eastern",1 +Treecreeper,1 +"Treecreeper, Short-toed",1 +"Turtle, Rufous",1 +Twite,1 +Veery,1 +"Vireo, Philadelphia",1 +"Vireo, Red-eyed",1 +"Vireo, Yellow-throated",1 +"Wagtail, Citrine",1 +"Wagtail, Grey",1 +"Wagtail, Yellow",1 +Wallcreeper,1 +"Warbler, Aquatic",1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Cetti's",1 +"Warbler, Dartford",1 +"Warbler, Dusky",1 +"Warbler, Garden",1 +"Warbler, Golden-winged",1 +"Warbler, Grasshopper",1 +"Warbler, Green",1 +"Warbler, Greenish",1 +"Warbler, Hooded",1 +"Warbler, Hume's",1 +"Warbler, Icterine",1 +"Warbler, Lanceolated",1 +"Warbler, Magnolia",1 +"Warbler, Marsh",1 +"Warbler, Melodious",1 +"Warbler, Olive-tree",1 +"Warbler, Pallas's",1 +"Warbler, Reed",1 +"Warbler, River",1 +"Warbler, Ruppell's",1 +"Warbler, Sardinian",1 +"Warbler, Sedge",1 +"Warbler, Spectacled",1 +"Warbler, Subalpine",1 +"Warbler, Tennessee",1 +"Warbler, Thick-billed",1 +"Warbler, Willow",1 +"Warbler, Wood",1 +"Warbler, Yellow",1 +"Warbler, Yellow-browed",1 +"Warbler, Yellow-rumped",1 +"Waterthrush, Northern",1 +Waxwing,1 +"Waxwing, Cedar",1 +Wheatear,1 +"Wheatear, Black-eared",1 +"Wheatear, Desert",1 +"Wheatear, Isabelline",1 +"Wheatear, Pied",1 +Whinchat,1 +Whitethroat,1 +"Whitethroat, Lesser",1 +Woodcock,1 +Woodlark,1 +"Woodpecker, Green",1 +Woodpigeon,1 +Wren,1 +Wryneck,1 +Yellowhammer,1 +"Yellowlegs, Greater",1 +"Yellowlegs, Lesser",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..70af430b70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" +2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-05,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8fdf51dfc7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" +2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0fdd1ab3c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" +"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..75d8c8705a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by User" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" +2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e1eadf4f9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"File Count (Number of files)" +"Warbler, Magnolia",107569261.6000 +"Cowbird, Brown-headed",89120484.8000 +Bobolink,15196470.0000 +"Bunting, Rustic",6094492.4000 +"Dowitcher, Short-billed",3520651.6000 +Chaffinch,2977661.6000 +"Kestrel, Lesser",2149021.2000 +"Scaup, Lesser",1526295.4000 +"Waterthrush, Northern",1135809.0000 +"Chiffchaff, Iberian",915302.0000 +"Warbler, Black-and-white",630272.0000 +"Sparrow, Song",509845.5000 +"Martin, Sand",321035.9000 +"Tern, Caspian",223503.7000 +"Bunting, Pine",176856.9000 +"Bunting, Rock",143440.2000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +Twite,79552.6000 +Dunlin,62708.5000 +"Tanager, Summer",54491.7000 +"Sparrow, Lark",51464.8000 +Blackbird,44052.2000 +Fulmar,37273.8000 +Linnet,33143.8000 +"Thrush, Rock",30131.0000 +"Swift, Little",26641.7000 +"Wagtail, Yellow",23782.0000 +"Warbler, Blackpoll",20072.0000 +"Sparrow, Tree",16594.0000 +"Sandpiper, Purple",16500.5000 +"Lark, Calandra",15086.8000 +"Warbler, Tennessee",14270.0000 +"Wagtail, Pied",13880.7000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Tawny",11130.8000 +"Parula, Northern",10413.6000 +"Bunting, Indigo",8955.0000 +"Warbler, Blackburnian",7009.4000 +Nuthatch,6979.0000 +"Shearwater, Balearic",6965.5000 +"Finch, Citril",6642.0000 +"Flycatcher, Taiga",6529.3000 +"Rosefinch, Common",5690.8000 +"Warbler, Hooded",5339.0000 +"Finch, Trumpeter",4360.0000 +"Redpoll, Arctic",2842.6000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.3000 +Goldfinch,2503.8000 +"Thrush, Dusky",2350.0000 +Greenfinch,2199.3000 +"Bunting, Corn",1334.0000 +"Warbler, Barred",1262.0000 +"Pipit, Tree",1080.0000 +Bullfinch,1058.3000 +"Starling, Rose-coloured",1013.0000 +Dotterel,896.0000 +"Pipit, Olive-backed",822.7000 +"Stonechat, Siberian",609.0000 +"Bluetail, Red-flanked",583.6000 +"Thrush, Eyebrowed",494.0000 +"Warbler, Savi's",470.0000 +"Thrush, White's",452.0000 +"Warbler, Fan-tailed",412.0000 +"Tit, Bearded",404.0000 +"Pipit, Red-throated",363.0000 +"Robin, White-throated",352.7000 +Bittern,334.2000 +"Grouse, Red",314.0000 +"Thrush, Red-throated",212.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.4000 +"Tit, Willow",106.0000 +Veery,103.0000 +"Warbler, Subalpine",82.0000 +"Warbler, Cetti's",81.0000 +Fieldfare,75.5000 +"Warbler, Marmora's",75.0000 +"Thrush, Wood",69.0000 +"Catbird, Grey",60.0000 +"Flycatcher, Brown",52.8000 +"Shearwater, Macaronesian",52.3000 +"Warbler, Reed",52.0000 +"Thrush, Hermit",51.0000 +"Gull, Yellow-legged",48.0000 +"Warbler, Icterine",46.0000 +Goldcrest,43.0000 +"Goose, Red-breasted",43.0000 +"Crow, Hooded",38.0000 +"Petrel, Fea's",36.0000 +Dunnock,34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Paddyfield",19.0000 +"Warbler, Sykes's",19.0000 +"Shrike, Brown",15.0000 +"Warbler, Arctic",13.0000 +"Falcon, Eleonora's",11.0000 +Merlin,10.0000 +"Swift, Chimney",10.0000 +"Falcon, Red-footed",9.0000 +"Tit, Long-tailed",9.0000 +Jackdaw,8.0000 +"Spotted, Lesser",8.0000 +"Woodpecker, Green",7.0000 +Chiffchaff,5.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Redshank, Spotted",5.0000 +Swift,5.0000 +"Swift, Pacific",5.0000 +Nightjar,4.0000 +"Owl, Little",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Warbler, Green",4.0000 +Cuckoo,3.0000 +"Cuckoo, Black-billed",3.0000 +"Martin, House",3.0000 +"Owl, Scops",3.0000 +"Tern, Gull-billed",3.0000 +"Warbler, Radde's",3.0000 +Woodpigeon,3.0000 +"Gull, Glaucous",2.0000 +"Gull, Herring",2.0000 +"Gull, Slaty-backed",2.0000 +Osprey,2.0000 +"Black-headed, Great",1.0000 +"Bonelli's, Eastern",1.0000 +"Dowitcher, Long-billed",1.0000 +"Guillemot, Black",1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Bonaparte's",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Sabine's",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +Puffin,1.0000 +"Robin, Rufous-tailed",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Western",1.0000 +"Sandpiper, White-rumped",1.0000 +"Skua, Arctic",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Smew,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Tern, Black",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +Woodcock,1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..09b39169e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"File Count (Number of files)" +"Warbler, Magnolia",107569261.5000 +"Cowbird, Brown-headed",89120485.0000 +Bobolink,15196470.0000 +"Bunting, Rustic",6094492.5000 +"Dowitcher, Short-billed",3520651.0000 +Chaffinch,2977661.0000 +"Kestrel, Lesser",2149021.0000 +"Scaup, Lesser",1526295.5000 +"Waterthrush, Northern",1135809.0000 +"Chiffchaff, Iberian",915302.0000 +"Warbler, Black-and-white",630272.0000 +"Sparrow, Song",509845.5000 +"Martin, Sand",321036.0000 +"Tern, Caspian",223503.5000 +"Bunting, Pine",176857.0000 +"Bunting, Rock",143440.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +Twite,79552.5000 +Dunlin,62708.5000 +"Tanager, Summer",54492.0000 +"Sparrow, Lark",51465.0000 +Blackbird,44053.0000 +Fulmar,37274.0000 +Linnet,33144.0000 +"Thrush, Rock",30131.0000 +"Swift, Little",26641.5000 +"Wagtail, Yellow",23782.0000 +"Sandpiper, Purple",21999.5000 +"Warbler, Blackpoll",20072.0000 +"Sparrow, Tree",16594.0000 +"Lark, Calandra",15087.0000 +"Warbler, Tennessee",14270.0000 +"Wagtail, Pied",13881.0000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Tawny",11130.5000 +"Parula, Northern",10414.0000 +"Bunting, Indigo",8955.0000 +"Warbler, Blackburnian",7009.5000 +Nuthatch,6979.0000 +"Shearwater, Balearic",6965.5000 +"Finch, Citril",6642.0000 +"Flycatcher, Taiga",6529.5000 +"Rosefinch, Common",5691.0000 +"Warbler, Hooded",5339.0000 +"Finch, Trumpeter",4360.0000 +"Redpoll, Arctic",2842.5000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.5000 +Goldfinch,2503.5000 +"Thrush, Dusky",2350.0000 +Greenfinch,2199.5000 +"Bunting, Corn",1334.0000 +"Warbler, Barred",1262.0000 +"Pipit, Tree",1080.0000 +Bullfinch,1058.0000 +"Starling, Rose-coloured",1013.0000 +Dotterel,896.0000 +"Pipit, Olive-backed",822.5000 +"Stonechat, Siberian",609.0000 +"Bluetail, Red-flanked",583.5000 +"Thrush, Eyebrowed",494.0000 +"Warbler, Savi's",470.0000 +"Thrush, White's",452.0000 +"Warbler, Fan-tailed",412.0000 +"Tit, Bearded",404.0000 +"Pipit, Red-throated",363.0000 +"Robin, White-throated",352.5000 +Bittern,334.0000 +"Grouse, Red",314.0000 +"Thrush, Red-throated",212.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.5000 +"Tit, Willow",106.0000 +Veery,103.0000 +"Warbler, Subalpine",82.0000 +"Warbler, Cetti's",81.0000 +Fieldfare,75.5000 +"Warbler, Marmora's",75.0000 +"Thrush, Wood",69.0000 +"Catbird, Grey",60.0000 +"Flycatcher, Brown",53.0000 +"Shearwater, Macaronesian",52.5000 +"Warbler, Reed",52.0000 +"Thrush, Hermit",51.0000 +"Gull, Yellow-legged",48.0000 +"Warbler, Icterine",46.0000 +Goldcrest,43.0000 +"Goose, Red-breasted",43.0000 +"Crow, Hooded",38.0000 +"Petrel, Fea's",36.0000 +Dunnock,34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Paddyfield",19.0000 +"Warbler, Sykes's",19.0000 +"Shrike, Brown",15.0000 +"Warbler, Arctic",13.0000 +"Falcon, Eleonora's",11.0000 +Merlin,10.0000 +"Swift, Chimney",10.0000 +"Falcon, Red-footed",9.0000 +"Tit, Long-tailed",9.0000 +Jackdaw,8.0000 +"Spotted, Lesser",8.0000 +"Woodpecker, Green",7.0000 +Chiffchaff,5.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Redshank, Spotted",5.0000 +Swift,5.0000 +"Swift, Pacific",5.0000 +Nightjar,4.0000 +"Owl, Little",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Warbler, Green",4.0000 +Cuckoo,3.0000 +"Cuckoo, Black-billed",3.0000 +"Martin, House",3.0000 +"Owl, Scops",3.0000 +"Tern, Gull-billed",3.0000 +"Warbler, Radde's",3.0000 +Woodpigeon,3.0000 +"Gull, Glaucous",2.0000 +"Gull, Herring",2.0000 +"Gull, Slaty-backed",2.0000 +Osprey,2.0000 +"Black-headed, Great",1.0000 +"Bonelli's, Eastern",1.0000 +"Dowitcher, Long-billed",1.0000 +"Guillemot, Black",1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Bonaparte's",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Sabine's",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +Puffin,1.0000 +"Robin, Rufous-tailed",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Western",1.0000 +"Sandpiper, White-rumped",1.0000 +"Skua, Arctic",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Smew,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Tern, Black",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +Woodcock,1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..09b39169e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"File Count (Number of files)" +"Warbler, Magnolia",107569261.5000 +"Cowbird, Brown-headed",89120485.0000 +Bobolink,15196470.0000 +"Bunting, Rustic",6094492.5000 +"Dowitcher, Short-billed",3520651.0000 +Chaffinch,2977661.0000 +"Kestrel, Lesser",2149021.0000 +"Scaup, Lesser",1526295.5000 +"Waterthrush, Northern",1135809.0000 +"Chiffchaff, Iberian",915302.0000 +"Warbler, Black-and-white",630272.0000 +"Sparrow, Song",509845.5000 +"Martin, Sand",321036.0000 +"Tern, Caspian",223503.5000 +"Bunting, Pine",176857.0000 +"Bunting, Rock",143440.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +Twite,79552.5000 +Dunlin,62708.5000 +"Tanager, Summer",54492.0000 +"Sparrow, Lark",51465.0000 +Blackbird,44053.0000 +Fulmar,37274.0000 +Linnet,33144.0000 +"Thrush, Rock",30131.0000 +"Swift, Little",26641.5000 +"Wagtail, Yellow",23782.0000 +"Sandpiper, Purple",21999.5000 +"Warbler, Blackpoll",20072.0000 +"Sparrow, Tree",16594.0000 +"Lark, Calandra",15087.0000 +"Warbler, Tennessee",14270.0000 +"Wagtail, Pied",13881.0000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Tawny",11130.5000 +"Parula, Northern",10414.0000 +"Bunting, Indigo",8955.0000 +"Warbler, Blackburnian",7009.5000 +Nuthatch,6979.0000 +"Shearwater, Balearic",6965.5000 +"Finch, Citril",6642.0000 +"Flycatcher, Taiga",6529.5000 +"Rosefinch, Common",5691.0000 +"Warbler, Hooded",5339.0000 +"Finch, Trumpeter",4360.0000 +"Redpoll, Arctic",2842.5000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.5000 +Goldfinch,2503.5000 +"Thrush, Dusky",2350.0000 +Greenfinch,2199.5000 +"Bunting, Corn",1334.0000 +"Warbler, Barred",1262.0000 +"Pipit, Tree",1080.0000 +Bullfinch,1058.0000 +"Starling, Rose-coloured",1013.0000 +Dotterel,896.0000 +"Pipit, Olive-backed",822.5000 +"Stonechat, Siberian",609.0000 +"Bluetail, Red-flanked",583.5000 +"Thrush, Eyebrowed",494.0000 +"Warbler, Savi's",470.0000 +"Thrush, White's",452.0000 +"Warbler, Fan-tailed",412.0000 +"Tit, Bearded",404.0000 +"Pipit, Red-throated",363.0000 +"Robin, White-throated",352.5000 +Bittern,334.0000 +"Grouse, Red",314.0000 +"Thrush, Red-throated",212.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.5000 +"Tit, Willow",106.0000 +Veery,103.0000 +"Warbler, Subalpine",82.0000 +"Warbler, Cetti's",81.0000 +Fieldfare,75.5000 +"Warbler, Marmora's",75.0000 +"Thrush, Wood",69.0000 +"Catbird, Grey",60.0000 +"Flycatcher, Brown",53.0000 +"Shearwater, Macaronesian",52.5000 +"Warbler, Reed",52.0000 +"Thrush, Hermit",51.0000 +"Gull, Yellow-legged",48.0000 +"Warbler, Icterine",46.0000 +Goldcrest,43.0000 +"Goose, Red-breasted",43.0000 +"Crow, Hooded",38.0000 +"Petrel, Fea's",36.0000 +Dunnock,34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Paddyfield",19.0000 +"Warbler, Sykes's",19.0000 +"Shrike, Brown",15.0000 +"Warbler, Arctic",13.0000 +"Falcon, Eleonora's",11.0000 +Merlin,10.0000 +"Swift, Chimney",10.0000 +"Falcon, Red-footed",9.0000 +"Tit, Long-tailed",9.0000 +Jackdaw,8.0000 +"Spotted, Lesser",8.0000 +"Woodpecker, Green",7.0000 +Chiffchaff,5.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Redshank, Spotted",5.0000 +Swift,5.0000 +"Swift, Pacific",5.0000 +Nightjar,4.0000 +"Owl, Little",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Warbler, Green",4.0000 +Cuckoo,3.0000 +"Cuckoo, Black-billed",3.0000 +"Martin, House",3.0000 +"Owl, Scops",3.0000 +"Tern, Gull-billed",3.0000 +"Warbler, Radde's",3.0000 +Woodpigeon,3.0000 +"Gull, Glaucous",2.0000 +"Gull, Herring",2.0000 +"Gull, Slaty-backed",2.0000 +Osprey,2.0000 +"Black-headed, Great",1.0000 +"Bonelli's, Eastern",1.0000 +"Dowitcher, Long-billed",1.0000 +"Guillemot, Black",1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Bonaparte's",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Sabine's",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +Puffin,1.0000 +"Robin, Rufous-tailed",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Western",1.0000 +"Sandpiper, White-rumped",1.0000 +"Skua, Arctic",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Smew,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Tern, Black",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +Woodcock,1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..09b39169e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"File Count (Number of files)" +"Warbler, Magnolia",107569261.5000 +"Cowbird, Brown-headed",89120485.0000 +Bobolink,15196470.0000 +"Bunting, Rustic",6094492.5000 +"Dowitcher, Short-billed",3520651.0000 +Chaffinch,2977661.0000 +"Kestrel, Lesser",2149021.0000 +"Scaup, Lesser",1526295.5000 +"Waterthrush, Northern",1135809.0000 +"Chiffchaff, Iberian",915302.0000 +"Warbler, Black-and-white",630272.0000 +"Sparrow, Song",509845.5000 +"Martin, Sand",321036.0000 +"Tern, Caspian",223503.5000 +"Bunting, Pine",176857.0000 +"Bunting, Rock",143440.0000 +"Goose, Egyptian",108834.0000 +"Redstart, American",102408.0000 +Twite,79552.5000 +Dunlin,62708.5000 +"Tanager, Summer",54492.0000 +"Sparrow, Lark",51465.0000 +Blackbird,44053.0000 +Fulmar,37274.0000 +Linnet,33144.0000 +"Thrush, Rock",30131.0000 +"Swift, Little",26641.5000 +"Wagtail, Yellow",23782.0000 +"Sandpiper, Purple",21999.5000 +"Warbler, Blackpoll",20072.0000 +"Sparrow, Tree",16594.0000 +"Lark, Calandra",15087.0000 +"Warbler, Tennessee",14270.0000 +"Wagtail, Pied",13881.0000 +"Sandpiper, Baird's",13512.0000 +"Pipit, Tawny",11130.5000 +"Parula, Northern",10414.0000 +"Bunting, Indigo",8955.0000 +"Warbler, Blackburnian",7009.5000 +Nuthatch,6979.0000 +"Shearwater, Balearic",6965.5000 +"Finch, Citril",6642.0000 +"Flycatcher, Taiga",6529.5000 +"Rosefinch, Common",5691.0000 +"Warbler, Hooded",5339.0000 +"Finch, Trumpeter",4360.0000 +"Redpoll, Arctic",2842.5000 +"Bunting, Lapland",2703.0000 +"Redpoll, Mealy",2581.5000 +Goldfinch,2503.5000 +"Thrush, Dusky",2350.0000 +Greenfinch,2199.5000 +"Bunting, Corn",1334.0000 +"Warbler, Barred",1262.0000 +"Pipit, Tree",1080.0000 +Bullfinch,1058.0000 +"Starling, Rose-coloured",1013.0000 +Dotterel,896.0000 +"Pipit, Olive-backed",822.5000 +"Stonechat, Siberian",609.0000 +"Bluetail, Red-flanked",583.5000 +"Thrush, Eyebrowed",494.0000 +"Warbler, Savi's",470.0000 +"Thrush, White's",452.0000 +"Warbler, Fan-tailed",412.0000 +"Tit, Bearded",404.0000 +"Pipit, Red-throated",363.0000 +"Robin, White-throated",352.5000 +Bittern,334.0000 +"Grouse, Red",314.0000 +"Thrush, Red-throated",212.0000 +Nightingale,145.0000 +"Flycatcher, Spotted",143.5000 +"Tit, Willow",106.0000 +Veery,103.0000 +"Warbler, Subalpine",82.0000 +"Warbler, Cetti's",81.0000 +Fieldfare,75.5000 +"Warbler, Marmora's",75.0000 +"Thrush, Wood",69.0000 +"Catbird, Grey",60.0000 +"Flycatcher, Brown",53.0000 +"Shearwater, Macaronesian",52.5000 +"Warbler, Reed",52.0000 +"Thrush, Hermit",51.0000 +"Gull, Yellow-legged",48.0000 +"Warbler, Icterine",46.0000 +Goldcrest,43.0000 +"Goose, Red-breasted",43.0000 +"Crow, Hooded",38.0000 +"Petrel, Fea's",36.0000 +Dunnock,34.0000 +"Nuthatch, Red-breasted",31.0000 +"Warbler, Paddyfield",19.0000 +"Warbler, Sykes's",19.0000 +"Shrike, Brown",15.0000 +"Warbler, Arctic",13.0000 +"Falcon, Eleonora's",11.0000 +Merlin,10.0000 +"Swift, Chimney",10.0000 +"Falcon, Red-footed",9.0000 +"Tit, Long-tailed",9.0000 +Jackdaw,8.0000 +"Spotted, Lesser",8.0000 +"Woodpecker, Green",7.0000 +Chiffchaff,5.0000 +"Desert, Asian",5.0000 +Kingfisher,5.0000 +"Kingfisher, Belted",5.0000 +"Nighthawk, Common",5.0000 +"Redshank, Spotted",5.0000 +Swift,5.0000 +"Swift, Pacific",5.0000 +Nightjar,4.0000 +"Owl, Little",4.0000 +"Owl, Short-eared",4.0000 +"Owl, Snowy",4.0000 +"Warbler, Green",4.0000 +Cuckoo,3.0000 +"Cuckoo, Black-billed",3.0000 +"Martin, House",3.0000 +"Owl, Scops",3.0000 +"Tern, Gull-billed",3.0000 +"Warbler, Radde's",3.0000 +Woodpigeon,3.0000 +"Gull, Glaucous",2.0000 +"Gull, Herring",2.0000 +"Gull, Slaty-backed",2.0000 +Osprey,2.0000 +"Black-headed, Great",1.0000 +"Bonelli's, Eastern",1.0000 +"Dowitcher, Long-billed",1.0000 +"Guillemot, Black",1.0000 +"Guillemot, Brunnich's",1.0000 +"Gull, Audouin's",1.0000 +"Gull, Bonaparte's",1.0000 +"Gull, Franklin's",1.0000 +"Gull, Sabine's",1.0000 +"Phalarope, Red-necked",1.0000 +"Phalarope, Wilson's",1.0000 +Puffin,1.0000 +"Robin, Rufous-tailed",1.0000 +"Sandpiper, Buff-breasted",1.0000 +"Sandpiper, Western",1.0000 +"Sandpiper, White-rumped",1.0000 +"Skua, Arctic",1.0000 +"Skua, Pomarine",1.0000 +Skylark,1.0000 +Smew,1.0000 +Snipe,1.0000 +"Snipe, Great",1.0000 +"Tern, Black",1.0000 +"Tern, Cabot's",1.0000 +"Tern, Common",1.0000 +Woodcock,1.0000 +"Yellowthroat, Common",1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4e29a97298 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" +2018-12-27,107569544,88379723,15196470,5257944,2933536,3012988,2147160,1513246,1135809,929384,630272,460490,321035,227914,176859,155276,108834,102408,4627,62606,55519,50225,15705,37282,43541,30131,19294,23782,20072,16594,0,15126,14270,341,13512,6104,10366,8911,10013,6979,6975,6642,6973,5758,5339,4360,2668,2703,2450,2296,2350,2654,1316,1262,1080,1109,1013,896,791,609,600,494,470,452,412,404,363,684,270,314,194,145,237,106,103,82,81,77,75,69,60,52,55,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-28,107577602,88525879,15196470,5729883,2933773,3013062,2146330,1513519,1135809,942423,630272,525827,321035,253961,176859,155290,108834,102408,4681,62604,54954,50496,123243,37279,43541,30131,28732,23782,20072,16594,0,15150,14270,341,13512,9070,10389,8928,10013,6979,6975,6642,6971,5758,5339,4360,2730,2703,2223,2296,2350,2651,1320,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,328,314,214,145,237,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-29,107586402,88683162,15196470,6135937,3265079,3013110,2146330,1530321,1135809,942502,630272,530773,321035,221585,176859,155276,108834,102408,4747,62690,54307,50647,39429,37279,43541,30131,31393,23782,20072,16594,131976,15134,14270,341,13512,10115,10406,8784,10013,6979,6975,6642,6974,5758,5339,4360,2708,2703,2865,2296,2350,2651,1324,1262,1080,1110,1013,896,799,609,600,494,470,452,412,404,363,684,328,314,214,145,237,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-30,107594034,88765119,15196470,6135937,3500581,3013153,2146330,1530320,1135809,913045,630272,530773,321035,252098,176859,155131,108834,102408,4801,62719,54307,50870,57256,37279,43541,30131,31393,23782,20072,16594,4,15134,14270,341,13512,12045,10406,8784,10013,6979,6975,6642,6974,5737,5339,4360,2791,2703,2669,2296,2350,2605,1328,1262,1080,1111,1013,896,799,609,600,494,470,452,412,404,363,684,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-31,107589840,88903007,15196470,6135797,3777518,2988859,2146330,1530282,1135809,913024,630272,530773,321035,245325,176859,155117,108834,102408,4843,62713,54307,51256,68497,37272,37479,30131,29359,23782,20072,16594,4,15134,14270,341,13512,12048,10406,8794,10012,6979,6975,6642,6923,5704,5339,4360,2833,2703,2652,2228,2350,1894,1332,1262,1080,1111,1013,896,799,609,600,494,470,452,412,404,363,684,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-01,107589335,89164927,15196470,6135783,3784793,2947443,2151475,1530282,1135809,900004,630272,511036,321035,232953,176859,131858,108834,102408,4843,62732,54305,51169,70541,37274,37479,30131,28386,23782,20072,16594,4,15038,14270,20126,13512,12142,10424,8794,10012,6979,6956,6642,5845,5683,5339,4360,2805,2703,2452,2433,2350,1867,1336,1262,1080,1111,1013,896,799,609,600,494,470,452,412,404,363,31,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-02,107561195,89405908,15196470,6135307,3786969,2947498,2151475,1529662,1135809,899701,630272,465524,321038,202989,176859,131859,108834,102408,191746,62739,54305,51595,17507,37267,22343,30131,25614,23782,20072,16594,4,15038,14270,26165,13512,12142,10424,8796,10012,6979,6956,6642,5943,5676,5339,4360,2863,2703,2447,2554,2350,1865,1340,1262,1080,959,1013,896,799,609,600,494,470,452,412,404,363,19,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-03,107549713,89579944,15196470,6348937,3664040,2945748,2151594,1528702,1135809,899847,630272,513304,321037,199890,176852,131756,108834,102408,191746,62743,54305,52145,13829,37267,22343,30131,24429,23782,20072,16594,4,15038,14270,14415,13512,12144,10431,9237,2,6979,6956,6642,6230,5676,5339,4360,2916,2703,2685,2695,2350,1865,1344,1262,1080,987,1013,896,799,609,396,494,470,452,412,404,363,19,328,314,214,145,132,106,103,82,81,72,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-04,107543239,89779619,15196470,6549403,3739730,2947361,2151594,1528310,1135809,911605,630272,514969,321037,197097,176852,131458,108834,102408,191746,62736,54305,53185,16138,37270,22343,30131,24311,23782,20072,16594,4,15038,14270,37559,13512,12415,10442,9261,2,6979,6956,6642,6230,5590,5339,4360,3016,2703,2685,2898,2350,1865,1348,1262,1080,987,1013,896,799,609,658,494,470,452,412,404,363,19,328,314,214,145,6,106,103,82,81,72,75,69,60,55,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-05,107531712,90017560,15196470,6379996,3820497,2947394,2151594,1528310,1135809,901485,630272,514986,321037,201225,176852,131381,108834,102408,191746,62803,54303,53060,18377,37269,15287,30131,23506,23782,20072,16594,4,15038,14270,38837,13512,13083,10442,9261,2,6979,6956,6642,6230,5568,5339,4360,3096,2703,2685,3046,2350,2076,1352,1262,1080,988,1013,896,1046,609,582,494,470,452,412,404,363,19,448,314,214,145,1,106,103,82,81,72,75,69,60,57,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9a8de3da4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" +2018-12,107583484,88651378,15196470,5879100,3282097,3008234,2146496,1523538,1135809,928075,630272,515727,321035,240177,176859,155218,108834,102408,4740,62666,54679,50699,60826,37279,42329,30131,28034,23782,43995,20072,16594,15136,14270,341,13512,9876,10395,8840,10013,6979,6975,6642,6963,5743,5339,4360,2746,2703,2572,2282,2350,2491,1324,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,316,314,210,145,201,106,103,82,81,77,75,69,60,52,53,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01,107555039,89589592,15196470,6309885,3759205,2947088,2151546,1529053,1135809,902529,630272,503964,321037,206830,176855,131662,108834,102408,154365,62751,54305,52231,27280,37269,23959,30131,25249,23782,4,20072,16594,15038,14270,27421,13512,12385,10433,9070,4006,6979,6956,6642,6096,5639,5339,4360,2939,2703,2591,2725,2350,1908,1344,1262,1080,1006,1013,896,848,609,567,494,470,452,412,404,363,21,352,314,214,145,86,106,103,82,81,74,75,69,60,54,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9d809d7b29 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" +"2018 Q4",107583484,88651378,15196470,5879100,3282097,3008234,2146496,1523538,1135809,928075,630272,515727,321035,240177,176859,155218,108834,102408,4740,62666,54679,50699,60826,37279,42329,30131,28034,23782,43995,20072,16594,15136,14270,341,13512,9876,10395,8840,10013,6979,6975,6642,6963,5743,5339,4360,2746,2703,2572,2282,2350,2491,1324,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,316,314,210,145,201,106,103,82,81,77,75,69,60,52,53,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2019 Q1",107555039,89589592,15196470,6309885,3759205,2947088,2151546,1529053,1135809,902529,630272,503964,321037,206830,176855,131662,108834,102408,154365,62751,54305,52231,27280,37269,23959,30131,25249,23782,4,20072,16594,15038,14270,27421,13512,12385,10433,9070,4006,6979,6956,6642,6096,5639,5339,4360,2939,2703,2591,2725,2350,1908,1344,1262,1080,1006,1013,896,848,609,567,494,470,452,412,404,363,21,352,314,214,145,86,106,103,82,81,74,75,69,60,54,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ef940eb090 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" +2018,107583484,88651378,15196470,5879100,3282097,3008234,2146496,1523538,1135809,928075,630272,515727,321035,240177,176859,155218,108834,102408,4740,62666,54679,50699,60826,37279,42329,30131,28034,23782,43995,20072,16594,15136,14270,341,13512,9876,10395,8840,10013,6979,6975,6642,6963,5743,5339,4360,2746,2703,2572,2282,2350,2491,1324,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,316,314,210,145,201,106,103,82,81,77,75,69,60,52,53,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019,107555039,89589592,15196470,6309885,3759205,2947088,2151546,1529053,1135809,902529,630272,503964,321037,206830,176855,131662,108834,102408,154365,62751,54305,52231,27280,37269,23959,30131,25249,23782,4,20072,16594,15038,14270,27421,13512,12385,10433,9070,4006,6979,6956,6642,6096,5639,5339,4360,2939,2703,2591,2725,2350,1908,1344,1262,1080,1006,1013,896,848,609,567,494,470,452,412,404,363,21,352,314,214,145,86,106,103,82,81,74,75,69,60,54,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a3c25c55c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +Fulmar,220015017984000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Bunting, Corn",2000003072000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a3c25c55c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +Fulmar,220015017984000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Bunting, Corn",2000003072000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a3c25c55c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +Fulmar,220015017984000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Bunting, Corn",2000003072000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a3c25c55c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Hard Threshold (Bytes)" +Bobolink,250000003072000.0000 +"Cowbird, Brown-headed",250000003072000.0000 +Fulmar,220015017984000.0000 +"Grouse, Red",150000001024000.0000 +"Redstart, American",150000001024000.0000 +"Waterthrush, Northern",100005003264000.0000 +"Warbler, Tennessee",60000002048000.0000 +"Warbler, Black-and-white",50005000192000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10005000192000.0000 +"Martin, Sand",10005000192000.0000 +"Parula, Northern",10005000192000.0000 +"Scaup, Lesser",10005000192000.0000 +"Bunting, Corn",2000003072000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..91e41f869d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" +2018-12-27,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7e603fef23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" +2018-12,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e2aca6c9a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" +"2018 Q4",250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..becf0478eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" +2018,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..315d92cec2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +Chaffinch,157675908224000.0000 +"Redstart, American",94668546688000.0000 +"Warbler, Magnolia",80363333107200.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Martin, Sand",50376874368000.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Bunting, Indigo",15545744473600.0000 +"Dowitcher, Short-billed",14837865497600.0000 +"Warbler, Tennessee",13832863872000.0000 +"Tern, Caspian",10697016486400.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8972348544000.0000 +"Scaup, Lesser",8639812684800.0000 +"Finch, Citril",6401920512000.0000 +"Bunting, Rock",5392457907200.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Rustic",2486089958400.0000 +"Sparrow, Lark",2009530739200.0000 +"Bunting, Pine",1733983590400.0000 +Fulmar,1507261952000.0000 +Blackbird,1340020812800.0000 +"Swift, Little",1336851827200.0000 +"Chiffchaff, Iberian",635384230400.0000 +"Sparrow, Song",601996633600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Pipit, Red-throated",297982336000.0000 +"Tanager, Summer",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Pipit, Tree",208223232000.0000 +"Lark, Calandra",143814592000.0000 +Bittern,129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +"Rosefinch, Common",77630630400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Bunting, Corn",43913408000.0000 +"Wagtail, Pied",22184281600.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",8558368000.0000 +"Bluetail, Red-flanked",6953753600.0000 +"Shearwater, Macaronesian",3000576000.0000 +"Flycatcher, Taiga",2518976000.0000 +Fieldfare,1986227200.0000 +"Stonechat, Siberian",1615104000.0000 +"Shearwater, Balearic",821760000.0000 +"Thrush, Red-throated",487731200.0000 +"Sparrow, Tree",334848000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Yellow",213504000.0000 +"Petrel, Fea's",178432000.0000 +Nightingale,99072000.0000 +"Robin, White-throated",43430400.0000 +"Goose, Egyptian",41344000.0000 +"Thrush, Wood",34432000.0000 +"Flycatcher, Spotted",23820800.0000 +"Catbird, Grey",17280000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Warbler, Blackpoll",8576000.0000 +"Thrush, Rock",8064000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, White's",2816000.0000 +Nuthatch,2176000.0000 +Dotterel,1920000.0000 +"Starling, Rose-coloured",1920000.0000 +"Thrush, Dusky",1280000.0000 +"Warbler, Blackburnian",1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Warbler, Icterine",1024000.0000 +"Warbler, Paddyfield",1024000.0000 +"Goose, Red-breasted",896000.0000 +"Warbler, Sykes's",768000.0000 +Chiffchaff,640000.0000 +"Bonelli's, Eastern",512000.0000 +"Warbler, Arctic",512000.0000 +"Warbler, Radde's",384000.0000 +"Warbler, Green",256000.0000 +Jackdaw,128000.0000 +"Martin, House",128000.0000 +Skylark,128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Barred",128000.0000 +"Warbler, Fan-tailed",128000.0000 +"Warbler, Marmora's",128000.0000 +"Warbler, Subalpine",128000.0000 +"Black-headed, Great",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Goldcrest,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +Puffin,0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Spotted, Lesser",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Pacific",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Hermit",0.0000 +"Tit, Bearded",0.0000 +"Tit, Willow",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b81c86d179 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +Chaffinch,157675908224000.0000 +"Redstart, American",94668546688000.0000 +"Warbler, Magnolia",80363333107200.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Martin, Sand",50376874368000.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Bunting, Indigo",15545744473600.0000 +"Dowitcher, Short-billed",14837865497600.0000 +"Warbler, Tennessee",13832863872000.0000 +"Tern, Caspian",10697016486400.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8972348544000.0000 +"Scaup, Lesser",8639812684800.0000 +"Finch, Citril",6401920512000.0000 +"Bunting, Rock",5392457907200.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Rustic",2486089958400.0000 +"Sparrow, Lark",2009530739200.0000 +"Bunting, Pine",1733983590400.0000 +Fulmar,1507261952000.0000 +Blackbird,1340020864000.0000 +"Swift, Little",1336851827200.0000 +"Chiffchaff, Iberian",635384230400.0000 +"Sparrow, Song",601996633600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Pipit, Red-throated",297982336000.0000 +"Tanager, Summer",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Pipit, Tree",208223232000.0000 +"Lark, Calandra",143814592000.0000 +Bittern,129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +"Rosefinch, Common",77630630400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Bunting, Corn",43913408000.0000 +"Wagtail, Pied",22184281600.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",9106218666.5000 +"Bluetail, Red-flanked",6953753600.0000 +"Shearwater, Macaronesian",3000576000.0000 +"Flycatcher, Taiga",2518976000.0000 +Fieldfare,1986227200.0000 +"Stonechat, Siberian",1615104000.0000 +"Shearwater, Balearic",821760000.0000 +"Thrush, Red-throated",487731200.0000 +"Sparrow, Tree",334848000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Yellow",213504000.0000 +"Petrel, Fea's",178432000.0000 +Nightingale,99072000.0000 +"Robin, White-throated",43430400.0000 +"Goose, Egyptian",41344000.0000 +"Thrush, Wood",34432000.0000 +"Flycatcher, Spotted",23820800.0000 +"Catbird, Grey",17280000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Warbler, Blackpoll",8576000.0000 +"Thrush, Rock",8064000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, White's",2816000.0000 +Nuthatch,2176000.0000 +Dotterel,1920000.0000 +"Starling, Rose-coloured",1920000.0000 +"Thrush, Dusky",1280000.0000 +"Warbler, Blackburnian",1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Warbler, Icterine",1024000.0000 +"Warbler, Paddyfield",1024000.0000 +"Goose, Red-breasted",896000.0000 +"Warbler, Sykes's",768000.0000 +Chiffchaff,640000.0000 +"Bonelli's, Eastern",512000.0000 +"Warbler, Arctic",512000.0000 +"Warbler, Radde's",384000.0000 +"Warbler, Green",256000.0000 +Jackdaw,128000.0000 +"Martin, House",128000.0000 +Skylark,128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Barred",128000.0000 +"Warbler, Fan-tailed",128000.0000 +"Warbler, Marmora's",128000.0000 +"Warbler, Subalpine",128000.0000 +"Black-headed, Great",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Goldcrest,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +Puffin,0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Spotted, Lesser",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Pacific",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Hermit",0.0000 +"Tit, Bearded",0.0000 +"Tit, Willow",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b81c86d179 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +Chaffinch,157675908224000.0000 +"Redstart, American",94668546688000.0000 +"Warbler, Magnolia",80363333107200.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Martin, Sand",50376874368000.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Bunting, Indigo",15545744473600.0000 +"Dowitcher, Short-billed",14837865497600.0000 +"Warbler, Tennessee",13832863872000.0000 +"Tern, Caspian",10697016486400.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8972348544000.0000 +"Scaup, Lesser",8639812684800.0000 +"Finch, Citril",6401920512000.0000 +"Bunting, Rock",5392457907200.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Rustic",2486089958400.0000 +"Sparrow, Lark",2009530739200.0000 +"Bunting, Pine",1733983590400.0000 +Fulmar,1507261952000.0000 +Blackbird,1340020864000.0000 +"Swift, Little",1336851827200.0000 +"Chiffchaff, Iberian",635384230400.0000 +"Sparrow, Song",601996633600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Pipit, Red-throated",297982336000.0000 +"Tanager, Summer",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Pipit, Tree",208223232000.0000 +"Lark, Calandra",143814592000.0000 +Bittern,129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +"Rosefinch, Common",77630630400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Bunting, Corn",43913408000.0000 +"Wagtail, Pied",22184281600.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",9106218666.5000 +"Bluetail, Red-flanked",6953753600.0000 +"Shearwater, Macaronesian",3000576000.0000 +"Flycatcher, Taiga",2518976000.0000 +Fieldfare,1986227200.0000 +"Stonechat, Siberian",1615104000.0000 +"Shearwater, Balearic",821760000.0000 +"Thrush, Red-throated",487731200.0000 +"Sparrow, Tree",334848000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Yellow",213504000.0000 +"Petrel, Fea's",178432000.0000 +Nightingale,99072000.0000 +"Robin, White-throated",43430400.0000 +"Goose, Egyptian",41344000.0000 +"Thrush, Wood",34432000.0000 +"Flycatcher, Spotted",23820800.0000 +"Catbird, Grey",17280000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Warbler, Blackpoll",8576000.0000 +"Thrush, Rock",8064000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, White's",2816000.0000 +Nuthatch,2176000.0000 +Dotterel,1920000.0000 +"Starling, Rose-coloured",1920000.0000 +"Thrush, Dusky",1280000.0000 +"Warbler, Blackburnian",1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Warbler, Icterine",1024000.0000 +"Warbler, Paddyfield",1024000.0000 +"Goose, Red-breasted",896000.0000 +"Warbler, Sykes's",768000.0000 +Chiffchaff,640000.0000 +"Bonelli's, Eastern",512000.0000 +"Warbler, Arctic",512000.0000 +"Warbler, Radde's",384000.0000 +"Warbler, Green",256000.0000 +Jackdaw,128000.0000 +"Martin, House",128000.0000 +Skylark,128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Barred",128000.0000 +"Warbler, Fan-tailed",128000.0000 +"Warbler, Marmora's",128000.0000 +"Warbler, Subalpine",128000.0000 +"Black-headed, Great",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Goldcrest,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +Puffin,0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Spotted, Lesser",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Pacific",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Hermit",0.0000 +"Tit, Bearded",0.0000 +"Tit, Willow",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b81c86d179 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Logical Usage (Bytes)" +"Cowbird, Brown-headed",162670858508800.0000 +Chaffinch,157675908224000.0000 +"Redstart, American",94668546688000.0000 +"Warbler, Magnolia",80363333107200.0000 +Bobolink,55029891456000.0000 +"Waterthrush, Northern",50638493824000.0000 +"Martin, Sand",50376874368000.0000 +"Warbler, Black-and-white",27267411328000.0000 +"Bunting, Indigo",15545744473600.0000 +"Dowitcher, Short-billed",14837865497600.0000 +"Warbler, Tennessee",13832863872000.0000 +"Tern, Caspian",10697016486400.0000 +"Parula, Northern",9219031795200.0000 +"Kestrel, Lesser",8972348544000.0000 +"Scaup, Lesser",8639812684800.0000 +"Finch, Citril",6401920512000.0000 +"Bunting, Rock",5392457907200.0000 +"Bunting, Lapland",2698908288000.0000 +"Bunting, Rustic",2486089958400.0000 +"Sparrow, Lark",2009530739200.0000 +"Bunting, Pine",1733983590400.0000 +Fulmar,1507261952000.0000 +Blackbird,1340020864000.0000 +"Swift, Little",1336851827200.0000 +"Chiffchaff, Iberian",635384230400.0000 +"Sparrow, Song",601996633600.0000 +"Grouse, Red",575703936000.0000 +Goldfinch,501555571200.0000 +"Pipit, Red-throated",297982336000.0000 +"Tanager, Summer",295327449600.0000 +Twite,278880576000.0000 +"Redpoll, Arctic",267434624000.0000 +"Redpoll, Mealy",252261286400.0000 +"Pipit, Tree",208223232000.0000 +"Lark, Calandra",143814592000.0000 +Bittern,129129152000.0000 +Greenfinch,127649331200.0000 +"Pipit, Olive-backed",118578649600.0000 +Bullfinch,108903206400.0000 +Dunlin,91059212800.0000 +"Rosefinch, Common",77630630400.0000 +"Finch, Trumpeter",73587315200.0000 +Dunnock,66818816000.0000 +"Bunting, Corn",43913408000.0000 +"Wagtail, Pied",22184281600.0000 +"Pipit, Tawny",16181068800.0000 +Linnet,14152985600.0000 +"Sandpiper, Purple",9106218666.5000 +"Bluetail, Red-flanked",6953753600.0000 +"Shearwater, Macaronesian",3000576000.0000 +"Flycatcher, Taiga",2518976000.0000 +Fieldfare,1986227200.0000 +"Stonechat, Siberian",1615104000.0000 +"Shearwater, Balearic",821760000.0000 +"Thrush, Red-throated",487731200.0000 +"Sparrow, Tree",334848000.0000 +"Flycatcher, Brown",278912000.0000 +"Wagtail, Yellow",213504000.0000 +"Petrel, Fea's",178432000.0000 +Nightingale,99072000.0000 +"Robin, White-throated",43430400.0000 +"Goose, Egyptian",41344000.0000 +"Thrush, Wood",34432000.0000 +"Flycatcher, Spotted",23820800.0000 +"Catbird, Grey",17280000.0000 +"Sandpiper, Baird's",9344000.0000 +"Thrush, Eyebrowed",8576000.0000 +"Warbler, Blackpoll",8576000.0000 +"Thrush, Rock",8064000.0000 +"Warbler, Cetti's",6272000.0000 +"Nuthatch, Red-breasted",4992000.0000 +Veery,3456000.0000 +"Thrush, White's",2816000.0000 +Nuthatch,2176000.0000 +Dotterel,1920000.0000 +"Starling, Rose-coloured",1920000.0000 +"Thrush, Dusky",1280000.0000 +"Warbler, Blackburnian",1203200.0000 +"Desert, Asian",1152000.0000 +"Warbler, Reed",1152000.0000 +"Warbler, Icterine",1024000.0000 +"Warbler, Paddyfield",1024000.0000 +"Goose, Red-breasted",896000.0000 +"Warbler, Sykes's",768000.0000 +Chiffchaff,640000.0000 +"Bonelli's, Eastern",512000.0000 +"Warbler, Arctic",512000.0000 +"Warbler, Radde's",384000.0000 +"Warbler, Green",256000.0000 +Jackdaw,128000.0000 +"Martin, House",128000.0000 +Skylark,128000.0000 +"Tit, Long-tailed",128000.0000 +"Warbler, Barred",128000.0000 +"Warbler, Fan-tailed",128000.0000 +"Warbler, Marmora's",128000.0000 +"Warbler, Subalpine",128000.0000 +"Black-headed, Great",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Dowitcher, Long-billed",0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Goldcrest,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightjar,0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +Puffin,0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Spotted, Lesser",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Pacific",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Hermit",0.0000 +"Tit, Bearded",0.0000 +"Tit, Willow",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..34380bca00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" +2018-12-27,161970387072000,167719861120000,94668546688000,71336820096000,55029891456000,50638493824000,50376874368000,27267411328000,15702943232000,15153054208000,13832863872000,14713539456000,9218944768000,8965095552000,8641234944000,6401920512000,5937893248000,2698908288000,2264437504000,1952837504000,1733996800000,1507901184000,339780224000,1304879616000,632371200000,603500928000,575703936000,474718208000,297982336000,297141376000,230846848000,256112512000,244283904000,208223232000,173944704000,129027072000,139109120000,117884160000,97863680000,87247488000,96234112000,108636160000,66818816000,43912832000,23900800000,9422592000,18692736000,0,6572160000,3000576000,2500864000,1986688000,1615104000,1642112000,184064000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,34048000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,162119939712000,167789414016000,94668546688000,77361961984000,55029891456000,50638493824000,50376874368000,27267411328000,15771797504000,15153504768000,13832863872000,12472681088000,9218971392000,8966348544000,8641716736000,6401920512000,5937961216000,2698908288000,2391368576000,1986484736000,1733996800000,1507249024000,2218578560000,1522301312000,635075712000,631372672000,575703936000,474718208000,297982336000,295846144000,245742848000,260281472000,233874944000,208223232000,177120768000,129104640000,138835584000,118649472000,97863936000,87256320000,96234112000,128210944000,66818816000,43912960000,23900800000,14527872000,18692736000,0,6572160000,3000576000,2500864000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,34048000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,162292553216000,167857545344000,94668546688000,78972773632000,55029891456000,50638493824000,50376874368000,27267411328000,15449285376000,15161905024000,13832863872000,12238492160000,9219024768000,8966348544000,8644306560000,6401920512000,5936964864000,2698908288000,2488428672000,2049042048000,1733996800000,1507249280000,1754258944000,1715639680000,637568128000,633516416000,575703936000,474718208000,297982336000,295037568000,263454848000,256227456000,267489664000,208223232000,178164736000,129104640000,138835584000,118649472000,97863936000,91802240000,96234112000,141851776000,66818816000,43913088000,23900800000,16625536000,18692736000,20063232000,6572160000,3000576000,2501504000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,34048000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,162411179264000,167913174144000,94668546688000,82335986304000,55029891456000,50638493824000,50376874368000,27267411328000,15470170880000,15166902528000,13832863872000,12078699776000,9219024768000,8966348544000,8644697600000,6401920512000,5936318080000,2698908288000,2488428672000,2067007872000,1733996800000,1507249536000,2039249152000,1715639680000,640210176000,633521920000,575703936000,474718208000,297982336000,295037568000,277430144000,263643776000,253159424000,208223232000,178164736000,129104640000,137997440000,118649472000,97864320000,91831296000,93119744000,141851776000,66818816000,43913216000,23900800000,17486336000,18692736000,6914816000,6572160000,3000576000,2501504000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,162592092800000,156896478080000,94668546688000,84886444800000,55029891456000,50638493824000,50376874368000,27267411328000,15482173184000,15172477696000,13832863872000,17173988480000,9219024768000,8966340608000,8644679808000,6401920512000,5936241792000,2698908288000,2485751040000,2202024704000,1733996800000,1507249792000,2326958080000,1655432960000,640387712000,633514368000,575703936000,467375104000,297982336000,295037568000,286533888000,266416768000,248449920000,208223232000,178164736000,129104640000,121020032000,118649472000,97864320000,91836928000,77647616000,141851776000,66818816000,43913344000,23900800000,16938112000,16437504000,6914816000,6572160000,3000576000,2490624000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1536000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,162782021504000,152464707968000,94668546688000,85368429696000,55029891456000,50638493824000,50376874368000,27267411328000,15482173184000,15171164032000,13832863872000,14641606016000,9219074304000,8977937792000,8644679808000,6401920512000,4858566912000,2698908288000,2485625600000,2154197888000,1733996800000,1507249920000,2510009088000,1579033984000,638805248000,590949120000,575703936000,455522560000,297982336000,295034880000,286533888000,263296256000,250212096000,208223232000,110517248000,129104640000,118758272000,118649472000,97864320000,91868672000,68342400000,14694144000,66818816000,43913472000,26253312000,17168640000,16437504000,6914816000,6572160000,3000576000,2467328000,1986688000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,2048000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1536000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,162938798080000,152523825536000,94668546688000,82122290176000,55029891456000,50638493824000,50376874368000,27267411328000,15482173184000,15156379904000,13832863872000,8085082240000,9219074304000,8977937792000,8635160192000,6401920512000,4859111040000,2698908288000,2480185088000,2039886592000,1733996800000,1507117312000,641892992000,1081856128000,647182336000,553673472000,575703936000,480148608000,297982336000,295034880000,299565824000,267783296000,241470336000,208223232000,110517248000,129104640000,118663552000,118649472000,97835520000,91883648000,65240448000,14694144000,66818816000,43913600000,17302912000,17168640000,8721664000,6914816000,6572160000,3000576000,2399232000,1986688000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1536000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,163074504320000,147763957376000,94668546688000,81033944448000,55029891456000,50638493824000,50376874368000,27267411328000,15482548096000,14191799040000,13832863872000,7385004544000,9219050752000,8979042688000,8634912256000,6401920512000,4849261312000,2698908288000,2537132160000,1986328960000,1733952768000,1507117568000,454935936000,940511616000,641761920000,572017152000,575703936000,533945344000,297982336000,295034880000,299565824000,271555584000,261224192000,208223232000,110517248000,129104640000,118663552000,118649472000,134670208000,91886720000,65240448000,14694144000,66818816000,43913728000,18706048000,17168640000,8721664000,6914816000,5099008000,3000576000,2609280000,1985152000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,18560000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,256000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,163190753920000,147868405376000,94668546688000,80837728256000,55029891456000,50638493824000,50376874368000,27267411328000,15527354752000,14026529408000,13832863872000,5711420288000,9219064064000,8979042688000,8633369472000,6401920512000,4837305472000,2698908288000,2608393088000,1995541632000,1733952768000,1507117824000,519761152000,937147392000,651415936000,588576384000,575703936000,570769536000,297982336000,295034880000,299565824000,281917568000,261224192000,208223232000,110517248000,129104640000,118663552000,118649472000,134670208000,91868800000,65197824000,14694144000,66818816000,43913856000,20371968000,17180160000,8721664000,6914816000,9945728000,3000576000,2609280000,1985152000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,4352000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,256000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,163336355200000,147961713280000,94668546688000,79376951680000,55029891456000,50638493824000,50376874368000,27267411328000,15606825344000,14024938368000,13832863872000,2469650816000,9219064064000,8979042688000,8633369472000,6401920512000,4834955136000,2698908288000,2631149184000,1661955456000,1733952768000,1507118080000,594784000000,916075904000,589063936000,579323904000,575703936000,608921728000,297982336000,295034752000,299565824000,287111552000,261224192000,208223232000,110517248000,129427328000,125946624000,118706560000,134671616000,93110016000,52815488000,14694144000,66818816000,43913984000,19704576000,18124160000,7718912000,6914816000,8487680000,3000576000,2609280000,1985152000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,0,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,256000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bbe4ba4217 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" +2018-12,162277230412800,165635294540800,94668546688000,78978797363200,55029891456000,50638493824000,50376874368000,27267411328000,15575274035200,15161568844800,13832863872000,13735480192000,9218998092800,8966096358400,8643327129600,6401920512000,5937075840000,2698908288000,2423682892800,2051479372800,1733996800000,1507379763200,1735764992000,1582778649600,637122585600,627085260800,575703936000,473249587200,297982336000,295620044800,260801715200,260536396800,249451571200,208223232000,177111936000,129089126400,135159552000,118496409600,97864038400,89994854400,91893939200,132480486400,66818816000,43913088000,23900800000,15000089600,18241689600,11297621333,6572160000,3000576000,2499072000,1986688000,1615104000,1642112000,453990400,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,31744000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1638400,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,163064486604800,149716521907200,94668546688000,81747868851200,55029891456000,50638493824000,50376874368000,27267411328000,15516214912000,14514162150400,13832863872000,7658552780800,9219065497600,8978600729600,8636298240000,6401920512000,4847839974400,2698908288000,2548497024000,1967582105600,1733970380800,1507144140800,944276736000,1090925004800,633645875200,576908006400,575703936000,529861555200,297982336000,295034854400,296959436800,274332851200,255071001600,208223232000,110517248000,129169177600,120139110400,118660889600,119942374400,92123571200,63367321600,14694144000,66818816000,43913728000,20467763200,17362048000,10064281600,6914816000,7335347200,3000576000,2538880000,1985766400,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,716800,41344000,34432000,15897600,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,768000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ee4d0df828 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" +"2018 Q4",162277230412800,165635294540800,94668546688000,78978797363200,55029891456000,50638493824000,50376874368000,27267411328000,15575274035200,15161568844800,13832863872000,13735480192000,9218998092800,8966096358400,8643327129600,6401920512000,5937075840000,2698908288000,2423682892800,2051479372800,1733996800000,1507379763200,1735764992000,1582778649600,637122585600,627085260800,575703936000,473249587200,297982336000,295620044800,260801715200,260536396800,249451571200,208223232000,177111936000,129089126400,135159552000,118496409600,97864038400,89994854400,91893939200,132480486400,66818816000,43913088000,23900800000,15000089600,18241689600,11297621333,6572160000,3000576000,2499072000,1986688000,1615104000,1642112000,453990400,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,31744000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1638400,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",163064486604800,149716521907200,94668546688000,81747868851200,55029891456000,50638493824000,50376874368000,27267411328000,15516214912000,14514162150400,13832863872000,7658552780800,9219065497600,8978600729600,8636298240000,6401920512000,4847839974400,2698908288000,2548497024000,1967582105600,1733970380800,1507144140800,944276736000,1090925004800,633645875200,576908006400,575703936000,529861555200,297982336000,295034854400,296959436800,274332851200,255071001600,208223232000,110517248000,129169177600,120139110400,118660889600,119942374400,92123571200,63367321600,14694144000,66818816000,43913728000,20467763200,17362048000,10064281600,6914816000,7335347200,3000576000,2538880000,1985766400,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,716800,41344000,34432000,15897600,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,768000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5aa1c80673 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" +2018,162277230412800,165635294540800,94668546688000,78978797363200,55029891456000,50638493824000,50376874368000,27267411328000,15575274035200,15161568844800,13832863872000,13735480192000,9218998092800,8966096358400,8643327129600,6401920512000,5937075840000,2698908288000,2423682892800,2051479372800,1733996800000,1507379763200,1735764992000,1582778649600,637122585600,627085260800,575703936000,473249587200,297982336000,295620044800,260801715200,260536396800,249451571200,208223232000,177111936000,129089126400,135159552000,118496409600,97864038400,89994854400,91893939200,132480486400,66818816000,43913088000,23900800000,15000089600,18241689600,11297621333,6572160000,3000576000,2499072000,1986688000,1615104000,1642112000,453990400,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,31744000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1638400,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,163064486604800,149716521907200,94668546688000,81747868851200,55029891456000,50638493824000,50376874368000,27267411328000,15516214912000,14514162150400,13832863872000,7658552780800,9219065497600,8978600729600,8636298240000,6401920512000,4847839974400,2698908288000,2548497024000,1967582105600,1733970380800,1507144140800,944276736000,1090925004800,633645875200,576908006400,575703936000,529861555200,297982336000,295034854400,296959436800,274332851200,255071001600,208223232000,110517248000,129169177600,120139110400,118660889600,119942374400,92123571200,63367321600,14694144000,66818816000,43913728000,20467763200,17362048000,10064281600,6914816000,7335347200,3000576000,2538880000,1985766400,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,716800,41344000,34432000,15897600,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,768000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..739852106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota Utilization: Logical (%)" +Chaffinch,525.5863 +"Martin, Sand",503.7686 +"Warbler, Magnolia",401.8166 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.7235 +"Scaup, Lesser",86.3981 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +Bobolink,36.6866 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",2.5415 +Fulmar,1.2994 +"Grouse, Red",0.5757 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..739852106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota Utilization: Logical (%)" +Chaffinch,525.5863 +"Martin, Sand",503.7686 +"Warbler, Magnolia",401.8166 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.7235 +"Scaup, Lesser",86.3981 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +Bobolink,36.6866 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",2.5415 +Fulmar,1.2994 +"Grouse, Red",0.5757 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..739852106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota Utilization: Logical (%)" +Chaffinch,525.5863 +"Martin, Sand",503.7686 +"Warbler, Magnolia",401.8166 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.7235 +"Scaup, Lesser",86.3981 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +Bobolink,36.6866 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",2.5415 +Fulmar,1.2994 +"Grouse, Red",0.5757 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..739852106c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota Utilization: Logical (%)" +Chaffinch,525.5863 +"Martin, Sand",503.7686 +"Warbler, Magnolia",401.8166 +"Redstart, American",94.6685 +"Parula, Northern",92.1903 +"Kestrel, Lesser",89.7235 +"Scaup, Lesser",86.3981 +"Cowbird, Brown-headed",81.3354 +"Warbler, Black-and-white",54.5348 +"Waterthrush, Northern",50.6385 +Bobolink,36.6866 +"Warbler, Tennessee",27.6657 +"Bunting, Corn",4.3913 +"Chiffchaff, Iberian",2.5415 +Fulmar,1.2994 +"Grouse, Red",0.5757 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a12e5dc333 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" +2018-12-27,559.0662,503.7686,356.6841,94.6685,92.1894,89.6509,86.4123,80.9852,54.5348,50.6385,36.6866,27.6657,4.3913,2.5295,1.2999,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,559.2980,503.7686,386.8098,94.6685,92.1897,89.6635,86.4171,81.0600,54.5348,50.6385,36.6866,27.6657,4.3913,2.5403,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,559.5251,503.7686,394.8638,94.6685,92.1902,89.6635,86.4430,81.1463,54.5348,50.6385,36.6866,27.6657,4.3913,2.5503,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,559.7106,503.7686,411.6799,94.6685,92.1902,89.6635,86.4469,81.2056,54.5348,50.6385,36.6866,27.6657,4.3913,2.5608,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,522.9882,503.7686,424.4322,94.6685,92.1902,89.6634,86.4468,81.2960,54.5348,50.6385,36.6866,27.6657,4.3913,2.5616,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,508.2157,503.7686,426.8421,94.6685,92.1907,89.7794,86.4468,81.3910,54.5348,50.6385,36.6866,27.6657,4.3913,2.5552,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,508.4127,503.7686,410.6114,94.6685,92.1907,89.7794,86.3516,81.4694,54.5348,50.6385,36.6866,27.6657,4.3914,2.5887,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,492.5465,503.7686,405.1697,94.6685,92.1905,89.7904,86.3491,81.5373,54.5348,50.6385,36.6866,27.6657,4.3914,2.5670,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,492.8947,503.7686,404.1886,94.6685,92.1906,89.7904,86.3337,81.5954,54.5348,50.6385,36.6866,27.6657,4.3914,2.6057,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,493.2057,503.7686,396.8847,94.6685,92.1906,89.7904,86.3337,81.6682,54.5348,50.6385,36.6866,27.6657,4.3914,2.3563,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4e98ae7141 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" +2018-12,552.1176,503.7686,394.8939,94.6685,92.1900,89.6609,86.4332,81.1386,54.5348,50.6385,36.6866,27.6657,4.3913,2.5485,1.2995,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,499.0551,503.7686,408.7393,94.6685,92.1906,89.7860,86.3630,81.5322,54.5348,50.6385,36.6866,27.6657,4.3914,2.5346,1.2993,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b6d66f3d1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" +"2018 Q4",552.1176,503.7686,394.8939,94.6685,92.1900,89.6609,86.4332,81.1386,54.5348,50.6385,36.6866,27.6657,4.3913,2.5485,1.2995,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",499.0551,503.7686,408.7393,94.6685,92.1906,89.7860,86.3630,81.5322,54.5348,50.6385,36.6866,27.6657,4.3914,2.5346,1.2993,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..27ca96e060 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" +2018,552.1176,503.7686,394.8939,94.6685,92.1900,89.6609,86.4332,81.1386,54.5348,50.6385,36.6866,27.6657,4.3913,2.5485,1.2995,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,499.0551,503.7686,408.7393,94.6685,92.1906,89.7860,86.3630,81.5322,54.5348,50.6385,36.6866,27.6657,4.3914,2.5346,1.2993,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4be12805bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Physical Usage (Bytes)" +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bobolink,0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Corn",0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +Chiffchaff,0.0000 +"Chiffchaff, Iberian",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Grouse, Red",0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +"Martin, Sand",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Parula, Northern",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Redstart, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +"Warbler, Tennessee",0.0000 +"Waterthrush, Northern",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4be12805bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Physical Usage (Bytes)" +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bobolink,0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Corn",0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +Chiffchaff,0.0000 +"Chiffchaff, Iberian",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Grouse, Red",0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +"Martin, Sand",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Parula, Northern",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Redstart, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +"Warbler, Tennessee",0.0000 +"Waterthrush, Northern",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4be12805bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Physical Usage (Bytes)" +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bobolink,0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Corn",0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +Chiffchaff,0.0000 +"Chiffchaff, Iberian",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Grouse, Red",0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +"Martin, Sand",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Parula, Northern",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Redstart, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +"Warbler, Tennessee",0.0000 +"Waterthrush, Northern",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4be12805bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Physical Usage (Bytes)" +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bobolink,0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Corn",0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chaffinch,0.0000 +Chiffchaff,0.0000 +"Chiffchaff, Iberian",0.0000 +"Cowbird, Brown-headed",0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Grouse, Red",0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +"Martin, Sand",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Parula, Northern",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Redstart, American",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Black-and-white",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Magnolia",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +"Warbler, Tennessee",0.0000 +"Waterthrush, Northern",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..55bae7740a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..801793a2ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2d425225a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..254797e35b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f987bae084 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +Fulmar,116000014336000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Bunting, Corn",1000001536000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f987bae084 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +Fulmar,116000014336000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Bunting, Corn",1000001536000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f987bae084 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +Fulmar,116000014336000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Bunting, Corn",1000001536000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f987bae084 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"Quota: Soft Threshold (Bytes)" +"Cowbird, Brown-headed",200000000000000.0000 +Bobolink,150000001024000.0000 +Fulmar,116000014336000.0000 +"Grouse, Red",100000002048000.0000 +"Redstart, American",100000002048000.0000 +"Waterthrush, Northern",100000002048000.0000 +"Warbler, Black-and-white",50000003072000.0000 +"Warbler, Tennessee",50000003072000.0000 +Chaffinch,30000001024000.0000 +"Chiffchaff, Iberian",25000001536000.0000 +"Warbler, Magnolia",20000002048000.0000 +"Kestrel, Lesser",10000003072000.0000 +"Martin, Sand",10000003072000.0000 +"Parula, Northern",10000003072000.0000 +"Scaup, Lesser",10000003072000.0000 +"Bunting, Corn",1000001536000.0000 +Bittern,0.0000 +"Black-headed, Great",0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +"Bonelli's, Eastern",0.0000 +Bullfinch,0.0000 +"Bunting, Indigo",0.0000 +"Bunting, Lapland",0.0000 +"Bunting, Pine",0.0000 +"Bunting, Rock",0.0000 +"Bunting, Rustic",0.0000 +"Catbird, Grey",0.0000 +Chiffchaff,0.0000 +"Crow, Hooded",0.0000 +Cuckoo,0.0000 +"Cuckoo, Black-billed",0.0000 +"Desert, Asian",0.0000 +Dotterel,0.0000 +"Dowitcher, Long-billed",0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +Dunnock,0.0000 +"Falcon, Eleonora's",0.0000 +"Falcon, Red-footed",0.0000 +Fieldfare,0.0000 +"Finch, Citril",0.0000 +"Finch, Trumpeter",0.0000 +"Flycatcher, Brown",0.0000 +"Flycatcher, Spotted",0.0000 +"Flycatcher, Taiga",0.0000 +Goldcrest,0.0000 +Goldfinch,0.0000 +"Goose, Egyptian",0.0000 +"Goose, Red-breasted",0.0000 +Greenfinch,0.0000 +"Guillemot, Black",0.0000 +"Guillemot, Brunnich's",0.0000 +"Gull, Audouin's",0.0000 +"Gull, Bonaparte's",0.0000 +"Gull, Franklin's",0.0000 +"Gull, Glaucous",0.0000 +"Gull, Herring",0.0000 +"Gull, Sabine's",0.0000 +"Gull, Slaty-backed",0.0000 +"Gull, Yellow-legged",0.0000 +Jackdaw,0.0000 +Kingfisher,0.0000 +"Kingfisher, Belted",0.0000 +"Lark, Calandra",0.0000 +Linnet,0.0000 +"Martin, House",0.0000 +Merlin,0.0000 +"Nighthawk, Common",0.0000 +Nightingale,0.0000 +Nightjar,0.0000 +Nuthatch,0.0000 +"Nuthatch, Red-breasted",0.0000 +Osprey,0.0000 +"Owl, Little",0.0000 +"Owl, Scops",0.0000 +"Owl, Short-eared",0.0000 +"Owl, Snowy",0.0000 +"Petrel, Fea's",0.0000 +"Phalarope, Red-necked",0.0000 +"Phalarope, Wilson's",0.0000 +"Pipit, Olive-backed",0.0000 +"Pipit, Red-throated",0.0000 +"Pipit, Tawny",0.0000 +"Pipit, Tree",0.0000 +Puffin,0.0000 +"Redpoll, Arctic",0.0000 +"Redpoll, Mealy",0.0000 +"Redshank, Spotted",0.0000 +"Robin, Rufous-tailed",0.0000 +"Robin, White-throated",0.0000 +"Rosefinch, Common",0.0000 +"Sandpiper, Baird's",0.0000 +"Sandpiper, Buff-breasted",0.0000 +"Sandpiper, Purple",0.0000 +"Sandpiper, Western",0.0000 +"Sandpiper, White-rumped",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Macaronesian",0.0000 +"Shrike, Brown",0.0000 +"Skua, Arctic",0.0000 +"Skua, Pomarine",0.0000 +Skylark,0.0000 +Smew,0.0000 +Snipe,0.0000 +"Snipe, Great",0.0000 +"Sparrow, Lark",0.0000 +"Sparrow, Song",0.0000 +"Sparrow, Tree",0.0000 +"Spotted, Lesser",0.0000 +"Starling, Rose-coloured",0.0000 +"Stonechat, Siberian",0.0000 +Swift,0.0000 +"Swift, Chimney",0.0000 +"Swift, Little",0.0000 +"Swift, Pacific",0.0000 +"Tanager, Summer",0.0000 +"Tern, Black",0.0000 +"Tern, Cabot's",0.0000 +"Tern, Caspian",0.0000 +"Tern, Common",0.0000 +"Tern, Gull-billed",0.0000 +"Thrush, Dusky",0.0000 +"Thrush, Eyebrowed",0.0000 +"Thrush, Hermit",0.0000 +"Thrush, Red-throated",0.0000 +"Thrush, Rock",0.0000 +"Thrush, White's",0.0000 +"Thrush, Wood",0.0000 +"Tit, Bearded",0.0000 +"Tit, Long-tailed",0.0000 +"Tit, Willow",0.0000 +Twite,0.0000 +Veery,0.0000 +"Wagtail, Pied",0.0000 +"Wagtail, Yellow",0.0000 +"Warbler, Arctic",0.0000 +"Warbler, Barred",0.0000 +"Warbler, Blackburnian",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Fan-tailed",0.0000 +"Warbler, Green",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Icterine",0.0000 +"Warbler, Marmora's",0.0000 +"Warbler, Paddyfield",0.0000 +"Warbler, Radde's",0.0000 +"Warbler, Reed",0.0000 +"Warbler, Savi's",0.0000 +"Warbler, Subalpine",0.0000 +"Warbler, Sykes's",0.0000 +Woodcock,0.0000 +"Woodpecker, Green",0.0000 +Woodpigeon,0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0cdffd4872 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" +2018-12-27,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..96b11f97d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" +2018-12,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..359f69819a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" +"2018 Q4",200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3243cc8528 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" +2018,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b530a97ee2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv @@ -0,0 +1,165 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"User Count (Number of Users)" +"Dowitcher, Short-billed",20 +Fulmar,15 +"Tern, Caspian",15 +"Chiffchaff, Iberian",12 +"Starling, Rose-coloured",11 +"Lark, Calandra",10 +"Swift, Little",10 +"Flycatcher, Taiga",9 +"Scaup, Lesser",8 +Blackbird,6 +"Petrel, Fea's",5 +"Pipit, Tree",5 +"Redshank, Spotted",5 +"Rosefinch, Common",5 +"Bunting, Pine",4 +Chaffinch,4 +Chiffchaff,4 +"Pipit, Red-throated",4 +"Thrush, Red-throated",4 +"Warbler, Barred",4 +"Warbler, Fan-tailed",4 +"Warbler, Hooded",4 +Bittern,3 +"Bluetail, Red-flanked",3 +Fieldfare,3 +"Sparrow, Song",3 +"Tern, Gull-billed",3 +"Wagtail, Pied",3 +"Warbler, Arctic",3 +"Warbler, Blackpoll",3 +"Warbler, Cetti's",3 +"Warbler, Magnolia",3 +"Warbler, Subalpine",3 +"Bunting, Rustic",2 +"Falcon, Eleonora's",2 +"Finch, Citril",2 +"Goose, Red-breasted",2 +Jackdaw,2 +"Kestrel, Lesser",2 +"Martin, Sand",2 +Nuthatch,2 +"Parula, Northern",2 +"Shearwater, Balearic",2 +"Shearwater, Macaronesian",2 +"Sparrow, Tree",2 +"Spotted, Lesser",2 +"Swift, Chimney",2 +"Tanager, Summer",2 +"Thrush, Hermit",2 +"Wagtail, Yellow",2 +"Warbler, Icterine",2 +"Warbler, Savi's",2 +"Warbler, Sykes's",2 +"Black-headed, Great",1 +Bobolink,1 +"Bonelli's, Eastern",1 +Bullfinch,1 +"Bunting, Corn",1 +"Bunting, Indigo",1 +"Bunting, Lapland",1 +"Bunting, Rock",1 +"Catbird, Grey",1 +"Cowbird, Brown-headed",1 +"Crow, Hooded",1 +Cuckoo,1 +"Cuckoo, Black-billed",1 +"Desert, Asian",1 +Dotterel,1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +"Flycatcher, Brown",1 +"Flycatcher, Spotted",1 +Goldcrest,1 +Goldfinch,1 +"Goose, Egyptian",1 +Greenfinch,1 +"Grouse, Red",1 +"Guillemot, Black",1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Bonaparte's",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Herring",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Yellow-legged",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Linnet,1 +"Martin, House",1 +Merlin,1 +"Nighthawk, Common",1 +Nightingale,1 +Nightjar,1 +"Nuthatch, Red-breasted",1 +Osprey,1 +"Owl, Little",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Pipit, Olive-backed",1 +"Pipit, Tawny",1 +Puffin,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +"Redstart, American",1 +"Robin, Rufous-tailed",1 +"Robin, White-throated",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Purple",1 +"Sandpiper, Western",1 +"Sandpiper, White-rumped",1 +"Shrike, Brown",1 +"Skua, Arctic",1 +"Skua, Pomarine",1 +Skylark,1 +Smew,1 +Snipe,1 +"Snipe, Great",1 +"Sparrow, Lark",1 +"Stonechat, Siberian",1 +Swift,1 +"Swift, Pacific",1 +"Tern, Black",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Thrush, Dusky",1 +"Thrush, Eyebrowed",1 +"Thrush, Rock",1 +"Thrush, White's",1 +"Thrush, Wood",1 +"Tit, Bearded",1 +"Tit, Long-tailed",1 +"Tit, Willow",1 +Twite,1 +Veery,1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Green",1 +"Warbler, Marmora's",1 +"Warbler, Paddyfield",1 +"Warbler, Radde's",1 +"Warbler, Reed",1 +"Warbler, Tennessee",1 +"Waterthrush, Northern",1 +Woodcock,1 +"Woodpecker, Green",1 +Woodpigeon,1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b530a97ee2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv @@ -0,0 +1,165 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"User Count (Number of Users)" +"Dowitcher, Short-billed",20 +Fulmar,15 +"Tern, Caspian",15 +"Chiffchaff, Iberian",12 +"Starling, Rose-coloured",11 +"Lark, Calandra",10 +"Swift, Little",10 +"Flycatcher, Taiga",9 +"Scaup, Lesser",8 +Blackbird,6 +"Petrel, Fea's",5 +"Pipit, Tree",5 +"Redshank, Spotted",5 +"Rosefinch, Common",5 +"Bunting, Pine",4 +Chaffinch,4 +Chiffchaff,4 +"Pipit, Red-throated",4 +"Thrush, Red-throated",4 +"Warbler, Barred",4 +"Warbler, Fan-tailed",4 +"Warbler, Hooded",4 +Bittern,3 +"Bluetail, Red-flanked",3 +Fieldfare,3 +"Sparrow, Song",3 +"Tern, Gull-billed",3 +"Wagtail, Pied",3 +"Warbler, Arctic",3 +"Warbler, Blackpoll",3 +"Warbler, Cetti's",3 +"Warbler, Magnolia",3 +"Warbler, Subalpine",3 +"Bunting, Rustic",2 +"Falcon, Eleonora's",2 +"Finch, Citril",2 +"Goose, Red-breasted",2 +Jackdaw,2 +"Kestrel, Lesser",2 +"Martin, Sand",2 +Nuthatch,2 +"Parula, Northern",2 +"Shearwater, Balearic",2 +"Shearwater, Macaronesian",2 +"Sparrow, Tree",2 +"Spotted, Lesser",2 +"Swift, Chimney",2 +"Tanager, Summer",2 +"Thrush, Hermit",2 +"Wagtail, Yellow",2 +"Warbler, Icterine",2 +"Warbler, Savi's",2 +"Warbler, Sykes's",2 +"Black-headed, Great",1 +Bobolink,1 +"Bonelli's, Eastern",1 +Bullfinch,1 +"Bunting, Corn",1 +"Bunting, Indigo",1 +"Bunting, Lapland",1 +"Bunting, Rock",1 +"Catbird, Grey",1 +"Cowbird, Brown-headed",1 +"Crow, Hooded",1 +Cuckoo,1 +"Cuckoo, Black-billed",1 +"Desert, Asian",1 +Dotterel,1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +"Flycatcher, Brown",1 +"Flycatcher, Spotted",1 +Goldcrest,1 +Goldfinch,1 +"Goose, Egyptian",1 +Greenfinch,1 +"Grouse, Red",1 +"Guillemot, Black",1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Bonaparte's",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Herring",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Yellow-legged",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Linnet,1 +"Martin, House",1 +Merlin,1 +"Nighthawk, Common",1 +Nightingale,1 +Nightjar,1 +"Nuthatch, Red-breasted",1 +Osprey,1 +"Owl, Little",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Pipit, Olive-backed",1 +"Pipit, Tawny",1 +Puffin,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +"Redstart, American",1 +"Robin, Rufous-tailed",1 +"Robin, White-throated",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Purple",1 +"Sandpiper, Western",1 +"Sandpiper, White-rumped",1 +"Shrike, Brown",1 +"Skua, Arctic",1 +"Skua, Pomarine",1 +Skylark,1 +Smew,1 +Snipe,1 +"Snipe, Great",1 +"Sparrow, Lark",1 +"Stonechat, Siberian",1 +Swift,1 +"Swift, Pacific",1 +"Tern, Black",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Thrush, Dusky",1 +"Thrush, Eyebrowed",1 +"Thrush, Rock",1 +"Thrush, White's",1 +"Thrush, Wood",1 +"Tit, Bearded",1 +"Tit, Long-tailed",1 +"Tit, Willow",1 +Twite,1 +Veery,1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Green",1 +"Warbler, Marmora's",1 +"Warbler, Paddyfield",1 +"Warbler, Radde's",1 +"Warbler, Reed",1 +"Warbler, Tennessee",1 +"Waterthrush, Northern",1 +Woodcock,1 +"Woodpecker, Green",1 +Woodpigeon,1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b530a97ee2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,165 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"User Count (Number of Users)" +"Dowitcher, Short-billed",20 +Fulmar,15 +"Tern, Caspian",15 +"Chiffchaff, Iberian",12 +"Starling, Rose-coloured",11 +"Lark, Calandra",10 +"Swift, Little",10 +"Flycatcher, Taiga",9 +"Scaup, Lesser",8 +Blackbird,6 +"Petrel, Fea's",5 +"Pipit, Tree",5 +"Redshank, Spotted",5 +"Rosefinch, Common",5 +"Bunting, Pine",4 +Chaffinch,4 +Chiffchaff,4 +"Pipit, Red-throated",4 +"Thrush, Red-throated",4 +"Warbler, Barred",4 +"Warbler, Fan-tailed",4 +"Warbler, Hooded",4 +Bittern,3 +"Bluetail, Red-flanked",3 +Fieldfare,3 +"Sparrow, Song",3 +"Tern, Gull-billed",3 +"Wagtail, Pied",3 +"Warbler, Arctic",3 +"Warbler, Blackpoll",3 +"Warbler, Cetti's",3 +"Warbler, Magnolia",3 +"Warbler, Subalpine",3 +"Bunting, Rustic",2 +"Falcon, Eleonora's",2 +"Finch, Citril",2 +"Goose, Red-breasted",2 +Jackdaw,2 +"Kestrel, Lesser",2 +"Martin, Sand",2 +Nuthatch,2 +"Parula, Northern",2 +"Shearwater, Balearic",2 +"Shearwater, Macaronesian",2 +"Sparrow, Tree",2 +"Spotted, Lesser",2 +"Swift, Chimney",2 +"Tanager, Summer",2 +"Thrush, Hermit",2 +"Wagtail, Yellow",2 +"Warbler, Icterine",2 +"Warbler, Savi's",2 +"Warbler, Sykes's",2 +"Black-headed, Great",1 +Bobolink,1 +"Bonelli's, Eastern",1 +Bullfinch,1 +"Bunting, Corn",1 +"Bunting, Indigo",1 +"Bunting, Lapland",1 +"Bunting, Rock",1 +"Catbird, Grey",1 +"Cowbird, Brown-headed",1 +"Crow, Hooded",1 +Cuckoo,1 +"Cuckoo, Black-billed",1 +"Desert, Asian",1 +Dotterel,1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +"Flycatcher, Brown",1 +"Flycatcher, Spotted",1 +Goldcrest,1 +Goldfinch,1 +"Goose, Egyptian",1 +Greenfinch,1 +"Grouse, Red",1 +"Guillemot, Black",1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Bonaparte's",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Herring",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Yellow-legged",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Linnet,1 +"Martin, House",1 +Merlin,1 +"Nighthawk, Common",1 +Nightingale,1 +Nightjar,1 +"Nuthatch, Red-breasted",1 +Osprey,1 +"Owl, Little",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Pipit, Olive-backed",1 +"Pipit, Tawny",1 +Puffin,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +"Redstart, American",1 +"Robin, Rufous-tailed",1 +"Robin, White-throated",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Purple",1 +"Sandpiper, Western",1 +"Sandpiper, White-rumped",1 +"Shrike, Brown",1 +"Skua, Arctic",1 +"Skua, Pomarine",1 +Skylark,1 +Smew,1 +Snipe,1 +"Snipe, Great",1 +"Sparrow, Lark",1 +"Stonechat, Siberian",1 +Swift,1 +"Swift, Pacific",1 +"Tern, Black",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Thrush, Dusky",1 +"Thrush, Eyebrowed",1 +"Thrush, Rock",1 +"Thrush, White's",1 +"Thrush, Wood",1 +"Tit, Bearded",1 +"Tit, Long-tailed",1 +"Tit, Willow",1 +Twite,1 +Veery,1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Green",1 +"Warbler, Marmora's",1 +"Warbler, Paddyfield",1 +"Warbler, Radde's",1 +"Warbler, Reed",1 +"Warbler, Tennessee",1 +"Waterthrush, Northern",1 +Woodcock,1 +"Woodpecker, Green",1 +Woodpigeon,1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b530a97ee2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv @@ -0,0 +1,165 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +PI,"User Count (Number of Users)" +"Dowitcher, Short-billed",20 +Fulmar,15 +"Tern, Caspian",15 +"Chiffchaff, Iberian",12 +"Starling, Rose-coloured",11 +"Lark, Calandra",10 +"Swift, Little",10 +"Flycatcher, Taiga",9 +"Scaup, Lesser",8 +Blackbird,6 +"Petrel, Fea's",5 +"Pipit, Tree",5 +"Redshank, Spotted",5 +"Rosefinch, Common",5 +"Bunting, Pine",4 +Chaffinch,4 +Chiffchaff,4 +"Pipit, Red-throated",4 +"Thrush, Red-throated",4 +"Warbler, Barred",4 +"Warbler, Fan-tailed",4 +"Warbler, Hooded",4 +Bittern,3 +"Bluetail, Red-flanked",3 +Fieldfare,3 +"Sparrow, Song",3 +"Tern, Gull-billed",3 +"Wagtail, Pied",3 +"Warbler, Arctic",3 +"Warbler, Blackpoll",3 +"Warbler, Cetti's",3 +"Warbler, Magnolia",3 +"Warbler, Subalpine",3 +"Bunting, Rustic",2 +"Falcon, Eleonora's",2 +"Finch, Citril",2 +"Goose, Red-breasted",2 +Jackdaw,2 +"Kestrel, Lesser",2 +"Martin, Sand",2 +Nuthatch,2 +"Parula, Northern",2 +"Shearwater, Balearic",2 +"Shearwater, Macaronesian",2 +"Sparrow, Tree",2 +"Spotted, Lesser",2 +"Swift, Chimney",2 +"Tanager, Summer",2 +"Thrush, Hermit",2 +"Wagtail, Yellow",2 +"Warbler, Icterine",2 +"Warbler, Savi's",2 +"Warbler, Sykes's",2 +"Black-headed, Great",1 +Bobolink,1 +"Bonelli's, Eastern",1 +Bullfinch,1 +"Bunting, Corn",1 +"Bunting, Indigo",1 +"Bunting, Lapland",1 +"Bunting, Rock",1 +"Catbird, Grey",1 +"Cowbird, Brown-headed",1 +"Crow, Hooded",1 +Cuckoo,1 +"Cuckoo, Black-billed",1 +"Desert, Asian",1 +Dotterel,1 +"Dowitcher, Long-billed",1 +Dunlin,1 +Dunnock,1 +"Falcon, Red-footed",1 +"Finch, Trumpeter",1 +"Flycatcher, Brown",1 +"Flycatcher, Spotted",1 +Goldcrest,1 +Goldfinch,1 +"Goose, Egyptian",1 +Greenfinch,1 +"Grouse, Red",1 +"Guillemot, Black",1 +"Guillemot, Brunnich's",1 +"Gull, Audouin's",1 +"Gull, Bonaparte's",1 +"Gull, Franklin's",1 +"Gull, Glaucous",1 +"Gull, Herring",1 +"Gull, Sabine's",1 +"Gull, Slaty-backed",1 +"Gull, Yellow-legged",1 +Kingfisher,1 +"Kingfisher, Belted",1 +Linnet,1 +"Martin, House",1 +Merlin,1 +"Nighthawk, Common",1 +Nightingale,1 +Nightjar,1 +"Nuthatch, Red-breasted",1 +Osprey,1 +"Owl, Little",1 +"Owl, Scops",1 +"Owl, Short-eared",1 +"Owl, Snowy",1 +"Phalarope, Red-necked",1 +"Phalarope, Wilson's",1 +"Pipit, Olive-backed",1 +"Pipit, Tawny",1 +Puffin,1 +"Redpoll, Arctic",1 +"Redpoll, Mealy",1 +"Redstart, American",1 +"Robin, Rufous-tailed",1 +"Robin, White-throated",1 +"Sandpiper, Baird's",1 +"Sandpiper, Buff-breasted",1 +"Sandpiper, Purple",1 +"Sandpiper, Western",1 +"Sandpiper, White-rumped",1 +"Shrike, Brown",1 +"Skua, Arctic",1 +"Skua, Pomarine",1 +Skylark,1 +Smew,1 +Snipe,1 +"Snipe, Great",1 +"Sparrow, Lark",1 +"Stonechat, Siberian",1 +Swift,1 +"Swift, Pacific",1 +"Tern, Black",1 +"Tern, Cabot's",1 +"Tern, Common",1 +"Thrush, Dusky",1 +"Thrush, Eyebrowed",1 +"Thrush, Rock",1 +"Thrush, White's",1 +"Thrush, Wood",1 +"Tit, Bearded",1 +"Tit, Long-tailed",1 +"Tit, Willow",1 +Twite,1 +Veery,1 +"Warbler, Black-and-white",1 +"Warbler, Blackburnian",1 +"Warbler, Green",1 +"Warbler, Marmora's",1 +"Warbler, Paddyfield",1 +"Warbler, Radde's",1 +"Warbler, Reed",1 +"Warbler, Tennessee",1 +"Waterthrush, Northern",1 +Woodcock,1 +"Woodpecker, Green",1 +Woodpigeon,1 +"Yellowthroat, Common",1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ebf51e1306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" +2018-12-27,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-28,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-29,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-30,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-31,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-01,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-02,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-03,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-04,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-05,20,15,15,12,11,10,10,9,8,5,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0de131a004 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" +2018-12,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d2da55e51e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" +"2018 Q4",20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2019 Q1",20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9f783d4b63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by PI" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" +2018,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64ef4e1169 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233080885.7000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c1d6742a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] File Count (Number of files)" +2018-12-27,230789611 +2018-12-28,231639632 +2018-12-29,232584570 +2018-12-30,232798439 +2018-12-31,233180528 +2019-01-01,233363532 +2019-01-02,233624264 +2019-01-03,233894553 +2019-01-04,234402500 +2019-01-05,234531228 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8e6be381b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] File Count (Number of files)" +2018-12,232216155 +2019-01,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7b6dd2528c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] File Count (Number of files)" +"2018 Q4",232216155 +"2019 Q1",233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c0fba41eaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] File Count (Number of files)" +2018,232216155 +2019,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..da955f8dca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota: Hard Threshold (Bytes)" +2018-12-27,1347045040128000 +2018-12-28,1347045040128000 +2018-12-29,1347045040128000 +2018-12-30,1347045040128000 +2018-12-31,1347045040128000 +2019-01-01,1347045040128000 +2019-01-02,1347045040128000 +2019-01-03,1347045040128000 +2019-01-04,1347045040128000 +2019-01-05,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..479dd26774 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota: Hard Threshold (Bytes)" +2018-12,1347045040128000 +2019-01,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8d27bab225 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Hard Threshold (Bytes)" +"2018 Q4",1347045040128000 +"2019 Q1",1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5933861663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota: Hard Threshold (Bytes)" +2018,1347045040128000 +2019,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..03853884ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790316944806400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1bc3c1f829 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Logical Usage (Bytes)" +2018-12-27,794330985600000 +2018-12-28,800728364160000 +2018-12-29,802014395776000 +2018-12-30,805714147072000 +2018-12-31,802866164736000 +2019-01-01,795302417280000 +2019-01-02,783191268480000 +2019-01-03,775607716480000 +2019-01-04,774046449152000 +2019-01-05,769367539328000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..83934bf99f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Logical Usage (Bytes)" +2018-12,801135330517333 +2019-01,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d5d3e6525b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Logical Usage (Bytes)" +"2018 Q4",801135330517333 +"2019 Q1",779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fa156b902 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Logical Usage (Bytes)" +2018,801135330517333 +2019,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1baf9f847a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4803 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ab44a408ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota Utilization: Logical (%)" +2018-12-27,80.8891 +2018-12-28,81.5406 +2018-12-29,81.6715 +2018-12-30,82.0483 +2018-12-31,81.7583 +2019-01-01,80.9880 +2019-01-02,79.7547 +2019-01-03,78.9825 +2019-01-04,78.8235 +2019-01-05,78.3470 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76c3e3cee7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota Utilization: Logical (%)" +2018-12,81.5820 +2019-01,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4241b6743e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota Utilization: Logical (%)" +"2018 Q4",81.5820 +"2019 Q1",79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..57d6f0ba66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota Utilization: Logical (%)" +2018,81.5820 +2019,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ee609b2aec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Physical Usage (Bytes)" +2018-12-27,0 +2018-12-28,0 +2018-12-29,0 +2018-12-30,0 +2018-12-31,0 +2019-01-01,0 +2019-01-02,0 +2019-01-03,0 +2019-01-04,0 +2019-01-05,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cbaf9fed26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Physical Usage (Bytes)" +2018-12,0 +2019-01,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ca0d3f385d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Physical Usage (Bytes)" +"2018 Q4",0 +"2019 Q1",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2f8df1ba14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Physical Usage (Bytes)" +2018,0 +2019,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0649370234 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota: Soft Threshold (Bytes)" +2018-12-27,982000046080000 +2018-12-28,982000046080000 +2018-12-29,982000046080000 +2018-12-30,982000046080000 +2018-12-31,982000046080000 +2019-01-01,982000046080000 +2019-01-02,982000046080000 +2019-01-03,982000046080000 +2019-01-04,982000046080000 +2019-01-05,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..22928df51a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota: Soft Threshold (Bytes)" +2018-12,982000046080000 +2019-01,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c8b242a87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Soft Threshold (Bytes)" +"2018 Q4",982000046080000 +"2019 Q1",982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bbf34e4afe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota: Soft Threshold (Bytes)" +2018,982000046080000 +2019,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..95d863cb84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] User Count (Number of Users)" +2018-12-27,343 +2018-12-28,343 +2018-12-29,344 +2018-12-30,344 +2018-12-31,344 +2019-01-01,344 +2019-01-02,344 +2019-01-03,344 +2019-01-04,344 +2019-01-05,343 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..61127de9ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] User Count (Number of Users)" +2018-12,344 +2019-01,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b3acb9d89b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] User Count (Number of Users)" +"2018 Q4",344 +"2019 Q1",344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fc6dbefe0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] User Count (Number of Users)" +2018,344 +2019,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..aec7ca19b6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"File Count (Number of files)" +torx,122746184.9000 +recex,110334700.8000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..cf1dc3a5b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"File Count (Number of files)" +torx,122754984.5000 +recex,110334701.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..cf1dc3a5b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"File Count (Number of files)" +torx,122754984.5000 +recex,110334701.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..cf1dc3a5b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"File Count (Number of files)" +torx,122754984.5000 +recex,110334701.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1aae43943c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" +2018-12-27,120446355,110343256 +2018-12-28,121284316,110355316 +2018-12-29,122229161,110355409 +2018-12-30,122472556,110325883 +2018-12-31,122854575,110325953 +2019-01-01,123038791,110324741 +2019-01-02,123299173,110325091 +2019-01-03,123569356,110325197 +2019-01-04,124064952,110337548 +2019-01-05,124202614,110328614 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fd9772aad5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" +2018-12,121874992,110341163 +2019-01,123634977,110328239 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..140833caf4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" +"2018 Q4",121874992,110341163 +"2019 Q1",123634977,110328239 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2c38d66366 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" +2018,121874992,110341163 +2019,123634977,110328239 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bc9e360830 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Hard Threshold (Bytes)" +torx,1219010023424000.0000 +recex,128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bc9e360830 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Hard Threshold (Bytes)" +torx,1219010023424000.0000 +recex,128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bc9e360830 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Hard Threshold (Bytes)" +torx,1219010023424000.0000 +recex,128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bc9e360830 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Hard Threshold (Bytes)" +torx,1219010023424000.0000 +recex,128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9a71434747 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" +2018-12-27,1219010023424000,128035016704000 +2018-12-28,1219010023424000,128035016704000 +2018-12-29,1219010023424000,128035016704000 +2018-12-30,1219010023424000,128035016704000 +2018-12-31,1219010023424000,128035016704000 +2019-01-01,1219010023424000,128035016704000 +2019-01-02,1219010023424000,128035016704000 +2019-01-03,1219010023424000,128035016704000 +2019-01-04,1219010023424000,128035016704000 +2019-01-05,1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7ae1b90959 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" +2018-12,1219010023424000,128035016704000 +2019-01,1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..fffef8396d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" +"2018 Q4",1219010023424000,128035016704000 +"2019 Q1",1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b981a45057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" +2018,1219010023424000,128035016704000 +2019,1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8a5dc61554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Logical Usage (Bytes)" +torx,710908401843200.0000 +recex,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7220abd28f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Logical Usage (Bytes)" +torx,710910661418666.5000 +recex,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7220abd28f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Logical Usage (Bytes)" +torx,710910661418666.5000 +recex,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7220abd28f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Logical Usage (Bytes)" +torx,710910661418666.5000 +recex,79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4cd248b934 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" +2018-12-27,715282924160000,79048061440000 +2018-12-28,721262893312000,79465470848000 +2018-12-29,722443911680000,79570484096000 +2018-12-30,726058832640000,79655314432000 +2018-12-31,723192367616000,79673797120000 +2019-01-01,715608448384000,79693968896000 +2019-01-02,703404670464000,79786598016000 +2019-01-03,696778584320000,78829132160000 +2019-01-04,694888852608000,79157596544000 +2019-01-05,690162533248000,79205006080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ba4148859d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" +2018-12,721652704930133,79482625587200 +2019-01,700168617907200,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d3a4530b00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" +"2018 Q4",721652704930133,79482625587200 +"2019 Q1",700168617907200,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..763cf5aa5c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" +2018,721652704930133,79482625587200 +2019,700168617907200,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..abd3e0e925 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota Utilization: Logical (%)" +torx,83.1472 +recex,62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3909913bdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota Utilization: Logical (%)" +torx,83.1474 +recex,62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3909913bdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota Utilization: Logical (%)" +torx,83.1474 +recex,62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3909913bdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota Utilization: Logical (%)" +torx,83.1474 +recex,62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9edc58213f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" +2018-12-27,83.6588,62.2426 +2018-12-28,84.3582,62.5712 +2018-12-29,84.4964,62.6539 +2018-12-30,84.9192,62.7207 +2018-12-31,84.5839,62.7353 +2019-01-01,83.6969,62.7511 +2019-01-02,82.2696,62.8241 +2019-01-03,81.4946,62.0702 +2019-01-04,81.2735,62.3288 +2019-01-05,80.7208,62.3661 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a267b65f4a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" +2018-12,84.4038,62.5847 +2019-01,81.8911,62.4681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..46afecda27 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" +"2018 Q4",84.4038,62.5847 +"2019 Q1",81.8911,62.4681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2af9f18cad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" +2018,84.4038,62.5847 +2019,81.8911,62.4681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b569c19465 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Physical Usage (Bytes)" +recex,0.0000 +torx,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b569c19465 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Physical Usage (Bytes)" +recex,0.0000 +torx,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b569c19465 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Physical Usage (Bytes)" +recex,0.0000 +torx,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b569c19465 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Physical Usage (Bytes)" +recex,0.0000 +torx,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..24c01381b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" +2018-12-27,0,0 +2018-12-28,0,0 +2018-12-29,0,0 +2018-12-30,0,0 +2018-12-31,0,0 +2019-01-01,0,0 +2019-01-02,0,0 +2019-01-03,0,0 +2019-01-04,0,0 +2019-01-05,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7653037fc4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" +2018-12,0,0 +2019-01,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..03502c25c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" +"2018 Q4",0,0 +"2019 Q1",0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3f4f1b3976 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" +2018,0,0 +2019,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0eb683df76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Soft Threshold (Bytes)" +torx,855000018944000.0000 +recex,127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0eb683df76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Soft Threshold (Bytes)" +torx,855000018944000.0000 +recex,127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0eb683df76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Soft Threshold (Bytes)" +torx,855000018944000.0000 +recex,127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0eb683df76 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"Quota: Soft Threshold (Bytes)" +torx,855000018944000.0000 +recex,127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0715796919 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" +2018-12-27,855000018944000,127000027136000 +2018-12-28,855000018944000,127000027136000 +2018-12-29,855000018944000,127000027136000 +2018-12-30,855000018944000,127000027136000 +2018-12-31,855000018944000,127000027136000 +2019-01-01,855000018944000,127000027136000 +2019-01-02,855000018944000,127000027136000 +2019-01-03,855000018944000,127000027136000 +2019-01-04,855000018944000,127000027136000 +2019-01-05,855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..51e7a800ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" +2018-12,855000018944000,127000027136000 +2019-01,855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..580bc844ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" +"2018 Q4",855000018944000,127000027136000 +"2019 Q1",855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b090391581 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" +2018,855000018944000,127000027136000 +2019,855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0319dab150 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"User Count (Number of Users)" +torx,341 +recex,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0319dab150 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"User Count (Number of Users)" +torx,341 +recex,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0319dab150 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"User Count (Number of Users)" +torx,341 +recex,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0319dab150 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Resource,"User Count (Number of Users)" +torx,341 +recex,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ae3b601282 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" +2018-12-27,340,10 +2018-12-28,340,10 +2018-12-29,341,10 +2018-12-30,341,10 +2018-12-31,341,10 +2019-01-01,341,10 +2019-01-02,341,10 +2019-01-03,341,10 +2019-01-04,341,10 +2019-01-05,340,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cecd335358 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" +2018-12,341,10 +2019-01,341,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..182c846b7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" +"2018 Q4",341,10 +"2019 Q1",341,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..87eb0097bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" +2018,341,10 +2019,341,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e9a8e847ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","File Count (Number of files)" +"Storage grid",122746184.9000 +"Tape storage resource",110334700.8000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4e46f43183 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","File Count (Number of files)" +"Storage grid",122754984.5000 +"Tape storage resource",110334701.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4e46f43183 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","File Count (Number of files)" +"Storage grid",122754984.5000 +"Tape storage resource",110334701.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4e46f43183 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","File Count (Number of files)" +"Storage grid",122754984.5000 +"Tape storage resource",110334701.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d43bea24c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" +2018-12-27,120446355,110343256 +2018-12-28,121284316,110355316 +2018-12-29,122229161,110355409 +2018-12-30,122472556,110325883 +2018-12-31,122854575,110325953 +2019-01-01,123038791,110324741 +2019-01-02,123299173,110325091 +2019-01-03,123569356,110325197 +2019-01-04,124064952,110337548 +2019-01-05,124202614,110328614 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a722ad8a11 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" +2018-12,121874992,110341163 +2019-01,123634977,110328239 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e73aa6d5e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" +"2018 Q4",121874992,110341163 +"2019 Q1",123634977,110328239 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8b352bc54d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" +2018,121874992,110341163 +2019,123634977,110328239 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6236d5ee10 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Hard Threshold (Bytes)" +"Storage grid",1219010023424000.0000 +"Tape storage resource",128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6236d5ee10 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Hard Threshold (Bytes)" +"Storage grid",1219010023424000.0000 +"Tape storage resource",128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6236d5ee10 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Hard Threshold (Bytes)" +"Storage grid",1219010023424000.0000 +"Tape storage resource",128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6236d5ee10 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Hard Threshold (Bytes)" +"Storage grid",1219010023424000.0000 +"Tape storage resource",128035016704000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c3de06ab6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" +2018-12-27,1219010023424000,128035016704000 +2018-12-28,1219010023424000,128035016704000 +2018-12-29,1219010023424000,128035016704000 +2018-12-30,1219010023424000,128035016704000 +2018-12-31,1219010023424000,128035016704000 +2019-01-01,1219010023424000,128035016704000 +2019-01-02,1219010023424000,128035016704000 +2019-01-03,1219010023424000,128035016704000 +2019-01-04,1219010023424000,128035016704000 +2019-01-05,1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0a4fca0a60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" +2018-12,1219010023424000,128035016704000 +2019-01,1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..31cfa02062 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" +"2018 Q4",1219010023424000,128035016704000 +"2019 Q1",1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..90ec6aa555 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" +2018,1219010023424000,128035016704000 +2019,1219010023424000,128035016704000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..753fa4d09c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Logical Usage (Bytes)" +"Storage grid",710908401843200.0000 +"Tape storage resource",79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f36bbecca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Logical Usage (Bytes)" +"Storage grid",710910661418666.5000 +"Tape storage resource",79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f36bbecca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Logical Usage (Bytes)" +"Storage grid",710910661418666.5000 +"Tape storage resource",79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f36bbecca0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Logical Usage (Bytes)" +"Storage grid",710910661418666.5000 +"Tape storage resource",79408542963200.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5048461a8f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" +2018-12-27,715282924160000,79048061440000 +2018-12-28,721262893312000,79465470848000 +2018-12-29,722443911680000,79570484096000 +2018-12-30,726058832640000,79655314432000 +2018-12-31,723192367616000,79673797120000 +2019-01-01,715608448384000,79693968896000 +2019-01-02,703404670464000,79786598016000 +2019-01-03,696778584320000,78829132160000 +2019-01-04,694888852608000,79157596544000 +2019-01-05,690162533248000,79205006080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cf85dc90fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" +2018-12,721652704930133,79482625587200 +2019-01,700168617907200,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d98ed0a4eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" +"2018 Q4",721652704930133,79482625587200 +"2019 Q1",700168617907200,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c47572f0a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" +2018,721652704930133,79482625587200 +2019,700168617907200,79334460339200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..84738c0c69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota Utilization: Logical (%)" +"Storage grid",83.1472 +"Tape storage resource",62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..aebb91b045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota Utilization: Logical (%)" +"Storage grid",83.1474 +"Tape storage resource",62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..aebb91b045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota Utilization: Logical (%)" +"Storage grid",83.1474 +"Tape storage resource",62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..aebb91b045 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota Utilization: Logical (%)" +"Storage grid",83.1474 +"Tape storage resource",62.5264 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ceb2c54bc4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" +2018-12-27,83.6588,62.2426 +2018-12-28,84.3582,62.5712 +2018-12-29,84.4964,62.6539 +2018-12-30,84.9192,62.7207 +2018-12-31,84.5839,62.7353 +2019-01-01,83.6969,62.7511 +2019-01-02,82.2696,62.8241 +2019-01-03,81.4946,62.0702 +2019-01-04,81.2735,62.3288 +2019-01-05,80.7208,62.3661 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d55fad9237 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" +2018-12,84.4038,62.5847 +2019-01,81.8911,62.4681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c904e9c9cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" +"2018 Q4",84.4038,62.5847 +"2019 Q1",81.8911,62.4681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9670c14bee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" +2018,84.4038,62.5847 +2019,81.8911,62.4681 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..34e80e3c09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Physical Usage (Bytes)" +"Storage grid",0.0000 +"Tape storage resource",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..34e80e3c09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Physical Usage (Bytes)" +"Storage grid",0.0000 +"Tape storage resource",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..34e80e3c09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Physical Usage (Bytes)" +"Storage grid",0.0000 +"Tape storage resource",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..34e80e3c09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Physical Usage (Bytes)" +"Storage grid",0.0000 +"Tape storage resource",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fa186d4e9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" +2018-12-27,0,0 +2018-12-28,0,0 +2018-12-29,0,0 +2018-12-30,0,0 +2018-12-31,0,0 +2019-01-01,0,0 +2019-01-02,0,0 +2019-01-03,0,0 +2019-01-04,0,0 +2019-01-05,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2aa5ab0793 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" +2018-12,0,0 +2019-01,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d3ae0766a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" +"2018 Q4",0,0 +"2019 Q1",0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5c679a5ddc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" +2018,0,0 +2019,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5890485f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Soft Threshold (Bytes)" +"Storage grid",855000018944000.0000 +"Tape storage resource",127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5890485f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Soft Threshold (Bytes)" +"Storage grid",855000018944000.0000 +"Tape storage resource",127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5890485f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Soft Threshold (Bytes)" +"Storage grid",855000018944000.0000 +"Tape storage resource",127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5890485f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","Quota: Soft Threshold (Bytes)" +"Storage grid",855000018944000.0000 +"Tape storage resource",127000027136000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b9fc9f657a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" +2018-12-27,855000018944000,127000027136000 +2018-12-28,855000018944000,127000027136000 +2018-12-29,855000018944000,127000027136000 +2018-12-30,855000018944000,127000027136000 +2018-12-31,855000018944000,127000027136000 +2019-01-01,855000018944000,127000027136000 +2019-01-02,855000018944000,127000027136000 +2019-01-03,855000018944000,127000027136000 +2019-01-04,855000018944000,127000027136000 +2019-01-05,855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8f291359d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" +2018-12,855000018944000,127000027136000 +2019-01,855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..48c3f96e89 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" +"2018 Q4",855000018944000,127000027136000 +"2019 Q1",855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ba56583910 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" +2018,855000018944000,127000027136000 +2019,855000018944000,127000027136000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8017bdab63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","User Count (Number of Users)" +"Storage grid",341 +"Tape storage resource",10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8017bdab63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","User Count (Number of Users)" +"Storage grid",341 +"Tape storage resource",10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8017bdab63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","User Count (Number of Users)" +"Storage grid",341 +"Tape storage resource",10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8017bdab63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Resource Type","User Count (Number of Users)" +"Storage grid",341 +"Tape storage resource",10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..819d545642 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" +2018-12-27,340,10 +2018-12-28,340,10 +2018-12-29,341,10 +2018-12-30,341,10 +2018-12-31,341,10 +2019-01-01,341,10 +2019-01-02,341,10 +2019-01-03,341,10 +2019-01-04,341,10 +2019-01-05,340,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..73ed239b7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" +2018-12,341,10 +2019-01,341,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d7b2c8d242 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" +"2018 Q4",341,10 +"2019 Q1",341,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..244aa7ccd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Resource Type" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" +2018,341,10 +2019,341,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..098986505b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.3000 +molater,89120484.8000 +bobol,15196470.0000 +chabu,6091664.1000 +parbu,2275235.8000 +leske,2148624.5000 +litbu,1365060.7000 +chaff,1227901.8000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.4000 +ibech,785457.2000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.1000 +daeju,292582.3000 +litau,288362.9000 +pinbu,174607.9000 +swath,160124.7000 +rocbu,143440.2000 +robgr,123610.8000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.1000 +twite,79552.6000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55522.9000 +scata,54479.7000 +larsp,51464.8000 +linne,33143.8000 +sanma,32673.0000 +cross,31883.8000 +rocth,30131.0000 +rolle,24220.7000 +citwa,23780.0000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +pursa,16500.5000 +rocsp,15288.0000 +reebu,14496.8000 +tenwa,14270.0000 +hulwa,13556.3000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.8000 +norpa,10410.6000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.1000 +bluth,7009.4000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6025.8000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4624.8000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.7000 +arcre,2842.6000 +watpi,2828.3000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.3000 +goldf,2503.8000 +grath,2498.3000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.3000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.7000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.3000 +piefl,1051.0000 +grewa,995.9000 +dippe,915.0000 +starl,896.0000 +olbpi,822.7000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.6000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.7000 +bomorum,373.0000 +broth,368.0000 +thrni,352.7000 +rocpi,328.0000 +sogsh,327.2000 +ricpi,321.4000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.6000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.4000 +bramb,142.6000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.4000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,52.8000 +reewa,52.0000 +rebfl,51.3000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +blabi,10.8889 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.4000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..098986505b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.3000 +molater,89120484.8000 +bobol,15196470.0000 +chabu,6091664.1000 +parbu,2275235.8000 +leske,2148624.5000 +litbu,1365060.7000 +chaff,1227901.8000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.4000 +ibech,785457.2000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.1000 +daeju,292582.3000 +litau,288362.9000 +pinbu,174607.9000 +swath,160124.7000 +rocbu,143440.2000 +robgr,123610.8000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.1000 +twite,79552.6000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55522.9000 +scata,54479.7000 +larsp,51464.8000 +linne,33143.8000 +sanma,32673.0000 +cross,31883.8000 +rocth,30131.0000 +rolle,24220.7000 +citwa,23780.0000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +pursa,16500.5000 +rocsp,15288.0000 +reebu,14496.8000 +tenwa,14270.0000 +hulwa,13556.3000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.8000 +norpa,10410.6000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.1000 +bluth,7009.4000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6025.8000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4624.8000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.7000 +arcre,2842.6000 +watpi,2828.3000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.3000 +goldf,2503.8000 +grath,2498.3000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.3000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.7000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.3000 +piefl,1051.0000 +grewa,995.9000 +dippe,915.0000 +starl,896.0000 +olbpi,822.7000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.6000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.7000 +bomorum,373.0000 +broth,368.0000 +thrni,352.7000 +rocpi,328.0000 +sogsh,327.2000 +ricpi,321.4000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.6000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.4000 +bramb,142.6000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.4000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,52.8000 +reewa,52.0000 +rebfl,51.3000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +blabi,10.8889 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.4000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..2af5f0424f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +swath,160124.7000 +ovenb,55522.9000 +parcr,7042.1000 +savsp,678.0000 +sante,97.0000 +phivi,11.0000 +lanwa,10.0000 +egyni,5.0000 +palsw,5.0000 +blaca,2.0000 +rocdo,2.0000 +crcco,1.0000 +frahata,1.0000 +gresh,1.0000 +razor,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..03b09cd4b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..a4f3b231bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.5000 +molater,89120485.0000 +bobol,15196470.0000 +chabu,6091664.0000 +parbu,2275235.5000 +leske,2148624.5000 +litbu,1365060.5000 +chaff,1227901.5000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.0000 +ibech,785457.0000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.0000 +daeju,292582.5000 +litau,288363.0000 +pinbu,174608.0000 +swath,160124.5000 +rocbu,143440.0000 +robgr,123611.0000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.0000 +twite,79552.5000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55523.0000 +scata,54480.0000 +larsp,51465.0000 +linne,33144.0000 +sanma,32673.0000 +cross,31883.5000 +rocth,30131.0000 +rolle,24220.5000 +citwa,23780.0000 +pursa,21999.5000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +rocsp,15288.0000 +reebu,14497.0000 +tenwa,14270.0000 +hulwa,13556.5000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.5000 +norpa,10411.0000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.0000 +bluth,7009.5000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6026.0000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4625.0000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.5000 +arcre,2842.5000 +watpi,2828.5000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.5000 +goldf,2503.5000 +grath,2498.5000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.5000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.5000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.0000 +piefl,1051.0000 +grewa,996.0000 +dippe,915.0000 +starl,896.0000 +olbpi,822.5000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.5000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.5000 +bomorum,373.0000 +broth,368.0000 +thrni,352.5000 +rocpi,328.0000 +sogsh,327.0000 +ricpi,321.5000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.5000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.5000 +bramb,142.5000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.5000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,53.0000 +reewa,52.0000 +rebfl,51.5000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +blabi,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.5000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..a4f3b231bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.5000 +molater,89120485.0000 +bobol,15196470.0000 +chabu,6091664.0000 +parbu,2275235.5000 +leske,2148624.5000 +litbu,1365060.5000 +chaff,1227901.5000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.0000 +ibech,785457.0000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.0000 +daeju,292582.5000 +litau,288363.0000 +pinbu,174608.0000 +swath,160124.5000 +rocbu,143440.0000 +robgr,123611.0000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.0000 +twite,79552.5000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55523.0000 +scata,54480.0000 +larsp,51465.0000 +linne,33144.0000 +sanma,32673.0000 +cross,31883.5000 +rocth,30131.0000 +rolle,24220.5000 +citwa,23780.0000 +pursa,21999.5000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +rocsp,15288.0000 +reebu,14497.0000 +tenwa,14270.0000 +hulwa,13556.5000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.5000 +norpa,10411.0000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.0000 +bluth,7009.5000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6026.0000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4625.0000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.5000 +arcre,2842.5000 +watpi,2828.5000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.5000 +goldf,2503.5000 +grath,2498.5000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.5000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.5000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.0000 +piefl,1051.0000 +grewa,996.0000 +dippe,915.0000 +starl,896.0000 +olbpi,822.5000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.5000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.5000 +bomorum,373.0000 +broth,368.0000 +thrni,352.5000 +rocpi,328.0000 +sogsh,327.0000 +ricpi,321.5000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.5000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.5000 +bramb,142.5000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.5000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,53.0000 +reewa,52.0000 +rebfl,51.5000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +blabi,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.5000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..59a6968a06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +swath,160124.5000 +ovenb,55523.0000 +parcr,7042.0000 +savsp,678.0000 +sante,97.0000 +phivi,11.0000 +lanwa,10.0000 +egyni,5.0000 +palsw,5.0000 +blaca,2.0000 +rocdo,2.0000 +crcco,1.0000 +frahata,1.0000 +gresh,1.0000 +razor,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..03b09cd4b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..a4f3b231bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.5000 +molater,89120485.0000 +bobol,15196470.0000 +chabu,6091664.0000 +parbu,2275235.5000 +leske,2148624.5000 +litbu,1365060.5000 +chaff,1227901.5000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.0000 +ibech,785457.0000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.0000 +daeju,292582.5000 +litau,288363.0000 +pinbu,174608.0000 +swath,160124.5000 +rocbu,143440.0000 +robgr,123611.0000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.0000 +twite,79552.5000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55523.0000 +scata,54480.0000 +larsp,51465.0000 +linne,33144.0000 +sanma,32673.0000 +cross,31883.5000 +rocth,30131.0000 +rolle,24220.5000 +citwa,23780.0000 +pursa,21999.5000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +rocsp,15288.0000 +reebu,14497.0000 +tenwa,14270.0000 +hulwa,13556.5000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.5000 +norpa,10411.0000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.0000 +bluth,7009.5000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6026.0000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4625.0000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.5000 +arcre,2842.5000 +watpi,2828.5000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.5000 +goldf,2503.5000 +grath,2498.5000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.5000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.5000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.0000 +piefl,1051.0000 +grewa,996.0000 +dippe,915.0000 +starl,896.0000 +olbpi,822.5000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.5000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.5000 +bomorum,373.0000 +broth,368.0000 +thrni,352.5000 +rocpi,328.0000 +sogsh,327.0000 +ricpi,321.5000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.5000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.5000 +bramb,142.5000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.5000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,53.0000 +reewa,52.0000 +rebfl,51.5000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +blabi,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.5000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..a4f3b231bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.5000 +molater,89120485.0000 +bobol,15196470.0000 +chabu,6091664.0000 +parbu,2275235.5000 +leske,2148624.5000 +litbu,1365060.5000 +chaff,1227901.5000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.0000 +ibech,785457.0000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.0000 +daeju,292582.5000 +litau,288363.0000 +pinbu,174608.0000 +swath,160124.5000 +rocbu,143440.0000 +robgr,123611.0000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.0000 +twite,79552.5000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55523.0000 +scata,54480.0000 +larsp,51465.0000 +linne,33144.0000 +sanma,32673.0000 +cross,31883.5000 +rocth,30131.0000 +rolle,24220.5000 +citwa,23780.0000 +pursa,21999.5000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +rocsp,15288.0000 +reebu,14497.0000 +tenwa,14270.0000 +hulwa,13556.5000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.5000 +norpa,10411.0000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.0000 +bluth,7009.5000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6026.0000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4625.0000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.5000 +arcre,2842.5000 +watpi,2828.5000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.5000 +goldf,2503.5000 +grath,2498.5000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.5000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.5000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.0000 +piefl,1051.0000 +grewa,996.0000 +dippe,915.0000 +starl,896.0000 +olbpi,822.5000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.5000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.5000 +bomorum,373.0000 +broth,368.0000 +thrni,352.5000 +rocpi,328.0000 +sogsh,327.0000 +ricpi,321.5000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.5000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.5000 +bramb,142.5000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.5000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,53.0000 +reewa,52.0000 +rebfl,51.5000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +blabi,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.5000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..59a6968a06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +swath,160124.5000 +ovenb,55523.0000 +parcr,7042.0000 +savsp,678.0000 +sante,97.0000 +phivi,11.0000 +lanwa,10.0000 +egyni,5.0000 +palsw,5.0000 +blaca,2.0000 +rocdo,2.0000 +crcco,1.0000 +frahata,1.0000 +gresh,1.0000 +razor,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..03b09cd4b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..a4f3b231bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.5000 +molater,89120485.0000 +bobol,15196470.0000 +chabu,6091664.0000 +parbu,2275235.5000 +leske,2148624.5000 +litbu,1365060.5000 +chaff,1227901.5000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.0000 +ibech,785457.0000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.0000 +daeju,292582.5000 +litau,288363.0000 +pinbu,174608.0000 +swath,160124.5000 +rocbu,143440.0000 +robgr,123611.0000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.0000 +twite,79552.5000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55523.0000 +scata,54480.0000 +larsp,51465.0000 +linne,33144.0000 +sanma,32673.0000 +cross,31883.5000 +rocth,30131.0000 +rolle,24220.5000 +citwa,23780.0000 +pursa,21999.5000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +rocsp,15288.0000 +reebu,14497.0000 +tenwa,14270.0000 +hulwa,13556.5000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.5000 +norpa,10411.0000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.0000 +bluth,7009.5000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6026.0000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4625.0000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.5000 +arcre,2842.5000 +watpi,2828.5000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.5000 +goldf,2503.5000 +grath,2498.5000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.5000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.5000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.0000 +piefl,1051.0000 +grewa,996.0000 +dippe,915.0000 +starl,896.0000 +olbpi,822.5000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.5000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.5000 +bomorum,373.0000 +broth,368.0000 +thrni,352.5000 +rocpi,328.0000 +sogsh,327.0000 +ricpi,321.5000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.5000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.5000 +bramb,142.5000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.5000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,53.0000 +reewa,52.0000 +rebfl,51.5000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +blabi,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.5000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..a4f3b231bd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +magwa,105192388.5000 +molater,89120485.0000 +bobol,15196470.0000 +chabu,6091664.0000 +parbu,2275235.5000 +leske,2148624.5000 +litbu,1365060.5000 +chaff,1227901.5000 +coot1,1185344.0000 +norwa,1135809.0000 +aytinis,943505.0000 +yelha,938054.0000 +ibech,785457.0000 +proubis,748238.5000 +bawwa,630272.0000 +cirbu,595394.0000 +whcsp,509822.5000 +noror,381957.0000 +daeju,292582.5000 +litau,288363.0000 +pinbu,174608.0000 +swath,160124.5000 +rocbu,143440.0000 +robgr,123611.0000 +embhala,121125.0000 +egygo,108834.0000 +amere,102408.0000 +crebu,101637.5000 +alpsw,86623.0000 +twite,79552.5000 +snobu,73344.0000 +dunli,62708.5000 +ovenb,55523.0000 +scata,54480.0000 +larsp,51465.0000 +linne,33144.0000 +sanma,32673.0000 +cross,31883.5000 +rocth,30131.0000 +rolle,24220.5000 +citwa,23780.0000 +pursa,21999.5000 +ylwwa,21001.0000 +whtpl,20036.0000 +categ,18325.0000 +rocsp,15288.0000 +reebu,14497.0000 +tenwa,14270.0000 +hulwa,13556.5000 +baisa,13512.0000 +blypi,12295.0000 +blrth,11988.0000 +tawpi,11130.5000 +norpa,10411.0000 +rusto,8955.0000 +colfl,8530.0000 +blewh,7417.0000 +parcr,7042.0000 +bluth,7009.5000 +moure,6970.0000 +sancr,6954.5000 +pibgr,6781.0000 +shttr,6026.0000 +serin,5866.0000 +honbu,5423.0000 +hoowa,5262.0000 +pingr,4625.0000 +redwi,4617.0000 +trufi,4360.0000 +setusca,2916.0000 +whcbl,2875.5000 +arcre,2842.5000 +watpi,2828.5000 +isawh,2742.0000 +lapbu,2703.0000 +comre,2581.5000 +goldf,2503.5000 +grath,2498.5000 +sibth,2362.0000 +turanni,2350.0000 +laryane,2215.0000 +grefi,2199.5000 +sibru,2063.0000 +twbcr,1958.5000 +blare,1648.0000 +hawfi,1548.5000 +whinc,1442.0000 +corbu,1334.0000 +wheat,1306.0000 +melnsis,1225.0000 +redst,1111.0000 +bullf,1058.0000 +piefl,1051.0000 +grewa,996.0000 +dippe,915.0000 +starl,896.0000 +olbpi,822.5000 +whwla,788.0000 +scocr,776.0000 +savsp,678.0000 +stoch,609.0000 +piewh,605.0000 +refbl,504.5000 +eybth,494.0000 +yebbu,468.0000 +ixovius,452.0000 +pecpi,448.0000 +wren1,425.0000 +bimla,404.0000 +housp,396.5000 +bomorum,373.0000 +broth,368.0000 +thrni,352.5000 +rocpi,328.0000 +sogsh,327.0000 +ricpi,321.5000 +redgr,314.0000 +rubro,289.0000 +treec,175.0000 +mimttos,171.0000 +crama,167.5000 +robin,163.0000 +grrwa,161.0000 +nigal,145.0000 +spofl,143.5000 +bramb,142.5000 +turdo,138.0000 +calla,130.0000 +rinou,123.0000 +bltth,113.0000 +marti,106.0000 +veery,103.0000 +coati,102.0000 +spasp,101.5000 +sante,97.0000 +deswh,91.5000 +rivwa,90.0000 +creti,86.0000 +garwa,78.0000 +cetwa,75.0000 +darwa,75.0000 +greti,72.0000 +hyllina,69.0000 +lanhach,65.0000 +dumnsis,60.0000 +hiporum,57.0000 +aquwa,53.0000 +musrica,53.0000 +reewa,52.0000 +rebfl,51.5000 +bluti,51.0000 +duswa,50.0000 +spewa,50.0000 +white,50.0000 +penti,49.0000 +yebwa,48.0000 +firec,43.0000 +rutro,42.0000 +melwa,39.0000 +raven,38.0000 +sonth,37.0000 +vertera,36.0000 +dunno,34.0000 +marwa,34.0000 +rupwa,31.0000 +sitnsis,31.0000 +carcr,29.0000 +nutcr,29.0000 +rook1,29.0000 +jay11,28.0000 +magpi,28.0000 +choug,26.0000 +corsh,25.0000 +massh,25.0000 +sylnsis,24.0000 +amero,22.0000 +woosh,22.0000 +blrwa,19.0000 +rebsh,17.0000 +golor,15.0000 +isash,15.0000 +reevi,14.0000 +sedwa,13.0000 +sumta,12.0000 +balsh,11.0000 +blabi,11.0000 +grawa,11.0000 +phivi,11.0000 +sayoebe,11.0000 +thbwa,11.0000 +virrons,11.0000 +eaowa,10.0000 +gyrfa,10.0000 +hobby,10.0000 +lanwa,10.0000 +leswh,10.0000 +rinpa,10.0000 +shag1,10.0000 +ameke,9.0000 +falnsis,9.0000 +gshwa,9.0000 +lotti,9.0000 +reffa,9.0000 +clisw,7.0000 +grewo,7.0000 +ictwa,7.0000 +kestr,7.0000 +pagwa,6.5000 +waxwi,6.5000 +beeea,6.0000 +blcbe,6.0000 +hoopo,6.0000 +wryne,6.0000 +belki,5.0000 +chisw,5.0000 +comni,5.0000 +deswa,5.0000 +egyni,5.0000 +kingf,5.0000 +netsw,5.0000 +pacsw,5.0000 +palsw,5.0000 +renni,5.0000 +swift,5.0000 +yerwa,5.0000 +grnwa,4.0000 +hawow,4.0000 +loeow,4.0000 +nijar,4.0000 +phyatus,4.0000 +rersw,4.0000 +sheow,4.0000 +snoow,4.0000 +sposa,4.0000 +subwa,4.0000 +tawow,4.0000 +tenow,4.0000 +velsc,4.0000 +barow,3.0000 +bonwa,3.0000 +coldo,3.0000 +cucko,3.0000 +grscu,3.0000 +houma,3.0000 +rutdo,3.0000 +scoow,3.0000 +stodo,3.0000 +wallc,3.0000 +woodp,3.0000 +yebcu,3.0000 +zenoura,3.0000 +blaca,2.0000 +camwa,2.0000 +casgu,2.0000 +gbbgu,2.0000 +glagu,2.0000 +icegu,2.0000 +laragus,2.0000 +laranus,2.0000 +lbbgu,2.0000 +palsa,2.0000 +palwa,2.0000 +rocdo,2.0000 +swall,2.0000 +tacolor,2.0000 +wilwa,2.0000 +yelwa,2.0000 +alete,1.0000 +arcte,1.0000 +bitte,1.0000 +blate,1.0000 +blhgu,1.0000 +blwpr,1.0000 +brardix,1.0000 +brite,1.0000 +brugu,1.0000 +bubsa,1.0000 +colpr,1.0000 +comgu,1.0000 +comsa,1.0000 +comte,1.0000 +crcco,1.0000 +crela,1.0000 +evegr,1.0000 +forte,1.0000 +fragu,1.0000 +frahata,1.0000 +galcata,1.0000 +glaarum,1.0000 +greph,1.0000 +gresa,1.0000 +gresh,1.0000 +gresk,1.0000 +gresn,1.0000 +greye,1.0000 +guill,1.0000 +ivogu,1.0000 +jacsn,1.0000 +kitti,1.0000 +larinii,1.0000 +laugu,1.0000 +leasa,1.0000 +lecte,1.0000 +lesye,1.0000 +litgu,1.0000 +litte,1.0000 +lobdo,1.0000 +lotsk,1.0000 +lstla,1.0000 +marsa,1.0000 +medgu,1.0000 +pecsa,1.0000 +pinnnis,1.0000 +pomsk,1.0000 +razor,1.0000 +redsh,1.0000 +renph,1.0000 +rosgu,1.0000 +roste,1.0000 +royte,1.0000 +sabgu,1.0000 +scaro,1.0000 +semsa,1.0000 +shola,1.0000 +shtla,1.0000 +skyla,1.0000 +slegu,1.0000 +snipe,1.0000 +solsa,1.0000 +soote,1.0000 +stevida,1.0000 +synquus,1.0000 +tersa,1.0000 +trepi,1.0000 +triipes,1.0000 +whkte,1.0000 +whrsa,1.0000 +wilph,1.0000 +woodc,1.0000 +woodl,1.0000 +woosa,1.0000 +woowa,1.0000 +wwbte,1.0000 +sarwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..59a6968a06 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +swath,160124.5000 +ovenb,55523.0000 +parcr,7042.0000 +savsp,678.0000 +sante,97.0000 +phivi,11.0000 +lanwa,10.0000 +egyni,5.0000 +palsw,5.0000 +blaca,2.0000 +rocdo,2.0000 +crcco,1.0000 +frahata,1.0000 +gresh,1.0000 +razor,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..03b09cd4b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","File Count (Number of files)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..91ddd8d49c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[pursa] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[blabi] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +2018-12-27,105192075,88379723,15196470,5253665,2268748,2146799,1365058,1227794,1185344,1135809,943505,267748,796289,830795,630272,595394,460467,417394,292342,288362,174610,160112,155276,126913,120893,108834,102408,108721,86950,4627,60440,62606,60567,55507,50225,43541,32673,3525,30131,14838,23780,21001,20036,18325,0,15288,14536,14270,3,13512,12295,11988,6104,10363,8911,8530,7417,6421,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2668,4279,2742,2703,2450,2296,2359,2362,2350,2215,2654,2063,3842,1648,1636,1442,1316,1306,1225,1111,1109,1051,1442,915,896,791,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,263,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,54,51,50,50,50,49,48,43,49,39,38,19,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-28,105191961,88525879,15196470,5725604,2269042,2145969,1365062,1227794,1185344,1135809,943505,267985,809270,830795,630272,595394,525804,417464,292619,288362,174610,160112,155290,126913,120893,108834,102408,116599,86950,4681,60436,62604,88969,54942,50496,43541,32673,111063,30131,24276,23780,21001,20036,18325,0,15288,14560,14270,3,13512,12295,11988,9070,10386,8928,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2730,4279,2742,2703,2223,2296,2411,2362,2350,2215,2651,2063,3842,1648,1642,1442,1320,1306,1225,1111,1110,1051,1440,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-29,105191993,88683162,15196470,6133060,2275982,2145969,1365062,1227794,1185344,1135809,943505,599291,809314,830795,630272,595394,530750,417512,292619,288362,174610,160112,155276,126916,121086,108834,102408,118427,86950,4747,77045,62690,56593,54295,50647,43541,32673,27249,30131,26937,23780,21001,20036,18325,131976,15288,14544,14270,3,13512,12295,11988,10115,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2708,2877,2742,2703,2865,2296,2421,2362,2350,2215,2651,2063,3842,1648,1664,1442,1324,1306,1225,1111,1110,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-30,105192014,88765119,15196470,6133060,2283593,2145969,1365062,1227794,1185344,1135809,943505,834793,779767,830795,630272,595394,530750,417555,292619,288362,174610,160112,155131,126912,121085,108834,102408,118427,86950,4801,77045,62719,87106,54295,50870,43541,32673,45076,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12045,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4671,4617,4360,2916,3510,2791,2877,2742,2703,2669,2296,2502,2362,2350,2215,2605,2063,3842,1648,1677,1442,1328,1306,1225,1111,1111,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-31,105192032,88903007,15196470,6133066,2279381,2145969,1365062,1227846,1185344,1135809,943505,1111730,779767,830795,630272,595394,530750,393209,292604,288362,174610,160112,155117,126861,121085,108834,102408,118427,86950,4843,77022,62713,80333,54295,51256,37479,32673,56318,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12048,10403,8794,8530,7417,4066,10012,6970,6964,6781,6025,5866,5423,5262,4638,4617,4360,2916,3510,2833,2731,2742,2703,2652,2228,2532,2362,2350,2215,1894,2063,1949,1648,1677,1442,1332,1306,1225,1111,1111,1051,1389,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,76,97,81,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,41,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-01,105192102,89164927,15196470,6133066,2278806,2151114,1365062,1227998,1185344,1135809,943505,1117520,773170,832280,630272,595394,511013,351641,292604,288362,174610,160112,131858,120439,121085,108834,102408,118427,86950,4843,77022,62732,68070,54293,51169,37479,32673,58362,30131,26937,23780,21001,20036,18325,4,15288,14448,14270,19788,13512,12295,11988,12142,10421,8794,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4617,4617,4360,2916,3510,2805,2717,2742,2703,2452,2433,2531,2362,2350,2215,1867,2063,1017,1648,1677,1442,1336,1306,1225,1111,1111,1051,311,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,31,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,43,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-02,105192452,89405908,15196470,6133066,2278458,2151114,1365062,1227998,1185344,1135809,943505,1117323,773170,835274,630272,595394,465501,351696,292604,288365,174610,160112,131859,120129,121134,108834,102408,90285,86950,191746,76353,62739,38106,54293,51595,22343,32673,5328,30131,24281,23780,21001,20036,18325,4,15288,14448,14270,25861,13512,12295,11988,12142,10421,8796,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2889,2863,2241,2742,2703,2447,2554,2538,2362,2350,2215,1865,2063,1017,1648,1677,1442,1340,1306,1225,1111,959,1051,409,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,19,328,321,301,314,289,175,171,176,163,161,145,146,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-03,105192460,89579944,15196470,6346696,2274084,2151114,1365056,1228000,1185344,1135809,943505,1253518,773259,576225,630272,595394,513281,349950,292604,288364,174603,160125,131756,120245,121263,108834,102408,83169,85861,191746,76353,62743,33523,54293,52145,22343,32673,1685,30131,24035,23780,21001,20036,18325,4,15288,14448,14270,14111,13512,12295,11988,12144,10428,9237,8530,7417,5428,2,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2814,2916,2241,2742,2703,2685,2695,2557,2362,2350,2215,1865,2063,78,1648,1599,1442,1344,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,317,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,132,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-04,105193030,89779619,15196470,6547360,2272673,2151114,1365060,1228000,1185344,1135809,943505,1363753,785029,542542,630272,595394,514946,351559,292604,288364,174603,160138,131458,120307,121363,108834,102408,77536,85860,191746,75862,62736,30267,54293,53185,22343,32673,3994,30131,23917,23780,21001,20036,18325,4,15288,14448,14270,37255,13512,12295,11988,12415,10439,9261,8530,7417,5878,2,6970,6945,6781,6025,5866,5423,5262,4524,4617,4360,2916,1952,3016,2043,2742,2703,2685,2898,2566,2362,2350,2215,1865,2063,78,1648,1516,1442,1348,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,579,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,6,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,55,52,51,51,50,50,50,49,48,43,39,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-05,105193764,90017560,15196470,6377998,2271591,2151114,1365061,1228000,1185344,1135809,943505,1446883,775537,542089,630272,595394,514963,351591,292604,288364,174603,160200,131381,120473,121363,108834,102408,66357,85860,191746,75862,62803,11695,54291,53060,15287,32673,6238,30131,23112,23780,21001,20036,18325,4,15288,14448,14270,38533,13512,12295,11988,13083,10439,9261,8530,7417,28516,2,6970,6945,6781,6025,5866,5423,5262,4502,4617,4360,2916,42,3096,1998,2742,2703,2685,3046,2566,2362,2350,2215,2076,2063,78,1648,722,1442,1352,1306,1225,1111,988,1051,696,915,896,1046,788,776,678,609,605,503,494,468,452,448,425,404,480,373,368,19,328,441,301,314,289,175,171,148,163,161,145,1,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,57,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,0,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..91ddd8d49c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[pursa] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[blabi] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +2018-12-27,105192075,88379723,15196470,5253665,2268748,2146799,1365058,1227794,1185344,1135809,943505,267748,796289,830795,630272,595394,460467,417394,292342,288362,174610,160112,155276,126913,120893,108834,102408,108721,86950,4627,60440,62606,60567,55507,50225,43541,32673,3525,30131,14838,23780,21001,20036,18325,0,15288,14536,14270,3,13512,12295,11988,6104,10363,8911,8530,7417,6421,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2668,4279,2742,2703,2450,2296,2359,2362,2350,2215,2654,2063,3842,1648,1636,1442,1316,1306,1225,1111,1109,1051,1442,915,896,791,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,263,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,54,51,50,50,50,49,48,43,49,39,38,19,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-28,105191961,88525879,15196470,5725604,2269042,2145969,1365062,1227794,1185344,1135809,943505,267985,809270,830795,630272,595394,525804,417464,292619,288362,174610,160112,155290,126913,120893,108834,102408,116599,86950,4681,60436,62604,88969,54942,50496,43541,32673,111063,30131,24276,23780,21001,20036,18325,0,15288,14560,14270,3,13512,12295,11988,9070,10386,8928,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2730,4279,2742,2703,2223,2296,2411,2362,2350,2215,2651,2063,3842,1648,1642,1442,1320,1306,1225,1111,1110,1051,1440,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-29,105191993,88683162,15196470,6133060,2275982,2145969,1365062,1227794,1185344,1135809,943505,599291,809314,830795,630272,595394,530750,417512,292619,288362,174610,160112,155276,126916,121086,108834,102408,118427,86950,4747,77045,62690,56593,54295,50647,43541,32673,27249,30131,26937,23780,21001,20036,18325,131976,15288,14544,14270,3,13512,12295,11988,10115,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2708,2877,2742,2703,2865,2296,2421,2362,2350,2215,2651,2063,3842,1648,1664,1442,1324,1306,1225,1111,1110,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-30,105192014,88765119,15196470,6133060,2283593,2145969,1365062,1227794,1185344,1135809,943505,834793,779767,830795,630272,595394,530750,417555,292619,288362,174610,160112,155131,126912,121085,108834,102408,118427,86950,4801,77045,62719,87106,54295,50870,43541,32673,45076,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12045,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4671,4617,4360,2916,3510,2791,2877,2742,2703,2669,2296,2502,2362,2350,2215,2605,2063,3842,1648,1677,1442,1328,1306,1225,1111,1111,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2018-12-31,105192032,88903007,15196470,6133066,2279381,2145969,1365062,1227846,1185344,1135809,943505,1111730,779767,830795,630272,595394,530750,393209,292604,288362,174610,160112,155117,126861,121085,108834,102408,118427,86950,4843,77022,62713,80333,54295,51256,37479,32673,56318,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12048,10403,8794,8530,7417,4066,10012,6970,6964,6781,6025,5866,5423,5262,4638,4617,4360,2916,3510,2833,2731,2742,2703,2652,2228,2532,2362,2350,2215,1894,2063,1949,1648,1677,1442,1332,1306,1225,1111,1111,1051,1389,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,76,97,81,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,41,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-01,105192102,89164927,15196470,6133066,2278806,2151114,1365062,1227998,1185344,1135809,943505,1117520,773170,832280,630272,595394,511013,351641,292604,288362,174610,160112,131858,120439,121085,108834,102408,118427,86950,4843,77022,62732,68070,54293,51169,37479,32673,58362,30131,26937,23780,21001,20036,18325,4,15288,14448,14270,19788,13512,12295,11988,12142,10421,8794,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4617,4617,4360,2916,3510,2805,2717,2742,2703,2452,2433,2531,2362,2350,2215,1867,2063,1017,1648,1677,1442,1336,1306,1225,1111,1111,1051,311,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,31,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,43,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-02,105192452,89405908,15196470,6133066,2278458,2151114,1365062,1227998,1185344,1135809,943505,1117323,773170,835274,630272,595394,465501,351696,292604,288365,174610,160112,131859,120129,121134,108834,102408,90285,86950,191746,76353,62739,38106,54293,51595,22343,32673,5328,30131,24281,23780,21001,20036,18325,4,15288,14448,14270,25861,13512,12295,11988,12142,10421,8796,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2889,2863,2241,2742,2703,2447,2554,2538,2362,2350,2215,1865,2063,1017,1648,1677,1442,1340,1306,1225,1111,959,1051,409,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,19,328,321,301,314,289,175,171,176,163,161,145,146,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-03,105192460,89579944,15196470,6346696,2274084,2151114,1365056,1228000,1185344,1135809,943505,1253518,773259,576225,630272,595394,513281,349950,292604,288364,174603,160125,131756,120245,121263,108834,102408,83169,85861,191746,76353,62743,33523,54293,52145,22343,32673,1685,30131,24035,23780,21001,20036,18325,4,15288,14448,14270,14111,13512,12295,11988,12144,10428,9237,8530,7417,5428,2,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2814,2916,2241,2742,2703,2685,2695,2557,2362,2350,2215,1865,2063,78,1648,1599,1442,1344,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,317,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,132,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-04,105193030,89779619,15196470,6547360,2272673,2151114,1365060,1228000,1185344,1135809,943505,1363753,785029,542542,630272,595394,514946,351559,292604,288364,174603,160138,131458,120307,121363,108834,102408,77536,85860,191746,75862,62736,30267,54293,53185,22343,32673,3994,30131,23917,23780,21001,20036,18325,4,15288,14448,14270,37255,13512,12295,11988,12415,10439,9261,8530,7417,5878,2,6970,6945,6781,6025,5866,5423,5262,4524,4617,4360,2916,1952,3016,2043,2742,2703,2685,2898,2566,2362,2350,2215,1865,2063,78,1648,1516,1442,1348,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,579,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,6,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,55,52,51,51,50,50,50,49,48,43,39,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01-05,105193764,90017560,15196470,6377998,2271591,2151114,1365061,1228000,1185344,1135809,943505,1446883,775537,542089,630272,595394,514963,351591,292604,288364,174603,160200,131381,120473,121363,108834,102408,66357,85860,191746,75862,62803,11695,54291,53060,15287,32673,6238,30131,23112,23780,21001,20036,18325,4,15288,14448,14270,38533,13512,12295,11988,13083,10439,9261,8530,7417,28516,2,6970,6945,6781,6025,5866,5423,5262,4502,4617,4360,2916,42,3096,1998,2742,2703,2685,3046,2566,2362,2350,2215,2076,2063,78,1648,722,1442,1352,1306,1225,1111,988,1051,696,915,896,1046,788,776,678,609,605,503,494,468,452,448,425,404,480,373,368,19,328,441,301,314,289,175,171,148,163,161,145,1,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,57,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,0,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..805f2b9690 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" +2018-12-27,160112,60567,6421,678,97,11,10,5,5,2,2,1,1,1,1 +2018-12-28,160112,88969,4066,678,97,11,10,5,5,2,2,1,1,1,1 +2018-12-29,160112,56593,4066,678,97,11,10,5,5,2,2,1,1,1,1 +2018-12-30,160112,87106,4066,678,97,11,10,5,5,2,2,1,1,1,1 +2018-12-31,160112,80333,4066,678,97,11,10,5,5,2,2,1,1,1,1 +2019-01-01,160112,68070,3957,678,97,11,10,5,5,2,2,1,1,1,1 +2019-01-02,160112,38106,3957,678,97,11,10,5,5,2,2,1,1,1,1 +2019-01-03,160125,33523,5428,678,97,11,10,5,5,2,2,1,1,1,1 +2019-01-04,160138,30267,5878,678,97,11,10,5,5,2,2,1,1,1,1 +2019-01-05,160200,11695,28516,678,97,11,10,5,5,2,2,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..1565287ac0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..71ff914754 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +2018-12,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..71ff914754 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +2018-12,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019-01,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..fea169be0e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" +2018-12,160112,74714,4537,678,97,11,10,5,5,2,2,1,1,1,1 +2019-01,160137,36332,9547,678,97,11,10,5,5,2,2,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..5f1c9db163 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..8f1ffa5e2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +"2018 Q4",105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +"2019 Q1",105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..8f1ffa5e2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +"2018 Q4",105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +"2019 Q1",105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..41f626750c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" +"2018 Q4",160112,74714,4537,678,97,11,10,5,5,2,2,1,1,1,1 +"2019 Q1",160137,36332,9547,678,97,11,10,5,5,2,2,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..ad08397784 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..b2d00e9310 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +2018,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..b2d00e9310 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" +2018,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +2019,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..5e62b06cd0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" +2018,160112,74714,4537,678,97,11,10,5,5,2,2,1,1,1,1 +2019,160137,36332,9547,678,97,11,10,5,5,2,2,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..946f2198e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv new file mode 100644 index 0000000000..6118dec111 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv new file mode 100644 index 0000000000..a657faed07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv new file mode 100644 index 0000000000..6118dec111 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv new file mode 100644 index 0000000000..a657faed07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..6118dec111 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..a657faed07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv new file mode 100644 index 0000000000..f5384b604d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +bobol,250000003072000.0000 +molater,250000003072000.0000 +ylwwa,200000000000000.0000 +amere,150000001024000.0000 +redgr,150000001024000.0000 +norwa,100005003264000.0000 +tenwa,60000002048000.0000 +bawwa,50005000192000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10005000192000.0000 +camwa,10005000192000.0000 +leske,10005000192000.0000 +norpa,10005000192000.0000 +sanma,10005000192000.0000 +setusca,9000009728000.0000 +corbu,2000003072000.0000 +shttr,1010008064000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv new file mode 100644 index 0000000000..6118dec111 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv new file mode 100644 index 0000000000..a657faed07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Hard Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv new file mode 100644 index 0000000000..aabd90f0e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +2018-12-27,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv new file mode 100644 index 0000000000..aabd90f0e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +2018-12-27,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv new file mode 100644 index 0000000000..e2dbdcc95b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv new file mode 100644 index 0000000000..0793c8ed90 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv new file mode 100644 index 0000000000..476009bc8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +2018-12,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv new file mode 100644 index 0000000000..476009bc8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +2018-12,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv new file mode 100644 index 0000000000..aea9821c2e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv new file mode 100644 index 0000000000..0e92573f63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..2c02c948e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +"2018 Q4",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..2c02c948e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +"2018 Q4",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..cca14e57d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..c154fdf754 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv new file mode 100644 index 0000000000..d9295752af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +2018,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv new file mode 100644 index 0000000000..d9295752af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" +2018,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv new file mode 100644 index 0000000000..3215c9dcef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv new file mode 100644 index 0000000000..88b1171281 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv new file mode 100644 index 0000000000..0f1f96894a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,8558368000.0000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +blabi,796444.4444 +aquwa,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv new file mode 100644 index 0000000000..0f1f96894a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,8558368000.0000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +blabi,796444.4444 +aquwa,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv new file mode 100644 index 0000000000..a492282441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +ovenb,10221160128000.0000 +parcr,463271065600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +blaca,768000.0000 +savsp,640000.0000 +lanwa,256000.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +palsw,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv new file mode 100644 index 0000000000..082ba7a4a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv new file mode 100644 index 0000000000..055675648e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,9106218666.5000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +aquwa,768000.0000 +blabi,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv new file mode 100644 index 0000000000..055675648e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,9106218666.5000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +aquwa,768000.0000 +blabi,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv new file mode 100644 index 0000000000..a492282441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +ovenb,10221160128000.0000 +parcr,463271065600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +blaca,768000.0000 +savsp,640000.0000 +lanwa,256000.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +palsw,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv new file mode 100644 index 0000000000..082ba7a4a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..055675648e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,9106218666.5000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +aquwa,768000.0000 +blabi,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..055675648e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,9106218666.5000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +aquwa,768000.0000 +blabi,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..a492282441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +ovenb,10221160128000.0000 +parcr,463271065600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +blaca,768000.0000 +savsp,640000.0000 +lanwa,256000.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +palsw,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..082ba7a4a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv new file mode 100644 index 0000000000..055675648e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,9106218666.5000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +aquwa,768000.0000 +blabi,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv new file mode 100644 index 0000000000..055675648e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +molater,162670858508800.0000 +noror,120848346406400.0000 +amere,94668546688000.0000 +bobol,55029891456000.0000 +norwa,50638493824000.0000 +parbu,46405301388800.0000 +litau,40448713728000.0000 +chaff,29285570009600.0000 +bawwa,27267411328000.0000 +magwa,17870231244800.0000 +crebu,16087800473600.0000 +rusto,15545744473600.0000 +tenwa,13832863872000.0000 +ovenb,10221160128000.0000 +sanma,9928160640000.0000 +norpa,9219031795200.0000 +leske,8964344115200.0000 +litbu,7541796608000.0000 +coot1,6034834048000.0000 +rocbu,5392457907200.0000 +scocr,4457590784000.0000 +proubis,3843580377600.0000 +aytinis,3707448192000.0000 +alpsw,2970285811200.0000 +cirbu,2706318336000.0000 +lapbu,2698908288000.0000 +chabu,2466790976000.0000 +yelha,2249345779200.0000 +larsp,2009530739200.0000 +serin,1944329728000.0000 +pinbu,1733976166400.0000 +setusca,1506957094400.0000 +cross,1340005606400.0000 +embhala,923557043200.0000 +daeju,813028595200.0000 +rolle,693861888000.0000 +whcsp,601996505600.0000 +redgr,575703936000.0000 +goldf,501555571200.0000 +ibech,489881305600.0000 +bramb,485586636800.0000 +parcr,463271065600.0000 +rocpi,297982336000.0000 +scata,295327449600.0000 +twite,278880576000.0000 +arcre,267434624000.0000 +comre,252261286400.0000 +snobu,225457203200.0000 +pecpi,203318016000.0000 +twbcr,150338624000.0000 +reebu,143756608000.0000 +sogsh,129129152000.0000 +grefi,127649331200.0000 +olbpi,118578649600.0000 +bullf,108903206400.0000 +dunli,91059212800.0000 +hawfi,87268083200.0000 +pingr,77630118400.0000 +trufi,73587315200.0000 +dunno,66818816000.0000 +robgr,50593497600.0000 +corbu,43913408000.0000 +ricpi,20188313600.0000 +watpi,19298982400.0000 +tawpi,16181068800.0000 +linne,14152985600.0000 +pursa,9106218666.5000 +housp,8004428800.0000 +grath,7550720000.0000 +refbl,6938905600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +spasp,5368076800.0000 +piewh,4905216000.0000 +rebfl,3000576000.0000 +grewa,2207552000.0000 +hulwa,1995968000.0000 +categ,1991040000.0000 +velsc,1984768000.0000 +deswh,1695833600.0000 +stoch,1615104000.0000 +sancr,821760000.0000 +blypi,620928000.0000 +whcbl,493644800.0000 +sonth,458163200.0000 +blewh,382848000.0000 +honbu,281728000.0000 +musrica,278912000.0000 +citwa,213504000.0000 +isawh,195200000.0000 +wheat,183040000.0000 +amero,177792000.0000 +rocsp,151808000.0000 +rutro,146649600.0000 +shttr,142592000.0000 +whinc,134784000.0000 +nigal,99072000.0000 +moure,64640000.0000 +redst,55168000.0000 +thrni,43430400.0000 +robin,42496000.0000 +egygo,41344000.0000 +blare,37760000.0000 +piefl,35456000.0000 +colfl,34816000.0000 +hyllina,34432000.0000 +waxwi,28800000.0000 +wallc,28544000.0000 +sibru,26112000.0000 +spofl,23820800.0000 +rubro,20864000.0000 +dumnsis,17280000.0000 +garwa,14848000.0000 +bltth,13184000.0000 +ylwwa,13184000.0000 +blrth,12544000.0000 +baisa,9344000.0000 +eybth,8576000.0000 +rocth,8064000.0000 +rinou,7552000.0000 +turdo,7552000.0000 +laryane,7424000.0000 +whtpl,7424000.0000 +cetwa,6272000.0000 +sitnsis,4992000.0000 +veery,3456000.0000 +ixovius,2816000.0000 +crama,1945600.0000 +dippe,1920000.0000 +starl,1920000.0000 +redwi,1664000.0000 +pagwa,1331200.0000 +turanni,1280000.0000 +bluth,1203200.0000 +deswa,1152000.0000 +reewa,1152000.0000 +blrwa,1024000.0000 +broth,1024000.0000 +marwa,1024000.0000 +mimttos,1024000.0000 +sedwa,896000.0000 +wren1,896000.0000 +aquwa,768000.0000 +blabi,768000.0000 +blaca,768000.0000 +melwa,768000.0000 +vertera,768000.0000 +hiporum,640000.0000 +savsp,640000.0000 +wilwa,640000.0000 +eaowa,512000.0000 +sibth,512000.0000 +treec,512000.0000 +woowa,512000.0000 +bonwa,384000.0000 +calla,384000.0000 +palwa,384000.0000 +thbwa,384000.0000 +yerwa,384000.0000 +grawa,256000.0000 +grnwa,256000.0000 +gshwa,256000.0000 +ictwa,256000.0000 +lanwa,256000.0000 +phyatus,256000.0000 +rivwa,256000.0000 +bomorum,128000.0000 +clisw,128000.0000 +crela,128000.0000 +darwa,128000.0000 +grrwa,128000.0000 +houma,128000.0000 +lanhach,128000.0000 +leswh,128000.0000 +lotti,128000.0000 +lstla,128000.0000 +pibgr,128000.0000 +rersw,128000.0000 +rupwa,128000.0000 +shola,128000.0000 +shtla,128000.0000 +skyla,128000.0000 +spewa,128000.0000 +swall,128000.0000 +sylnsis,128000.0000 +tacolor,128000.0000 +white,128000.0000 +woodl,128000.0000 +alete,0.0000 +ameke,0.0000 +arcte,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blate,0.0000 +blcbe,0.0000 +blhgu,0.0000 +bluti,0.0000 +blwpr,0.0000 +brardix,0.0000 +brite,0.0000 +brugu,0.0000 +bubsa,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +chisw,0.0000 +choug,0.0000 +coati,0.0000 +coldo,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comsa,0.0000 +comte,0.0000 +corsh,0.0000 +crcco,0.0000 +creti,0.0000 +cucko,0.0000 +duswa,0.0000 +egyni,0.0000 +evegr,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +golor,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewo,0.0000 +greye,0.0000 +grscu,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawow,0.0000 +hobby,0.0000 +hoopo,0.0000 +hoowa,0.0000 +icegu,0.0000 +isash,0.0000 +ivogu,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +lesye,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +netsw,0.0000 +nijar,0.0000 +nutcr,0.0000 +pacsw,0.0000 +palsa,0.0000 +palsw,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +raven,0.0000 +razor,0.0000 +rebsh,0.0000 +redsh,0.0000 +reevi,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rinpa,0.0000 +rocdo,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rutdo,0.0000 +sabgu,0.0000 +sarwa,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scoow,0.0000 +semsa,0.0000 +shag1,0.0000 +sheow,0.0000 +slegu,0.0000 +snipe,0.0000 +snoow,0.0000 +solsa,0.0000 +soote,0.0000 +sposa,0.0000 +stevida,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swift,0.0000 +synquus,0.0000 +tawow,0.0000 +tenow,0.0000 +tersa,0.0000 +trepi,0.0000 +triipes,0.0000 +virrons,0.0000 +whkte,0.0000 +whrsa,0.0000 +whwla,0.0000 +wilph,0.0000 +woodc,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv new file mode 100644 index 0000000000..a492282441 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +ovenb,10221160128000.0000 +parcr,463271065600.0000 +swath,6804044800.0000 +sante,5779584000.0000 +blaca,768000.0000 +savsp,640000.0000 +lanwa,256000.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +palsw,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv new file mode 100644 index 0000000000..082ba7a4a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Logical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv new file mode 100644 index 0000000000..635d35813d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +2018-12-27,161970387072000,130882300416000,94668546688000,55029891456000,50638493824000,38336309632000,40448713728000,29295568896000,27267411328000,17505628032000,15494882432000,15702943232000,13832863872000,14242280064000,9928160640000,9218944768000,8957422592000,7541796608000,6034834048000,5937893248000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2230504704000,2228458624000,1952837504000,1944329728000,1733989376000,1506955904000,339764480000,921950848000,812594176000,370410752000,603500800000,575703936000,474718208000,491007360000,662139648000,459477248000,297982336000,297141376000,230846848000,256112512000,244283904000,228683648000,203318016000,256331776000,173886720000,129027072000,139109120000,117884160000,97863680000,87247488000,90370688000,96233600000,108636160000,66818816000,50535936000,43912832000,23900416000,33932800000,9422592000,18692736000,0,7672960000,366592000,6557312000,6000896000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,154496000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,787072000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,162119939712000,130951853312000,94668546688000,55029891456000,50638493824000,41442712960000,40448713728000,29295568896000,27267411328000,17921053824000,17998195200000,15771797504000,13832863872000,12001895936000,9928160640000,9218971392000,8958675584000,7541796608000,6034834048000,5937961216000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2357435776000,2228909184000,1986484736000,1944329728000,1733989376000,1506956160000,2218562816000,921950848000,813076864000,587832448000,631372544000,575703936000,474718208000,491711360000,662139648000,458981632000,297982336000,295846144000,245742848000,260281472000,233874944000,228682752000,203318016000,256331776000,177062784000,129104640000,138835584000,118649472000,97863936000,87256320000,90336384000,96233600000,128210944000,66818816000,50535936000,43912960000,23900416000,33932800000,14527872000,18692736000,0,7672960000,2401408000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,162292553216000,131019984640000,94668546688000,55029891456000,50638493824000,42669537408000,40448713728000,29295568896000,27267411328000,18024812544000,18278423680000,15449285376000,13832863872000,11767707008000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936964864000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2237309440000,2049042048000,1944329728000,1733989376000,1506956416000,1754243200000,923198464000,813076864000,781170816000,633516288000,575703936000,474718208000,492912512000,662139648000,458981632000,297982336000,295037568000,263454848000,256227456000,267489664000,230024960000,203318016000,256331776000,178106752000,129104640000,138835584000,118649472000,97863936000,91802240000,90581120000,96233600000,141851776000,66818816000,51429504000,43913088000,23900416000,21396992000,16625536000,18692736000,20063232000,7672960000,2554368000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,162411179264000,131075613568000,94668546688000,55029891456000,50638493824000,45937860608000,40448713728000,29295568768000,27267411328000,18114090752000,18284034944000,15470170880000,13832863872000,11607914624000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936318080000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2242306944000,2067007872000,1944329728000,1733989376000,1506956672000,2039233408000,923594240000,813076864000,781170816000,633521792000,575703936000,474718208000,488464640000,662139648000,458981632000,297982336000,295037568000,277430144000,263643776000,253159424000,230020224000,203318016000,256331776000,178106752000,129104640000,137997440000,118649472000,97864320000,91831296000,90685696000,93119232000,141851776000,66818816000,51429888000,43913216000,23900416000,21396992000,17486336000,18692736000,6914816000,7672960000,9539328000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,162592092800000,120058848256000,94668546688000,55029891456000,50638493824000,48469915392000,40448713728000,29295638016000,27267411328000,18132494464000,18284034944000,15482173184000,13832863872000,16703203328000,9928160640000,9219024768000,8958667648000,7541796608000,6034834048000,5936241792000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2247882112000,2202024704000,1944329728000,1733989376000,1506956928000,2326942336000,923594240000,813076864000,781170816000,633514240000,575703936000,467375104000,488482304000,662139648000,458981632000,297982336000,295037568000,286533888000,266416768000,248449920000,230002432000,203318016000,207372032000,178106752000,129104640000,121020032000,118649472000,97864320000,91836928000,90685696000,77647104000,141851776000,66818816000,51319296000,43913344000,23900416000,18674048000,16938112000,16437504000,6914816000,7672960000,9809792000,6557312000,6022272000,5779584000,2627712000,4905216000,3000576000,2179072000,384000,1991040000,1984768000,2121984000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,162782021504000,115647463040000,94668546688000,55029891456000,50638493824000,48922220416000,40448713728000,29275253120000,27267411328000,18162174336000,18284034944000,15482173184000,13832863872000,14173657216000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4858566912000,4457590784000,4179763584000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2246351232000,2154197888000,1944329728000,1733989376000,1506957056000,2509993344000,923594240000,813076864000,781170816000,590948992000,575703936000,455522560000,487712384000,662139648000,456145280000,297982336000,295034880000,286533888000,263296256000,250212096000,230002432000,203318016000,135342208000,110459264000,129104640000,118758272000,118649472000,97864320000,91868672000,90686848000,68341888000,14694144000,66818816000,50483456000,43913472000,23900416000,18548608000,17168640000,16437504000,6914816000,7672960000,9831936000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2155776000,2352896000,1991040000,1984768000,380544000,1615104000,1408000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,2048000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,162938798080000,115706580608000,94668546688000,55029891456000,50638493824000,48778744448000,40448713728000,29275253120000,27267411328000,18254786560000,15088759168000,15482173184000,13832863872000,7617133440000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4859111040000,4457590784000,4180527744000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2230907392000,2039886592000,1944329728000,1733989376000,1506957568000,641877248000,923734144000,813076864000,725375488000,553673344000,575703936000,480148608000,487729280000,220757120000,456145280000,297982336000,295034880000,299565824000,267783296000,241470336000,220342912000,203318016000,135342208000,110459264000,129104640000,118663552000,118649472000,97835520000,91883648000,99767808000,65239936000,14694144000,66818816000,49484672000,43913600000,14620160000,13108096000,17168640000,8721664000,6914816000,7672960000,10109952000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2087680000,2682752000,1991040000,1984768000,380544000,1615104000,1408000,620928000,499072000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,163074504320000,110946205440000,94668546688000,55029891456000,50638493824000,49634929024000,40448713728000,29275760128000,27267411328000,17296789376000,14102226048000,15482548096000,13832863872000,6897737344000,9928160640000,9219050752000,8970264832000,7541796608000,6034834048000,4849261312000,4457590784000,3210803456000,3707448192000,2969734144000,2706318336000,2698908288000,2524024064000,2236060800000,1986328960000,1944329728000,1733945344000,1506957824000,454921984000,924274304000,813076864000,719372288000,572017024000,575703936000,533945344000,487777152000,220757120000,473995392000,297982336000,295034880000,299565824000,271555584000,261224192000,220342912000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91886720000,93556224000,65239936000,14694144000,66818816000,50107392000,43913728000,14620160000,13108096000,17168640000,8721664000,6914816000,8777856000,10230528000,5084160000,7490560000,5779584000,0,4905216000,3000576000,2297728000,4085888000,1991040000,1984768000,380544000,1615104000,1408000,620928000,489088000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,18560000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,163190753920000,111050653440000,94668546688000,55029891456000,50638493824000,49865353728000,40448713728000,29275760128000,27267411328000,17623511680000,13348862848000,15527354752000,13832863872000,5220590592000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4837305472000,4457590784000,2984752768000,3707448192000,2969734144000,2706318336000,2698908288000,2598213248000,2297008256000,1995541632000,1944329728000,1733945344000,1506958080000,519747200000,924839552000,813076864000,716008064000,588576256000,575703936000,570769536000,489505920000,220757120000,476100224000,297982336000,295034880000,299565824000,281917568000,261224192000,218234880000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91868800000,101219968000,65197312000,14694144000,66818816000,50277120000,43913856000,14620160000,10179840000,17180160000,8721664000,6914816000,8777856000,10322304000,9930880000,8948224000,5779584000,0,4905216000,3000576000,2297728000,5751808000,1991040000,1984768000,380544000,1615104000,1408000,620928000,322688000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,4352000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,163336355200000,111143961344000,94668546688000,55029891456000,50638493824000,49995430272000,40448713728000,29275760128000,27267411328000,17666970880000,11714550528000,15606825344000,13832863872000,1979481728000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4834955136000,4457590784000,2982224384000,3707448192000,2969734144000,2706318336000,2698908288000,2622437632000,2298263808000,1661955456000,1944329728000,1733945344000,1506958336000,594770048000,924839552000,813076864000,694936576000,579323776000,575703936000,608921728000,493510144000,220757120000,474920704000,297982336000,295034752000,299565824000,287111552000,261224192000,218234880000,203318016000,896000,110459264000,129427328000,125946624000,118706560000,134671616000,93110016000,34790400000,52814976000,14694144000,66818816000,50331776000,43913984000,14620160000,8711552000,18124160000,7718912000,6914816000,8777856000,10340992000,8472832000,9467136000,5779584000,0,4905216000,3000576000,2297728000,5084416000,1991040000,1984768000,380544000,1615104000,1408000,620928000,4480000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,0,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv new file mode 100644 index 0000000000..635d35813d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +2018-12-27,161970387072000,130882300416000,94668546688000,55029891456000,50638493824000,38336309632000,40448713728000,29295568896000,27267411328000,17505628032000,15494882432000,15702943232000,13832863872000,14242280064000,9928160640000,9218944768000,8957422592000,7541796608000,6034834048000,5937893248000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2230504704000,2228458624000,1952837504000,1944329728000,1733989376000,1506955904000,339764480000,921950848000,812594176000,370410752000,603500800000,575703936000,474718208000,491007360000,662139648000,459477248000,297982336000,297141376000,230846848000,256112512000,244283904000,228683648000,203318016000,256331776000,173886720000,129027072000,139109120000,117884160000,97863680000,87247488000,90370688000,96233600000,108636160000,66818816000,50535936000,43912832000,23900416000,33932800000,9422592000,18692736000,0,7672960000,366592000,6557312000,6000896000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,154496000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,787072000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,162119939712000,130951853312000,94668546688000,55029891456000,50638493824000,41442712960000,40448713728000,29295568896000,27267411328000,17921053824000,17998195200000,15771797504000,13832863872000,12001895936000,9928160640000,9218971392000,8958675584000,7541796608000,6034834048000,5937961216000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2357435776000,2228909184000,1986484736000,1944329728000,1733989376000,1506956160000,2218562816000,921950848000,813076864000,587832448000,631372544000,575703936000,474718208000,491711360000,662139648000,458981632000,297982336000,295846144000,245742848000,260281472000,233874944000,228682752000,203318016000,256331776000,177062784000,129104640000,138835584000,118649472000,97863936000,87256320000,90336384000,96233600000,128210944000,66818816000,50535936000,43912960000,23900416000,33932800000,14527872000,18692736000,0,7672960000,2401408000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,162292553216000,131019984640000,94668546688000,55029891456000,50638493824000,42669537408000,40448713728000,29295568896000,27267411328000,18024812544000,18278423680000,15449285376000,13832863872000,11767707008000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936964864000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2237309440000,2049042048000,1944329728000,1733989376000,1506956416000,1754243200000,923198464000,813076864000,781170816000,633516288000,575703936000,474718208000,492912512000,662139648000,458981632000,297982336000,295037568000,263454848000,256227456000,267489664000,230024960000,203318016000,256331776000,178106752000,129104640000,138835584000,118649472000,97863936000,91802240000,90581120000,96233600000,141851776000,66818816000,51429504000,43913088000,23900416000,21396992000,16625536000,18692736000,20063232000,7672960000,2554368000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,162411179264000,131075613568000,94668546688000,55029891456000,50638493824000,45937860608000,40448713728000,29295568768000,27267411328000,18114090752000,18284034944000,15470170880000,13832863872000,11607914624000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936318080000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2242306944000,2067007872000,1944329728000,1733989376000,1506956672000,2039233408000,923594240000,813076864000,781170816000,633521792000,575703936000,474718208000,488464640000,662139648000,458981632000,297982336000,295037568000,277430144000,263643776000,253159424000,230020224000,203318016000,256331776000,178106752000,129104640000,137997440000,118649472000,97864320000,91831296000,90685696000,93119232000,141851776000,66818816000,51429888000,43913216000,23900416000,21396992000,17486336000,18692736000,6914816000,7672960000,9539328000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,162592092800000,120058848256000,94668546688000,55029891456000,50638493824000,48469915392000,40448713728000,29295638016000,27267411328000,18132494464000,18284034944000,15482173184000,13832863872000,16703203328000,9928160640000,9219024768000,8958667648000,7541796608000,6034834048000,5936241792000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2247882112000,2202024704000,1944329728000,1733989376000,1506956928000,2326942336000,923594240000,813076864000,781170816000,633514240000,575703936000,467375104000,488482304000,662139648000,458981632000,297982336000,295037568000,286533888000,266416768000,248449920000,230002432000,203318016000,207372032000,178106752000,129104640000,121020032000,118649472000,97864320000,91836928000,90685696000,77647104000,141851776000,66818816000,51319296000,43913344000,23900416000,18674048000,16938112000,16437504000,6914816000,7672960000,9809792000,6557312000,6022272000,5779584000,2627712000,4905216000,3000576000,2179072000,384000,1991040000,1984768000,2121984000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,162782021504000,115647463040000,94668546688000,55029891456000,50638493824000,48922220416000,40448713728000,29275253120000,27267411328000,18162174336000,18284034944000,15482173184000,13832863872000,14173657216000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4858566912000,4457590784000,4179763584000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2246351232000,2154197888000,1944329728000,1733989376000,1506957056000,2509993344000,923594240000,813076864000,781170816000,590948992000,575703936000,455522560000,487712384000,662139648000,456145280000,297982336000,295034880000,286533888000,263296256000,250212096000,230002432000,203318016000,135342208000,110459264000,129104640000,118758272000,118649472000,97864320000,91868672000,90686848000,68341888000,14694144000,66818816000,50483456000,43913472000,23900416000,18548608000,17168640000,16437504000,6914816000,7672960000,9831936000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2155776000,2352896000,1991040000,1984768000,380544000,1615104000,1408000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,2048000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,162938798080000,115706580608000,94668546688000,55029891456000,50638493824000,48778744448000,40448713728000,29275253120000,27267411328000,18254786560000,15088759168000,15482173184000,13832863872000,7617133440000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4859111040000,4457590784000,4180527744000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2230907392000,2039886592000,1944329728000,1733989376000,1506957568000,641877248000,923734144000,813076864000,725375488000,553673344000,575703936000,480148608000,487729280000,220757120000,456145280000,297982336000,295034880000,299565824000,267783296000,241470336000,220342912000,203318016000,135342208000,110459264000,129104640000,118663552000,118649472000,97835520000,91883648000,99767808000,65239936000,14694144000,66818816000,49484672000,43913600000,14620160000,13108096000,17168640000,8721664000,6914816000,7672960000,10109952000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2087680000,2682752000,1991040000,1984768000,380544000,1615104000,1408000,620928000,499072000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,163074504320000,110946205440000,94668546688000,55029891456000,50638493824000,49634929024000,40448713728000,29275760128000,27267411328000,17296789376000,14102226048000,15482548096000,13832863872000,6897737344000,9928160640000,9219050752000,8970264832000,7541796608000,6034834048000,4849261312000,4457590784000,3210803456000,3707448192000,2969734144000,2706318336000,2698908288000,2524024064000,2236060800000,1986328960000,1944329728000,1733945344000,1506957824000,454921984000,924274304000,813076864000,719372288000,572017024000,575703936000,533945344000,487777152000,220757120000,473995392000,297982336000,295034880000,299565824000,271555584000,261224192000,220342912000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91886720000,93556224000,65239936000,14694144000,66818816000,50107392000,43913728000,14620160000,13108096000,17168640000,8721664000,6914816000,8777856000,10230528000,5084160000,7490560000,5779584000,0,4905216000,3000576000,2297728000,4085888000,1991040000,1984768000,380544000,1615104000,1408000,620928000,489088000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,18560000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,163190753920000,111050653440000,94668546688000,55029891456000,50638493824000,49865353728000,40448713728000,29275760128000,27267411328000,17623511680000,13348862848000,15527354752000,13832863872000,5220590592000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4837305472000,4457590784000,2984752768000,3707448192000,2969734144000,2706318336000,2698908288000,2598213248000,2297008256000,1995541632000,1944329728000,1733945344000,1506958080000,519747200000,924839552000,813076864000,716008064000,588576256000,575703936000,570769536000,489505920000,220757120000,476100224000,297982336000,295034880000,299565824000,281917568000,261224192000,218234880000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91868800000,101219968000,65197312000,14694144000,66818816000,50277120000,43913856000,14620160000,10179840000,17180160000,8721664000,6914816000,8777856000,10322304000,9930880000,8948224000,5779584000,0,4905216000,3000576000,2297728000,5751808000,1991040000,1984768000,380544000,1615104000,1408000,620928000,322688000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,4352000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,163336355200000,111143961344000,94668546688000,55029891456000,50638493824000,49995430272000,40448713728000,29275760128000,27267411328000,17666970880000,11714550528000,15606825344000,13832863872000,1979481728000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4834955136000,4457590784000,2982224384000,3707448192000,2969734144000,2706318336000,2698908288000,2622437632000,2298263808000,1661955456000,1944329728000,1733945344000,1506958336000,594770048000,924839552000,813076864000,694936576000,579323776000,575703936000,608921728000,493510144000,220757120000,474920704000,297982336000,295034752000,299565824000,287111552000,261224192000,218234880000,203318016000,896000,110459264000,129427328000,125946624000,118706560000,134671616000,93110016000,34790400000,52814976000,14694144000,66818816000,50331776000,43913984000,14620160000,8711552000,18124160000,7718912000,6914816000,8777856000,10340992000,8472832000,9467136000,5779584000,0,4905216000,3000576000,2297728000,5084416000,1991040000,1984768000,380544000,1615104000,1408000,620928000,4480000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,0,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv new file mode 100644 index 0000000000..2a83cd9179 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" +2018-12-27,14242280064000,459477248000,6000896000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2018-12-28,12001895936000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2018-12-29,11767707008000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2018-12-30,11607914624000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2018-12-31,16703203328000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019-01-01,14173657216000,456145280000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019-01-02,7617133440000,456145280000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019-01-03,6897737344000,473995392000,7490560000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019-01-04,5220590592000,476100224000,8948224000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019-01-05,1979481728000,474920704000,9467136000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv new file mode 100644 index 0000000000..bbf65d068a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv new file mode 100644 index 0000000000..5c1ccab9a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +2018-12,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv new file mode 100644 index 0000000000..5c1ccab9a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +2018-12,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv new file mode 100644 index 0000000000..c52cec5d51 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" +2018-12,13264600192000,459080755200,6017996800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019-01,7177720064000,467461376000,7590092800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv new file mode 100644 index 0000000000..57a30c18a7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..59c0f97478 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +"2018 Q4",162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..59c0f97478 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +"2018 Q4",162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..097ac78d2c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" +"2018 Q4",13264600192000,459080755200,6017996800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +"2019 Q1",7177720064000,467461376000,7590092800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..50f4e4636a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv new file mode 100644 index 0000000000..9dfa7cc3b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +2018,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv new file mode 100644 index 0000000000..9dfa7cc3b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" +2018,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv new file mode 100644 index 0000000000..ec2274ba59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" +2018,13264600192000,459080755200,6017996800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +2019,7177720064000,467461376000,7590092800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv new file mode 100644 index 0000000000..2d1f6a2536 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv new file mode 100644 index 0000000000..f36358f81a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv new file mode 100644 index 0000000000..ad3c07f3c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv new file mode 100644 index 0000000000..f36358f81a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv new file mode 100644 index 0000000000..ad3c07f3c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..f36358f81a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..ad3c07f3c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv new file mode 100644 index 0000000000..10c2000993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +sanma,99.2816 +chaff,97.6186 +amere,94.6685 +norpa,92.1903 +leske,89.6434 +magwa,89.3511 +molater,81.3354 +bawwa,54.5348 +norwa,50.6385 +aytinis,37.0745 +bobol,36.6866 +setusca,30.1391 +tenwa,27.6657 +corbu,4.3913 +ibech,1.9595 +redgr,0.5757 +shttr,0.0143 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv new file mode 100644 index 0000000000..f36358f81a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv new file mode 100644 index 0000000000..ad3c07f3c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota Utilization: Logical (%)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv new file mode 100644 index 0000000000..195f668ece --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +2018-12-27,99.2816,97.6519,94.6685,92.1894,89.5742,87.5281,80.9852,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9640,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,99.2816,97.6519,94.6685,92.1897,89.5867,89.6053,81.0600,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9668,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,99.2816,97.6519,94.6685,92.1902,89.5867,90.1241,81.1463,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9716,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,99.2816,97.6519,94.6685,92.1902,89.5867,90.5704,81.2056,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,99.2816,97.6521,94.6685,92.1902,89.5866,90.6625,81.2960,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,99.2816,97.5842,94.6685,92.1907,89.7026,90.8109,81.3910,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9508,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,99.2816,97.5842,94.6685,92.1907,89.7026,91.2739,81.4694,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9509,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,99.2816,97.5859,94.6685,92.1905,89.7026,86.4839,81.5373,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9511,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,99.2816,97.5859,94.6685,92.1906,89.7026,88.1175,81.5954,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9580,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,99.2816,97.5859,94.6685,92.1906,89.7026,88.3348,81.6682,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9740,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv new file mode 100644 index 0000000000..195f668ece --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +2018-12-27,99.2816,97.6519,94.6685,92.1894,89.5742,87.5281,80.9852,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9640,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,99.2816,97.6519,94.6685,92.1897,89.5867,89.6053,81.0600,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9668,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,99.2816,97.6519,94.6685,92.1902,89.5867,90.1241,81.1463,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9716,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,99.2816,97.6519,94.6685,92.1902,89.5867,90.5704,81.2056,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,99.2816,97.6521,94.6685,92.1902,89.5866,90.6625,81.2960,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,99.2816,97.5842,94.6685,92.1907,89.7026,90.8109,81.3910,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9508,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,99.2816,97.5842,94.6685,92.1907,89.7026,91.2739,81.4694,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9509,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,99.2816,97.5859,94.6685,92.1905,89.7026,86.4839,81.5373,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9511,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,99.2816,97.5859,94.6685,92.1906,89.7026,88.1175,81.5954,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9580,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,99.2816,97.5859,94.6685,92.1906,89.7026,88.3348,81.6682,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9740,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv new file mode 100644 index 0000000000..f3c41e89e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" +2018-12-27,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-28,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-29,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2018-12-31,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-01,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-02,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-03,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-04,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01-05,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv new file mode 100644 index 0000000000..1c16dcde1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv new file mode 100644 index 0000000000..88c33f0c4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +2018-12,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv new file mode 100644 index 0000000000..88c33f0c4e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +2018-12,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv new file mode 100644 index 0000000000..55f2527b9f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" +2018-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019-01,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv new file mode 100644 index 0000000000..e7a2f83e63 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..6e7b6b3118 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +"2018 Q4",99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..6e7b6b3118 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +"2018 Q4",99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..426504359b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" +"2018 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2019 Q1",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..0ac60e445e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv new file mode 100644 index 0000000000..6c132261da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +2018,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv new file mode 100644 index 0000000000..6c132261da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" +2018,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv new file mode 100644 index 0000000000..5fc1cfb9d1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" +2018,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2019,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0e9eb8f4b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv new file mode 100644 index 0000000000..16f2752e09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv new file mode 100644 index 0000000000..467fce957a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv new file mode 100644 index 0000000000..16f2752e09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv new file mode 100644 index 0000000000..467fce957a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..16f2752e09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..467fce957a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv new file mode 100644 index 0000000000..492c6309ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amere,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +aytinis,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +bawwa,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bobol,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +camwa,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chaff,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corbu,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +ibech,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leske,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +magwa,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +molater,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +norpa,0.0000 +norwa,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redgr,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sanma,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +setusca,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +shttr,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tenwa,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +ylwwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv new file mode 100644 index 0000000000..16f2752e09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv new file mode 100644 index 0000000000..467fce957a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Physical Usage (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv new file mode 100644 index 0000000000..b4c3b8d8fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv new file mode 100644 index 0000000000..b4c3b8d8fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv new file mode 100644 index 0000000000..e3ba6ab2e5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv new file mode 100644 index 0000000000..8cbe3d7022 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv new file mode 100644 index 0000000000..e12bc5c347 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv new file mode 100644 index 0000000000..e12bc5c347 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv new file mode 100644 index 0000000000..7e7c4a3938 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv new file mode 100644 index 0000000000..c81e0a2891 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..67d9284cce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..67d9284cce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..e979d1f52a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..d7f941617d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv new file mode 100644 index 0000000000..909a8e1dce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv new file mode 100644 index 0000000000..909a8e1dce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv new file mode 100644 index 0000000000..d6d9417058 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv new file mode 100644 index 0000000000..9ad6bc8499 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv new file mode 100644 index 0000000000..33a0754396 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv new file mode 100644 index 0000000000..88571cc26a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv new file mode 100644 index 0000000000..33a0754396 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv new file mode 100644 index 0000000000..88571cc26a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..33a0754396 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..88571cc26a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv new file mode 100644 index 0000000000..6acf8333c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +molater,200000000000000.0000 +bobol,150000001024000.0000 +amere,100000002048000.0000 +norwa,100000002048000.0000 +redgr,100000002048000.0000 +ylwwa,100000002048000.0000 +bawwa,50000003072000.0000 +tenwa,50000003072000.0000 +chaff,30000001024000.0000 +ibech,25000001536000.0000 +magwa,20000002048000.0000 +aytinis,10000003072000.0000 +camwa,10000003072000.0000 +leske,10000003072000.0000 +norpa,10000003072000.0000 +sanma,10000003072000.0000 +setusca,5000003584000.0000 +shttr,1000005632000.0000 +corbu,1000001536000.0000 +alete,0.0000 +alpsw,0.0000 +ameke,0.0000 +amero,0.0000 +aquwa,0.0000 +arcre,0.0000 +arcte,0.0000 +baisa,0.0000 +balsh,0.0000 +barow,0.0000 +beeea,0.0000 +belki,0.0000 +bimla,0.0000 +bitte,0.0000 +blabi,0.0000 +blaca,0.0000 +blare,0.0000 +blate,0.0000 +blcbe,0.0000 +blewh,0.0000 +blhgu,0.0000 +blrth,0.0000 +blrwa,0.0000 +bltth,0.0000 +bluth,0.0000 +bluti,0.0000 +blwpr,0.0000 +blypi,0.0000 +bomorum,0.0000 +bonwa,0.0000 +bramb,0.0000 +brardix,0.0000 +brite,0.0000 +broth,0.0000 +brugu,0.0000 +bubsa,0.0000 +bullf,0.0000 +calla,0.0000 +carcr,0.0000 +casgu,0.0000 +categ,0.0000 +cetwa,0.0000 +chabu,0.0000 +chisw,0.0000 +choug,0.0000 +cirbu,0.0000 +citwa,0.0000 +clisw,0.0000 +coati,0.0000 +coldo,0.0000 +colfl,0.0000 +colpr,0.0000 +comgu,0.0000 +comni,0.0000 +comre,0.0000 +comsa,0.0000 +comte,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crcco,0.0000 +crebu,0.0000 +crela,0.0000 +creti,0.0000 +cross,0.0000 +cucko,0.0000 +daeju,0.0000 +darwa,0.0000 +deswa,0.0000 +deswh,0.0000 +dippe,0.0000 +dumnsis,0.0000 +dunli,0.0000 +dunno,0.0000 +duswa,0.0000 +eaowa,0.0000 +egygo,0.0000 +egyni,0.0000 +embhala,0.0000 +evegr,0.0000 +eybth,0.0000 +falnsis,0.0000 +firec,0.0000 +forte,0.0000 +fragu,0.0000 +frahata,0.0000 +galcata,0.0000 +garwa,0.0000 +gbbgu,0.0000 +glaarum,0.0000 +glagu,0.0000 +goldf,0.0000 +golor,0.0000 +grath,0.0000 +grawa,0.0000 +grefi,0.0000 +greph,0.0000 +gresa,0.0000 +gresh,0.0000 +gresk,0.0000 +gresn,0.0000 +greti,0.0000 +grewa,0.0000 +grewo,0.0000 +greye,0.0000 +grnwa,0.0000 +grrwa,0.0000 +grscu,0.0000 +gshwa,0.0000 +guill,0.0000 +gyrfa,0.0000 +hawfi,0.0000 +hawow,0.0000 +hiporum,0.0000 +hobby,0.0000 +honbu,0.0000 +hoopo,0.0000 +hoowa,0.0000 +houma,0.0000 +housp,0.0000 +hulwa,0.0000 +hyllina,0.0000 +icegu,0.0000 +ictwa,0.0000 +isash,0.0000 +isawh,0.0000 +ivogu,0.0000 +ixovius,0.0000 +jacsn,0.0000 +jay11,0.0000 +kestr,0.0000 +kingf,0.0000 +kitti,0.0000 +lanhach,0.0000 +lanwa,0.0000 +lapbu,0.0000 +laragus,0.0000 +laranus,0.0000 +larinii,0.0000 +larsp,0.0000 +laryane,0.0000 +laugu,0.0000 +lbbgu,0.0000 +leasa,0.0000 +lecte,0.0000 +leswh,0.0000 +lesye,0.0000 +linne,0.0000 +litau,0.0000 +litbu,0.0000 +litgu,0.0000 +litte,0.0000 +lobdo,0.0000 +loeow,0.0000 +lotsk,0.0000 +lotti,0.0000 +lstla,0.0000 +magpi,0.0000 +marsa,0.0000 +marti,0.0000 +marwa,0.0000 +massh,0.0000 +medgu,0.0000 +melnsis,0.0000 +melwa,0.0000 +mimttos,0.0000 +moure,0.0000 +musrica,0.0000 +netsw,0.0000 +nigal,0.0000 +nijar,0.0000 +noror,0.0000 +nutcr,0.0000 +olbpi,0.0000 +ovenb,0.0000 +pacsw,0.0000 +pagwa,0.0000 +palsa,0.0000 +palsw,0.0000 +palwa,0.0000 +parbu,0.0000 +parcr,0.0000 +pecpi,0.0000 +pecsa,0.0000 +penti,0.0000 +phivi,0.0000 +phyatus,0.0000 +pibgr,0.0000 +piefl,0.0000 +piewh,0.0000 +pinbu,0.0000 +pingr,0.0000 +pinnnis,0.0000 +pomsk,0.0000 +proubis,0.0000 +pursa,0.0000 +raven,0.0000 +razor,0.0000 +rebfl,0.0000 +rebsh,0.0000 +redsh,0.0000 +redst,0.0000 +redwi,0.0000 +reebu,0.0000 +reevi,0.0000 +reewa,0.0000 +refbl,0.0000 +reffa,0.0000 +renni,0.0000 +renph,0.0000 +rersw,0.0000 +ricpi,0.0000 +rinou,0.0000 +rinpa,0.0000 +rivwa,0.0000 +robgr,0.0000 +robin,0.0000 +rocbu,0.0000 +rocdo,0.0000 +rocpi,0.0000 +rocsp,0.0000 +rocth,0.0000 +rolle,0.0000 +rook1,0.0000 +rosgu,0.0000 +roste,0.0000 +royte,0.0000 +rubro,0.0000 +rupwa,0.0000 +rusto,0.0000 +rutdo,0.0000 +rutro,0.0000 +sabgu,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +sayoebe,0.0000 +scaro,0.0000 +scata,0.0000 +scocr,0.0000 +scoow,0.0000 +sedwa,0.0000 +semsa,0.0000 +serin,0.0000 +shag1,0.0000 +sheow,0.0000 +shola,0.0000 +shtla,0.0000 +sibru,0.0000 +sibth,0.0000 +sitnsis,0.0000 +skyla,0.0000 +slegu,0.0000 +snipe,0.0000 +snobu,0.0000 +snoow,0.0000 +sogsh,0.0000 +solsa,0.0000 +sonth,0.0000 +soote,0.0000 +spasp,0.0000 +spewa,0.0000 +spofl,0.0000 +sposa,0.0000 +starl,0.0000 +stevida,0.0000 +stoch,0.0000 +stodo,0.0000 +subwa,0.0000 +sumta,0.0000 +swall,0.0000 +swath,0.0000 +swift,0.0000 +sylnsis,0.0000 +synquus,0.0000 +tacolor,0.0000 +tawow,0.0000 +tawpi,0.0000 +tenow,0.0000 +tersa,0.0000 +thbwa,0.0000 +thrni,0.0000 +treec,0.0000 +trepi,0.0000 +triipes,0.0000 +trufi,0.0000 +turanni,0.0000 +turdo,0.0000 +twbcr,0.0000 +twite,0.0000 +veery,0.0000 +velsc,0.0000 +vertera,0.0000 +virrons,0.0000 +wallc,0.0000 +watpi,0.0000 +waxwi,0.0000 +whcbl,0.0000 +whcsp,0.0000 +wheat,0.0000 +whinc,0.0000 +white,0.0000 +whkte,0.0000 +whrsa,0.0000 +whtpl,0.0000 +whwla,0.0000 +wilph,0.0000 +wilwa,0.0000 +woodc,0.0000 +woodl,0.0000 +woodp,0.0000 +woosa,0.0000 +woosh,0.0000 +woowa,0.0000 +wren1,0.0000 +wryne,0.0000 +wwbte,0.0000 +yebbu,0.0000 +yebcu,0.0000 +yebwa,0.0000 +yelha,0.0000 +yelwa,0.0000 +yerwa,0.0000 +zenoura,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv new file mode 100644 index 0000000000..33a0754396 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +blaca,0.0000 +crcco,0.0000 +egyni,0.0000 +frahata,0.0000 +gresh,0.0000 +lanwa,0.0000 +ovenb,0.0000 +palsw,0.0000 +parcr,0.0000 +phivi,0.0000 +razor,0.0000 +rocdo,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv new file mode 100644 index 0000000000..88571cc26a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","Quota: Soft Threshold (Bytes)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv new file mode 100644 index 0000000000..2afa539ca3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +2018-12-27,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv new file mode 100644 index 0000000000..2afa539ca3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +2018-12-27,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv new file mode 100644 index 0000000000..5acc2c48d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" +2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv new file mode 100644 index 0000000000..2e71cfdfb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv new file mode 100644 index 0000000000..4e574868bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +2018-12,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv new file mode 100644 index 0000000000..4e574868bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +2018-12,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv new file mode 100644 index 0000000000..879178a3ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" +2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv new file mode 100644 index 0000000000..c758751e1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..02ed686c8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +"2018 Q4",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..02ed686c8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +"2018 Q4",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..fe3dcf7540 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" +"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..3260126af6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv new file mode 100644 index 0000000000..d655c46db2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +2018,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv new file mode 100644 index 0000000000..d655c46db2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" +2018,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv new file mode 100644 index 0000000000..a1fbc420be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv new file mode 100644 index 0000000000..7996a5ea85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..45257a2d7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv @@ -0,0 +1,25 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +blaca,1 +crcco,1 +egyni,1 +frahata,1 +gresh,1 +lanwa,1 +ovenb,1 +palsw,1 +parcr,1 +phivi,1 +razor,1 +rocdo,1 +sante,1 +savsp,1 +swath,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-usr.csv new file mode 100644 index 0000000000..6d0941f69a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv new file mode 100644 index 0000000000..45257a2d7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv @@ -0,0 +1,25 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +blaca,1 +crcco,1 +egyni,1 +frahata,1 +gresh,1 +lanwa,1 +ovenb,1 +palsw,1 +parcr,1 +phivi,1 +razor,1 +rocdo,1 +sante,1 +savsp,1 +swath,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..6d0941f69a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..45257a2d7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv @@ -0,0 +1,25 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +blaca,1 +crcco,1 +egyni,1 +frahata,1 +gresh,1 +lanwa,1 +ovenb,1 +palsw,1 +parcr,1 +phivi,1 +razor,1 +rocdo,1 +sante,1 +savsp,1 +swath,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..6d0941f69a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..7816731779 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv @@ -0,0 +1,353 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +alete,1 +alpsw,1 +ameke,1 +amere,1 +amero,1 +aquwa,1 +arcre,1 +arcte,1 +aytinis,1 +baisa,1 +balsh,1 +barow,1 +bawwa,1 +beeea,1 +belki,1 +bimla,1 +bitte,1 +blabi,1 +blaca,1 +blare,1 +blate,1 +blcbe,1 +blewh,1 +blhgu,1 +blrth,1 +blrwa,1 +bltth,1 +bluth,1 +bluti,1 +blwpr,1 +blypi,1 +bobol,1 +bomorum,1 +bonwa,1 +bramb,1 +brardix,1 +brite,1 +broth,1 +brugu,1 +bubsa,1 +bullf,1 +calla,1 +camwa,1 +carcr,1 +casgu,1 +categ,1 +cetwa,1 +chabu,1 +chaff,1 +chisw,1 +choug,1 +cirbu,1 +citwa,1 +clisw,1 +coati,1 +coldo,1 +colfl,1 +colpr,1 +comgu,1 +comni,1 +comre,1 +comsa,1 +comte,1 +coot1,1 +corbu,1 +corsh,1 +crama,1 +crcco,1 +crebu,1 +crela,1 +creti,1 +cross,1 +cucko,1 +daeju,1 +darwa,1 +deswa,1 +deswh,1 +dippe,1 +dumnsis,1 +dunli,1 +dunno,1 +duswa,1 +eaowa,1 +egygo,1 +egyni,1 +embhala,1 +evegr,1 +eybth,1 +falnsis,1 +firec,1 +forte,1 +fragu,1 +frahata,1 +galcata,1 +garwa,1 +gbbgu,1 +glaarum,1 +glagu,1 +goldf,1 +golor,1 +grath,1 +grawa,1 +grefi,1 +greph,1 +gresa,1 +gresh,1 +gresk,1 +gresn,1 +greti,1 +grewa,1 +grewo,1 +greye,1 +grnwa,1 +grrwa,1 +grscu,1 +gshwa,1 +guill,1 +gyrfa,1 +hawfi,1 +hawow,1 +hiporum,1 +hobby,1 +honbu,1 +hoopo,1 +hoowa,1 +houma,1 +housp,1 +hulwa,1 +hyllina,1 +ibech,1 +icegu,1 +ictwa,1 +isash,1 +isawh,1 +ivogu,1 +ixovius,1 +jacsn,1 +jay11,1 +kestr,1 +kingf,1 +kitti,1 +lanhach,1 +lanwa,1 +lapbu,1 +laragus,1 +laranus,1 +larinii,1 +larsp,1 +laryane,1 +laugu,1 +lbbgu,1 +leasa,1 +lecte,1 +leske,1 +leswh,1 +lesye,1 +linne,1 +litau,1 +litbu,1 +litgu,1 +litte,1 +lobdo,1 +loeow,1 +lotsk,1 +lotti,1 +lstla,1 +magpi,1 +magwa,1 +marsa,1 +marti,1 +marwa,1 +massh,1 +medgu,1 +melnsis,1 +melwa,1 +mimttos,1 +molater,1 +moure,1 +musrica,1 +netsw,1 +nigal,1 +nijar,1 +noror,1 +norpa,1 +norwa,1 +nutcr,1 +olbpi,1 +ovenb,1 +pacsw,1 +pagwa,1 +palsa,1 +palsw,1 +palwa,1 +parbu,1 +parcr,1 +pecpi,1 +pecsa,1 +penti,1 +phivi,1 +phyatus,1 +pibgr,1 +piefl,1 +piewh,1 +pinbu,1 +pingr,1 +pinnnis,1 +pomsk,1 +proubis,1 +pursa,1 +raven,1 +razor,1 +rebfl,1 +rebsh,1 +redgr,1 +redsh,1 +redst,1 +redwi,1 +reebu,1 +reevi,1 +reewa,1 +refbl,1 +reffa,1 +renni,1 +renph,1 +rersw,1 +ricpi,1 +rinou,1 +rinpa,1 +rivwa,1 +robgr,1 +robin,1 +rocbu,1 +rocdo,1 +rocpi,1 +rocsp,1 +rocth,1 +rolle,1 +rook1,1 +rosgu,1 +roste,1 +royte,1 +rubro,1 +rupwa,1 +rusto,1 +rutdo,1 +rutro,1 +sabgu,1 +sancr,1 +sanma,1 +sante,1 +sarwa,1 +savsp,1 +sayoebe,1 +scaro,1 +scata,1 +scocr,1 +scoow,1 +sedwa,1 +semsa,1 +serin,1 +setusca,1 +shag1,1 +sheow,1 +shola,1 +shtla,1 +shttr,1 +sibru,1 +sibth,1 +sitnsis,1 +skyla,1 +slegu,1 +snipe,1 +snobu,1 +snoow,1 +sogsh,1 +solsa,1 +sonth,1 +soote,1 +spasp,1 +spewa,1 +spofl,1 +sposa,1 +starl,1 +stevida,1 +stoch,1 +stodo,1 +subwa,1 +sumta,1 +swall,1 +swath,1 +swift,1 +sylnsis,1 +synquus,1 +tacolor,1 +tawow,1 +tawpi,1 +tenow,1 +tenwa,1 +tersa,1 +thbwa,1 +thrni,1 +treec,1 +trepi,1 +triipes,1 +trufi,1 +turanni,1 +turdo,1 +twbcr,1 +twite,1 +veery,1 +velsc,1 +vertera,1 +virrons,1 +wallc,1 +watpi,1 +waxwi,1 +whcbl,1 +whcsp,1 +wheat,1 +whinc,1 +white,1 +whkte,1 +whrsa,1 +whtpl,1 +whwla,1 +wilph,1 +wilwa,1 +woodc,1 +woodl,1 +woodp,1 +woosa,1 +woosh,1 +woowa,1 +wren1,1 +wryne,1 +wwbte,1 +yebbu,1 +yebcu,1 +yebwa,1 +yelha,1 +yelwa,1 +yerwa,1 +ylwwa,1 +zenoura,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..45257a2d7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv @@ -0,0 +1,25 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +blaca,1 +crcco,1 +egyni,1 +frahata,1 +gresh,1 +lanwa,1 +ovenb,1 +palsw,1 +parcr,1 +phivi,1 +razor,1 +rocdo,1 +sante,1 +savsp,1 +swath,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..6d0941f69a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +"System Username","User Count (Number of Users)" +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv new file mode 100644 index 0000000000..1dd0df2f28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-05,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv new file mode 100644 index 0000000000..1dd0df2f28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-05,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv new file mode 100644 index 0000000000..3f5c9f645e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Day,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" +2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01-05,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-usr.csv new file mode 100644 index 0000000000..5ce4a995d6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Day +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..7aac9ac18f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..7aac9ac18f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..cf4b7be6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Month,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" +2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..eb75f5cabf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Month +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..7438d67eed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..7438d67eed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..8d02c27d13 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" +"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..8a15c76657 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Quarter +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv new file mode 100644 index 0000000000..2998cd4e07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..2998cd4e07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by System Username" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" +2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..d4d438f4c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2018-12-27,2019-01-05 +--------- +Year,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" +2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..60537a19f3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv @@ -0,0 +1,10 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [], + "data": [], + "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/localhost/Storage/username/user_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-usr.csv new file mode 100644 index 0000000000..e61843b263 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2018-12-27,2019-01-05 +--------- +Year +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json new file mode 100644 index 0000000000..cb67d95941 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json @@ -0,0 +1,5 @@ +["Instance ID","PI Group","Instance Type"] +["172df8e9-b2ec-4864-898d-a4d401de85f0","Polar Ocean and Climate Systems","m1.small"] +["4d5e602e-97b7-4839-8818-097d6bcc8e62","Polar Ocean and Climate Systems","m1.small"] +["dde9e2fb-a519-4299-a35f-8a096a46404c","Galactic Astronomy","m1.medium"] +["b9c560b9-1066-483c-895e-aebb8b3c7ac1","Polar Ocean and Climate Systems","m1.medium"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json new file mode 100644 index 0000000000..4c5cc40d41 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json @@ -0,0 +1,853 @@ +["Instance ID","Resource","Service Provider","System Username (Deidentified)","User","Decanal Unit","Department","PI Group","Project","Principal Investigator","Instance Type","Number of Cores","Memory(MB)","Root Volume Size","Domain","Host","Start Date"] +["7374150b-3c87-47bc-b27f-69c00197871c","OpenStack","screw - Screwdriver","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c1.m4","1","4096","20","Default","srv-p24-35.cbls.ccr.buffalo.edu","2018-04-20 14:11:10"] +["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","screw - Screwdriver","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-32.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] +["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","screw - Screwdriver","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-41.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] +["565e8a1e-a83e-4104-a32c-85c79b7737fd","OpenStack","screw - Screwdriver","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c4.m16","4","16384","20","Default","srv-p24-34.cbls.ccr.buffalo.edu","2018-04-26 17:38:36"] +["a6c4053f-ba16-472e-9fe5-0196775acdc9","NutSetters","screw - Screwdriver","","allopatr","Unknown","Unknown","Unknown","allopatr","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] +["7600bd16-2447-4a94-88eb-0b7cc225f272","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] +["b76f580c-4ff6-46c7-a6a2-f46479a635c7","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] +["cb58a528-5063-4bda-95cd-e307971ebc5b","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.small","2","4096","20","adjunct","r03c4b07","2019-06-26 00:00:24"] +["1330d7c1-7139-4d10-bcec-1e8610962615","NutSetters","screw - Screwdriver","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r01c4b13","2019-06-26 00:00:23"] +["faca7e03-10ac-448a-906e-bff921375139","NutSetters","screw - Screwdriver","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["2332bf52-f34a-43c8-8d13-2f67d03ad745","NutSetters","screw - Screwdriver","","ljcohen","Unknown","Unknown","Unknown","ljcohen","Unknown","s1.xxlarge","44","122880","960","Default","r06c2b14","2019-06-26 00:00:48"] +["11e0e563-d5e7-40a2-a379-ecda48435265","NutSetters","screw - Screwdriver","","ppani","Unknown","Unknown","Unknown","ppani","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] +["7860ba4d-a348-4684-9cb9-90fe83fe39a4","NutSetters","screw - Screwdriver","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 22:43:05"] +["c553f329-674f-4270-ae7d-920a9d442f08","NutSetters","screw - Screwdriver","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r02c3b04","2019-06-26 22:04:17"] +["ec876f2e-da3d-441c-99a8-a59c70affa05","NutSetters","screw - Screwdriver","","dikim","Unknown","Unknown","Unknown","dikim","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] +["50b55380-e1a8-4e48-a1e9-4e8e342b5162","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.small","2","4096","20","tacc","r07c1b10","2019-06-26 00:00:04"] +["8498b471-0494-447a-abd9-6f18d85b7a40","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] +["cc4503ed-103a-4f8c-b0a6-d21da020cdce","NutSetters","screw - Screwdriver","","sruthi12","Unknown","Unknown","Unknown","sruthi12","Unknown","m1.medium","6","16384","60","Default","r02c4b07","2019-06-26 00:00:18"] +["06c8b241-42a7-4960-82d0-a593ac770e5b","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.tiny","1","2048","8","tacc","r01c2b16","2019-06-26 00:00:42"] +["09ddf2f8-fa48-4ce8-9536-501c165a1db0","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r07c2b01","2019-06-26 00:00:10"] +["3fb17152-b49f-4a03-a079-0a2990cf570d","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] +["40482879-2219-4dc5-b45c-1bfda108be05","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r02c1b06","2019-06-26 00:00:53"] +["79d7c087-ad59-4b54-9f76-aefd75051239","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c1b08","2019-06-26 00:00:37"] +["a1250ffe-26c6-4bbe-9a9e-5fc4b4af0712","NutSetters","screw - Screwdriver","","rsignell","Unknown","Unknown","Unknown","TG-OCE170022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] +["5b363a28-598b-47c0-b0f3-df4fcdcb8418","NutSetters","screw - Screwdriver","","wzhy2000","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wzhy2000","Egret, Snowy","m1.small","2","4096","20","Default","r07c1b07","2019-06-26 00:00:20"] +["f93059aa-4d4f-4cba-9c9d-e13014f0d4af","NutSetters","screw - Screwdriver","","mscott","Unknown","Unknown","Unknown","mscott","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["945191a1-8994-4d27-a3ff-7eff5968ad76","NutSetters","screw - Screwdriver","","dmm","Unknown","Unknown","Unknown","dmm","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] +["d60d6413-52e6-4d47-9c0c-d6258dcbf777","NutSetters","screw - Screwdriver","","dagrawa2","Unknown","Unknown","Unknown","dagrawa2","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["dde9e2fb-a519-4299-a35f-8a096a46404c","NutSetters","screw - Screwdriver","","vlflores","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlflores","Ibis, Glossy","m1.medium","6","16384","60","Default","r02c3b07","2019-06-26 00:00:48"] +["679ae462-5d27-41ff-b122-b5ab5d7af9e5","NutSetters","screw - Screwdriver","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r07c1b04","2019-06-26 00:00:33"] +["8605d428-c3f8-496d-92f3-35e6f6008d07","NutSetters","screw - Screwdriver","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r06c2b05","2019-06-26 00:00:02"] +["5e23125d-f4b4-4601-a270-ae63cec7f11f","NutSetters","screw - Screwdriver","","lmundia","Unknown","Unknown","Unknown","lmundia","Unknown","m1.tiny","1","2048","8","Default","r01c2b15","2019-06-26 00:00:27"] +["19ca89a0-91b4-4dd6-97c2-fed90741fbfb","NutSetters","screw - Screwdriver","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.tiny","1","2048","8","Default","r07c4b03","2019-06-26 00:00:36"] +["a08e9d1d-bd3f-496a-bb94-271d0234f635","NutSetters","screw - Screwdriver","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] +["07b0d86a-acde-443a-8076-ccf84555d18b","NutSetters","screw - Screwdriver","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r02c4b15","2019-06-26 00:00:37"] +["86191a2e-7251-4bc4-971d-9b027fbf2485","NutSetters","screw - Screwdriver","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] +["f6feb15c-ad29-4376-a8f9-bbb9300b245e","NutSetters","screw - Screwdriver","","jrmales","Unknown","Unknown","Unknown","jrmales","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b05","2019-06-26 00:00:22"] +["f20a18a4-26c3-49ff-b8b7-07e7ece2ac71","NutSetters","screw - Screwdriver","","aalmsaee","Unknown","Unknown","Unknown","aalmsaee","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] +["e63e2006-7a3d-4c98-b0d7-fe97f8deaf18","NutSetters","screw - Screwdriver","","td160021","Unknown","Unknown","Unknown","td160021","Unknown","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] +["363f661e-4cff-4395-b284-560f84f48198","NutSetters","screw - Screwdriver","","ssud2","Unknown","Unknown","Unknown","ssud2","Unknown","m1.tiny","1","2048","8","Default","r02c2b09","2019-06-26 00:00:50"] +["0b8ad228-28c2-4dc7-9774-9d9d75c1eb96","NutSetters","screw - Screwdriver","","millera2","Unknown","Unknown","Unknown","millera2","Unknown","m1.small","2","4096","20","Default","r02c2b02","2019-06-26 00:00:55"] +["5ea6533a-1ee6-4d48-99ec-28857e0cac9e","NutSetters","screw - Screwdriver","","lbao235","Unknown","Unknown","Unknown","lbao235","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["0b294aee-3df3-4d55-84ef-c4a55ddd2fdb","NutSetters","screw - Screwdriver","","chanchal","Unknown","Unknown","Unknown","chanchal","Unknown","m1.xlarge","24","61440","60","Default","r01c4b13","2019-06-26 00:00:23"] +["65890522-87d8-4bad-86a0-f546db0a2c4c","NutSetters","screw - Screwdriver","","ssmallen","Unknown","Unknown","Unknown","ssmallen","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["0d001e36-872f-4c9a-b0f9-fba4c2527467","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r06c2b13","2019-06-26 00:00:14"] +["25e46cbc-009f-4cfb-8297-b25c4289d146","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c1b03","2019-06-26 19:00:05"] +["6f502861-fa35-4543-9d44-9760a6c3e7db","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] +["bed56745-69cb-40f1-85d2-9ad4134a1352","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["e4393488-d995-48dc-bbfc-2c62c48af58d","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] +["1c589f8f-11ca-4c2f-bf43-5f6e14ae8e8c","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.large","10","30720","60","Default","r02c1b16","2019-06-26 00:00:26"] +["4733d86e-3e10-4252-9dc0-e5f7989ba322","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r07c4b03","2019-06-26 00:00:36"] +["d3147d53-ee4f-4ecf-9968-9daf879a8872","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r06c2b03","2019-06-26 15:00:16"] +["3cff64a0-461a-497c-8e0b-ab33e5a78e7d","NutSetters","screw - Screwdriver","","kangplee","Unknown","Unknown","Unknown","kangplee","Unknown","m1.tiny","1","2048","8","Default","r07c4b10","2019-06-26 00:00:12"] +["3d7589c6-3987-4559-a28a-562bf74e15c2","NutSetters","screw - Screwdriver","","wbt3","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wbt3","Tern, Sandwich","m1.small","2","4096","20","Default","r02c3b15","2019-06-26 00:00:40"] +["a31e1790-67d3-4b42-a7ca-af40090e6998","NutSetters","screw - Screwdriver","","jpummil","Unknown","Unknown","Unknown","jpummil","Unknown","m1.large","10","30720","60","Default","r06c1b01","2019-06-26 00:00:28"] +["b9c560b9-1066-483c-895e-aebb8b3c7ac1","NutSetters","screw - Screwdriver","","upendra","Geosciences","Polar Programs","Polar Ocean and Climate Systems","upendra","Egret, Snowy","m1.medium","6","16384","60","Default","r07c2b10","2019-06-26 00:00:05"] +["2c1b9f69-83ee-44c8-8a8d-28b0e751750e","NutSetters","screw - Screwdriver","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","m1.tiny","1","2048","8","Default","r06c1b01","2019-06-26 00:00:28"] +["c926ef79-69ea-4258-85c4-6a7859887f91","NutSetters","screw - Screwdriver","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","s1.large","10","30720","240","Default","r07c2b04","2019-06-26 00:00:51"] +["ca744fb8-c727-4699-a88d-26ed4fc5ee22","NutSetters","screw - Screwdriver","","zc8304","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zc8304","Ibis, Glossy","m1.small","2","4096","20","Default","r07c2b03","2019-06-26 01:00:12"] +["0a7b0b67-cebe-4d1f-8cfe-cb8c19416e80","NutSetters","screw - Screwdriver","","sharnly3","Unknown","Unknown","Unknown","sharnly3","Unknown","m1.small","2","4096","20","Default","r07c2b04","2019-06-26 00:00:51"] +["08b48a44-07f4-4a67-b50f-aae352e426dd","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] +["4133ea6f-e685-4f99-85bf-613175d93375","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] +["996ceef3-b429-450c-8e9f-bcd4fadba509","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] +["f6259fb3-d893-410a-95cd-4588a78da9fe","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:01"] +["0396a519-7380-4860-a819-ef70c3e8326a","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] +["196432e9-546a-41f9-968d-a09a653c21fc","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["1cd67c1e-fcda-4137-be3b-ce89e6ed7133","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] +["1dda1c51-163e-450c-b33e-dc45ad327eef","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] +["3ce24a13-c257-4006-b0d2-31f6b4397e04","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] +["f3dbc55d-35d5-4337-a9f9-799acbd5fb50","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["8dc31df4-44b2-41b5-b373-927a7385bf1f","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] +["aa864be4-5935-40f7-8d07-b0ceda55a5b8","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] +["70b16773-8eef-418a-a71e-a65be78282f0","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","s1.xxlarge","44","122880","960","Default","r07c4b05","2019-06-26 00:00:12"] +["586a61ae-184b-4d3c-b737-04121a3ef31b","NutSetters","screw - Screwdriver","","jcali","Unknown","Unknown","Unknown","jcali","Unknown","s1.large","10","30720","240","Default","r02c3b15","2019-06-26 00:00:40"] +["66e04098-1c2e-4101-a0c7-9be962fd1381","NutSetters","screw - Screwdriver","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] +["252299b1-d473-460d-aef8-cac75455b74b","NutSetters","screw - Screwdriver","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["0b802076-385b-49c2-8c51-6f2c1ed84f30","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r03c1b14","2019-06-26 00:00:00"] +["3249c779-9400-452c-a73d-4b5c3bbc4627","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c3b02","2019-06-26 00:00:58"] +["452b808c-dc3e-4a57-99c1-8cc1bd5145e4","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c2b02","2019-06-26 00:00:24"] +["6dd51a85-282b-4de2-ae41-ed5a28469690","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b10","2019-06-26 00:00:41"] +["84858cd4-9a68-4021-b4ce-a7c0b06eaa66","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c2b11","2019-06-26 00:00:01"] +["8bbde70e-1f0a-427b-8081-ebfe3a4672b2","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c2b11","2019-06-26 00:00:28"] +["8f402416-84c1-4fad-ac6c-e4f1e5ec3ed0","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b06","2019-06-26 00:00:32"] +["95219389-b2ca-4332-9146-40eeb857faa0","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r01c4b10","2019-06-26 00:00:34"] +["9e573e70-f6b8-47d5-8756-1c3d2e755f49","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c4b14","2019-06-26 00:00:18"] +["a49c2306-188b-4426-b30f-ef7ba2315c6b","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c1b09","2019-06-26 00:00:42"] +["b84a9c69-029f-4493-ad18-7eae58613983","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b14","2019-06-26 00:00:29"] +["cad0eff4-9d6b-4651-a6ff-247568a8b4dd","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b04","2019-06-26 00:00:33"] +["7f40857a-ef94-4c1d-93d1-197a559c23fb","NutSetters","screw - Screwdriver","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r07c1b03","2019-06-26 00:00:07"] +["94b88a4e-8804-4e88-891d-3b1b14abbe11","NutSetters","screw - Screwdriver","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] +["afd12b5e-748f-49bf-a2bc-f7bf33aa0330","NutSetters","screw - Screwdriver","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] +["d2f48b7a-2d69-426e-9a51-adef4f79983e","NutSetters","screw - Screwdriver","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r02c2b08","2019-06-26 00:00:09"] +["8de7c2a7-889b-4d4a-9c44-65176f094166","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r02c2b10","2019-06-26 00:00:04"] +["9773ae53-cb86-406c-9163-dfeed292cb29","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b13","2019-06-26 00:05:22"] +["c06912a6-dba8-418f-8b69-e4e6bac7e69c","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 18:44:54"] +["4cab08f2-76b2-4eaa-8ae5-9824513f53c1","NutSetters","screw - Screwdriver","","tskluzac","Unknown","Unknown","Unknown","tskluzac","Unknown","m1.large","10","30720","60","Default","r07c2b10","2019-06-26 00:00:05"] +["332d0b6a-2c5c-4195-a575-6075763422df","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c3b15","2019-06-26 00:00:16"] +["9769327f-810a-475c-a44d-1eede518ca61","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c1b13","2019-06-26 00:00:39"] +["106dcbb3-78e5-42df-bf50-872cd98720ed","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c3b13","2019-06-26 00:00:57"] +["7a1e2a7d-a532-40b8-9249-9ee0c9656971","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r07c2b02","2019-06-26 00:00:24"] +["936ca9f1-0f22-49bf-b984-eb5a953e29e6","NutSetters","screw - Screwdriver","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] +["8b5030b7-7387-4d02-a794-03eb908034f9","NutSetters","screw - Screwdriver","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.medium","6","16384","60","tacc","r07c2b01","2019-06-26 00:00:10"] +["6cd74e20-eff7-46a7-96db-d9de9174c9fa","NutSetters","screw - Screwdriver","","mworinge","Unknown","Unknown","Unknown","mworinge","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] +["90495dd5-bf0e-4cbd-a6bf-4bb64361c5b2","NutSetters","screw - Screwdriver","","eknox","Unknown","Unknown","Unknown","eknox","Unknown","s1.xxlarge","44","122880","960","Default","r03c1b07","2019-06-26 00:00:22"] +["0ae7a69d-da0c-47fe-9b68-34dd9065063b","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] +["0f31f83f-6cf8-4dc4-a97c-80da564bc3e7","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] +["a7a60145-68b8-45db-9052-f0b4670b0435","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["ec5cba0d-716f-4d39-a025-4f3352d3985c","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] +["f7493563-62e9-470b-ac9f-4eb68de2c486","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b02","2019-06-26 00:00:02"] +["0fef90d3-2626-4805-9a03-ec14669440f8","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.large","10","30720","60","tacc","r07c1b14","2019-06-26 00:00:17"] +["5ffa6463-d78a-4294-8a3f-9a65905f7fa0","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","s1.large","10","30720","240","tacc","r02c1b08","2019-06-26 00:00:16"] +["452c4e57-b44c-45a9-be85-3d4005b7a28a","NutSetters","screw - Screwdriver","","yclu","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yclu","Egret, Snowy","s1.xlarge","24","61440","480","Default","r01c2b10","2019-06-26 00:00:17"] +["acff346d-1acf-4348-a305-117ebf7488dc","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.tiny","1","2048","8","tacc","r06c2b07","2019-06-26 00:00:21"] +["19c60e43-7bd6-4f4f-a91f-dcf27072b4a3","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:41"] +["72221a29-1270-4353-b332-86b495dfb2a4","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b08","2019-06-26 00:00:57"] +["923ccd9c-e0fd-46c7-ab0a-d9512f6f1131","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b07","2019-06-26 00:00:43"] +["ad89d37d-e05b-41f7-b77c-487d0bece703","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] +["ae330718-7ef1-429b-ad37-ec6f40f07711","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] +["caadd360-3ee7-44e7-9113-8113c329b747","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["ee96a2b5-bc8e-4c46-a666-c987b113703f","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["18995afa-2edc-457c-8cd6-9b653d6c6ef0","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] +["19ec4a6f-bced-485e-bbd9-e1bf5f6aa348","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c2b07","2019-06-26 00:00:42"] +["3663294c-f4dd-488f-a49e-127f23449bf1","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c1b03","2019-06-26 00:00:07"] +["3a3c458e-1b4d-48d6-9056-2b6a3b9e1c25","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["4f4951f9-48d3-4d47-94f9-3bcf6c230903","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] +["6410da80-e5b1-4520-9eee-a92ab93c79b0","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b04","2019-06-26 00:00:04"] +["64fd8888-4063-49ae-ba6c-8438bdfd7b15","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c1b14","2019-06-26 00:00:29"] +["6dbb2280-cb34-4f64-9e8d-f77596e4f095","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c1b09","2019-06-26 00:00:06"] +["7bce86ae-037c-4141-b146-1b2ed0ee8a1b","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["9399443c-a368-408d-9ae4-6765876924fc","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c3b12","2019-06-26 00:00:51"] +["9482e6be-ecd5-449c-bb46-20df2402c0a3","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b02","2019-06-26 00:00:24"] +["978c0fbd-bbe5-449e-9afb-2ab7121a3f28","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b07","2019-06-26 00:00:17"] +["df5df764-2a01-4ce1-818e-e89cb7c98287","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] +["ec7b8779-8c7e-40ff-ab3b-12c9ed5daaaa","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c4b13","2019-06-26 00:00:23"] +["dd16f410-e8e7-498b-b9dd-3722ece48816","NutSetters","screw - Screwdriver","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.small","2","4096","20","adjunct","r06c4b05","2019-06-26 00:00:47"] +["af914abc-8773-48f5-b526-13fa2baf5465","NutSetters","screw - Screwdriver","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.xlarge","24","61440","60","adjunct","r07c3b05","2019-06-26 00:00:46"] +["381f77a7-eaa4-4264-ade9-b508ea20f423","NutSetters","screw - Screwdriver","","shayyag","Unknown","Unknown","Unknown","shayyag","Unknown","m1.small","2","4096","20","Default","r07c2b11","2019-06-26 00:00:48"] +["2c8dd9ce-efb2-4006-bc9a-da2dbe2a51c0","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r07c1b01","2019-06-26 00:00:01"] +["41d28667-77f8-4f62-8910-245dbad7a519","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] +["834a8a95-f650-48a8-9e6d-46f95cac9aef","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c1b10","2019-06-26 00:01:02"] +["b1ea880d-42a4-4301-b5a4-599ebdbf53d3","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] +["c7165fc2-4081-4c65-8925-784964c966e8","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r01c1b04","2019-06-26 00:00:07"] +["b4ba5f0d-8875-4f30-bc40-b94a8daabc20","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] +["c1563c71-d35c-4197-8e79-1aef5262b5fd","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["dfc5ff98-060c-46fb-ad3b-7d8643647404","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] +["37b06c82-ec8f-4052-af19-fa946eeb204f","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] +["ae97d816-189c-479e-a81b-45fa483e1cb4","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["4721fbae-32e0-46ae-a9d3-88322f222b3c","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b11","2019-06-26 00:00:07"] +["4d682c6f-27e3-42ee-9713-fd6e09459fe0","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["4f34dd83-f08e-4202-9c92-a95dd8d5a9cb","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b02","2019-06-26 00:00:36"] +["57af9f16-5a9a-4c61-a2c4-f729587691cc","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["79ef6f8c-6146-4683-856f-d8c307ccdd50","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r02c1b10","2019-06-26 00:00:51"] +["05ed5f32-f86a-46ab-ac59-d7f40c8bde59","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] +["57ced9da-be8b-42e1-ac41-e043a94a8e47","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.medium","6","16384","60","tacc","r06c1b13","2019-06-26 00:00:39"] +["07fa07bd-9b7e-44f9-abf8-4ff8a32d3961","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 08:20:14"] +["0b5eef4c-c408-43a1-a405-30f3f9b58973","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b05","2019-06-26 06:45:13"] +["5d8d0cd3-dfc3-4127-b5be-d554cd6030b7","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b09","2019-06-26 08:20:21"] +["687a7ba1-d464-4b45-be19-cde29b4425a1","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 08:20:28"] +["7f59108a-2543-422c-a62d-4bec27c5f234","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c2b07","2019-06-26 06:45:29"] +["f8efe9c3-e19c-46ae-84da-c5ecd73ed542","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r02c2b01","2019-06-26 06:40:12"] +["166a50f1-6ef6-4f33-8657-e5a956f6771d","NutSetters","screw - Screwdriver","","dpazruiz","Unknown","Unknown","Unknown","dpazruiz","Unknown","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] +["5e4dcee0-7df4-41fb-98bb-57592f6f7c06","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r07c1b11","2019-06-26 00:00:03"] +["ad983ec3-bcbb-428b-9ea0-d0b861fa0aa4","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c2b02","2019-06-26 00:00:56"] +["b5668e54-ee77-4b03-a6d6-7aae4f4b021f","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b02","2019-06-26 00:00:53"] +["c19b7af6-9111-4bef-aa62-30137a8ab499","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b01","2019-06-26 00:00:08"] +["c226f962-3a23-4d89-8b4e-27d7bf802fd2","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b05","2019-06-26 00:00:58"] +["e1d6ab63-82a3-4920-897e-ad66c92234f7","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b09","2019-06-26 00:00:39"] +["fdda9ba9-2895-4b9e-840b-fe3a581d8869","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c1b15","2019-06-26 00:00:26"] +["42fec381-64f5-4395-afd8-36acfb478997","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b16","2019-06-26 00:00:45"] +["551f49fd-a800-4797-b8c3-2e7e26de5243","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r07c3b15","2019-06-26 00:00:38"] +["6473619b-a915-40e3-ad8a-60bb1e538faa","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b11","2019-06-26 00:00:49"] +["a9756c07-2683-4c57-91a3-419b47a4c866","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b13","2019-06-26 00:00:08"] +["b4a7f7e9-a873-48da-8aee-8457920339da","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c4b06","2019-06-26 00:00:29"] +["db373e66-c954-4b35-bc75-84ad731599a9","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b04","2019-06-26 00:00:02"] +["f0bf2097-cfe1-4805-bdbb-c3849d3cda4f","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b12","2019-06-26 00:00:25"] +["f5c2f799-b2ad-4e9f-af0a-976ecf32f9e7","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r06c2b04","2019-06-26 00:00:38"] +["fd1b8017-58c3-402c-9893-3ea6c43a0717","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r02c3b04","2019-06-26 00:00:37"] +["b3a9918b-37d9-460c-92b1-9d202b0b7f30","NutSetters","screw - Screwdriver","","dtyoung","Unknown","Unknown","Unknown","dtyoung","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] +["b12bdb88-5032-40f2-8e13-eb646fc93776","NutSetters","screw - Screwdriver","","stephd","Unknown","Unknown","Unknown","stephd","Unknown","m1.medium","6","16384","60","Default","r01c2b07","2019-06-26 00:00:42"] +["98b3a9d0-7921-4620-a4d9-c9d4836cf14c","NutSetters","screw - Screwdriver","","ychatel","Engineering","Mechanical and Structural Systems","Mechanics and Materials","ychatel","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["adbfba12-c870-46ac-ace4-ccaafd732d24","NutSetters","screw - Screwdriver","","bake1349","Unknown","Unknown","Unknown","bake1349","Unknown","s1.xxlarge","44","122880","960","Default","r01c1b02","2019-06-26 00:00:12"] +["51589a10-968b-4ee0-a5f5-0c578827452a","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] +["61161601-6045-4ebf-83c0-179cce6b1431","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b12","2019-06-26 18:41:03"] +["7a662c2e-2828-4cea-ad92-9bf3dc6d9201","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] +["80cc3e60-8089-4e84-84e0-b06e813bd211","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b06","2019-06-26 00:00:15"] +["a1f310a7-5673-421f-b205-75c51af8a943","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["cd2ce889-7abf-41bf-ad8f-817bcda11ed4","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["cf5ae142-de41-4ee2-9905-3bc8e1e99c0b","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c4b13","2019-06-26 00:00:52"] +["d731f4d8-11e8-421c-a7f0-24eb15441eb2","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b13","2019-06-26 00:00:04"] +["0abe27fa-36b5-492f-aab3-a9bbd594d7b0","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c3b06","2019-06-26 00:00:12"] +["457113e9-32f5-4bd4-8d6f-be22cb59deb4","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c1b02","2019-06-26 00:00:27"] +["4b74d273-0e06-415f-af46-75a1eaea0fcc","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] +["ca763831-5715-48ce-aae0-49f684d056dd","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r02c3b15","2019-06-26 00:00:40"] +["05aca4a3-5f99-4120-9a11-7fc37e04e0bb","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b15","2019-06-26 00:00:12"] +["f86b42b1-5b2e-41b3-96da-7cc252312961","NutSetters","screw - Screwdriver","","kloster","Unknown","Unknown","Unknown","kloster","Unknown","m1.xlarge","24","61440","60","Default","r03c3b06","2019-06-26 00:00:38"] +["8a0cd2a0-07b3-474c-a01f-b29170d3c549","NutSetters","screw - Screwdriver","","wsang","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wsang","Tern, Sandwich","m1.tiny","1","2048","8","Default","r02c2b02","2019-06-26 00:00:55"] +["0c95a3c7-ea0b-411f-90d8-9a360f70b895","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["17fb59a8-362e-4dee-9f2b-e8f20c320884","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] +["9b371f81-1f4c-4c68-8e24-3cda5712a89d","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:17"] +["9d152447-71b9-4ff8-b4db-ff34edbc3d2e","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] +["a86f3d0b-29fd-428a-a85d-11854101fe16","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] +["c286e591-a8b7-40a4-97d7-7ed3263075e0","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] +["4341f3f0-e7d6-4577-b55c-2c730d24cdc0","NutSetters","screw - Screwdriver","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r07c1b04","2019-06-26 00:00:33"] +["7b94f6d7-6447-4c4b-9067-675751dcc323","NutSetters","screw - Screwdriver","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] +["b4c7b513-b7b9-460b-b89c-84bc9418dd6f","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["fc48b9b5-209e-458d-9011-2967debb88ec","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","120","tacc","r06c3b13","2019-06-26 00:00:57"] +["ae616f5f-a853-43e6-9e73-a92c1561fc8b","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","s1.xlarge","24","61440","480","tacc","r03c2b06","2019-06-26 00:00:12"] +["780e2422-455d-4c5a-9165-27d930f52378","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI160006","Unknown","m1.small","2","4096","20","tacc","r06c3b15","2019-06-26 00:00:16"] +["3f566e21-4af4-4e22-8888-5d25bb97a190","NutSetters","screw - Screwdriver","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] +["a5a2364c-7bc0-4d3d-92cc-89a98dcee424","NutSetters","screw - Screwdriver","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r03c4b13","2019-06-26 00:00:04"] +["46f70d4d-115e-40b7-845e-923aca662f99","NutSetters","screw - Screwdriver","","shzh9814","Unknown","Unknown","Unknown","shzh9814","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] +["1852e248-90fc-47d5-9d97-caddb09400a7","NutSetters","screw - Screwdriver","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b05","2019-06-26 00:00:10"] +["79b7185a-6940-4596-9d85-246d2920eb8b","NutSetters","screw - Screwdriver","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b03","2019-06-26 00:00:17"] +["a834476d-21f5-4125-b790-c4502ed33ff9","NutSetters","screw - Screwdriver","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] +["b69d8812-7858-4117-8aa7-fb8c8f4b6edf","NutSetters","screw - Screwdriver","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.small","2","4096","20","Default","r06c1b11","2019-06-26 00:00:06"] +["7a355cb4-d213-4423-b30c-30200b806ffa","NutSetters","screw - Screwdriver","","bhaakens","Unknown","Unknown","Unknown","bhaakens","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] +["a607be0e-3aed-426e-b706-c9cf9881002a","NutSetters","screw - Screwdriver","","rauta","Unknown","Unknown","Unknown","rauta","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["eeab4e1f-cebf-49af-8bd1-60122d0d4083","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","m1.medium","6","16384","60","Default","r07c3b06","2019-06-26 00:00:12"] +["5a724a10-1923-40c5-8c33-d727ed7844b7","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","s1.large","10","30720","240","Default","r03c4b13","2019-06-26 00:00:04"] +["562c2d1b-63bc-4e89-a873-90dc3c300aa8","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r03c4b07","2019-06-26 00:00:24"] +["621e173b-9a15-4b15-bfbe-cdbb74851283","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r07c1b01","2019-06-26 00:00:01"] +["c8f69d6d-4c05-40e1-80b4-eef28cbc26be","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r06c1b07","2019-06-26 00:00:21"] +["764be22a-dc91-4430-a733-216eaafe7015","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r02c4b15","2019-06-26 00:00:37"] +["86eb2cfc-f9c5-4c2b-a9ad-f07df1bf2992","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] +["886c56b9-460c-4a9a-873e-29c8154f752d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r06c3b07","2019-06-26 00:00:11"] +["e8b86f3a-d817-4936-bd21-501088766c21","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c4b13","2019-06-26 00:00:59"] +["e9da6523-d9af-45ef-bed1-263a2f2c837e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r03c3b13","2019-06-26 00:00:00"] +["49a87a04-eee4-4fa2-84b2-857cca8ba454","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c4b11","2019-06-26 00:00:10"] +["fe9bc7cd-9989-4953-8c9d-324189aa804c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c1b08","2019-06-26 00:00:37"] +["51f2e510-03c3-4aa6-914a-48f707927164","NutSetters","screw - Screwdriver","","amco","Unknown","Unknown","Unknown","amco","Unknown","m1.large","10","30720","60","Default","r02c3b15","2019-06-26 00:00:40"] +["21d63405-af1f-46e3-8124-879682df8a9e","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","TG-SES180024","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] +["221ed886-808b-4a0b-8b67-162e1b3102f7","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CIE160029","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["0ade6a93-a0b8-42fd-8218-80f7ad711c52","NutSetters","screw - Screwdriver","","grcramer","Unknown","Unknown","Unknown","grcramer","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] +["d4ebe441-f406-4420-8873-828194f2e9a1","NutSetters","screw - Screwdriver","","rasc5939","Unknown","Unknown","Unknown","rasc5939","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:48"] +["a98b0dca-bcde-4505-bd4d-967ef56b990e","NutSetters","screw - Screwdriver","","tg834860","Unknown","Unknown","Unknown","TG-BIO170103","Unknown","m1.medium","6","16384","60","tacc","r02c3b07","2019-06-26 00:00:48"] +["97c83306-8f25-4ac7-8396-e8c91b5c46a4","NutSetters","screw - Screwdriver","","jdakka","Unknown","Unknown","Unknown","jdakka","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] +["0978e35f-313a-4ccc-9255-e3a7a53b1b6c","NutSetters","screw - Screwdriver","","mason25","Unknown","Unknown","Unknown","mason25","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["7e6ed2d6-1bad-40ef-8b62-a90340dfbf00","NutSetters","screw - Screwdriver","","swalke28","Unknown","Unknown","Unknown","swalke28","Unknown","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] +["8c773f57-6989-42e2-90cd-f5c624592d73","NutSetters","screw - Screwdriver","","jbadalam","Unknown","Unknown","Unknown","jbadalam","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] +["95557b46-f118-4862-ab48-4a94e7452865","NutSetters","screw - Screwdriver","","nardos","Unknown","Unknown","Unknown","nardos","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] +["462fd184-1aff-4cde-87aa-c4a92abd0dbb","NutSetters","screw - Screwdriver","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] +["97a4cdd8-265a-437d-9827-6840df5933c0","NutSetters","screw - Screwdriver","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r03c2b08","2019-06-26 00:00:37"] +["7a8c0d0e-55ed-4496-8af3-175f7e151981","NutSetters","screw - Screwdriver","","henschel","Unknown","Unknown","Unknown","henschel","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] +["b7266556-73e1-4b5d-8666-f354fe58fd7d","NutSetters","screw - Screwdriver","","rcampbel","Unknown","Unknown","Unknown","rcampbel","Unknown","m1.medium","6","16384","60","Default","r06c2b08","2019-06-26 00:00:26"] +["26c12f93-af3e-4e95-a2ee-f634a18720d5","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r07c1b05","2019-06-26 00:00:07"] +["502f29ec-2053-4fb9-85ed-5affc7674b56","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] +["eb41a224-91e0-47cc-9a60-e83dc78e6f70","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] +["f5007aa9-82fe-40dd-85f4-68a12ebbd710","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] +["51de1e9f-82e9-41ee-ac72-df3860f52424","NutSetters","screw - Screwdriver","","lambert8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.medium","6","16384","60","tacc","r06c1b10","2019-06-26 00:01:02"] +["5213611a-d8ad-441f-acae-3c04b2d1da5c","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r07c1b13","2019-06-26 00:00:10"] +["90a63b7c-5368-4b22-9a9e-425fd66f9673","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r06c4b05","2019-06-26 00:00:47"] +["0b7841a8-3fd0-42d4-a4e4-1d60fe7fa6f0","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c2b05","2019-06-26 00:00:55"] +["a010851e-73f3-4f10-9792-d8b5874aa377","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] +["edbab7fe-3252-4e71-a7a1-63c6a9b58489","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] +["0968ded7-bf0f-44a7-b6b4-02ce83fc77b7","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["b42224de-59e1-40a1-b15a-4cd8260a31a8","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] +["0df84fc2-e4e4-471e-a3fc-35cd057a38aa","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] +["31e737d5-352c-4ef7-9f63-e5701750080d","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] +["39a5eca2-f40a-4e97-8fb1-72577da2267a","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] +["3b528050-de0f-447b-a3ed-e6fb1447b26c","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c1b16","2019-06-26 00:00:26"] +["4b8c9ba6-9bf0-4c0e-b0ce-a217ac6fb966","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:01"] +["4df63612-e8de-4198-b148-9e4fb5773ce6","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] +["640a6afb-a1e3-4946-bd60-2e33bbad563d","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["68d2e5f1-61d2-4d61-b0a2-ca431b34733b","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] +["80183abc-930b-4005-bb4c-6d15d769cd0e","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b13","2019-06-26 00:00:10"] +["f5bca597-abfa-4cd4-b983-59d0ce2b1b4f","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] +["22df75f2-7cc3-4c83-a67e-cf13396e9c1f","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:18"] +["47374e12-421d-494d-aebd-0c0c31402e13","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] +["87525c23-041f-45d5-9936-7f5e980651f4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r03c1b12","2019-06-26 00:00:25"] +["acf742b8-155b-422b-82db-9dcfb659ae53","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c3b06","2019-06-26 00:00:12"] +["2b670f9f-6d2c-4982-8016-2281a27bd929","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] +["62f27ed1-de43-4f18-bdc5-353d70bcd955","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:47"] +["d9a2039b-3439-47a9-8570-111574408450","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["5f8c438d-d573-46d1-afed-0344e10017a6","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] +["a47927a8-748c-46c0-931f-79bbe16c0559","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] +["f9c5bbcf-4eac-4456-877d-e2ec509f2479","NutSetters","screw - Screwdriver","","yhung","Engineering","Mechanical and Structural Systems","Mechanics and Materials","yhung","Tern, Sandwich","s1.large","10","30720","240","Default","r07c1b14","2019-06-26 00:00:17"] +["439fc530-b649-470a-95e3-4f09ad3d96fb","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] +["a2103cad-1df8-4c2a-a08b-ad2d624a68ff","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] +["b3fe8a7b-c6e1-46aa-949d-2cef25470e86","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] +["d8a73b5e-51d2-499d-9545-41e009aa6e4c","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.large","10","30720","60","Default","r01c2b03","2019-06-26 00:00:24"] +["1689c556-9720-499d-9c69-ca5e3010fe45","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] +["1c9a1ff9-abf8-4592-9412-d87ae6681f37","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] +["9afc269a-fc1a-4666-a2b6-986911649726","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b11","2019-06-26 00:00:48"] +["a5f4294f-ba0b-4437-bc57-0c155fd470ce","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] +["d47b4a17-6097-451d-857e-72f114b52ad2","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] +["e2c9d976-cd0c-43d5-b88d-d954e5d73912","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] +["f4ea2f9b-4868-4337-bd01-063fdd1273ce","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c3b03","2019-06-26 00:00:07"] +["f458f0a6-3b0c-45e1-879b-bf0ba5a2bee0","NutSetters","screw - Screwdriver","","plm02","Unknown","Unknown","Unknown","plm02","Unknown","m1.large","10","30720","60","Default","r02c1b03","2019-06-26 14:17:29"] +["86aecaca-35f2-466e-bda4-077ed46c1b9e","NutSetters","screw - Screwdriver","","nfrazier","Unknown","Unknown","Unknown","nfrazier","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["b9daec8a-0a27-45ad-8b75-791a1df94b4e","NutSetters","screw - Screwdriver","","ssg2394","Unknown","Unknown","Unknown","ssg2394","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] +["1aa5bcae-ada8-4ff0-8c71-b7c0004d0666","NutSetters","screw - Screwdriver","","vwangia","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vwangia","Tern, Sandwich","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] +["6d13b019-2ff7-4e1e-a11f-2a5c85f63c1f","NutSetters","screw - Screwdriver","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["d50c826e-4ce7-4819-be6d-f6e6b72ec590","NutSetters","screw - Screwdriver","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["a808991f-9ef3-42b2-8b66-ac418608fa5a","NutSetters","screw - Screwdriver","","hjnance","Unknown","Unknown","Unknown","hjnance","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] +["e891eb53-6790-49d4-890c-f8aebfd34510","NutSetters","screw - Screwdriver","","brooksph","Unknown","Unknown","Unknown","brooksph","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] +["435cb856-14ed-40fc-a135-88d3c3cec116","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b11","2019-06-26 00:00:09"] +["5b503292-ef8b-472e-b2f0-0dd1cbedd24f","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c4b11","2019-06-26 00:00:32"] +["a1c23a1c-f1e3-4487-ad64-ef20aefe4e41","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c1b10","2019-06-26 00:00:32"] +["b2cec3e5-e2a4-4eca-b273-0f7ff1eaf120","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c2b05","2019-06-26 00:00:14"] +["b4c3935a-5feb-4c9b-92e1-a094d34417b6","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b05","2019-06-26 00:00:32"] +["05fcd045-d22b-4083-b9d0-1a787748c6ca","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] +["3a69d1b8-b099-4415-9dd9-7b95fe62a26a","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r06c4b10","2019-06-26 00:00:41"] +["e3f90734-857e-462e-9026-8f5297e6414f","NutSetters","screw - Screwdriver","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] +["0351a743-e3df-4914-9595-6ae2b16e4957","NutSetters","screw - Screwdriver","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.large","10","30720","60","tacc","r01c4b13","2019-06-26 00:00:23"] +["73c86d68-5700-4a30-90b0-8dc7fab7f981","NutSetters","screw - Screwdriver","","tg839024","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","s1.xlarge","24","61440","480","tacc","r02c2b06","2019-06-26 00:00:19"] +["93280b72-9ea5-42a1-a234-b288c5751660","NutSetters","screw - Screwdriver","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["a90c99d4-310a-40e5-b160-e4138dc2c774","NutSetters","screw - Screwdriver","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["4905ece5-7938-4280-a5e0-8939a89a3b5c","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["17f1e0de-b4e3-401f-aa7e-82140e22d80b","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] +["9d95e874-ad16-49e1-ab53-8335fcb4cead","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] +["c56322b2-04c3-4009-8ba2-b8120bbc61ed","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r01c4b02","2019-06-26 00:00:01"] +["e91f2a82-9f79-4d12-8553-0e914c1fdeae","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r07c4b10","2019-06-26 00:00:12"] +["f29036ce-affa-4674-a00c-b739c45d3f37","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r01c2b09","2019-06-26 00:00:55"] +["bd5d7bf5-0dd7-4663-81ea-17fbf0434f50","NutSetters","screw - Screwdriver","","samroy","Unknown","Unknown","Unknown","samroy","Unknown","m1.small","2","4096","20","Default","r02c1b10","2019-06-26 00:00:51"] +["006855f2-cd9a-4410-b98d-e2173bab46b2","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r02c2b02","2019-06-26 00:00:55"] +["2b025a32-40fb-4279-98da-5a6c95aec029","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] +["258e2ab0-b2c5-4aa1-89e9-0e7f6ded12f1","NutSetters","screw - Screwdriver","","pmiksza","Unknown","Unknown","Unknown","pmiksza","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] +["e6118cc9-f3a2-4947-9289-fcbac1e25530","NutSetters","screw - Screwdriver","","lalakl","Unknown","Unknown","Unknown","lalakl","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] +["7d140e8e-709e-4d78-8bbd-7b6ac4e78a66","NutSetters","screw - Screwdriver","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["a30dcc0a-2bc1-4259-96b4-71ad84efc951","NutSetters","screw - Screwdriver","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.quad","4","10240","20","Default","r03c2b11","2019-06-26 00:00:47"] +["82ec4985-b597-4fed-8d27-f51fad5a5a23","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.tiny","1","2048","8","Default","r02c3b10","2019-06-26 00:00:40"] +["8a700fb4-213d-4797-b69f-eca6c3e8037c","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] +["eb78b8a6-f8b0-4713-a386-47706cfe02cc","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["c9a42d34-7cff-4d68-8c8f-d1969aeb3d46","NutSetters","screw - Screwdriver","","aymen","Unknown","Unknown","Unknown","aymen","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] +["75551e33-21d7-4809-93ae-473f4002acc0","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] +["a3d8b039-6f1e-42af-bc33-aa2242cb2d82","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["96623eb0-8175-4cbe-a740-b5f1eb2c6b5b","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.medium","6","16384","60","tacc","r02c4b11","2019-06-26 00:00:34"] +["6c0af781-8fff-49c7-a55a-dbf9029ab599","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] +["c457493f-58b7-4511-8239-831ca54d5061","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r02c3b14","2019-06-26 00:00:58"] +["66ec53e0-94a0-4e38-904f-6a5782237c18","NutSetters","screw - Screwdriver","","ianmacc","Unknown","Unknown","Unknown","ianmacc","Unknown","s1.xlarge","24","61440","480","Default","r02c3b07","2019-06-26 00:00:48"] +["d5e68903-f00c-4e8b-ac85-e61a0bf8e19f","NutSetters","screw - Screwdriver","","heena","Unknown","Unknown","Unknown","heena","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] +["be4a55ce-fea2-4fe9-a70b-a7a990098207","NutSetters","screw - Screwdriver","","heena","Unknown","Unknown","Unknown","heena","Unknown","s1.xxlarge","44","122880","960","Default","r02c3b12","2019-06-26 00:00:37"] +["e98930ca-cffb-4bd5-b46d-9e80d79f6172","NutSetters","screw - Screwdriver","","nova","Unknown","Unknown","Unknown","service","Unknown","m1.small","2","4096","20","Default","r03c4b10","2019-06-26 00:00:19"] +["c6f21e63-7c18-44ab-8f80-e3157f99808a","NutSetters","screw - Screwdriver","","dcooper3","Unknown","Unknown","Unknown","dcooper3","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["0b4a3a07-9969-4844-abac-b974e03ac0f0","NutSetters","screw - Screwdriver","","egforan","Unknown","Unknown","Unknown","egforan","Unknown","m1.medium","6","16384","60","Default","r06c3b07","2019-06-26 00:00:11"] +["54766b6d-96e2-4e7e-8421-17691563547a","NutSetters","screw - Screwdriver","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] +["70d86a48-725d-4dd5-b9a6-ac279cdab623","NutSetters","screw - Screwdriver","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] +["8cbac01a-321e-4fa1-a506-9f00c99452ce","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","chastang","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] +["2969e2dd-7f0b-452a-95f5-4b42b90fd9de","NutSetters","screw - Screwdriver","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c2b09","2019-06-26 00:00:50"] +["510dd80c-c111-4b66-9e11-40f4b93ba321","NutSetters","screw - Screwdriver","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] +["01f668b1-6fd3-4498-9482-3b8bd6796c29","NutSetters","screw - Screwdriver","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["2106b29b-b5be-4c60-ad72-e73edd7931dd","NutSetters","screw - Screwdriver","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r02c1b08","2019-06-26 00:00:16"] +["4954c7c8-440e-45ee-9d78-2f9fbd33c0ff","NutSetters","screw - Screwdriver","","rmickol","Unknown","Unknown","Unknown","rmickol","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["a988315d-5d70-4551-bb85-e69877f737a1","NutSetters","screw - Screwdriver","","gaojie22","Unknown","Unknown","Unknown","gaojie22","Unknown","m1.tiny","1","2048","8","Default","r06c1b14","2019-06-26 00:00:29"] +["3488f559-1cbe-4b2d-a21b-768b9b15dd80","NutSetters","screw - Screwdriver","","mkrenz","Unknown","Unknown","Unknown","mkrenz","Unknown","m1.tiny","1","2048","8","Default","r02c1b14","2019-06-26 00:16:39"] +["a7ceb817-eba4-44d6-af51-1894e42b4e9c","NutSetters","screw - Screwdriver","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] +["3ad61cb8-fb67-42a5-a040-a5d1286a777e","NutSetters","screw - Screwdriver","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","s1.xlarge","24","61440","480","Default","r07c3b06","2019-06-26 00:00:12"] +["64a37c7b-9391-45c1-a74e-6793ff6602ca","NutSetters","screw - Screwdriver","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] +["d82d33f1-12e5-494f-9810-0ea8a8fd1c35","NutSetters","screw - Screwdriver","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] +["17b97d5b-dc90-4ae0-80a3-1a68f5b5a61e","NutSetters","screw - Screwdriver","","saptpurk","Unknown","Unknown","Unknown","saptpurk","Unknown","m1.medium","6","16384","60","Default","r01c4b15","2019-06-26 00:00:06"] +["a6570c4a-15b8-4ca0-a188-a3e5ca81610c","NutSetters","screw - Screwdriver","","tg857713","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] +["11c47c54-73e4-476b-b553-1dadfb270c33","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] +["1b9c9c5d-900d-4d2e-b4ba-f7c5c324ceaf","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] +["f3a2bb67-b062-453f-be0f-6eed582d7ccf","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b13","2019-06-26 00:00:29"] +["3867b613-6c42-4b9a-ae70-2eb30b880074","NutSetters","screw - Screwdriver","","tg857711","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] +["3990b4da-b0ad-4895-9dd6-ee9bec2791f9","NutSetters","screw - Screwdriver","","tg857714","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] +["5891489c-7e5b-4307-bd13-92b69984988a","NutSetters","screw - Screwdriver","","tg856781","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c1b08","2019-06-26 00:00:37"] +["5fd47705-f24e-4931-b5a5-3120a65568d4","NutSetters","screw - Screwdriver","","tg857674","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r06c2b01","2019-06-26 00:00:27"] +["bca1f8b3-65d5-4ef4-80eb-1f472f50f7b8","NutSetters","screw - Screwdriver","","tg857485","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b11","2019-06-26 00:00:39"] +["0e1283f2-04d4-48b9-b1bc-e6a85e34a8eb","NutSetters","screw - Screwdriver","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b07","2019-06-26 18:12:50"] +["2dda52c1-6558-4a9e-9b76-6dcb37436209","NutSetters","screw - Screwdriver","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b12","2019-06-26 18:12:49"] +["8240a9a6-1b36-478b-96fc-c9615c060f1a","NutSetters","screw - Screwdriver","","tg857377","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b04","2019-06-26 00:00:51"] +["65ceac0a-947c-4c77-a605-e6050e929b18","NutSetters","screw - Screwdriver","","brhatton","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c2b16","2019-06-26 00:00:29"] +["2d9fea14-b2b9-48f8-a8ac-bffbc4334686","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["f4093f7b-f1d1-4577-aeb9-2fa4d82baf74","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b14","2019-06-26 00:00:59"] +["27786596-44c7-4c03-9956-8beaca0c34f3","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r01c4b05","2019-06-26 00:00:39"] +["77fcccc1-3d85-4a03-b789-6640cec20720","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["80ad257b-16c4-49cd-bc09-a3a7e494b9d1","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["efdf63ad-7b72-469d-88aa-614534c78004","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] +["0b31f29c-a1d2-4e4d-9527-3887f630b0c7","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r07c4b15","2019-06-26 01:00:08"] +["469c0107-798a-479d-82db-d3cdfc959bc4","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c3b07","2019-06-26 00:00:11"] +["ca28acb9-dcf2-4cd0-91c1-d3369a820c05","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c4b05","2019-06-26 00:00:47"] +["50e53cd4-a317-45dc-a3bc-e2a0f2d79dd9","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] +["62aa7b26-1a0c-42a4-a845-5e1e5c03874f","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.xlarge","24","61440","60","Default","r01c1b07","2019-06-26 00:00:26"] +["503ef3af-6e4c-474f-9cf0-b4ad86aa1d63","NutSetters","screw - Screwdriver","","schartlm","Unknown","Unknown","Unknown","schartlm","Unknown","m1.large","10","30720","60","Default","r03c3b12","2019-06-26 00:00:39"] +["fe6d04ab-c01e-4f65-91ab-f35dbf74f8b3","NutSetters","screw - Screwdriver","","kagross","Unknown","Unknown","Unknown","kagross","Unknown","m1.large","10","30720","60","Default","r01c3b13","2019-06-26 00:00:38"] +["04c536cd-9c04-4870-a4af-680f58483fe7","NutSetters","screw - Screwdriver","","sean1906","Unknown","Unknown","Unknown","sean1906","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["42a765a5-0842-4a1c-8417-16d07ccca2f6","NutSetters","screw - Screwdriver","","gryanp","Unknown","Unknown","Unknown","gryanp","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:02"] +["0058a2f1-0497-4c5b-844c-f274c7581238","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["4f735d19-e4c2-44b9-86df-8ed34836c35d","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] +["a2c51d0d-f85a-469b-9159-09a8f4608d3b","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] +["a560e353-1638-4b26-8075-66f83b35cbf9","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] +["b4b91070-2ba1-4c87-b126-a164072c606b","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] +["e5f73a5a-f242-4d84-8641-d8d576c04ec8","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["f3c31da1-38f9-48a4-a31a-f99a231e4ba3","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c2b07","2019-06-26 00:00:17"] +["98792c56-5fa3-4cdd-be3a-447df47b4121","NutSetters","screw - Screwdriver","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] +["b14cb5af-9809-43d4-8bbf-150b3af9bf0e","NutSetters","screw - Screwdriver","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] +["1578f7e4-1761-4097-832e-887935b3ca6f","NutSetters","screw - Screwdriver","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] +["c6c7a90c-1a55-4ce7-92f1-1e06af1b34ce","NutSetters","screw - Screwdriver","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["35e029f8-9dee-456b-a1e4-19c2a197515f","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 21:26:32"] +["a2365e04-fcdb-4a76-b898-58b79bd201cc","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r06c2b08","2019-06-26 21:05:44"] +["e56c9f66-8679-4266-b78d-fe4d5da01abc","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 21:27:28"] +["04bbc2c8-5923-4da7-b3e0-de722f076adf","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 22:10:38"] +["196745fd-4045-4ba5-ad32-f54b755f3baa","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r06c3b03","2019-06-26 21:04:49"] +["1a60f2bb-1e82-4525-83f2-229fdfec510d","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 18:57:19"] +["4b6620a5-51be-4984-8a2d-048c7fd5f1a5","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c4b15","2019-06-26 22:11:42"] +["933d7212-a812-44cb-a3ef-2b519d0322f1","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 21:30:27"] +["9a35e939-1242-48d8-b70c-b66390eddf73","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 21:00:05"] +["08c4310b-eaae-4d38-b8b7-f09ac18e795e","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","s1.xlarge","24","61440","480","Default","r02c4b12","2019-06-26 00:00:59"] +["67fe3092-a657-4874-8168-092f14756d46","NutSetters","screw - Screwdriver","","beckbw","Unknown","Unknown","Unknown","beckbw","Unknown","m1.small","2","4096","20","Default","r06c1b03","2019-06-26 00:00:46"] +["d62768ee-3c84-47c4-add4-894dc10f6a70","NutSetters","screw - Screwdriver","","schae234","Unknown","Unknown","Unknown","schae234","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["801a48cc-67c9-4988-b40e-29a2c29c3a9f","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","Galaxy_Persistant_Services","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] +["955201c5-7b7d-451b-a327-63ac3f5d9128","NutSetters","screw - Screwdriver","","binod30","Unknown","Unknown","Unknown","binod30","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] +["0cf5e80c-d268-40a8-bd8c-bdb41022300e","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] +["bf4c6ed2-b5bb-4d83-abde-cd7ddaf0a670","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r06c3b15","2019-06-26 00:00:16"] +["c2092513-4503-46af-b6f0-6f9c1019a43d","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r02c1b07","2019-06-26 00:00:29"] +["a6037daa-53e1-4e44-b52d-134fd0269736","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:48"] +["64ad247e-0d58-4341-a558-c8cac9034475","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] +["7acb5694-02bd-42a3-a103-7e1d47a913b2","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] +["95d75e72-77ff-4d03-ad16-654134fd94a1","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] +["430d7e46-45de-459c-9d55-24507a359e08","NutSetters","screw - Screwdriver","","paulrad","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] +["072dbb0c-fa20-44bc-885b-f2059ff5d579","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["0fe869fb-76d6-47c2-82a1-cd2a547c112b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b04","2019-06-26 00:00:46"] +["1d999199-e742-4fcb-996d-b909b0a26766","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] +["20aee1a3-92b1-4d74-aeda-40e2720ef1e7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b04","2019-06-26 00:00:02"] +["221ae9f8-a164-4e84-8ca4-2cffc7bf5c35","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b14","2019-06-26 00:00:41"] +["28e347f2-8ea2-4332-a8b0-e39e222c972b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c4b13","2019-06-26 00:00:52"] +["29e881aa-b50e-4228-826a-eedb7f6c9f90","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] +["2f1191ef-d323-4fac-81b4-416823fe6f30","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] +["3403b7f8-6f18-4193-a1d3-e86ed1efe32e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] +["37b5c4bc-d953-4070-bbce-466076c49032","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["38192fb6-bd22-447f-b56c-164a12aaa080","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] +["3a60ea19-412f-4826-9fd5-af015a5e5594","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b07","2019-06-26 00:00:20"] +["42599c47-64a5-4446-b2e0-f932bcdce4c7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["46cff06b-10c7-4e94-8482-58fc64d1d3e4","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] +["47e7c840-05d3-410d-a452-91250e99b7c1","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] +["4a7ddee1-8ae9-4fc6-a37d-d841150f4415","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] +["50b40f57-54c1-462a-9fe1-1042506f0253","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["54eebbfd-9d8c-403e-a736-5e4d50af2968","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] +["58b6f8ea-ccd9-48e8-9aa4-1544e48a74be","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] +["58d124e9-b4d3-45bf-8acd-6537ea28f539","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] +["5da2f79a-fb0c-46b7-a98c-227de15328a6","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] +["5fda4d39-b503-4726-9a36-b7beb0fa9f96","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] +["6296f6ed-6000-4c41-bfe8-4c078cdcbd01","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] +["62d33d15-f327-4d23-a902-b4c7ff9634ba","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] +["6e879f6f-d424-4234-8069-532e104d95df","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] +["7645fb55-a3e1-443e-adcc-a0ca7b3d2aab","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] +["780c2b7f-5625-4171-a9a0-609eb3a71733","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] +["7c245f8b-f6ce-40b4-8f38-3585d693f899","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b14","2019-06-26 00:00:04"] +["7db58296-36cd-49b7-a2f9-2c8372fcc34b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c2b13","2019-06-26 00:00:29"] +["8928d5db-949d-4c00-8b50-d42bc23efa2c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] +["905f9cc9-11a3-49ed-b568-73230ef41cc3","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] +["9b9e1789-cfc3-4cdb-b744-94021a9bb5a7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] +["9e7d8dbc-c73e-43c8-af07-0b3a0468cd13","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c1b04","2019-06-26 00:00:08"] +["a33a0e1e-91dd-46db-b7f9-63bc4d8c666e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["ae1d7748-aad0-4e72-99a9-eec39df5bc3d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["af498cb9-d7e0-4b16-9e4f-17c838bba156","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] +["b292a16d-f1e6-4f21-aff1-fecd6145dddf","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] +["bc296bc1-4127-4d53-9f1e-7130447526ac","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b09","2019-06-26 00:00:01"] +["d428c193-d8e6-4077-836f-dbe9ed5592f1","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b05","2019-06-26 00:00:10"] +["d55f99a9-b546-4e7c-a417-3dfee7a1aecf","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] +["dae5f61a-6725-4d39-a4d3-46c60cc44e3e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b04","2019-06-26 00:00:30"] +["e6fa7624-6af2-407b-9ff5-4fc8a131b41d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["f52834c8-f37f-4890-98c6-2e3f21bfa5b8","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b06","2019-06-26 01:00:59"] +["f5c21758-4544-440c-b153-5d655ecd8e5c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b07","2019-06-26 00:00:29"] +["ff50ac8b-deae-420c-8550-3d27ad39b3e9","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c3b14","2019-06-26 01:00:59"] +["4e0bdd28-486a-40cd-9909-6ec0848325fb","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r02c4b12","2019-06-26 00:00:59"] +["606d4cc3-9351-4405-95d3-d1d4608174c0","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] +["74b4541e-631d-47c6-b90d-ea4ddc895b8f","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] +["79d24f2e-057a-4a60-8042-3f4fbd43d833","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] +["6ff8ee24-a2e0-43a7-ae84-aa741f6761a4","NutSetters","screw - Screwdriver","","nathsnyd","Unknown","Unknown","Unknown","nathsnyd","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] +["6c63b3c1-dd9b-44b5-94e5-161cc102f743","NutSetters","screw - Screwdriver","","kz1954","Unknown","Unknown","Unknown","kz1954","Unknown","m1.large","10","30720","60","Default","r01c2b01","2019-06-26 00:00:05"] +["afac7dac-5855-4180-981e-2169ede77f0f","NutSetters","screw - Screwdriver","","ccc010","Unknown","Unknown","Unknown","ccc010","Unknown","m1.large","10","30720","60","Default","r03c3b14","2019-06-26 15:43:04"] +["2c205114-88da-4157-a7f0-831063a50efc","NutSetters","screw - Screwdriver","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c4b03","2019-06-26 00:00:36"] +["30584165-b530-4f01-add0-84d0f5be4ba5","NutSetters","screw - Screwdriver","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c3b05","2019-06-26 00:00:46"] +["20aafce3-f61c-4b4a-a8c5-c8f6efb40f03","NutSetters","screw - Screwdriver","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] +["9ab7ee80-35e1-488d-b9c0-08a10b1adfea","NutSetters","screw - Screwdriver","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.medium","6","16384","60","Default","r06c1b08","2019-06-26 00:00:57"] +["9c616284-12e2-49b4-a3af-678c12729477","NutSetters","screw - Screwdriver","","noorabom","Unknown","Unknown","Unknown","noorabom","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["12fc2131-3dce-478b-ac75-c056ca9c256c","NutSetters","screw - Screwdriver","","jdv","Unknown","Unknown","Unknown","jdv","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["9e63715d-6eb2-417f-9efd-d89b587884f6","NutSetters","screw - Screwdriver","","wscreen","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wscreen","Tern, Sandwich","m1.medium","6","16384","60","Default","r03c1b01","2019-06-26 00:00:05"] +["a9bb912c-c116-47fd-9762-ea58e3559399","NutSetters","screw - Screwdriver","","mpierce","Unknown","Unknown","Unknown","TG-EAR170011","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:48"] +["7056ccb7-ae8d-4d8a-8787-3185f311a260","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] +["86501b9d-fba3-4234-b82a-87846d526cb5","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] +["cc599893-acff-489e-af71-77049a62835b","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c4b04","2019-06-26 00:00:18"] +["6ddecac2-3e1f-4064-8968-19df59343ad3","NutSetters","screw - Screwdriver","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r02c3b06","2019-06-26 00:00:11"] +["91a83a69-b6fa-4fee-931a-ff305e9bdf11","NutSetters","screw - Screwdriver","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r06c4b04","2019-06-26 00:00:30"] +["2270bffe-404b-40ff-ac89-78d1efb5cae1","NutSetters","screw - Screwdriver","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["96590283-3f28-4cbf-acbe-368aed1e95a5","NutSetters","screw - Screwdriver","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["8381f000-53e6-4448-a3c3-4d8a2003aa32","NutSetters","screw - Screwdriver","","aashwani","Unknown","Unknown","Unknown","aashwani","Unknown","m1.large","10","30720","60","Default","r03c1b09","2019-06-26 00:00:01"] +["599cfe84-d5a8-4ec0-b2f0-cb7b7f740293","NutSetters","screw - Screwdriver","","cganote","Unknown","Unknown","Unknown","TG-MCB160163","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["3a11b2d4-948d-4bdf-b1fe-2b8008c9fcc7","NutSetters","screw - Screwdriver","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.small","2","4096","20","Default","r06c1b08","2019-06-26 00:00:57"] +["e928f28d-1c50-48a5-bfd1-dd1f32793ee2","NutSetters","screw - Screwdriver","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] +["24ef927c-ac39-4555-9f75-d125c69534f3","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b13","2019-06-26 00:00:00"] +["ad9f8566-6347-4fcd-9e8c-69f3127ae015","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] +["c2dc49c1-c94b-47a0-94c5-90bfb5d769e3","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] +["6b8baa48-3e9c-4aa5-b14b-824df862bad5","NutSetters","screw - Screwdriver","","nkern","Unknown","Unknown","Unknown","nkern","Unknown","m1.xxlarge","44","122880","60","Default","r02c4b05","2019-06-26 00:00:19"] +["50a68cc2-52c0-4c0a-a89f-05471ddacfa8","NutSetters","screw - Screwdriver","","pcpeters","Unknown","Unknown","Unknown","pcpeters","Unknown","m1.tiny","1","2048","8","Default","r01c4b02","2019-06-26 00:00:01"] +["cab28bbf-1fbe-44c8-8881-fdba8b7968d0","NutSetters","screw - Screwdriver","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.large","10","30720","120","Default","r02c2b09","2019-06-26 00:00:50"] +["165e878b-24f1-49f1-8ccd-9ea905461bd4","NutSetters","screw - Screwdriver","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.xxlarge","44","122880","480","Default","r01c3b02","2019-06-26 00:00:30"] +["0edc8b5e-47b7-481a-b640-8bb35673329a","NutSetters","screw - Screwdriver","","mhmurray","Unknown","Unknown","Unknown","mhmurray","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 00:00:39"] +["8b2153b5-631d-4c44-9b56-71c421861550","NutSetters","screw - Screwdriver","","marelize","Unknown","Unknown","Unknown","marelize","Unknown","m1.small","2","4096","20","Default","r07c1b05","2019-06-26 00:00:07"] +["78a3af0d-32b8-4de5-9a85-b9922cdda92f","NutSetters","screw - Screwdriver","","gjoshua","Unknown","Unknown","Unknown","gjoshua","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] +["94ef3844-813e-400f-b332-4f2ba48c58dc","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] +["08da3e01-4785-454c-9bc1-b97d1e4b5abd","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.large","10","30720","60","Default","r06c1b10","2019-06-26 00:01:02"] +["f9c09402-249d-46d6-8918-650daf1e3991","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","s1.large","10","30720","240","Default","r02c1b05","2019-06-26 00:00:10"] +["510e8cc0-4b69-4718-83b4-1873a9158272","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] +["21035723-2c62-419a-aab7-16c5f314d474","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] +["9363483e-670c-469d-9af8-e191de8dd3f5","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c1b04","2019-06-26 00:00:21"] +["a27fad25-2871-4072-a41e-bbc3fbd87060","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["bd40cb62-bcc6-4563-a534-772b43359eca","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:49"] +["c1cabd6e-b86f-416c-bb25-aab9c42df82e","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["61cd3bd5-6170-49d3-8409-2389669d083b","NutSetters","screw - Screwdriver","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["78c61df6-9ec0-45c8-bb4f-b5bf4c69f8b5","NutSetters","screw - Screwdriver","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] +["08257e59-d672-4e0f-b69d-9374d540d58a","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r06c4b04","2019-06-26 00:00:30"] +["ff26e218-ddeb-449e-bb74-79547a5b17c8","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r02c3b06","2019-06-26 00:00:11"] +["1b6cfd24-2e6c-4196-92d6-7059910228a9","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] +["ddb37419-cf3f-4144-b9e9-219e8c47a816","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] +["30ee7082-a62d-4821-b207-a24509a46a93","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c4b07","2019-06-26 00:00:43"] +["3b675684-a739-4b13-a9fd-9adea06fe5fa","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b14","2019-06-26 00:00:06"] +["547cc6ca-c281-4b0f-ac09-3cb8510f3481","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] +["96f781df-525c-49ee-a8c4-80be4e1a22fe","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r01c4b02","2019-06-26 00:00:01"] +["117c1009-1069-45de-a004-7fb37e8c537a","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c1b10","2019-06-26 00:00:04"] +["423cb913-83cc-42b1-a480-59f04868b0cb","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c2b05","2019-06-26 00:00:55"] +["98a8f771-97c3-47b3-b215-e9fb8600788c","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c4b07","2019-06-26 00:00:43"] +["cbaee545-741f-42e5-8021-17126cadef81","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c3b07","2019-06-26 00:00:06"] +["c5e9ae5e-1e2d-445e-be9c-711c945ba6ec","NutSetters","screw - Screwdriver","","metrics","Unknown","Unknown","Unknown","metrics","Unknown","m1.tiny","1","2048","8","adjunct","r02c1b16","2019-06-26 00:00:26"] +["ab881c72-0043-400a-b3f9-82715fe5c9f8","NutSetters","screw - Screwdriver","","amelung","Unknown","Unknown","Unknown","amelung","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["7e6ba467-af52-44a2-8737-eca6e02618d6","NutSetters","screw - Screwdriver","","rwehrer","Unknown","Unknown","Unknown","rwehrer","Unknown","m1.small","2","4096","20","Default","r01c2b01","2019-06-26 00:00:05"] +["d2e176e5-35ec-4a26-a4ec-408f4227e144","NutSetters","screw - Screwdriver","","bohendo","Unknown","Unknown","Unknown","bohendo","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] +["6b5de979-37f2-4154-a009-ef6b0132895b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["ebf85c46-66a5-4df0-ab34-bc04dd59d145","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["1469f8fb-2ec0-4a5a-9075-3f65409c9016","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:42:56"] +["1d372cd3-1094-4d50-8850-676880ae0fe0","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r02c3b03","2019-06-26 15:23:46"] +["4bb0f70c-5cd8-4ea6-8baa-578b1a91f4ee","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r06c1b15","2019-06-26 00:00:11"] +["8959b0a8-b6f4-4601-b532-3f121d1e694f","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c4b13","2019-06-26 17:10:31"] +["997b5b20-38cd-4e68-831a-3fa8fd704370","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 15:23:34"] +["f507e0b3-dd7a-4193-9576-6f2116cb9667","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:29:43"] +["f7d750d8-1b1c-4ce6-9e41-fa3ff3f9fdcc","NutSetters","screw - Screwdriver","","mspinks","Unknown","Unknown","Unknown","mspinks","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] +["bf3a6687-d03f-4a65-95f6-74868aef78f4","NutSetters","screw - Screwdriver","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] +["2bb8efe7-43d0-49c3-83d7-db1e3f2f022c","NutSetters","screw - Screwdriver","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","s1.large","10","30720","240","Default","r03c4b07","2019-06-26 00:00:24"] +["836d64e1-e37b-4c40-9eb5-878d887b34c4","NutSetters","screw - Screwdriver","","jb557","Unknown","Unknown","Unknown","jb557","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] +["69cec90c-fe17-4f7f-833a-59a11588a4cb","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r01c4b05","2019-06-26 00:00:39"] +["cbd48900-5b06-4bef-ad0a-72234de0d755","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["f4d950a0-deb7-4b14-9c6c-3979658fa774","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["926fdc67-24d4-41b0-967a-f9042f63cc19","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r07c2b01","2019-06-26 00:00:10"] +["92a3cc6d-3b27-4361-ad2e-2c654e5df7b4","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r03c3b11","2019-06-26 00:00:39"] +["8135603c-42cb-4458-acde-9e43d3b68ff4","NutSetters","screw - Screwdriver","","tg457649","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.medium","6","16384","60","tacc","r03c1b06","2019-06-26 00:00:34"] +["5f7483bc-9de6-4345-a045-fcf0c97a62b3","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] +["aee38543-c7c6-4af8-96bf-d0f6d1913d15","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r02c1b03","2019-06-26 00:00:17"] +["536b9461-ecbf-47d7-ab57-3a43209098de","NutSetters","screw - Screwdriver","","shanghai","Unknown","Unknown","Unknown","shanghai","Unknown","m1.quad","4","10240","20","Default","r06c3b07","2019-06-26 00:00:11"] +["71c3a5ab-1930-4b38-bd32-999326cba8e1","NutSetters","screw - Screwdriver","","nykim","Unknown","Unknown","Unknown","nykim","Unknown","m1.tiny","1","2048","8","Default","r06c4b15","2019-06-26 00:00:25"] +["861c0670-5971-453f-9467-beb274b791ad","NutSetters","screw - Screwdriver","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] +["c3eb1b44-506e-4ba5-947c-fa4e1465df28","NutSetters","screw - Screwdriver","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.quad","4","10240","20","Default","r02c3b15","2019-06-26 16:00:34"] +["a2992151-b421-400e-9c31-353122f2276f","NutSetters","screw - Screwdriver","","upendra","Unknown","Unknown","Unknown","TG-BIO150062","Unknown","m1.medium","6","16384","60","tacc","r07c2b14","2019-06-26 00:00:06"] +["15ed9fb7-2821-456f-a408-0e4fd86a2933","NutSetters","screw - Screwdriver","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c1b08","2019-06-26 00:00:56"] +["da8ae9a1-696d-4f57-ae85-3b8126959829","NutSetters","screw - Screwdriver","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c4b10","2019-06-26 00:00:12"] +["47792bbe-ab6f-418a-9d48-82c14ac11932","NutSetters","screw - Screwdriver","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] +["9a827cf3-4d3f-4c88-a333-8a314c93db32","NutSetters","screw - Screwdriver","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r03c3b04","2019-06-26 00:00:12"] +["e2c886c1-90ca-4474-9e5b-2f6884e11eff","NutSetters","screw - Screwdriver","","quietjen","Unknown","Unknown","Unknown","quietjen","Unknown","s1.xlarge","24","61440","480","Default","r07c2b07","2019-06-26 00:15:52"] +["af18c2b3-70e6-44ad-b447-9c5f9877ac8d","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR180009","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] +["d2dc5a9d-0e29-4914-b88c-86e467bbf640","NutSetters","screw - Screwdriver","","hilaryk","Unknown","Unknown","Unknown","hilaryk","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] +["71167345-b9ae-4233-923f-bd873e57f612","NutSetters","screw - Screwdriver","","tshep","Unknown","Unknown","Unknown","tshep","Unknown","m1.xxlarge","44","122880","60","Default","r07c2b09","2019-06-26 00:00:37"] +["daabe807-91b0-4b45-aecc-046a7ad6210d","NutSetters","screw - Screwdriver","","rmallen","Unknown","Unknown","Unknown","rmallen","Unknown","m1.xlarge","24","61440","60","Default","r07c2b10","2019-06-26 00:00:05"] +["9ab309bc-b822-4455-a468-49648df3f1cd","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c4b11","2019-06-26 00:00:40"] +["a8c6f4b2-7fe5-48d2-89bd-a641cd10e9c3","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c1b08","2019-06-26 00:00:57"] +["bffef4cc-d261-4c0b-9b3c-5c30e86db3cc","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["0a918539-2478-40f0-9260-f83187daa19e","NutSetters","screw - Screwdriver","","blakekas","Unknown","Unknown","Unknown","blakekas","Unknown","m1.small","2","4096","20","Default","r06c4b06","2019-06-26 00:00:32"] +["6d043be9-e20c-40b0-aa0a-e2608cf07c3a","NutSetters","screw - Screwdriver","","mattremm","Unknown","Unknown","Unknown","mattremm","Unknown","m1.tiny","1","2048","8","Default","r07c2b01","2019-06-26 00:00:10"] +["8d75e2c1-8131-44b0-bd76-536895c29816","NutSetters","screw - Screwdriver","","ljosyula","Unknown","Unknown","Unknown","ljosyula","Unknown","m1.medium","6","16384","60","Default","r07c4b12","2019-06-26 00:00:01"] +["80d1ace6-42d9-4092-9bd4-63554693712e","NutSetters","screw - Screwdriver","","mhannonj","Unknown","Unknown","Unknown","mhannonj","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] +["12276e05-a719-452e-8a4c-7dd770c6c2a6","NutSetters","screw - Screwdriver","","paxton","Unknown","Unknown","Unknown","paxton","Unknown","s1.xlarge","24","61440","480","Default","r01c3b12","2019-06-26 00:00:51"] +["8a33f4e7-54fb-486c-9d27-3c78b585514f","NutSetters","screw - Screwdriver","","jreadey","Unknown","Unknown","Unknown","jreadey","Unknown","m1.xlarge","24","61440","60","Default","r01c4b14","2019-06-26 00:00:05"] +["0595170f-ebab-4bcc-9829-cf5df77f7000","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["e1bb8815-3cc9-4034-b626-4ca35c99c4a5","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] +["06d8f85c-7323-46e4-af9c-4a660e9a20af","NutSetters","screw - Screwdriver","","sp0090","Unknown","Unknown","Unknown","sp0090","Unknown","m1.medium","6","16384","60","Default","r07c1b14","2019-06-26 00:00:18"] +["5b00f08b-ebb9-4c0f-a3c2-d35283262bca","NutSetters","screw - Screwdriver","","zking","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zking","Ibis, Glossy","s1.xlarge","24","61440","480","Default","r07c1b07","2019-06-26 00:00:20"] +["d377ccf2-0961-4122-a018-3052ff5817af","NutSetters","screw - Screwdriver","","ishv99","Unknown","Unknown","Unknown","ishv99","Unknown","s1.xlarge","24","61440","480","Default","r02c4b15","2019-06-26 00:00:37"] +["d9c6696e-00dc-4f7f-a8e4-0cba809e128a","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] +["4927f68c-9a2d-4dd7-a137-e894bf0a4633","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c2b08","2019-06-26 00:00:51"] +["4f6a096e-bbfe-4032-b71c-6037b27cd94a","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r02c1b04","2019-06-26 00:00:21"] +["c243f468-b5cc-42aa-bd9c-60c985079c23","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c1b01","2019-06-26 03:51:54"] +["8b8c16aa-e661-4d64-a31f-13e47cef49bf","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b04","2019-06-26 00:00:41"] +["bbda8bbd-2137-4946-826b-0e5f2826cdc8","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r07c2b02","2019-06-26 00:00:24"] +["eceaf113-c326-4233-9efe-e0e8b734bdcf","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] +["a7fb7e11-d74d-491f-87e2-c6ff99a474f9","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r01c1b09","2019-06-26 13:00:25"] +["bac70a49-3785-46a4-b447-2d23ae2e8299","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r02c4b10","2019-06-26 00:00:47"] +["efefe2a5-7607-4eee-b5e3-8b1ff744f504","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r03c3b14","2019-06-26 06:13:25"] +["5f2e73e3-26fa-418d-b3d4-169f90e2d15a","NutSetters","screw - Screwdriver","","gmanipon","Unknown","Unknown","Unknown","TG-CDA180009","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] +["1bf46756-8d54-442e-9801-83910808b6ae","NutSetters","screw - Screwdriver","","tasmia","Unknown","Unknown","Unknown","tasmia","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] +["7b0f1ad8-ed4b-47e7-bba0-bcad34634f9a","NutSetters","screw - Screwdriver","","beshel","Unknown","Unknown","Unknown","beshel","Unknown","s1.xlarge","24","61440","480","Default","r06c4b05","2019-06-26 00:00:47"] +["fee7acad-258a-490a-a362-5417483191ad","NutSetters","screw - Screwdriver","","majdavis","Unknown","Unknown","Unknown","majdavis","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["1a8af402-3360-4221-8ab8-41c7adf45c8c","NutSetters","screw - Screwdriver","","devon","Unknown","Unknown","Unknown","devon","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["87c3d541-5569-48cd-953a-7dc70f663133","NutSetters","screw - Screwdriver","","pcp","Engineering","Mechanical and Structural Systems","Mechanics and Materials","xdmod","Tern, Sandwich","m1.small","2","4096","20","adjunct","r03c1b08","2019-06-26 00:00:37"] +["a2b7efd0-0d7b-48a4-bba0-8da47e7c0231","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b07","2019-06-26 00:00:43"] +["d337316b-627c-433d-bd6f-df9c1e6303a0","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b12","2019-06-26 00:00:01"] +["edf89621-0cd4-48aa-b578-9b7ddc1a283e","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] +["f3dfb26e-9007-42c6-91f6-ad03949d4125","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["0262293c-c4d8-4069-bb0f-5f00f0b8ab94","NutSetters","screw - Screwdriver","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b08","2019-06-26 00:00:56"] +["f3c9830d-c73c-4146-ab22-a0d52e931d22","NutSetters","screw - Screwdriver","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r03c3b12","2019-06-26 00:00:39"] +["3466ddeb-079f-4cc9-9660-b827344ebefd","NutSetters","screw - Screwdriver","","adhage","Unknown","Unknown","Unknown","adhage","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] +["45fba7fe-5f7a-4cb3-a445-1b08f4052d2a","NutSetters","screw - Screwdriver","","jsdsmail","Unknown","Unknown","Unknown","jsdsmail","Unknown","m1.medium","6","16384","60","Default","r06c2b07","2019-06-26 00:00:21"] +["5fa98955-0944-4d3a-916f-87883237a9b1","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.small","2","4096","20","Default","r07c1b15","2019-06-26 00:00:19"] +["172df8e9-b2ec-4864-898d-a4d401de85f0","NutSetters","screw - Screwdriver","","wstuhr","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wstuhr","Egret, Snowy","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] +["881ba8d5-8cb7-4cec-88a0-de29867e32c9","NutSetters","screw - Screwdriver","","nsokol","Unknown","Unknown","Unknown","nsokol","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] +["0a61640d-b915-41d2-a81b-474e01b8f089","NutSetters","screw - Screwdriver","","marcusc","Unknown","Unknown","Unknown","marcusc","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] +["862bbdd5-5ec2-43b8-b943-c60227f53b0f","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["91e76f8c-6c68-4cff-b8fd-3294456ea8ac","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c3b02","2019-06-26 00:00:36"] +["f73664e4-7207-42ea-ad55-180d27164a1f","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] +["0091a1c7-2984-4b53-8683-93ef3c922325","NutSetters","screw - Screwdriver","","jhallida","Unknown","Unknown","Unknown","jhallida","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["0d8bbbdb-e755-4909-a250-9170459e5580","NutSetters","screw - Screwdriver","","cdosborn","Unknown","Unknown","Unknown","cdosborn","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["f1dc72da-c007-4a91-8412-b9b757719100","NutSetters","screw - Screwdriver","","dgilbert","Unknown","Unknown","Unknown","dgilbert","Unknown","m1.small","2","4096","20","Default","r06c2b07","2019-06-26 00:00:21"] +["f60ccb64-d856-4202-b2c8-f40009e12f2f","NutSetters","screw - Screwdriver","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] +["2ef90d32-7c86-449a-9e48-a19ee5f8b2ec","NutSetters","screw - Screwdriver","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.quad","4","10240","20","Default","r02c1b05","2019-06-26 00:00:10"] +["cc230bda-2521-4f13-99d5-db000a3ed565","NutSetters","screw - Screwdriver","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c1b06","2019-06-26 00:00:34"] +["eea732b8-53a5-421f-887b-afc7ad6c7577","NutSetters","screw - Screwdriver","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] +["88531a32-7dc2-41e8-bb9d-49143c927247","NutSetters","screw - Screwdriver","","dyhancoc","Unknown","Unknown","Unknown","dyhancoc","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] +["8811b052-3bcf-4805-8c37-501a94b3bbed","NutSetters","screw - Screwdriver","","lhin","Unknown","Unknown","Unknown","lhin","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] +["0d63ccb0-69dd-41fd-bc41-b815ee6d29b8","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["307066d5-0fd4-40fa-a887-c0c507d641fa","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r07c1b12","2019-06-26 00:00:47"] +["24aa72d7-83e9-43e9-8571-ba3241aac403","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.small","2","4096","20","Default","r07c1b14","2019-06-26 00:00:18"] +["7b720c9c-33c1-48f0-b896-7da6013d9498","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["80471527-ddda-42fd-88b3-b2df8bcc5f7e","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["a4fbd089-6628-45c2-802f-3760d9f8dff7","NutSetters","screw - Screwdriver","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c2b04","2019-06-26 00:00:38"] +["22f9acb1-8e20-4512-9a14-1d6b7e4d71ea","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:18"] +["3629851f-6caa-48e5-b091-25501c4913fd","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] +["4f4ffedc-1838-456d-ae6e-37b080b59eca","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] +["71c15136-7755-47bb-a48d-3e58cf3f9ae3","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c3b11","2019-06-26 00:00:07"] +["aeee4d91-64aa-43af-b884-29d6c6b5287c","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] +["f7635b04-1d25-454a-8aca-5c2da079a9cb","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r03c2b08","2019-06-26 00:00:37"] +["fc4d5de8-8412-40e7-aabc-69830aee1eaf","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b11","2019-06-26 00:00:48"] +["faf6ff94-19c7-472f-80c9-96819aea6f22","NutSetters","screw - Screwdriver","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:19"] +["e16b8084-06a6-4203-ae62-5128ce42ea72","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:05"] +["6adb6e2b-f024-48ce-a30f-a4743f84e986","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","s1.large","10","30720","240","tacc","r06c1b01","2019-06-26 00:00:28"] +["4fe2017e-651c-4f86-b169-b8ea65f8edd0","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xlarge","24","61440","60","tacc","r07c1b08","2019-06-26 00:00:56"] +["29263b0a-c17d-46be-ab65-e52163b24001","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","60","tacc","r06c4b03","2019-06-26 01:00:04"] +["b18c7cae-b615-42af-abd4-7c80473743c7","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","480","tacc","r03c2b12","2019-06-26 00:00:57"] +["33d17b83-ecd1-4acb-9ee8-651cc0ec9864","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] +["c4c7cea6-b4f3-4a7a-955a-8478116302b0","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r03c4b07","2019-06-26 00:00:24"] +["e3bd9c68-7177-4908-b289-83a750e7e5c2","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","s1.xlarge","24","61440","480","Default","r03c1b15","2019-06-26 00:00:02"] +["51edbaa0-d773-447c-8a77-25b249526fa3","NutSetters","screw - Screwdriver","","sidpath","Unknown","Unknown","Unknown","sidpath","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["dcf6b123-9cbd-42aa-925f-077733101aa5","NutSetters","screw - Screwdriver","","gspeyer","Unknown","Unknown","Unknown","gspeyer","Unknown","m1.small","2","4096","20","Default","r06c2b06","2019-06-26 00:00:49"] +["c5db8df1-08dd-4f9c-80ae-31803cf402ed","NutSetters","screw - Screwdriver","","mpierce","Unknown","Unknown","Unknown","TG-DBS160006","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["cf76dceb-7349-419e-b517-287a4c797e79","NutSetters","screw - Screwdriver","","madrina","Unknown","Unknown","Unknown","madrina","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["20157572-2da7-4fc2-838d-d9528153d92c","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-ENG170037","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] +["73a5d032-43ea-47e4-84d4-467ca1dcde2b","NutSetters","screw - Screwdriver","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","m1.xxlarge","44","122880","60","tacc","r07c3b04","2019-06-26 00:00:18"] +["a91650f3-ccc6-4412-9bb1-95c37a4eddd5","NutSetters","screw - Screwdriver","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","s1.xxlarge","44","122880","960","tacc","r03c2b01","2019-06-26 00:00:30"] +["14a98a0c-ab39-48d5-830f-578fd0711bc6","NutSetters","screw - Screwdriver","","agopu","Unknown","Unknown","Unknown","agopu","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] +["2b69ef43-27b3-4d2e-b51c-a2877f78d751","NutSetters","screw - Screwdriver","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 00:00:40"] +["f6688e09-456d-4d81-8e47-739d8271cc10","NutSetters","screw - Screwdriver","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] +["087c2472-c9c7-4849-828b-43281e8134a0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] +["689044ca-4778-47f5-9ead-e6655826c3e0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] +["841f2a04-2301-4092-b457-d71b148c60a0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b03","2019-06-26 15:00:16"] +["007be263-57c9-4404-9f9e-3fd3a1f1bf20","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b06","2019-06-26 00:00:00"] +["2f17849f-c7f8-499d-9b9a-c402c1006e13","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r03c1b01","2019-06-26 01:00:57"] +["3f31ee22-ef04-43a7-b6a9-5d812bf9fd48","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b08","2019-06-26 00:00:56"] +["43ea0a6c-149c-4652-81f6-eda9dc0c05c5","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] +["44e5fb97-daf8-4a9a-b152-971df247c56a","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] +["55fb77fa-3afe-4f7b-a3d8-3c9e68e76ae7","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] +["58f01a50-9b28-4f77-9e86-01991bef14a8","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c4b05","2019-06-26 00:00:39"] +["5c661ca4-52fb-489b-aabe-91c5a53f19c2","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b15","2019-06-26 00:00:37"] +["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b10","2019-06-26 00:00:52"] +["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c4b15","2019-06-26 00:00:52"] +["84d11422-ce49-4ea3-99b9-eef84a08cbbe","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] +["8f8b828a-d3f8-4c03-b3a3-bbd088a484ec","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] +["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b04","2019-06-26 00:00:04"] +["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:04"] +["d8691e8e-7b2b-4a4b-b9e0-ab86a50e4580","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b03","2019-06-26 00:00:07"] +["e5974dad-efee-4a9f-b345-5f82ed4414f3","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b07","2019-06-26 00:00:29"] +["3a7c3eb8-5ad6-4389-8d08-b55faea7cd50","NutSetters","screw - Screwdriver","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] +["72b97f40-76b6-4b5c-959e-654554f65441","NutSetters","screw - Screwdriver","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] +["f80c09fe-52df-4e77-8f28-274352b81b06","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b07","2019-06-26 00:00:11"] +["54c0198a-0bbe-4216-ac30-cf60b5bf6a03","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["801b8da9-94fb-4fcd-a7cf-345458b7d920","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["af4bfe9c-8f30-4af0-ac87-48b588c62695","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:18"] +["c72f9562-7816-44d1-9e32-756ea1477a1a","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b06","2019-06-26 00:00:03"] +["e8f9732a-de87-4963-89fe-02165128c68c","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b03","2019-06-26 00:00:07"] +["ecc0fca7-66ce-406c-b739-e2f3c157dea6","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-4q","2","11264","20","tacc","r08g03","2019-06-26 00:00:39"] +["357a466b-8093-4e27-81ef-65d7a11871bd","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b11","2019-06-26 00:00:25"] +["9978fb58-2a7b-4961-b21b-3ab25e32d1f9","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b05","2019-06-26 00:00:10"] +["c1579d78-026e-4ab9-ade1-28e86056796e","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["6dd79b93-f318-4c56-b331-fff288483b31","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-16q","8","47104","20","tacc","r08g06","2019-06-26 00:00:08"] +["ca6c37a0-bcdd-4480-a84d-e2d60db8715f","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m2.medium","16","61440","60","tacc","r08c1b08","2019-06-26 00:00:05"] +["01ee20ab-8dde-409e-9556-5c7b55f9a2d8","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.xxlarge","44","122880","60","tacc","r01c3b03","2019-06-26 00:00:08"] +["1b5f0745-6efd-4247-a26c-f7cc23bdad59","NutSetters","screw - Screwdriver","","tg837136","Unknown","Unknown","Unknown","TG-DBS180009","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] +["fe2d12dd-423e-4798-aa70-82f6eec4ff30","NutSetters","screw - Screwdriver","","pswargam","Unknown","Unknown","Unknown","pswargam","Unknown","m1.medium","6","16384","60","Default","r06c4b07","2019-06-26 00:00:53"] +["a3499254-a95a-4794-bd6c-6a54c406480a","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","mjames","Unknown","m1.xxlarge","44","122880","60","Default","r02c2b04","2019-06-26 00:00:54"] +["dec223e4-6d15-4902-bc8d-678b8e21ff47","NutSetters","screw - Screwdriver","","ramya1","Unknown","Unknown","Unknown","ramya1","Unknown","m1.tiny","1","2048","8","Default","r06c2b13","2019-06-26 00:00:14"] +["77b5f6a6-2a5b-4046-a0c3-34676bfb9cef","NutSetters","screw - Screwdriver","","bret","Unknown","Unknown","Unknown","bret","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] +["9b726d6f-1cfd-4e0e-9315-a0daf7a174f1","NutSetters","screw - Screwdriver","","mesler","Unknown","Unknown","Unknown","TG-BIO170096","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:02"] +["da7ac9d8-dd99-4d1e-9e85-04ccf3395f19","NutSetters","screw - Screwdriver","","jeovany7","Unknown","Unknown","Unknown","jeovany7","Unknown","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] +["123708c9-c4ea-4f7b-9ea6-cdcb0c445ae4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] +["73926b1f-3c59-4c9e-810d-4607b2237eef","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] +["9a854394-904a-4a92-b56d-da9acb807f3b","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c4b10","2019-06-26 00:00:12"] +["d98824c4-f903-42e0-833e-4a87653aa63d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["04ac96c0-477b-43a0-b20f-12b3ec687443","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] +["0c8f4b51-f48f-43d0-9bd0-a4ae18a0ff50","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c3b03","2019-06-26 00:00:41"] +["22fb6441-a938-45c4-9eda-0d3fcb2242e4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b12","2019-06-26 00:00:01"] +["335ec001-101d-4bc9-9584-f6431d1efd20","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b11","2019-06-26 00:00:08"] +["6e1df8f7-9f10-4f0f-8c5f-fbe3ce5c50a7","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c2b07","2019-06-26 00:00:17"] +["c51c6c38-5e6f-4da3-af9b-b62ffd85c181","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] +["e48481b8-3696-44cd-af7f-cc76e8b1816a","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] +["4da2876e-7dc6-477d-8ed6-a9b3102fa9aa","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] +["0f47b390-f15b-487d-847f-6a9bb1df40ac","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] +["2a59acc7-17a8-4485-8e7e-48913aee7b55","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c1b08","2019-06-26 00:00:57"] +["51a349c1-dd69-42ca-88aa-016d61c6b144","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b15","2019-06-26 00:00:12"] +["8d85ac29-2762-4674-b885-3561d5b98ffb","NutSetters","screw - Screwdriver","","andybeet","Unknown","Unknown","Unknown","andybeet","Unknown","m1.small","2","4096","20","Default","r01c4b03","2019-06-26 00:00:36"] +["0de66347-636d-4830-96b4-603c999541db","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] +["9aac0cb5-e16a-415b-a509-e681e4d4e561","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["b50ae469-6718-444d-9bbf-20d26634a41d","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] +["43d11768-1009-41ec-ad53-a06f62020924","NutSetters","screw - Screwdriver","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] +["f3788ca3-1fa6-4b47-a0e4-db9f476f886e","NutSetters","screw - Screwdriver","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r01c2b01","2019-06-26 00:00:05"] +["26c2a839-35d6-4582-a0ed-16c5a06d291d","NutSetters","screw - Screwdriver","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b07","2019-06-26 00:00:11"] +["38bc4a3e-d0b6-4fe5-8e0c-68d4b83a5558","NutSetters","screw - Screwdriver","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b02","2019-06-26 00:00:36"] +["14c39841-ca59-4924-913f-e830ba1f820b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] +["0493f004-af47-419f-8cb6-942b3b1fac12","NutSetters","screw - Screwdriver","","tg858644","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r01c4b02","2019-06-26 00:00:01"] +["8c14b2c2-88dc-4547-aba6-81b0902737c3","NutSetters","screw - Screwdriver","","tg858635","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r06c4b04","2019-06-26 00:00:30"] +["1fc48ba3-3f5b-45f6-8da4-8b08f8ea3256","NutSetters","screw - Screwdriver","","tg858636","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] +["379b96da-a378-41ef-9f4f-f5d0a0b66d9d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c3b10","2019-06-26 00:00:40"] +["7da8978d-0330-4f24-a163-b2b0aa2de426","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["e5a9c587-3a56-4f7f-a3cc-c16af3fc54f6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c2b07","2019-06-26 00:00:09"] +["f76d6fe5-b89b-453a-abfd-4145798dea1c","NutSetters","screw - Screwdriver","","cldixon","Unknown","Unknown","Unknown","cldixon","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] +["0d7292d3-f244-41f5-b965-ad1f4445f3d5","NutSetters","screw - Screwdriver","","irberlui","Unknown","Unknown","Unknown","irberlui","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] +["839556a5-32ea-4801-83e5-2c251e4f9496","NutSetters","screw - Screwdriver","","steckm","Unknown","Unknown","Unknown","steckm","Unknown","m1.large","10","30720","60","Default","r06c1b14","2019-06-26 00:00:29"] +["f9f94f0e-3ba1-440f-a77c-1c2efcb91210","NutSetters","screw - Screwdriver","","cganote","Unknown","Unknown","Unknown","cganote","Unknown","m1.tiny","1","2048","8","Default","r02c1b10","2019-06-26 00:00:52"] +["950be30e-a275-4533-9d42-53df6145545b","NutSetters","screw - Screwdriver","","pmoriano","Unknown","Unknown","Unknown","pmoriano","Unknown","m1.tiny","1","2048","8","Default","r07c2b02","2019-06-26 00:00:24"] +["7f3a123c-c660-4f13-8d29-40327c6704db","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] +["598adf9a-315c-435d-a1ae-6d0aa072c2f7","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] +["4e502181-cfcd-4139-85cd-590e02ad9b0d","NutSetters","screw - Screwdriver","","iwatson","Unknown","Unknown","Unknown","TG-GEO160010","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] +["ba5fadc1-c717-4002-aba4-bd863e381d90","NutSetters","screw - Screwdriver","","smm6","Unknown","Unknown","Unknown","smm6","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["0abf53f8-3458-4e17-b3b0-2ec1b83f8ee4","NutSetters","screw - Screwdriver","","vlevkov","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlevkov","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["b5be32a5-e6ca-481f-af46-e53c302bf8e1","NutSetters","screw - Screwdriver","","vpenchv","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vpenchv","Tern, Sandwich","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] +["9c54e3ca-493c-402f-b08c-73c50469d5b3","NutSetters","screw - Screwdriver","","uma","Unknown","Unknown","Unknown","uma","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] +["6c124584-33fd-479a-a8d0-8ac8ba7e1371","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.large","10","30720","240","Default","r07c2b06","2019-06-26 01:48:20"] +["52c0b2a1-5c9f-4cab-8d58-f0b07b90f95b","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r02c4b10","2019-06-26 00:36:36"] +["c773a4d0-d4ce-4cd4-87cd-263e36ccd5cf","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r01c3b15","2019-06-26 06:06:56"] +["e9aa9c55-7800-48a5-b3c5-adcd7daca2b4","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.large","10","30720","240","Default","r07c1b02","2019-06-26 00:00:27"] +["359e855b-953f-445f-aebe-19bb4b4a0c22","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b12","2019-06-26 00:00:42"] +["56cc3381-7a82-4662-8eb5-8ace8f952fd2","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r02c1b13","2019-06-26 00:00:54"] +["db2dc4aa-58c7-4c5e-b635-0cdcd7fbabf3","NutSetters","screw - Screwdriver","","maxmck7","Unknown","Unknown","Unknown","maxmck7","Unknown","m1.small","2","4096","20","Default","r07c2b13","2019-06-26 00:00:29"] +["65e78b06-3e64-4b62-aa7f-85ab9db38140","NutSetters","screw - Screwdriver","","akanna","Unknown","Unknown","Unknown","akanna","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] +["95a59d3a-9cba-41a5-af10-a2dd1ccff628","NutSetters","screw - Screwdriver","","ssteady","Unknown","Unknown","Unknown","ssteady","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] +["4d5e602e-97b7-4839-8818-097d6bcc8e62","NutSetters","screw - Screwdriver","","virtual","Geosciences","Polar Programs","Polar Ocean and Climate Systems","virtual","Egret, Snowy","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] +["0cdc4c00-2f93-4399-9191-236c57c57491","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b15","2019-06-26 00:00:19"] +["0ffa15e9-825a-4852-892a-fcdd52cca744","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["1fac2573-5071-4460-bbf0-5016eb107e61","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c1b15","2019-06-26 00:00:50"] +["2467442a-77dd-4d96-b91e-7a6b45a050a1","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["24e8b8a0-2e63-4641-894a-8325ad5f9895","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b03","2019-06-26 00:00:01"] +["409bbceb-d979-43ce-bb6e-42f1e98c2148","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["42107ed1-3f63-4bfa-9957-094dac419db4","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["4660f4a9-2b9e-4501-961c-6f9d9b14f7a3","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["60a704fd-0d9d-4b14-a45d-15510dbe2496","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["8297ddd6-b9d9-4074-bbfb-2e301c6ade0a","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] +["8478604a-40bd-4ff2-91e7-36e7f379f390","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c2b11","2019-06-26 00:00:48"] +["848a4138-6199-4b97-9ca9-74aa5f89b807","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b05","2019-06-26 00:00:22"] +["9f2600fc-9c90-4fef-b939-e9943addb2bd","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b14","2019-06-26 00:00:18"] +["b29f4d37-07e5-487f-8d0f-2c4dfa065ef4","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b16","2019-06-26 00:00:55"] +["bc75c346-1088-4537-bc69-779c2ba9c5b3","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["c961fe87-e906-4ffd-bb0b-ffd9bf8b2cbf","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] +["d5b074f9-a37b-4f44-bf16-08581fb544c6","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["d6517ffd-8c30-43a3-a4d9-e64ca540b23a","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] +["d85684d2-1587-4029-96cd-366b1d3651fc","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c2b05","2019-06-26 00:00:21"] +["ec5bc29a-8773-4e6c-92ee-72799815615f","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c2b11","2019-06-26 00:00:48"] +["fab72e59-5e87-4309-84fd-06ea2920742b","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b05","2019-06-26 00:00:47"] +["b51b68e2-4ea1-43ea-8d93-39f719780e1c","NutSetters","screw - Screwdriver","","hannac","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] +["12f08e11-4e8c-4c01-b5c2-72acd3a3d110","NutSetters","screw - Screwdriver","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] +["65b13e09-17c1-421c-9dd1-91b5e277eb1f","NutSetters","screw - Screwdriver","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r01c4b06","2019-06-26 00:00:29"] +["b35dd35d-2595-4c19-9df5-6ab52a19b14b","NutSetters","screw - Screwdriver","","phillity","Unknown","Unknown","Unknown","phillity","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["98a68982-58e2-47e3-a736-c8bef2357db0","NutSetters","screw - Screwdriver","","bberlin","Unknown","Unknown","Unknown","bberlin","Unknown","s1.xxlarge","44","122880","960","Default","r03c4b10","2019-06-26 00:00:19"] +["46a035f8-f2b0-44ba-8ec5-08559bb68803","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c3b05","2019-06-26 00:00:08"] +["7d734be4-8193-4c7a-84ab-0a9cf3072516","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c1b15","2019-06-26 00:00:50"] +["94b124b0-0bbf-4924-9f1e-c89e2e2069c5","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r03c1b02","2019-06-26 00:00:02"] +["ccc5f86f-5ed5-432e-8b40-b80440a3a49b","NutSetters","screw - Screwdriver","","jselvam","Unknown","Unknown","Unknown","jselvam","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["83c285ea-1152-4008-97ce-3fe6a36259b8","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","fils","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] +["f86d7a0e-c454-4026-bad8-920e11a97845","NutSetters","screw - Screwdriver","","kelumdi","Unknown","Unknown","Unknown","kelumdi","Unknown","m1.large","10","30720","60","Default","r03c2b06","2019-06-26 00:00:12"] +["3d3e8516-8971-4f0b-bbf6-51d8c3f79a20","NutSetters","screw - Screwdriver","","hudson89","Unknown","Unknown","Unknown","hudson89","Unknown","m1.xlarge","24","61440","60","Default","r07c2b08","2019-06-26 00:00:56"] +["d7d3305e-7223-4680-bd7b-deed31af0be9","NutSetters","screw - Screwdriver","","kemelian","Unknown","Unknown","Unknown","kemelian","Unknown","m1.xlarge","24","61440","60","Default","r06c3b10","2019-06-26 00:00:27"] +["87d17237-44a5-4480-b0c4-4ed6cb16141a","NutSetters","screw - Screwdriver","","tg857970","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["1cc05972-3d46-4490-8fab-1c6aa22094a8","NutSetters","screw - Screwdriver","","tg858245","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["73912317-8159-40c6-a3b7-a6989fe5ca7b","NutSetters","screw - Screwdriver","","tg858209","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["cb007931-77ae-4fd0-9418-15280593acf5","NutSetters","screw - Screwdriver","","tg853683","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["9fd3ab5a-79c6-4908-b5c8-6630e5e664e5","NutSetters","screw - Screwdriver","","akamber2","Unknown","Unknown","Unknown","akamber2","Unknown","m1.small","2","4096","20","Default","r07c3b13","2019-06-26 00:00:36"] +["68f78d18-a9f2-4e00-8597-fe04ea53be85","NutSetters","screw - Screwdriver","","kmadappa","Unknown","Unknown","Unknown","kmadappa","Unknown","m1.medium","6","16384","60","Default","r03c4b02","2019-06-26 00:00:42"] +["795af622-3fda-44ee-8f8f-10c9ad1407e9","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","ktyle","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] +["0e37a693-d20c-4046-b75e-b5e29ebd432c","NutSetters","screw - Screwdriver","","j1axs01","Unknown","Unknown","Unknown","j1axs01","Unknown","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] +["9bb8cd73-c514-4f6d-af12-2ae28b64711e","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["acd5f004-097f-423a-8255-0ba1954c52a1","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] +["e5c37bb7-376f-4b46-bd04-6c7517efb0bc","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] +["0f04260f-152d-4973-a00e-547844e6650e","NutSetters","screw - Screwdriver","","zonca","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zonca","Tern, Sandwich","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] +["24703158-bb10-46e9-9a4e-5939b1b9ec6f","NutSetters","screw - Screwdriver","","jhallida","Unknown","Unknown","Unknown","TG-BIO160064","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] +["6f9c5759-4e90-45e9-9405-5ef522d34aac","NutSetters","screw - Screwdriver","","bmsamuel","Unknown","Unknown","Unknown","bmsamuel","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] +["3d599f20-2fbf-4b63-ae3f-8f83e26c7184","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r02c3b06","2019-06-26 01:00:59"] +["8b3b2b3c-e47e-4662-b05a-517773bb8a68","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r06c4b10","2019-06-26 00:00:42"] +["c138e77a-ad39-4912-8ce0-c0c1b3cd26e0","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] +["592e585f-6da6-405e-b8d2-f1536fb4efc5","NutSetters","screw - Screwdriver","","megm","Unknown","Unknown","Unknown","megm","Unknown","m1.large","10","30720","60","Default","r06c3b05","2019-06-26 14:11:09"] +["d0c1892a-8fde-4c7c-87b7-0b45c0583840","NutSetters","screw - Screwdriver","","tantrung","Unknown","Unknown","Unknown","tantrung","Unknown","m1.tiny","1","2048","8","Default","r06c3b04","2019-06-26 00:00:04"] +["4d774298-d1ac-4a04-a193-3943dedb5423","NutSetters","screw - Screwdriver","","ntrip","Unknown","Unknown","Unknown","ntrip","Unknown","m1.medium","6","16384","60","Default","r02c4b15","2019-06-26 00:00:37"] +["d11655dd-79fe-4601-83ee-5646370e790a","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r06c4b06","2019-06-26 00:00:32"] +["e8a4cc65-84d9-434e-86c1-e22b207571af","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r07c1b15","2019-06-26 00:00:19"] +["5ea4d354-4b39-49c0-91e0-91c0f0fdca59","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.xxlarge","44","122880","60","adjunct","r02c2b03","2019-06-26 00:00:53"] +["5db3fe4c-90c6-40ca-a3f3-0e3537bfa338","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","s1.xxlarge","44","122880","960","adjunct","r06c2b09","2019-06-26 00:00:12"] +["498f1cac-aa33-4c0b-a318-ca6b922639eb","NutSetters","screw - Screwdriver","","nmebadi","Unknown","Unknown","Unknown","nmebadi","Unknown","m1.tiny","1","2048","8","Default","r07c2b10","2019-06-26 00:00:05"] +["1a25eeb4-1241-40c2-b4be-b56f22dfc1ba","NutSetters","screw - Screwdriver","","cboettig","Unknown","Unknown","Unknown","cboettig","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] +["8d9c140b-2892-4d44-a8c8-f2f1c7dc460a","NutSetters","screw - Screwdriver","","willarno","Geosciences","Polar Programs","Polar Ocean and Climate Systems","willarno","Egret, Snowy","m1.large","10","30720","60","Default","r07c1b16","2019-06-26 00:00:55"] +["3860f159-58c8-48b7-996f-74693d6e142f","NutSetters","screw - Screwdriver","","scanchi","Unknown","Unknown","Unknown","scanchi","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["4e8849f6-cc20-411f-b306-b8ee4347852c","NutSetters","screw - Screwdriver","","danidub","Unknown","Unknown","Unknown","danidub","Unknown","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] +["77688c7c-ca57-4a8c-b740-b6ceac247978","NutSetters","screw - Screwdriver","","fpsom","Unknown","Unknown","Unknown","fpsom","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["ada50cd5-db44-4472-a667-74faef966675","NutSetters","screw - Screwdriver","","tg457210","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] +["017e63f8-2ccc-42eb-8fb5-54e57193abec","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.medium","6","16384","60","tacc","r07c1b07","2019-06-26 00:00:20"] +["0ccfbf28-751f-46ff-9464-0c2c2fdd0bf7","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 19:57:51"] +["1844674d-a185-42ed-8514-4d63dcc74b80","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 17:01:10"] +["19230bbc-7a70-49d9-b275-431d7d7fc359","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:26:32"] +["1ab64d90-338b-47c9-86b5-aef59aaed13b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 19:57:53"] +["2b8e52d4-2d8f-4d64-acf3-6e90f273d174","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b11","2019-06-26 16:38:52"] +["345a9249-ca13-4050-ae8b-a044998f49ac","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 17:00:49"] +["367a6254-6094-46b2-ac15-86f2b44667db","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 17:01:12"] +["38b43fea-e9e6-48bc-b505-cab4549622d1","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 16:35:31"] +["392aea49-91e0-4e51-8633-d08314ea71a6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 17:01:01"] +["40201487-9071-428c-a902-dc4e52cec04d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:46:45"] +["413fb5c4-92f3-4977-8e30-bfc0ca08ae39","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c3b05","2019-06-26 10:54:19"] +["4776f42a-402a-480e-9236-f9d39c3df407","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b14","2019-06-26 17:00:52"] +["53037618-3a4d-4712-8ed9-3ddff09aadee","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 11:05:34"] +["69a7f613-c74b-4377-b1bd-5f7cde77f256","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b13","2019-06-26 19:58:09"] +["6dd1d337-de03-4fa8-ad8a-63552a052190","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 16:26:01"] +["6e4c48bd-6637-4074-9d16-9d31f607af6d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 20:36:16"] +["88b6e3e9-fd0a-4998-a3cf-acbdd9816a91","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 16:38:32"] +["88d3e0e7-ad0f-41d7-a524-75bfe4d8992a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b10","2019-06-26 11:30:08"] +["9693d53c-bbc4-42ac-9d08-9ab38f3d472e","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b08","2019-06-26 20:36:30"] +["9a2415d4-38d6-4960-96f4-45a5f819d454","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b15","2019-06-26 17:00:54"] +["a08c7729-2196-4be4-b073-2274e9749a2a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 16:38:41"] +["a720649e-219a-42fd-945f-799a0f6b7e26","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 16:38:29"] +["a8d9db68-8d53-440f-9091-01878b2b4e8a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b11","2019-06-26 16:39:01"] +["adb59b31-12ff-4129-b103-df552c4832ae","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 19:57:48"] +["b13444fa-a76d-4351-9f1f-c7fca73e4a29","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] +["be428c97-58f2-4eb8-b09e-faa61d15a6ad","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 11:05:05"] +["bfc7a5d9-69bc-4cda-8c9c-34836ea9cc74","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c4b12","2019-06-26 16:38:43"] +["c443e3d7-81e2-4078-9228-a98c9cf3d6dd","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 20:36:33"] +["c9baf336-9bd7-48d3-a74f-da1aa318a6fe","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 17:00:29"] +["cb5ec7d3-d58e-4e7c-b44a-175d7c8358a0","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b08","2019-06-26 19:58:14"] +["cf2095fc-0505-40fc-b7ca-0f0c0951d316","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 20:36:07"] +["dc8122aa-cc3b-4eef-8035-5128e02ce987","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:57"] +["dd4bf9c3-cd17-4dcb-b5b1-f8b3fa39075d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] +["df3c5475-d67d-4531-9f73-4b1223ed98e3","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 17:01:03"] +["e21965a4-255f-4346-af06-21e0997f8be8","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c2b11","2019-06-26 16:38:34"] +["e3edf674-b383-4950-8849-141a14996527","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b12","2019-06-26 19:58:06"] +["f080805c-2519-482f-bac3-724c1cdbfbf6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:56"] +["f5d341ae-2775-4bc9-9196-428107ab4590","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 20:36:48"] +["f6f9fdde-2b15-481f-8f1f-89a850182e00","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 20:36:25"] +["f839aadd-2ac7-4101-bf63-e673a8a88efe","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 20:36:56"] +["fbd79a77-4ce3-4c69-9a81-763a14f7e3d4","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b03","2019-06-26 10:54:37"] +["93465331-6c1c-4fc6-95ff-ffa601d1d424","NutSetters","screw - Screwdriver","","bsayre","Unknown","Unknown","Unknown","bsayre","Unknown","m1.large","10","30720","120","Default","r03c2b11","2019-06-26 00:00:48"] +["47cfe663-63a7-4dd5-b96f-69296accc505","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] +["91a34535-24be-4aff-9f11-dd916410192c","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r01c2b13","2019-06-26 00:00:08"] +["35e39c6f-7c4e-4e85-8df0-61b781f9d024","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r06c2b11","2019-06-26 00:00:28"] +["49655a01-ca42-4131-84f3-7df056db691a","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] +["aaa9031a-9d50-462f-96d0-e65056afd7ce","NutSetters","screw - Screwdriver","","jchuah","Unknown","Unknown","Unknown","jchuah","Unknown","m1.tiny","1","2048","8","Default","r02c1b11","2019-06-26 00:00:25"] +["4f13f65b-7005-432a-a051-f085fe1d4f38","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r02c3b02","2019-06-26 00:00:20"] +["8b4fe4e3-18d8-422c-b20a-debb0f0f29ac","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] +["aabd49fb-0b6c-4787-b717-0a6f7f943256","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.medium","6","16384","60","tacc","r01c4b04","2019-06-26 00:00:46"] +["7dba2f39-9799-4347-b119-14bbbecdd6ec","NutSetters","screw - Screwdriver","","jhaber","Unknown","Unknown","Unknown","jhaber","Unknown","m1.xlarge","24","61440","60","Default","r07c1b06","2019-06-26 00:00:26"] +["93522185-0c41-4d9e-97c9-24ea6e2717e8","NutSetters","screw - Screwdriver","","sclevey","Unknown","Unknown","Unknown","sclevey","Unknown","m1.small","2","4096","20","Default","r02c3b10","2019-06-26 00:00:40"] +["111f50cc-d3ed-49ae-a8ac-135f15e61150","NutSetters","screw - Screwdriver","","sjmiller","Unknown","Unknown","Unknown","sjmiller","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] +["81a15df9-ca8d-4a1f-9958-370d980d0d01","NutSetters","screw - Screwdriver","","josconno","Unknown","Unknown","Unknown","josconno","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json new file mode 100644 index 0000000000..9770734f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json @@ -0,0 +1,89 @@ +["Local Job Id","Resource","PI Group"] +["965514","Mortorq","Arts"] +["2277129","Frearson","Mechanics and Materials"] +["2278289","Frearson","Mechanics and Materials"] +["2280582","Frearson","Mechanics and Materials"] +["2281719","Frearson","Mechanics and Materials"] +["2283011","Frearson","Mechanics and Materials"] +["2284170","Frearson","Mechanics and Materials"] +["2276367","Frearson","Mechanics and Materials"] +["2277515","Frearson","Mechanics and Materials"] +["2278652","Frearson","Mechanics and Materials"] +["2279817","Frearson","Mechanics and Materials"] +["2283415","Frearson","Mechanics and Materials"] +["2277514","Frearson","Mechanics and Materials"] +["2278288","Frearson","Mechanics and Materials"] +["2279028","Frearson","Mechanics and Materials"] +["2279816","Frearson","Mechanics and Materials"] +["2280583","Frearson","Mechanics and Materials"] +["2283010","Frearson","Mechanics and Materials"] +["2283780","Frearson","Mechanics and Materials"] +["2276029","Frearson","Mechanics and Materials"] +["2279419","Frearson","Mechanics and Materials"] +["2280952","Frearson","Mechanics and Materials"] +["2282190","Frearson","Mechanics and Materials"] +["2284537","Frearson","Mechanics and Materials"] +["2276028","Frearson","Mechanics and Materials"] +["2276742","Frearson","Mechanics and Materials"] +["2281355","Frearson","Mechanics and Materials"] +["2282191","Frearson","Mechanics and Materials"] +["2284538","Frearson","Mechanics and Materials"] +["992569","Mortorq","Arts"] +["992636","Mortorq","Arts"] +["2288365","Frearson","Mechanics and Materials"] +["2291016","Frearson","Mechanics and Materials"] +["2294671","Frearson","Mechanics and Materials"] +["2301876","Frearson","Mechanics and Materials"] +["2305417","Frearson","Mechanics and Materials"] +["2285666","Frearson","Mechanics and Materials"] +["2286842","Frearson","Mechanics and Materials"] +["2292204","Frearson","Mechanics and Materials"] +["2299515","Frearson","Mechanics and Materials"] +["2285268","Frearson","Mechanics and Materials"] +["2286052","Frearson","Mechanics and Materials"] +["2286841","Frearson","Mechanics and Materials"] +["2288364","Frearson","Mechanics and Materials"] +["2292205","Frearson","Mechanics and Materials"] +["2294670","Frearson","Mechanics and Materials"] +["2297063","Frearson","Mechanics and Materials"] +["2299516","Frearson","Mechanics and Materials"] +["2301877","Frearson","Mechanics and Materials"] +["2285269","Frearson","Mechanics and Materials"] +["2286426","Frearson","Mechanics and Materials"] +["2298323","Frearson","Mechanics and Materials"] +["2289247","Frearson","Mechanics and Materials"] +["2295886","Frearson","Mechanics and Materials"] +["2303092","Frearson","Mechanics and Materials"] +["2306562","Frearson","Mechanics and Materials"] +["2290103","Frearson","Mechanics and Materials"] +["2304240","Frearson","Mechanics and Materials"] +["2306563","Frearson","Mechanics and Materials"] +["1004733","Mortorq","Arts"] +["2310438","Frearson","Mechanics and Materials"] +["2312160","Frearson","Mechanics and Materials"] +["2310140","Frearson","Mechanics and Materials"] +["2311056","Frearson","Mechanics and Materials"] +["2312352","Frearson","Mechanics and Materials"] +["2310139","Frearson","Mechanics and Materials"] +["2310437","Frearson","Mechanics and Materials"] +["2310740","Frearson","Mechanics and Materials"] +["2311057","Frearson","Mechanics and Materials"] +["2311929","Frearson","Mechanics and Materials"] +["2312351","Frearson","Mechanics and Materials"] +["2313130","Frearson","Mechanics and Materials"] +["2308880","Frearson","Mechanics and Materials"] +["2309972","Frearson","Mechanics and Materials"] +["2310877","Frearson","Mechanics and Materials"] +["2311530","Frearson","Mechanics and Materials"] +["2312737","Frearson","Mechanics and Materials"] +["2313281","Frearson","Mechanics and Materials"] +["2309580","Frearson","Mechanics and Materials"] +["2310585","Frearson","Mechanics and Materials"] +["2311746","Frearson","Mechanics and Materials"] +["2312937","Frearson","Mechanics and Materials"] +["2313426","Frearson","Mechanics and Materials"] +["2308879","Frearson","Mechanics and Materials"] +["2309817","Frearson","Mechanics and Materials"] +["2311531","Frearson","Mechanics and Materials"] +["2312738","Frearson","Mechanics and Materials"] +["2313427","Frearson","Mechanics and Materials"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json new file mode 100644 index 0000000000..a063517990 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json @@ -0,0 +1,1312 @@ +["Local Job Id","Resource","Service Provider","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"] +["1012557[29]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[30]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[31]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[32]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[33]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[34]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[35]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[36]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[37]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[38]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[39]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[40]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[41]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[42]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[43]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[44]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[45]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[46]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[47]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[48]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[49]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6108925","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6112983","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6108976","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108977","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108991","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108995","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108996","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108997","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108998","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108999","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109002","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109003","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109004","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109007","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109008","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109010","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109011","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109017","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109020","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109024","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109025","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109027","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109030","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109032","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109033","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109034","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109035","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109036","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109037","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109038","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109039","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109040","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109041","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109044","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109046","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109047","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109048","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109051","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109052","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109053","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109054","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109055","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109056","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109057","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109058","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109059","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109060","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109061","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109062","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109063","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109064","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109065","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109066","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109067","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109068","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109069","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109072","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109073","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109074","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109075","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109077","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109078","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109079","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109080","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109081","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109082","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109083","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109084","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109085","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109086","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109088","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109089","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109090","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109091","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109092","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109093","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109094","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109095","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109096","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109097","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109098","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109099","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109100","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109101","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109102","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109103","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109104","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109105","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109106","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109107","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109108","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109109","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109110","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109111","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109112","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109113","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109114","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109115","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109118","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109119","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109120","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109121","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109122","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109123","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109124","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109125","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109127","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109128","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109130","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109131","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109132","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109135","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109138","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109139","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109141","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109142","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109143","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109144","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109147","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109148","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109149","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109150","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109151","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109152","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109153","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109154","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109155","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109156","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109157","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109158","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109159","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109160","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109161","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109162","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109163","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109164","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109165","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109166","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109167","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109168","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109169","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109170","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109171","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109172","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109173","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109174","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109175","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109176","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109177","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109178","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109179","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109180","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109181","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109182","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109183","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109184","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109185","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109186","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109187","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109188","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109189","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109190","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109191","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109192","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109193","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109194","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109195","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109196","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1012557[74]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[50]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[51]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[52]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[53]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[54]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[55]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[56]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[57]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[58]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[59]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[60]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[61]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[62]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[67]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[68]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[70]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[71]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[72]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6108929","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6113332","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["2309861","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309884","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6117519","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6119997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120350","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["2308432","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309845","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309860","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6115789","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117558","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117561","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117576","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120115","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120140","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120150","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120343","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120363","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120367","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120380","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120441","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120447","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120448","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120461","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115525[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[59]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115537[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115539[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[18]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[46]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116050","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6116051","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1004733","Mortorq","screw - Screwdriver","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"] +["6113839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115604","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116091","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116098","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115303","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115438","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115457","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119921","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119923","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["2309863","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6113101","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113155","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113185","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113270","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114933","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115592","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115607","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115617","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115621","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115623","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115651","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115655","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115673","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115685","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115686","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115687","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115689","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115721","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115724","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115782","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116066","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117511","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117527","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117550","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117554","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117563","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117578","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115287","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115435","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115436","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115441","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115444","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115447","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115449","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115453","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115455","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119918","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119919","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119920","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119922","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119924","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115525[38]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115298","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6113512","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6113518","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6114923","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6115525[56]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[25]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116630[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[67]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6118546","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6115641","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6118367","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6115544[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6112876","Robertson","screw - Screwdriver","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"] +["6116000","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["165381","Phillips","screw - Screwdriver","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"] +["6109335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109479","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109648","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112989","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112990","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112994","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112995","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113062","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113063","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113387","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113393","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113841","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113844","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113848","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114034","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114035","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114452","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114453","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114454","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114455","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114457","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114459","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114460","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114852","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114853","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114925","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115116","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115120","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115598","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108027[4]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[5]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[6]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["995583","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995627","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995628","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995629","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995630","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995631","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995632","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995633","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995634","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995635","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995636","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995637","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995638","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995639","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995640","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995641","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995642","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995643","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995644","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995645","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995646","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["163485","Phillips","screw - Screwdriver","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"] +["964693","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964694","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["2286681","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2288753","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2289004","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6106081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108682","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109275","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109282","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109332","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109348","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109351","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109356","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109359","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109360","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109361","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109362","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109365","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109370","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109371","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109372","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109374","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109376","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109378","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109381","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109405","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109436","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109463","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109464","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109471","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109472","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109475","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109500","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109509","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109510","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109638","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109639","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109640","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109650","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109653","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["1019989","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020009","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020000","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020089","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019944","Posidriv","wrench - Wrench","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1020095","Posidriv","wrench - Wrench","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1020038","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018470","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019923","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019934","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018314","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018806","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018919","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019945","Posidriv","wrench - Wrench","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1019972","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019139","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020005","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020025","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019938","Posidriv","wrench - Wrench","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018813","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1005924","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["995612","Posidriv","wrench - Wrench","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999221","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999242","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999289","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1003355","Posidriv","wrench - Wrench","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"] +["999183","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999188","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999254","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005888","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005890","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005900","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005907","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1012029","Posidriv","wrench - Wrench","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1009531","Posidriv","wrench - Wrench","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6109658","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109662","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109665","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109672","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109753","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109754","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109757","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109758","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109759","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109761","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109762","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109767","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109769","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109778","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109781","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109783","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109787","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109791","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109795","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109798","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109800","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109801","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109803","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109807","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109810","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112998","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113001","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113003","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113005","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113006","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113007","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113011","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113016","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113020","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113028","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113032","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113049","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113051","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113056","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113057","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113058","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113059","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113060","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113061","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113064","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113067","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113068","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113069","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113070","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113071","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113072","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113073","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113077","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113082","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113083","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113092","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113094","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113110","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113112","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113117","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113118","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113127","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113131","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113135","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113137","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113142","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113143","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113144","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113146","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113147","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113148","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113149","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113151","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113152","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113153","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113154","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113156","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113157","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113158","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113160","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113161","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113162","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113163","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113164","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113165","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113166","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113167","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113170","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113172","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113173","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113174","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113175","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113176","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113177","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113178","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113179","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113180","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113181","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113182","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113183","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113184","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113186","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113187","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113188","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113189","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113190","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113191","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113192","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113194","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113195","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113197","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113198","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113200","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113201","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113202","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113203","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113204","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113205","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113206","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113207","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113208","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113209","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113210","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113211","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113212","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113213","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113214","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113215","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113217","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113218","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113219","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113220","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113222","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113223","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113224","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113225","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113227","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113228","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113230","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113231","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113232","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113233","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113234","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113235","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113236","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113237","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113238","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113240","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113243","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113244","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113245","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113248","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113249","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113251","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113252","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113253","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113254","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113259","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113260","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113263","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113267","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113271","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113272","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113273","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113274","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113276","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113278","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113281","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113284","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113286","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113289","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113291","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113292","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113299","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113300","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113301","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113302","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113304","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113306","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113307","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113308","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113309","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113310","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113311","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113313","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113314","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113315","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113317","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113318","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113319","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113320","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113322","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113323","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113324","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113328","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113333","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113334","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113342","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113385","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113394","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113395","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113396","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113402","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113403","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113404","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113406","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113407","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113408","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113411","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113412","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113416","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113419","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113420","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113424","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113425","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113433","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113830","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113831","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113832","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113833","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113836","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113850","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113864","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113866","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113868","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113869","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113870","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113871","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113873","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113874","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113879","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113880","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113885","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113886","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113887","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114038","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114040","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114041","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114042","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114043","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114044","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114449","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114450","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114451","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114480","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114483","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114484","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114485","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114486","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114487","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114488","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114489","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114490","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114493","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114494","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114495","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114496","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114498","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114501","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114502","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114506","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114512","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114513","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114515","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114837","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114838","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114842","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114845","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114882","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114928","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114929","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114936","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114937","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114940","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114945","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114946","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114955","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114960","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114962","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114963","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114964","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114978","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115014","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115106","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115128","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115132","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115134","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115620","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115637","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115646","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115647","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115696","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115717","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6107586[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[12]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[29]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[24]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108716[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108716[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108800[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6109585[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6109585[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6111029[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112885[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112886[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112887[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112904[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107628","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107630","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107635","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107647","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6108907","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6108910","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["995647","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995648","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995650","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995652","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995653","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995654","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995655","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995656","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995657","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995658","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995659","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112942","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112943","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112944","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112945","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6114330","Robertson","screw - Screwdriver","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6108018","Robertson","screw - Screwdriver","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6111029[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6110309","Robertson","screw - Screwdriver","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"] +["6110932","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110941","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110944","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110949","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110959","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110961","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110965","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110967","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110969","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110970","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110971","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110973","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110974","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110976","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111669","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111670","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111692","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111695","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111697","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111700","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111701","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111702","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111029[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["964695","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964696","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964697","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964698","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964699","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964700","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964701","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964702","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964703","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964704","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964705","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964706","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112948","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112946","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112947","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112949","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6111703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111704","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111705","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111708","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111709","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111710","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111711","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111731","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111732","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111733","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111734","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111735","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111736","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111737","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111738","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111739","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111741","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111742","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111743","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111744","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111748","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111749","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111772","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111773","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111774","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108176","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109583","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109608","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109610","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["964707","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112950","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6108913","Robertson","screw - Screwdriver","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6071470","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071484","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071502","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071518","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071523","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071529","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071533","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6101316","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101317","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101752","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101753","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101754","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101755","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101756","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1016250","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019924","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["995282","Posidriv","wrench - Wrench","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json new file mode 100644 index 0000000000..8411695efa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json @@ -0,0 +1,3 @@ +["Resource ID","Resource"] +["1","Frearson"] +["2","Mortorq"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json new file mode 100644 index 0000000000..2573e51aed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json @@ -0,0 +1,6 @@ +["Resource ID","Resource","Resource Allocation Type","Start Time","End Time","CPU Processor Count","CPU Node Count","CPU Processors Per Node","GPU Count","GPU Node Count","GPUs Per Node","Normalization Factor","SUs Available","Resource Type","Organization","Percent Allocated"] +["1","Frearson","CPU Allocated","1482796800","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] +["2","Mortorq","GPU Allocated","1482710400","1577923199","4000","400","10","4000","400","10","1.0000",null,"High-performance computing","Screwdriver","100"] +["3","Phillips","CPU Node Allocated","1482364800","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] +["4","Posidriv","CPU Allocated","1482278400","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Wrench","100"] +["5","Robertson","GPU Node Allocated","1481500800","1577923199","4000","400","10","4000","400","10","1.0000",null,"High-performance computing","Screwdriver","100"] diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5d1cc19bb8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Users: Active" +screw,60 +wrench,18 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b262d02d20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +2016-12-22,1,1 +2016-12-23,1,2 +2016-12-24,1,2 +2016-12-25,1,3 +2016-12-26,2,3 +2016-12-27,12,5 +2016-12-28,21,7 +2016-12-29,37,12 +2016-12-30,58,18 +2016-12-31,46,16 +2017-01-01,30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..77ec7bf230 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +2016-12,60,18 +2017-01,30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a9c2ed9857 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +"2016 Q4",60,18 +"2017 Q1",30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..06dcbd7b00 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Users: Active","[wrench] Number of Users: Active" +2016,60,18 +2017,30,10 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6539adc578 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of PIs: Active" +screw,41 +wrench,7 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cc15b79ca2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +2016-12-22,1,1 +2016-12-23,1,2 +2016-12-24,1,2 +2016-12-25,1,2 +2016-12-26,2,2 +2016-12-27,10,3 +2016-12-28,17,4 +2016-12-29,26,6 +2016-12-30,39,7 +2016-12-31,32,7 +2017-01-01,23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f1d7ab89a2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +2016-12,41,7 +2017-01,23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8182dc92d3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +"2016 Q4",41,7 +"2017 Q1",23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7c745e364f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" +2016,41,7 +2017,23,5 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d33d0f370d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Resources: Active" +screw,4 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1a97e29cd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +2016-12-22,1,1 +2016-12-23,1,1 +2016-12-24,1,1 +2016-12-25,1,1 +2016-12-26,2,1 +2016-12-27,4,1 +2016-12-28,4,1 +2016-12-29,4,1 +2016-12-30,4,1 +2016-12-31,4,1 +2017-01-01,4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..75c5b82e6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +2016-12,4,1 +2017-01,4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d15f4318be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +"2016 Q4",4,1 +"2017 Q1",4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ba50ff8ef0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" +2016,4,1 +2017,4,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cdd29ad603 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.5348933947643199 +wrench,6.37875732,0.33815435199138116 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..adabc0faaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.9353503198676139 +wrench,6.37875732,0.6324232167493075 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..adabc0faaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.9353503198676139 +wrench,6.37875732,0.6324232167493075 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..adabc0faaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +screw,12.80355102,0.9353503198676139 +wrench,6.37875732,0.6324232167493075 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bc63a775e4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +2016-12-22,200.95666667,203.30000000 +2016-12-23,288.00000000,148.30180556 +2016-12-24,288.00000000,156.00000000 +2016-12-25,288.00000000,98.05400000 +2016-12-26,84.05555556,350.40000000 +2016-12-27,445.99730556,181.10212963 +2016-12-28,177.41426546,304.01960784 +2016-12-29,98.91927680,89.17202336 +2016-12-30,10.64677666,4.48561843 +2016-12-31,7.95729740,5.16445323 +2017-01-01,4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2dc9cc0e1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +2016-12,15.20749469,6.70495772 +2017-01,4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3a90e576a1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +"2016 Q4",15.20749469,6.70495772 +"2017 Q1",4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..800b79d904 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" +2016,15.20749469,6.70495772 +2017,4.24817309,3.84804043 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bfcf15b116 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Per Job" +screw,0.00844461 +wrench,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5d5517d04d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +2016-12-22,33.49277778,0.00000000 +2016-12-23,48.00000000,0.00000000 +2016-12-24,48.00000000,0.00000000 +2016-12-25,48.00000000,0.00000000 +2016-12-26,8.00000000,0.00000000 +2016-12-27,1.60000000,0.00000000 +2016-12-28,0.11085450,0.00000000 +2016-12-29,0.02905569,0.00000000 +2016-12-30,0.00202994,0.00000000 +2016-12-31,0.00193315,0.00000000 +2017-01-01,0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..16fe5ed9aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +2016-12,0.01004798,0.00000000 +2017-01,0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..294cb01d03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +"2016 Q4",0.01004798,0.00000000 +"2017 Q1",0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f7956011f0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" +2016,0.01004798,0.00000000 +2017,0.00274705,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f5a008f909 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +screw,0.0001,0.00004711767852829441 +wrench,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3ff71ca297 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +2016-12-22,2.0000,0.0000 +2016-12-23,2.0000,0.0000 +2016-12-24,2.0000,0.0000 +2016-12-25,2.0000,0.0000 +2016-12-26,0.3333,0.0000 +2016-12-27,0.0667,0.0000 +2016-12-28,0.0046,0.0000 +2016-12-29,0.0012,0.0000 +2016-12-30,0.0001,0.0000 +2016-12-31,0.0001,0.0000 +2017-01-01,0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3662102434 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +2016-12,0.0000,0.0000 +2017-01,0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c0c13ddfed --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000 +"2017 Q1",0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9b30204edf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" +2016,0.0000,0.0000 +2017,0.0003,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fed03ea6cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" +screw,70.2878 +wrench,15.7368 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a8da70d219 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,12.0000,11.6809 +2016-12-24,12.0000,11.1538 +2016-12-25,12.0000,15.1906 +2016-12-26,13.7158,19.7397 +2016-12-27,75.7443,19.3183 +2016-12-28,113.7129,16.9501 +2016-12-29,90.8222,20.2231 +2016-12-30,74.0078,16.4023 +2016-12-31,46.9788,14.3031 +2017-01-01,23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c2f3d72b86 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,74.5533,16.2321 +2017-01,23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1b6111e7f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",74.5533,16.2321 +"2017 Q1",23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..469f59cdc1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" +2016,74.5533,16.2321 +2017,23.3724,10.0052 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0d48b88a9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" +screw,12.0000 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..834d774101 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0.0000 +2016-12-23,12.0000,0.0000 +2016-12-24,12.0000,0.0000 +2016-12-25,12.0000,0.0000 +2016-12-26,12.0000,0.0000 +2016-12-27,12.0000,0.0000 +2016-12-28,12.0000,0.0000 +2016-12-29,12.0000,0.0000 +2016-12-30,12.0000,0.0000 +2016-12-31,12.0000,0.0000 +2017-01-01,12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..25ff87f94e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000 +2017-01,12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9026d0e6f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000 +"2017 Q1",12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4cf7105be3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000 +2017,12.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..66c2152f6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.04455091706245642 +wrench,0.61345852,0.025732433486385795 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c8c13e13ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.0741899583245457 +wrench,0.61345852,0.04722314464546534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c8c13e13ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.0741899583245457 +wrench,0.61345852,0.04722314464546534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c8c13e13ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +screw,2.48851983,0.0741899583245457 +wrench,0.61345852,0.04722314464546534 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..00470bafe5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +2016-12-22,16.74638889,16.94166667 +2016-12-23,24.00000000,16.30180556 +2016-12-24,24.00000000,24.00000000 +2016-12-25,24.00000000,11.30155556 +2016-12-26,6.25347222,24.00000000 +2016-12-27,35.28700000,12.31518519 +2016-12-28,19.02060559,22.27614379 +2016-12-29,16.85101493,7.84795770 +2016-12-30,2.11411709,0.44502730 +2016-12-31,1.81136856,0.50545051 +2017-01-01,1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bc2f6a5419 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +2016-12,2.85417511,0.62961066 +2017-01,1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..91cd37f741 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +"2016 Q4",2.85417511,0.62961066 +"2017 Q1",1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ec4e09f13b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" +2016,2.85417511,0.62961066 +2017,1.13778338,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..707aff0b18 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +wrench,9.6298,0.022205555738387606 +screw,8.5663,0.0252154090432755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ec58a4b078 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,6.5000,12.0000 +2016-12-24,6.5000,12.0000 +2016-12-25,14.6000,12.0000 +2016-12-26,14.6000,15.3333 +2016-12-27,14.1667,34.9667 +2016-12-28,13.5294,11.4873 +2016-12-29,10.9773,6.6447 +2016-12-30,9.1123,7.7748 +2016-12-31,9.7568,8.5991 +2017-01-01,11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8dc4ffb9fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +2016-12,9.4049,8.3542 +2017-01,11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8fb364722f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +"2016 Q4",9.4049,8.3542 +"2017 Q1",11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..45952361dc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" +2016,9.4049,8.3542 +2017,11.1505,8.9335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0460f2425c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +screw,4.75413280,0.10600976285407 +wrench,1.85771176,0.04173360028194275 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c169576945 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +2016-12-22,0.00027778,9.33222222 +2016-12-23,0.00000000,9.59638889 +2016-12-24,0.00000000,0.00000000 +2016-12-25,0.00000000,36.96185185 +2016-12-26,0.00066667,0.00000000 +2016-12-27,82.42593750,0.00420635 +2016-12-28,8.18370003,60.06016667 +2016-12-29,4.90283019,1.76508998 +2016-12-30,8.72268458,0.67086751 +2016-12-31,2.76399096,2.29642170 +2017-01-01,1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d23d9b27ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +2016-12,5.73725065,1.48979528 +2017-01,1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..81b34de797 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +"2016 Q4",5.73725065,1.48979528 +"2017 Q1",1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d94312d73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" +2016,5.73725065,1.48979528 +2017,1.42993013,4.44912351 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b3c78bc8d9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.02072668503313302 +wrench,0.59530227,0.023036904042316335 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..0ff1bb18b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.029573871735368337 +wrench,0.59530227,0.043533301064325194 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..0ff1bb18b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.029573871735368337 +wrench,0.59530227,0.043533301064325194 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..0ff1bb18b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +screw,2.02003765,0.029573871735368337 +wrench,0.59530227,0.043533301064325194 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..36b6a068a0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +2016-12-22,16.74638889,16.94166667 +2016-12-23,24.00000000,16.30180556 +2016-12-24,24.00000000,24.00000000 +2016-12-25,24.00000000,11.30155556 +2016-12-26,6.25347222,24.00000000 +2016-12-27,12.88003704,12.31518519 +2016-12-28,9.68925905,22.27614379 +2016-12-29,12.01813038,7.39270518 +2016-12-30,1.71908906,0.42482893 +2016-12-31,1.60973208,0.49295988 +2017-01-01,1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2f09c1e9b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +2016-12,2.27041027,0.60887666 +2017-01,1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d5e5544ca6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +"2016 Q4",2.27041027,0.60887666 +"2017 Q1",1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..878a774d4c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" +2016,2.27041027,0.60887666 +2017,1.06629022,0.47114714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4907b73246 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","User Expansion Factor" +wrench,3.6177 +screw,3.0793 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..2b488da0bf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +2016-12-22,1.0495,1.0000 +2016-12-23,1.0525,1.0000 +2016-12-24,1.0552,1.0000 +2016-12-25,1.1158,1.0000 +2016-12-26,1.2310,1.0000 +2016-12-27,1.1876,2.1647 +2016-12-28,1.3009,1.5180 +2016-12-29,1.3071,1.3820 +2016-12-30,2.4490,5.0498 +2016-12-31,5.4420,2.4306 +2017-01-01,6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..524ba71204 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +2016-12,3.3255,3.1398 +2017-01,6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..91d2cf695b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +"2016 Q4",3.3255,3.1398 +"2017 Q1",6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..278b3f46e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[wrench] User Expansion Factor","[screw] User Expansion Factor" +2016,3.3255,3.1398 +2017,6.2105,2.6134 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..907540d96d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Ended" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f2620c918a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +2016-12-22,0,0 +2016-12-23,0,0 +2016-12-24,0,0 +2016-12-25,0,0 +2016-12-26,0,0 +2016-12-27,0,0 +2016-12-28,0,0 +2016-12-29,0,0 +2016-12-30,21497,5109 +2016-12-31,23453,4688 +2017-01-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..97a6121e48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +2016-12,44950,9797 +2017-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7d3591b1db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +"2016 Q4",44950,9797 +"2017 Q1",15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a6ef651aa4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" +2016,44950,9797 +2017,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1620b4236f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Max (Core Count)" +screw,336 +wrench,80 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f7d4ab96c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +2016-12-22,12,12 +2016-12-23,12,12 +2016-12-24,12,12 +2016-12-25,12,24 +2016-12-26,16,24 +2016-12-27,144,24 +2016-12-28,192,24 +2016-12-29,192,64 +2016-12-30,336,80 +2016-12-31,336,64 +2017-01-01,192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f0b569eadb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +2016-12,336,80 +2017-01,192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a13b5d9043 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +"2016 Q4",336,80 +"2017 Q1",192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..de508d5f77 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" +2016,336,80 +2017,192,24 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..861986f9cb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Min (Core Count)" +screw,1 +wrench,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9870c198fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +2016-12-22,12,12 +2016-12-23,12,1 +2016-12-24,12,1 +2016-12-25,12,1 +2016-12-26,12,1 +2016-12-27,1,1 +2016-12-28,1,1 +2016-12-29,1,1 +2016-12-30,1,1 +2016-12-31,1,1 +2017-01-01,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..98d9fb0f92 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +2016-12,1,1 +2017-01,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..37be86e3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +"2016 Q4",1,1 +"2017 Q1",1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..fbe82bbb40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" +2016,1,1 +2017,1,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ea4e72b90d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Job Size: Normalized (% of Total Cores)" +wrench,0.240744351 +screw,0.053539078 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9df0b057aa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.300000000,0.300000000 +2016-12-23,0.162500000,0.300000000 +2016-12-24,0.162500000,0.300000000 +2016-12-25,0.365000000,0.300000000 +2016-12-26,0.365000000,0.191666667 +2016-12-27,0.354166667,0.218541667 +2016-12-28,0.338235294,0.071795612 +2016-12-29,0.274431818,0.041529207 +2016-12-30,0.227807641,0.048592785 +2016-12-31,0.243918919,0.053744211 +2017-01-01,0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c70a2294c1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +2016-12,0.235121939,0.052214017 +2017-01,0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cd2914679c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.235121939,0.052214017 +"2017 Q1",0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f335a8799e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" +2016,0.235121939,0.052214017 +2017,0.278763441,0.055834245 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..862a3e5fd4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Running" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b1996f3b3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +2016-12-22,1,1 +2016-12-23,1,2 +2016-12-24,1,2 +2016-12-25,1,5 +2016-12-26,6,5 +2016-12-27,30,12 +2016-12-28,433,17 +2016-12-29,1652,88 +2016-12-30,23646,5209 +2016-12-31,24830,4773 +2017-01-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..56496f59bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +2016-12,46327,9882 +2017-01,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2412733f20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +"2016 Q4",46327,9882 +"2017 Q1",15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..056f15571d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" +2016,46327,9882 +2017,15078,1488 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..25307c5608 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Started" +screw,60028 +wrench,11285 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8137f2ebc6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +2016-12-22,1,1 +2016-12-23,0,1 +2016-12-24,0,0 +2016-12-25,0,3 +2016-12-26,5,0 +2016-12-27,24,7 +2016-12-28,403,5 +2016-12-29,1219,71 +2016-12-30,21994,5121 +2016-12-31,22681,4673 +2017-01-01,13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b581f76050 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +2016-12,46327,9882 +2017-01,13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ae996b5f7e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +"2016 Q4",46327,9882 +"2017 Q1",13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2035379683 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" +2016,46327,9882 +2017,13701,1403 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..cff1ff9538 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,54454 +wrench,9962 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ff871053f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,58906 +wrench,10337 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ff871053f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,58906 +wrench,10337 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ff871053f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Number of Jobs Submitted" +screw,58906 +wrench,10337 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b27fe4f753 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +2016-12-22,1,0 +2016-12-23,0,1 +2016-12-24,0,0 +2016-12-25,0,1 +2016-12-26,5,0 +2016-12-27,11,7 +2016-12-28,379,0 +2016-12-29,1137,69 +2016-12-30,20666,4994 +2016-12-31,19676,4435 +2017-01-01,12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..75aee5b02a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +2016-12,46327,9882 +2017-01,12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c4ab16d768 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +"2016 Q4",46327,9882 +"2017 Q1",12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c11c0685de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" +2016,46327,9882 +2017,12579,455 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9750d8b3e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","CPU Hours: Total" +screw,768571.5606 +wrench,71984.2764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c3bb31f28 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12-22,200.9567,203.3000 +2016-12-23,288.0000,296.6036 +2016-12-24,288.0000,312.0000 +2016-12-25,288.0000,490.2700 +2016-12-26,504.3333,1752.0000 +2016-12-27,13379.9192,2173.2256 +2016-12-28,76820.3769,5168.3333 +2016-12-29,163414.6453,7847.1381 +2016-12-30,251753.6808,23365.5864 +2016-12-31,197579.6944,24649.9353 +2017-01-01,64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..82d7293d09 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12,704517.6067,66258.3922 +2017-01,64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1a2905f80b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +"2016 Q4",704517.6067,66258.3922 +"2017 Q1",64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9365c86fd3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016,704517.6067,66258.3922 +2017,64053.9539,5725.8842 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a850fa8ba3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","GPU Hours: Total" +screw,506.9128 +wrench,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..599db839ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12-22,33.4928,0.0000 +2016-12-23,48.0000,0.0000 +2016-12-24,48.0000,0.0000 +2016-12-25,48.0000,0.0000 +2016-12-26,48.0000,0.0000 +2016-12-27,48.0000,0.0000 +2016-12-28,48.0000,0.0000 +2016-12-29,48.0000,0.0000 +2016-12-30,48.0000,0.0000 +2016-12-31,48.0000,0.0000 +2017-01-01,41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2354954c1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12,465.4928,0.0000 +2017-01,41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..309be30ddb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +"2016 Q4",465.4928,0.0000 +"2017 Q1",41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5475270a20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016,465.4928,0.0000 +2017,41.4200,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1b82a6851d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Node Hours: Total" +screw,149380.8681 +wrench,6922.8794 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..946f39179f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +2016-12-22,16.7464,16.9417 +2016-12-23,24.0000,32.6036 +2016-12-24,24.0000,48.0000 +2016-12-25,24.0000,56.5078 +2016-12-26,37.5208,120.0000 +2016-12-27,1058.6100,147.7822 +2016-12-28,8235.9222,378.6944 +2016-12-29,27837.8767,690.6203 +2016-12-30,49990.4128,2318.1472 +2016-12-31,44976.2814,2412.5153 +2017-01-01,17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3c3edc70fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +2016-12,132225.3703,6221.8125 +2017-01,17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..17d18afedc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +"2016 Q4",132225.3703,6221.8125 +"2017 Q1",17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b6f9777fd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Node Hours: Total","[wrench] Node Hours: Total" +2016,132225.3703,6221.8125 +2017,17155.4978,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4aa1fe2d6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wait Hours: Total" +screw,285381.0836 +wrench,20964.2772 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..61526ae1ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +2016-12-22,0.0003,9.3322 +2016-12-23,0.0000,9.5964 +2016-12-24,0.0000,0.0000 +2016-12-25,0.0000,110.8856 +2016-12-26,0.0033,0.0000 +2016-12-27,1978.2225,0.0294 +2016-12-28,3298.0311,300.3008 +2016-12-29,5976.5500,125.3214 +2016-12-30,191846.7247,3435.5125 +2016-12-31,62690.0789,10731.1786 +2017-01-01,19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1313bd7cdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +2016-12,265789.6108,14722.1569 +2017-01,19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..17edbfa719 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +"2016 Q4",265789.6108,14722.1569 +"2017 Q1",19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..eb989ed7ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" +2016,265789.6108,14722.1569 +2017,19591.4728,6242.1203 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c0d74c357a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Wall Hours: Total" +screw,121258.8203 +wrench,6717.9861 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3e4f3b3c3a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +2016-12-22,16.7464,16.9417 +2016-12-23,24.0000,32.6036 +2016-12-24,24.0000,48.0000 +2016-12-25,24.0000,56.5078 +2016-12-26,37.5208,120.0000 +2016-12-27,386.4011,147.7822 +2016-12-28,4195.4492,378.6944 +2016-12-29,19853.9514,650.5581 +2016-12-30,40649.5800,2212.9339 +2016-12-31,39969.6475,2352.8975 +2017-01-01,16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ff5e141c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +2016-12,105181.2964,6016.9192 +2017-01,16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..32e42a678d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +"2016 Q4",105181.2964,6016.9192 +"2017 Q1",16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8559bbfe58 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" +2016,105181.2964,6016.9192 +2017,16077.5239,701.0669 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f43bfe6732 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,22.8742 +wrench,6.8167 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a0fe5e5f0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,4.8521 +wrench,1.7853 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..499430cf7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,1.9965 +wrench,0.7424 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fe30df1685 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Service Provider","Screwdriver CPU Utilization (%)" +screw,0.5334 +wrench,0.1994 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a9bab51521 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +2016-12-22,0.2093,0.2118 +2016-12-23,0.3000,0.3090 +2016-12-24,0.3000,0.3250 +2016-12-25,0.3000,0.5107 +2016-12-26,0.2627,1.8250 +2016-12-27,3.4844,2.2638 +2016-12-28,20.0053,5.3837 +2016-12-29,42.5559,8.1741 +2016-12-30,65.5609,24.3392 +2016-12-31,51.4530,25.6770 +2017-01-01,16.6807,5.9645 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..14e18a970e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +2016-12,17.8993,6.2745 +2017-01,0.5381,0.1924 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5ad03bc9f5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +"2016 Q4",17.8993,6.2745 +"2017 Q1",0.1853,0.0663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7b1e6cbddd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/provider/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver CPU Utilization (%): by Service Provider" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" +2016,17.8993,6.2745 +2017,0.0457,0.0163 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv index 1cef9e3ba3..5d6c15b534 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,17882.3529 +screw,13882.3529 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv index c874908fbe..976a67f1ab 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,16235.2941 +screw,12941.1765 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv index b4deea2292..5c8f08d81a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,18254.5455 +screw,14581.8182 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv index 375cb91943..0cf895f507 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,19501.2987 +screw,15594.8052 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv index ad48354855..669922d588 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of CPU Cores: Allocated (Core Count)" -2016-12-22,12000.0000 -2016-12-23,12000.0000 -2016-12-24,12000.0000 -2016-12-25,12000.0000 -2016-12-26,16000.0000 -2016-12-27,20000.0000 -2016-12-28,20000.0000 -2016-12-29,20000.0000 -2016-12-30,20000.0000 -2016-12-31,20000.0000 -2017-01-01,20000.0000 -2017-01-02,20000.0000 -2017-01-03,20000.0000 -2017-01-04,20000.0000 -2017-01-05,20000.0000 -2017-01-06,20000.0000 -2017-01-07,20000.0000 +Day,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +2016-12-22,8000.0000,4000.0000 +2016-12-23,8000.0000,4000.0000 +2016-12-24,8000.0000,4000.0000 +2016-12-25,8000.0000,4000.0000 +2016-12-26,12000.0000,4000.0000 +2016-12-27,16000.0000,4000.0000 +2016-12-28,16000.0000,4000.0000 +2016-12-29,16000.0000,4000.0000 +2016-12-30,16000.0000,4000.0000 +2016-12-31,16000.0000,4000.0000 +2017-01-01,16000.0000,4000.0000 +2017-01-02,16000.0000,4000.0000 +2017-01-03,16000.0000,4000.0000 +2017-01-04,16000.0000,4000.0000 +2017-01-05,16000.0000,4000.0000 +2017-01-06,16000.0000,4000.0000 +2017-01-07,16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv index dbe8a900e6..ccaa2bea50 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of CPU Cores: Allocated (Core Count)" -2016-12,10400.0000 -2017-01,20000.0000 +Month,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +2016-12,8200.0000,4000.0000 +2017-01,16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv index 53855aa54c..a384cd3385 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of CPU Cores: Allocated (Core Count)" -"2016 Q4",10400.0000 -"2017 Q1",20000.0000 +Quarter,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +"2016 Q4",8200.0000,4000.0000 +"2017 Q1",16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv index e56b072448..618c834169 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of CPU Cores: Allocated (Core Count)" -2016,10400.0000 -2017,20000.0000 +Year,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" +2016,8200.0000,4000.0000 +2017,16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv index c57574b20a..3909c91132 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Allocated" -screw,1788.2353 +screw,1388.2353 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv index c5c1d094d4..02cf6391c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Allocated" -screw,1623.5294 +screw,1294.1176 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv index 3d158b1693..70d0b83d60 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Allocated" -screw,1825.4545 +screw,1458.1818 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv index 5b03a588ec..d77cc1b763 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Allocated" -screw,1950.1299 +screw,1559.4805 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv index 88384e4d1c..9482e98c00 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of CPU Nodes: Allocated" -2016-12-22,1200.0000 -2016-12-23,1200.0000 -2016-12-24,1200.0000 -2016-12-25,1200.0000 -2016-12-26,1600.0000 -2016-12-27,2000.0000 -2016-12-28,2000.0000 -2016-12-29,2000.0000 -2016-12-30,2000.0000 -2016-12-31,2000.0000 -2017-01-01,2000.0000 -2017-01-02,2000.0000 -2017-01-03,2000.0000 -2017-01-04,2000.0000 -2017-01-05,2000.0000 -2017-01-06,2000.0000 -2017-01-07,2000.0000 +Day,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +2016-12-22,800.0000,400.0000 +2016-12-23,800.0000,400.0000 +2016-12-24,800.0000,400.0000 +2016-12-25,800.0000,400.0000 +2016-12-26,1200.0000,400.0000 +2016-12-27,1600.0000,400.0000 +2016-12-28,1600.0000,400.0000 +2016-12-29,1600.0000,400.0000 +2016-12-30,1600.0000,400.0000 +2016-12-31,1600.0000,400.0000 +2017-01-01,1600.0000,400.0000 +2017-01-02,1600.0000,400.0000 +2017-01-03,1600.0000,400.0000 +2017-01-04,1600.0000,400.0000 +2017-01-05,1600.0000,400.0000 +2017-01-06,1600.0000,400.0000 +2017-01-07,1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv index da87a9c373..ee6797ddad 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of CPU Nodes: Allocated" -2016-12,1040.0000 -2017-01,2000.0000 +Month,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +2016-12,820.0000,400.0000 +2017-01,1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv index ddc01d435c..6dba34f2c2 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of CPU Nodes: Allocated" -"2016 Q4",1040.0000 -"2017 Q1",2000.0000 +Quarter,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +"2016 Q4",820.0000,400.0000 +"2017 Q1",1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv index 740e646f6b..b217c4b6dd 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of CPU Nodes: Allocated" -2016,1040.0000 -2017,2000.0000 +Year,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" +2016,820.0000,400.0000 +2017,1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv index b80aace988..e0007961f1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Allocated" screw,705.8824 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv index 62599de249..e73ece0755 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Allocated" screw,690.1961 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv index e2f699a558..e210e6fe43 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Allocated" screw,749.0909 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv index c20ff8bb45..9dc7f1c7af 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Allocated" screw,785.4545 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv index 9dceb73ee0..a6503b19cc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of GPU Nodes: Allocated" -2016-12-22,400.0000 -2016-12-23,400.0000 -2016-12-24,400.0000 -2016-12-25,400.0000 -2016-12-26,800.0000 -2016-12-27,800.0000 -2016-12-28,800.0000 -2016-12-29,800.0000 -2016-12-30,800.0000 -2016-12-31,800.0000 -2017-01-01,800.0000 -2017-01-02,800.0000 -2017-01-03,800.0000 -2017-01-04,800.0000 -2017-01-05,800.0000 -2017-01-06,800.0000 -2017-01-07,800.0000 +Day,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +2016-12-22,400.0000,0.0000 +2016-12-23,400.0000,0.0000 +2016-12-24,400.0000,0.0000 +2016-12-25,400.0000,0.0000 +2016-12-26,800.0000,0.0000 +2016-12-27,800.0000,0.0000 +2016-12-28,800.0000,0.0000 +2016-12-29,800.0000,0.0000 +2016-12-30,800.0000,0.0000 +2016-12-31,800.0000,0.0000 +2017-01-01,800.0000,0.0000 +2017-01-02,800.0000,0.0000 +2017-01-03,800.0000,0.0000 +2017-01-04,800.0000,0.0000 +2017-01-05,800.0000,0.0000 +2017-01-06,800.0000,0.0000 +2017-01-07,800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv index 635e629d28..66c87ce6aa 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of GPU Nodes: Allocated" -2016-12,520.0000 -2017-01,800.0000 +Month,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +2016-12,520.0000,0.0000 +2017-01,800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv index 5a583537f7..943d9896d9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of GPU Nodes: Allocated" -"2016 Q4",520.0000 -"2017 Q1",800.0000 +Quarter,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +"2016 Q4",520.0000,0.0000 +"2017 Q1",800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv index 68f11b78b8..add9016b3c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of GPU Nodes: Allocated" -2016,520.0000 -2017,800.0000 +Year,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" +2016,520.0000,0.0000 +2017,800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv index d59067d70b..1d53ebe955 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Allocated (GPU Count)" screw,7058.8235 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv index b1b3a6d8b7..e5396beaed 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Allocated (GPU Count)" screw,6901.9608 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv index ee8f067d8d..7304f9b576 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Allocated (GPU Count)" screw,7490.9091 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv index 51abd2d902..80ea4d256f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Allocated (GPU Count)" screw,7854.5455 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv index 44ac5695c2..3209a4b162 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of GPUs: Allocated (GPU Count)" -2016-12-22,4000.0000 -2016-12-23,4000.0000 -2016-12-24,4000.0000 -2016-12-25,4000.0000 -2016-12-26,8000.0000 -2016-12-27,8000.0000 -2016-12-28,8000.0000 -2016-12-29,8000.0000 -2016-12-30,8000.0000 -2016-12-31,8000.0000 -2017-01-01,8000.0000 -2017-01-02,8000.0000 -2017-01-03,8000.0000 -2017-01-04,8000.0000 -2017-01-05,8000.0000 -2017-01-06,8000.0000 -2017-01-07,8000.0000 +Day,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +2016-12-22,4000.0000,0.0000 +2016-12-23,4000.0000,0.0000 +2016-12-24,4000.0000,0.0000 +2016-12-25,4000.0000,0.0000 +2016-12-26,8000.0000,0.0000 +2016-12-27,8000.0000,0.0000 +2016-12-28,8000.0000,0.0000 +2016-12-29,8000.0000,0.0000 +2016-12-30,8000.0000,0.0000 +2016-12-31,8000.0000,0.0000 +2017-01-01,8000.0000,0.0000 +2017-01-02,8000.0000,0.0000 +2017-01-03,8000.0000,0.0000 +2017-01-04,8000.0000,0.0000 +2017-01-05,8000.0000,0.0000 +2017-01-06,8000.0000,0.0000 +2017-01-07,8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv index 299caa364d..697c62e867 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of GPUs: Allocated (GPU Count)" -2016-12,5200.0000 -2017-01,8000.0000 +Month,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +2016-12,5200.0000,0.0000 +2017-01,8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv index a27a48d296..76a99f2d97 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of GPUs: Allocated (GPU Count)" -"2016 Q4",5200.0000 -"2017 Q1",8000.0000 +Quarter,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +"2016 Q4",5200.0000,0.0000 +"2017 Q1",8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv index 49481ae028..cc41b03c32 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of GPUs: Allocated (GPU Count)" -2016,5200.0000 -2017,8000.0000 +Year,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" +2016,5200.0000,0.0000 +2017,8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv index 69ab74bc02..5d4a9965ce 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Allocated" -screw,7296000.0000 +screw,5664000.0000 +wrench,1632000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv index b301672bdb..4785bf3afe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Allocated" -screw,19872000.0000 +screw,15840000.0000 +wrench,4032000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv index 66dd0dd5c4..5073c1bc24 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Allocated" -screw,48192000.0000 +screw,38496000.0000 +wrench,9696000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv index 0901a0fd17..2342b4c448 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Allocated" -screw,180192000.0000 +screw,144096000.0000 +wrench,36096000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv index fa8820354a..7f4bd13d15 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] CPU Hours: Allocated" -2016-12-22,288000.0000 -2016-12-23,288000.0000 -2016-12-24,288000.0000 -2016-12-25,288000.0000 -2016-12-26,384000.0000 -2016-12-27,480000.0000 -2016-12-28,480000.0000 -2016-12-29,480000.0000 -2016-12-30,480000.0000 -2016-12-31,480000.0000 -2017-01-01,480000.0000 -2017-01-02,480000.0000 -2017-01-03,480000.0000 -2017-01-04,480000.0000 -2017-01-05,480000.0000 -2017-01-06,480000.0000 -2017-01-07,480000.0000 +Day,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +2016-12-22,192000.0000,96000.0000 +2016-12-23,192000.0000,96000.0000 +2016-12-24,192000.0000,96000.0000 +2016-12-25,192000.0000,96000.0000 +2016-12-26,288000.0000,96000.0000 +2016-12-27,384000.0000,96000.0000 +2016-12-28,384000.0000,96000.0000 +2016-12-29,384000.0000,96000.0000 +2016-12-30,384000.0000,96000.0000 +2016-12-31,384000.0000,96000.0000 +2017-01-01,384000.0000,96000.0000 +2017-01-02,384000.0000,96000.0000 +2017-01-03,384000.0000,96000.0000 +2017-01-04,384000.0000,96000.0000 +2017-01-05,384000.0000,96000.0000 +2017-01-06,384000.0000,96000.0000 +2017-01-07,384000.0000,96000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv index a3f6742c7c..153de17327 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] CPU Hours: Allocated" -2016-12,4992000.0000 -2017-01,14880000.0000 +Month,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +2016-12,3936000.0000,1056000.0000 +2017-01,11904000.0000,2976000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv index eb29a4d76f..7dc700c798 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] CPU Hours: Allocated" -"2016 Q4",4992000.0000 -"2017 Q1",43200000.0000 +Quarter,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +"2016 Q4",3936000.0000,1056000.0000 +"2017 Q1",34560000.0000,8640000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv index 86a8145bab..5d6fb2ac76 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] CPU Hours: Allocated" -2016,4992000.0000 -2017,175200000.0000 +Year,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" +2016,3936000.0000,1056000.0000 +2017,140160000.0000,35040000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv index 5db41d159e..5c8e65486e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Allocated" -screw,729600.0000 +screw,566400.0000 +wrench,163200.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv index 4ae122da9e..0811d7b70e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Allocated" -screw,1987200.0000 +screw,1584000.0000 +wrench,403200.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv index 694bbb64ee..6fd45da5cb 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Allocated" -screw,4819200.0000 +screw,3849600.0000 +wrench,969600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv index 785fe9ae3a..4a05206b82 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Allocated" -screw,18019200.0000 +screw,14409600.0000 +wrench,3609600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv index 0f9afe4544..db398f940b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] CPU Node Hours: Allocated" -2016-12-22,28800.0000 -2016-12-23,28800.0000 -2016-12-24,28800.0000 -2016-12-25,28800.0000 -2016-12-26,38400.0000 -2016-12-27,48000.0000 -2016-12-28,48000.0000 -2016-12-29,48000.0000 -2016-12-30,48000.0000 -2016-12-31,48000.0000 -2017-01-01,48000.0000 -2017-01-02,48000.0000 -2017-01-03,48000.0000 -2017-01-04,48000.0000 -2017-01-05,48000.0000 -2017-01-06,48000.0000 -2017-01-07,48000.0000 +Day,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +2016-12-22,19200.0000,9600.0000 +2016-12-23,19200.0000,9600.0000 +2016-12-24,19200.0000,9600.0000 +2016-12-25,19200.0000,9600.0000 +2016-12-26,28800.0000,9600.0000 +2016-12-27,38400.0000,9600.0000 +2016-12-28,38400.0000,9600.0000 +2016-12-29,38400.0000,9600.0000 +2016-12-30,38400.0000,9600.0000 +2016-12-31,38400.0000,9600.0000 +2017-01-01,38400.0000,9600.0000 +2017-01-02,38400.0000,9600.0000 +2017-01-03,38400.0000,9600.0000 +2017-01-04,38400.0000,9600.0000 +2017-01-05,38400.0000,9600.0000 +2017-01-06,38400.0000,9600.0000 +2017-01-07,38400.0000,9600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv index f740769a25..093df6377a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] CPU Node Hours: Allocated" -2016-12,499200.0000 -2017-01,1488000.0000 +Month,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +2016-12,393600.0000,105600.0000 +2017-01,1190400.0000,297600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv index 04479374ff..12dc1ff119 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] CPU Node Hours: Allocated" -"2016 Q4",499200.0000 -"2017 Q1",4320000.0000 +Quarter,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +"2016 Q4",393600.0000,105600.0000 +"2017 Q1",3456000.0000,864000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv index 506b4bdb9a..3115dc6ad4 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] CPU Node Hours: Allocated" -2016,499200.0000 -2017,17520000.0000 +Year,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" +2016,393600.0000,105600.0000 +2017,14016000.0000,3504000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv index c4a21bae5c..6c198f4b6d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Allocated" screw,2880000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv index 1aee5fa1c3..a0f4e088b5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Allocated" screw,8448000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv index 2166b906e9..9283bba469 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Allocated" screw,19776000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv index 5c8ada2ff0..d27a58e248 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Allocated" screw,72576000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv index 19a2d158a6..2e71577893 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] GPU Hours: Allocated" -2016-12-22,96000.0000 -2016-12-23,96000.0000 -2016-12-24,96000.0000 -2016-12-25,96000.0000 -2016-12-26,192000.0000 -2016-12-27,192000.0000 -2016-12-28,192000.0000 -2016-12-29,192000.0000 -2016-12-30,192000.0000 -2016-12-31,192000.0000 -2017-01-01,192000.0000 -2017-01-02,192000.0000 -2017-01-03,192000.0000 -2017-01-04,192000.0000 -2017-01-05,192000.0000 -2017-01-06,192000.0000 -2017-01-07,192000.0000 +Day,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +2016-12-22,96000.0000,0.0000 +2016-12-23,96000.0000,0.0000 +2016-12-24,96000.0000,0.0000 +2016-12-25,96000.0000,0.0000 +2016-12-26,192000.0000,0.0000 +2016-12-27,192000.0000,0.0000 +2016-12-28,192000.0000,0.0000 +2016-12-29,192000.0000,0.0000 +2016-12-30,192000.0000,0.0000 +2016-12-31,192000.0000,0.0000 +2017-01-01,192000.0000,0.0000 +2017-01-02,192000.0000,0.0000 +2017-01-03,192000.0000,0.0000 +2017-01-04,192000.0000,0.0000 +2017-01-05,192000.0000,0.0000 +2017-01-06,192000.0000,0.0000 +2017-01-07,192000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv index ea859cc9a1..c418e380ec 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] GPU Hours: Allocated" -2016-12,2496000.0000 -2017-01,5952000.0000 +Month,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +2016-12,2496000.0000,0.0000 +2017-01,5952000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv index 0a020e1cc1..6f133395b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] GPU Hours: Allocated" -"2016 Q4",2496000.0000 -"2017 Q1",17280000.0000 +Quarter,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +"2016 Q4",2496000.0000,0.0000 +"2017 Q1",17280000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv index 7d2a9531f6..cd826fd660 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] GPU Hours: Allocated" -2016,2496000.0000 -2017,70080000.0000 +Year,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" +2016,2496000.0000,0.0000 +2017,70080000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv index c751563340..92911cbcfc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Allocated" screw,288000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv index 72574087ed..0f2db032ce 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Allocated" screw,844800.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv index 19862d8702..937f3c90a8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Allocated" screw,1977600.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv index 866c83ad65..86041432aa 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Allocated" screw,7257600.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv index d242a419f7..ae18812e59 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] GPU Node Hours: Allocated" -2016-12-22,9600.0000 -2016-12-23,9600.0000 -2016-12-24,9600.0000 -2016-12-25,9600.0000 -2016-12-26,19200.0000 -2016-12-27,19200.0000 -2016-12-28,19200.0000 -2016-12-29,19200.0000 -2016-12-30,19200.0000 -2016-12-31,19200.0000 -2017-01-01,19200.0000 -2017-01-02,19200.0000 -2017-01-03,19200.0000 -2017-01-04,19200.0000 -2017-01-05,19200.0000 -2017-01-06,19200.0000 -2017-01-07,19200.0000 +Day,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +2016-12-22,9600.0000,0.0000 +2016-12-23,9600.0000,0.0000 +2016-12-24,9600.0000,0.0000 +2016-12-25,9600.0000,0.0000 +2016-12-26,19200.0000,0.0000 +2016-12-27,19200.0000,0.0000 +2016-12-28,19200.0000,0.0000 +2016-12-29,19200.0000,0.0000 +2016-12-30,19200.0000,0.0000 +2016-12-31,19200.0000,0.0000 +2017-01-01,19200.0000,0.0000 +2017-01-02,19200.0000,0.0000 +2017-01-03,19200.0000,0.0000 +2017-01-04,19200.0000,0.0000 +2017-01-05,19200.0000,0.0000 +2017-01-06,19200.0000,0.0000 +2017-01-07,19200.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv index 7b6a13937d..7d6a51cb6d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] GPU Node Hours: Allocated" -2016-12,249600.0000 -2017-01,595200.0000 +Month,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +2016-12,249600.0000,0.0000 +2017-01,595200.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv index 26cc328c85..b9682d6b63 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] GPU Node Hours: Allocated" -"2016 Q4",249600.0000 -"2017 Q1",1728000.0000 +Quarter,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +"2016 Q4",249600.0000,0.0000 +"2017 Q1",1728000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv index b0651bbf9d..4f74e1da23 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] GPU Node Hours: Allocated" -2016,249600.0000 -2017,7008000.0000 +Year,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" +2016,249600.0000,0.0000 +2017,7008000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv index 37efc5f2a0..973817347b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,17882.3529 +screw,13882.3529 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv index 9a94027036..fab31495cc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,16235.2941 +screw,12941.1765 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv index 34b7714d02..e68ca5551e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,18254.5455 +screw,14581.8182 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv index 57aaae555c..f28d790ff9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,19501.2987 +screw,15594.8052 +wrench,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv index 56524d93b7..96bdb81ec7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of CPU Cores: Total (Core Count)" -2016-12-22,12000.0000 -2016-12-23,12000.0000 -2016-12-24,12000.0000 -2016-12-25,12000.0000 -2016-12-26,16000.0000 -2016-12-27,20000.0000 -2016-12-28,20000.0000 -2016-12-29,20000.0000 -2016-12-30,20000.0000 -2016-12-31,20000.0000 -2017-01-01,20000.0000 -2017-01-02,20000.0000 -2017-01-03,20000.0000 -2017-01-04,20000.0000 -2017-01-05,20000.0000 -2017-01-06,20000.0000 -2017-01-07,20000.0000 +Day,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +2016-12-22,8000.0000,4000.0000 +2016-12-23,8000.0000,4000.0000 +2016-12-24,8000.0000,4000.0000 +2016-12-25,8000.0000,4000.0000 +2016-12-26,12000.0000,4000.0000 +2016-12-27,16000.0000,4000.0000 +2016-12-28,16000.0000,4000.0000 +2016-12-29,16000.0000,4000.0000 +2016-12-30,16000.0000,4000.0000 +2016-12-31,16000.0000,4000.0000 +2017-01-01,16000.0000,4000.0000 +2017-01-02,16000.0000,4000.0000 +2017-01-03,16000.0000,4000.0000 +2017-01-04,16000.0000,4000.0000 +2017-01-05,16000.0000,4000.0000 +2017-01-06,16000.0000,4000.0000 +2017-01-07,16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv index ae58034d17..6e1eea1551 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of CPU Cores: Total (Core Count)" -2016-12,10400.0000 -2017-01,20000.0000 +Month,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +2016-12,8200.0000,4000.0000 +2017-01,16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv index eb095fa026..d5a4bfd260 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of CPU Cores: Total (Core Count)" -"2016 Q4",10400.0000 -"2017 Q1",20000.0000 +Quarter,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +"2016 Q4",8200.0000,4000.0000 +"2017 Q1",16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv index 1e5e31c3a7..2f0f0470e0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of CPU Cores: Total (Core Count)" -2016,10400.0000 -2017,20000.0000 +Year,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" +2016,8200.0000,4000.0000 +2017,16000.0000,4000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv index b59f9fb328..106419a091 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Total" -screw,1788.2353 +screw,1388.2353 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv index d18ac2f71c..4bd8ba11a5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Total" -screw,1623.5294 +screw,1294.1176 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv index b8be17b4ec..0772084496 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Total" -screw,1825.4545 +screw,1458.1818 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv index 7a374cd560..ff62c11744 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","Average Number of CPU Nodes: Total" -screw,1950.1299 +screw,1559.4805 +wrench,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv index 13a1216a2c..6e34fe95b7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of CPU Nodes: Total" -2016-12-22,1200.0000 -2016-12-23,1200.0000 -2016-12-24,1200.0000 -2016-12-25,1200.0000 -2016-12-26,1600.0000 -2016-12-27,2000.0000 -2016-12-28,2000.0000 -2016-12-29,2000.0000 -2016-12-30,2000.0000 -2016-12-31,2000.0000 -2017-01-01,2000.0000 -2017-01-02,2000.0000 -2017-01-03,2000.0000 -2017-01-04,2000.0000 -2017-01-05,2000.0000 -2017-01-06,2000.0000 -2017-01-07,2000.0000 +Day,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +2016-12-22,800.0000,400.0000 +2016-12-23,800.0000,400.0000 +2016-12-24,800.0000,400.0000 +2016-12-25,800.0000,400.0000 +2016-12-26,1200.0000,400.0000 +2016-12-27,1600.0000,400.0000 +2016-12-28,1600.0000,400.0000 +2016-12-29,1600.0000,400.0000 +2016-12-30,1600.0000,400.0000 +2016-12-31,1600.0000,400.0000 +2017-01-01,1600.0000,400.0000 +2017-01-02,1600.0000,400.0000 +2017-01-03,1600.0000,400.0000 +2017-01-04,1600.0000,400.0000 +2017-01-05,1600.0000,400.0000 +2017-01-06,1600.0000,400.0000 +2017-01-07,1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv index 98b93be7e3..88ba64d745 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of CPU Nodes: Total" -2016-12,1040.0000 -2017-01,2000.0000 +Month,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +2016-12,820.0000,400.0000 +2017-01,1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv index 2c2e19a8ca..07c1563d5a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of CPU Nodes: Total" -"2016 Q4",1040.0000 -"2017 Q1",2000.0000 +Quarter,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +"2016 Q4",820.0000,400.0000 +"2017 Q1",1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv index 99dd348d8c..d998d6f4e3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of CPU Nodes: Total" -2016,1040.0000 -2017,2000.0000 +Year,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" +2016,820.0000,400.0000 +2017,1600.0000,400.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv index 1196ea4d0a..e0194ac6d7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Total" screw,705.8824 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv index 312311cad8..52c5508bac 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Total" screw,690.1961 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv index fd70440658..7e058ac616 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Total" screw,749.0909 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv index 46d8b04de0..295331a6a8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPU Nodes: Total" screw,785.4545 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv index f53f1cfa3b..4e6a498cc8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of GPU Nodes: Total" -2016-12-22,400.0000 -2016-12-23,400.0000 -2016-12-24,400.0000 -2016-12-25,400.0000 -2016-12-26,800.0000 -2016-12-27,800.0000 -2016-12-28,800.0000 -2016-12-29,800.0000 -2016-12-30,800.0000 -2016-12-31,800.0000 -2017-01-01,800.0000 -2017-01-02,800.0000 -2017-01-03,800.0000 -2017-01-04,800.0000 -2017-01-05,800.0000 -2017-01-06,800.0000 -2017-01-07,800.0000 +Day,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +2016-12-22,400.0000,0.0000 +2016-12-23,400.0000,0.0000 +2016-12-24,400.0000,0.0000 +2016-12-25,400.0000,0.0000 +2016-12-26,800.0000,0.0000 +2016-12-27,800.0000,0.0000 +2016-12-28,800.0000,0.0000 +2016-12-29,800.0000,0.0000 +2016-12-30,800.0000,0.0000 +2016-12-31,800.0000,0.0000 +2017-01-01,800.0000,0.0000 +2017-01-02,800.0000,0.0000 +2017-01-03,800.0000,0.0000 +2017-01-04,800.0000,0.0000 +2017-01-05,800.0000,0.0000 +2017-01-06,800.0000,0.0000 +2017-01-07,800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv index 1772f2de06..d71dc5b20a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of GPU Nodes: Total" -2016-12,520.0000 -2017-01,800.0000 +Month,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +2016-12,520.0000,0.0000 +2017-01,800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv index adfa620188..bc68d779bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of GPU Nodes: Total" -"2016 Q4",520.0000 -"2017 Q1",800.0000 +Quarter,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +"2016 Q4",520.0000,0.0000 +"2017 Q1",800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv index 7f08cf41a5..8190d4ea3d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of GPU Nodes: Total" -2016,520.0000 -2017,800.0000 +Year,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" +2016,520.0000,0.0000 +2017,800.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv index 5b0e7cb6f3..e00601d26a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Total (GPU Count)" screw,7058.8235 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv index 003b7b5886..a7fb730e3c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Total (GPU Count)" screw,6901.9608 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv index c70729b823..3ba701c307 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Total (GPU Count)" screw,7490.9091 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv index 8a2cacb80b..9ddd2bbab0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","Average Number of GPUs: Total (GPU Count)" screw,7854.5455 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv index d0b6a2909c..06013272de 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] Average Number of GPUs: Total (GPU Count)" -2016-12-22,4000.0000 -2016-12-23,4000.0000 -2016-12-24,4000.0000 -2016-12-25,4000.0000 -2016-12-26,8000.0000 -2016-12-27,8000.0000 -2016-12-28,8000.0000 -2016-12-29,8000.0000 -2016-12-30,8000.0000 -2016-12-31,8000.0000 -2017-01-01,8000.0000 -2017-01-02,8000.0000 -2017-01-03,8000.0000 -2017-01-04,8000.0000 -2017-01-05,8000.0000 -2017-01-06,8000.0000 -2017-01-07,8000.0000 +Day,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +2016-12-22,4000.0000,0.0000 +2016-12-23,4000.0000,0.0000 +2016-12-24,4000.0000,0.0000 +2016-12-25,4000.0000,0.0000 +2016-12-26,8000.0000,0.0000 +2016-12-27,8000.0000,0.0000 +2016-12-28,8000.0000,0.0000 +2016-12-29,8000.0000,0.0000 +2016-12-30,8000.0000,0.0000 +2016-12-31,8000.0000,0.0000 +2017-01-01,8000.0000,0.0000 +2017-01-02,8000.0000,0.0000 +2017-01-03,8000.0000,0.0000 +2017-01-04,8000.0000,0.0000 +2017-01-05,8000.0000,0.0000 +2017-01-06,8000.0000,0.0000 +2017-01-07,8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv index 77b79d787c..1e21595c8f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] Average Number of GPUs: Total (GPU Count)" -2016-12,5200.0000 -2017-01,8000.0000 +Month,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +2016-12,5200.0000,0.0000 +2017-01,8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv index c461da288f..957dcd14dc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] Average Number of GPUs: Total (GPU Count)" -"2016 Q4",5200.0000 -"2017 Q1",8000.0000 +Quarter,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +"2016 Q4",5200.0000,0.0000 +"2017 Q1",8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv index 90c28bb027..1930569961 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] Average Number of GPUs: Total (GPU Count)" -2016,5200.0000 -2017,8000.0000 +Year,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" +2016,5200.0000,0.0000 +2017,8000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv index 9aa42a523c..3bea31de0f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Total" -screw,7296000.0000 +screw,5664000.0000 +wrench,1632000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv index 38b05f445a..ae8db1b3bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Total" -screw,19872000.0000 +screw,15840000.0000 +wrench,4032000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv index cf846cdb3b..2f7d3a301b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Total" -screw,48192000.0000 +screw,38496000.0000 +wrench,9696000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv index cc657a9867..caa54e641c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Hours: Total" -screw,180192000.0000 +screw,144096000.0000 +wrench,36096000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv index 5be3c1f78d..25d4673573 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] CPU Hours: Total" -2016-12-22,288000.0000 -2016-12-23,288000.0000 -2016-12-24,288000.0000 -2016-12-25,288000.0000 -2016-12-26,384000.0000 -2016-12-27,480000.0000 -2016-12-28,480000.0000 -2016-12-29,480000.0000 -2016-12-30,480000.0000 -2016-12-31,480000.0000 -2017-01-01,480000.0000 -2017-01-02,480000.0000 -2017-01-03,480000.0000 -2017-01-04,480000.0000 -2017-01-05,480000.0000 -2017-01-06,480000.0000 -2017-01-07,480000.0000 +Day,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12-22,192000.0000,96000.0000 +2016-12-23,192000.0000,96000.0000 +2016-12-24,192000.0000,96000.0000 +2016-12-25,192000.0000,96000.0000 +2016-12-26,288000.0000,96000.0000 +2016-12-27,384000.0000,96000.0000 +2016-12-28,384000.0000,96000.0000 +2016-12-29,384000.0000,96000.0000 +2016-12-30,384000.0000,96000.0000 +2016-12-31,384000.0000,96000.0000 +2017-01-01,384000.0000,96000.0000 +2017-01-02,384000.0000,96000.0000 +2017-01-03,384000.0000,96000.0000 +2017-01-04,384000.0000,96000.0000 +2017-01-05,384000.0000,96000.0000 +2017-01-06,384000.0000,96000.0000 +2017-01-07,384000.0000,96000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv index 9f36430c71..17b44ced00 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] CPU Hours: Total" -2016-12,4992000.0000 -2017-01,14880000.0000 +Month,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016-12,3936000.0000,1056000.0000 +2017-01,11904000.0000,2976000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv index 84b2fedf37..2509261c59 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] CPU Hours: Total" -"2016 Q4",4992000.0000 -"2017 Q1",43200000.0000 +Quarter,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +"2016 Q4",3936000.0000,1056000.0000 +"2017 Q1",34560000.0000,8640000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv index 8447f5c5d3..c1c6948504 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] CPU Hours: Total" -2016,4992000.0000 -2017,175200000.0000 +Year,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" +2016,3936000.0000,1056000.0000 +2017,140160000.0000,35040000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv index 04faacfd92..9c0ce48607 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Total" -screw,729600.0000 +screw,566400.0000 +wrench,163200.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv index 57316bf83f..8b307cf39e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Total" -screw,1987200.0000 +screw,1584000.0000 +wrench,403200.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv index a47130e021..743810bc17 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Total" -screw,4819200.0000 +screw,3849600.0000 +wrench,969600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv index 70bda66874..65590d956a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv @@ -6,5 +6,6 @@ start,end 2016-12-22,2017-01-07 --------- "Service Provider","CPU Node Hours: Total" -screw,18019200.0000 +screw,14409600.0000 +wrench,3609600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv index 07d2877bdd..42f68bda2b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] CPU Node Hours: Total" -2016-12-22,28800.0000 -2016-12-23,28800.0000 -2016-12-24,28800.0000 -2016-12-25,28800.0000 -2016-12-26,38400.0000 -2016-12-27,48000.0000 -2016-12-28,48000.0000 -2016-12-29,48000.0000 -2016-12-30,48000.0000 -2016-12-31,48000.0000 -2017-01-01,48000.0000 -2017-01-02,48000.0000 -2017-01-03,48000.0000 -2017-01-04,48000.0000 -2017-01-05,48000.0000 -2017-01-06,48000.0000 -2017-01-07,48000.0000 +Day,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +2016-12-22,19200.0000,9600.0000 +2016-12-23,19200.0000,9600.0000 +2016-12-24,19200.0000,9600.0000 +2016-12-25,19200.0000,9600.0000 +2016-12-26,28800.0000,9600.0000 +2016-12-27,38400.0000,9600.0000 +2016-12-28,38400.0000,9600.0000 +2016-12-29,38400.0000,9600.0000 +2016-12-30,38400.0000,9600.0000 +2016-12-31,38400.0000,9600.0000 +2017-01-01,38400.0000,9600.0000 +2017-01-02,38400.0000,9600.0000 +2017-01-03,38400.0000,9600.0000 +2017-01-04,38400.0000,9600.0000 +2017-01-05,38400.0000,9600.0000 +2017-01-06,38400.0000,9600.0000 +2017-01-07,38400.0000,9600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv index 220a7d6368..9c6f466f3e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] CPU Node Hours: Total" -2016-12,499200.0000 -2017-01,1488000.0000 +Month,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +2016-12,393600.0000,105600.0000 +2017-01,1190400.0000,297600.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv index b981d2f5ca..7d79d8dd57 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] CPU Node Hours: Total" -"2016 Q4",499200.0000 -"2017 Q1",4320000.0000 +Quarter,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +"2016 Q4",393600.0000,105600.0000 +"2017 Q1",3456000.0000,864000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv index f9a5ffa7eb..981f63fdef 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] CPU Node Hours: Total" -2016,499200.0000 -2017,17520000.0000 +Year,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" +2016,393600.0000,105600.0000 +2017,14016000.0000,3504000.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv index 935ad92ad7..af54345d07 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Total" screw,2880000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv index 0e6281d32a..f7e5f65df7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Total" screw,8448000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv index 77a1a383af..fd4e6d70e5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Total" screw,19776000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv index a6fdd58cec..71e6702604 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Hours: Total" screw,72576000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv index d964899742..7be065834f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] GPU Hours: Total" -2016-12-22,96000.0000 -2016-12-23,96000.0000 -2016-12-24,96000.0000 -2016-12-25,96000.0000 -2016-12-26,192000.0000 -2016-12-27,192000.0000 -2016-12-28,192000.0000 -2016-12-29,192000.0000 -2016-12-30,192000.0000 -2016-12-31,192000.0000 -2017-01-01,192000.0000 -2017-01-02,192000.0000 -2017-01-03,192000.0000 -2017-01-04,192000.0000 -2017-01-05,192000.0000 -2017-01-06,192000.0000 -2017-01-07,192000.0000 +Day,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12-22,96000.0000,0.0000 +2016-12-23,96000.0000,0.0000 +2016-12-24,96000.0000,0.0000 +2016-12-25,96000.0000,0.0000 +2016-12-26,192000.0000,0.0000 +2016-12-27,192000.0000,0.0000 +2016-12-28,192000.0000,0.0000 +2016-12-29,192000.0000,0.0000 +2016-12-30,192000.0000,0.0000 +2016-12-31,192000.0000,0.0000 +2017-01-01,192000.0000,0.0000 +2017-01-02,192000.0000,0.0000 +2017-01-03,192000.0000,0.0000 +2017-01-04,192000.0000,0.0000 +2017-01-05,192000.0000,0.0000 +2017-01-06,192000.0000,0.0000 +2017-01-07,192000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv index b891e401e8..4243b64940 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] GPU Hours: Total" -2016-12,2496000.0000 -2017-01,5952000.0000 +Month,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016-12,2496000.0000,0.0000 +2017-01,5952000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv index 7914f2c4b3..516f0947f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] GPU Hours: Total" -"2016 Q4",2496000.0000 -"2017 Q1",17280000.0000 +Quarter,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +"2016 Q4",2496000.0000,0.0000 +"2017 Q1",17280000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv index 815b7e9d2c..6f82cee0cc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] GPU Hours: Total" -2016,2496000.0000 -2017,70080000.0000 +Year,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" +2016,2496000.0000,0.0000 +2017,70080000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv index 4ca01b030b..a3c1885cd9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Total" screw,288000.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv index 1c4d55bc72..f24d1c95de 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Total" screw,844800.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv index e65ee1499b..15fbd62ea5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Total" screw,1977600.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv index 470674b6a1..921d8b826a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv @@ -7,4 +7,5 @@ start,end --------- "Service Provider","GPU Node Hours: Total" screw,7257600.0000 +wrench,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv index 5e742e7558..1a8704d42a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv @@ -5,22 +5,22 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Day,"[screw] GPU Node Hours: Total" -2016-12-22,9600.0000 -2016-12-23,9600.0000 -2016-12-24,9600.0000 -2016-12-25,9600.0000 -2016-12-26,19200.0000 -2016-12-27,19200.0000 -2016-12-28,19200.0000 -2016-12-29,19200.0000 -2016-12-30,19200.0000 -2016-12-31,19200.0000 -2017-01-01,19200.0000 -2017-01-02,19200.0000 -2017-01-03,19200.0000 -2017-01-04,19200.0000 -2017-01-05,19200.0000 -2017-01-06,19200.0000 -2017-01-07,19200.0000 +Day,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +2016-12-22,9600.0000,0.0000 +2016-12-23,9600.0000,0.0000 +2016-12-24,9600.0000,0.0000 +2016-12-25,9600.0000,0.0000 +2016-12-26,19200.0000,0.0000 +2016-12-27,19200.0000,0.0000 +2016-12-28,19200.0000,0.0000 +2016-12-29,19200.0000,0.0000 +2016-12-30,19200.0000,0.0000 +2016-12-31,19200.0000,0.0000 +2017-01-01,19200.0000,0.0000 +2017-01-02,19200.0000,0.0000 +2017-01-03,19200.0000,0.0000 +2017-01-04,19200.0000,0.0000 +2017-01-05,19200.0000,0.0000 +2017-01-06,19200.0000,0.0000 +2017-01-07,19200.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv index 60c7b15d92..25fdd3c585 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Month,"[screw] GPU Node Hours: Total" -2016-12,249600.0000 -2017-01,595200.0000 +Month,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +2016-12,249600.0000,0.0000 +2017-01,595200.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv index 60c8dc07ac..d89f4fe1ab 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Quarter,"[screw] GPU Node Hours: Total" -"2016 Q4",249600.0000 -"2017 Q1",1728000.0000 +Quarter,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +"2016 Q4",249600.0000,0.0000 +"2017 Q1",1728000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv index 30ea4af339..994aa1dd22 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-07 --------- -Year,"[screw] GPU Node Hours: Total" -2016,249600.0000 -2017,7008000.0000 +Year,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" +2016,249600.0000,0.0000 +2017,7008000.0000,0.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..64ef4e1169 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-cs.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233080885.7000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..64ef4e1169 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233080885.7000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cd.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cs.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-cs.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cd.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cs.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-cs.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-usr.csv new file mode 100644 index 0000000000..37d396871e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","File Count (Number of files)" +screw,233089685.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7c1d6742a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] File Count (Number of files)" +2018-12-27,230789611 +2018-12-28,231639632 +2018-12-29,232584570 +2018-12-30,232798439 +2018-12-31,233180528 +2019-01-01,233363532 +2019-01-02,233624264 +2019-01-03,233894553 +2019-01-04,234402500 +2019-01-05,234531228 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..8e6be381b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] File Count (Number of files)" +2018-12,232216155 +2019-01,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cs.csv new file mode 100644 index 0000000000..8e6be381b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] File Count (Number of files)" +2018-12,232216155 +2019-01,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8e6be381b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] File Count (Number of files)" +2018-12,232216155 +2019-01,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-usr.csv new file mode 100644 index 0000000000..8e6be381b8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Month-usr.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] File Count (Number of files)" +2018-12,232216155 +2019-01,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7b6dd2528c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] File Count (Number of files)" +"2018 Q4",232216155 +"2019 Q1",233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..7b6dd2528c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] File Count (Number of files)" +"2018 Q4",232216155 +"2019 Q1",233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-pi.csv new file mode 100644 index 0000000000..c0fba41eaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-pi.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] File Count (Number of files)" +2018,232216155 +2019,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c0fba41eaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_file_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"File Count (Number of files): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] File Count (Number of files)" +2018,232216155 +2019,233963216 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-cd.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-cd.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-pi.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-usr.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-cd.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-usr.csv new file mode 100644 index 0000000000..88e9b581a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/aggregate-Year-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Hard Threshold (Bytes)" +screw,1347045040128000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-pi.csv new file mode 100644 index 0000000000..da955f8dca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-pi.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota: Hard Threshold (Bytes)" +2018-12-27,1347045040128000 +2018-12-28,1347045040128000 +2018-12-29,1347045040128000 +2018-12-30,1347045040128000 +2018-12-31,1347045040128000 +2019-01-01,1347045040128000 +2019-01-02,1347045040128000 +2019-01-03,1347045040128000 +2019-01-04,1347045040128000 +2019-01-05,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..da955f8dca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota: Hard Threshold (Bytes)" +2018-12-27,1347045040128000 +2018-12-28,1347045040128000 +2018-12-29,1347045040128000 +2018-12-30,1347045040128000 +2018-12-31,1347045040128000 +2019-01-01,1347045040128000 +2019-01-02,1347045040128000 +2019-01-03,1347045040128000 +2019-01-04,1347045040128000 +2019-01-05,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..479dd26774 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota: Hard Threshold (Bytes)" +2018-12,1347045040128000 +2019-01,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..8d27bab225 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Hard Threshold (Bytes)" +"2018 Q4",1347045040128000 +"2019 Q1",1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..8d27bab225 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-pi.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Hard Threshold (Bytes)" +"2018 Q4",1347045040128000 +"2019 Q1",1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8d27bab225 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Hard Threshold (Bytes)" +"2018 Q4",1347045040128000 +"2019 Q1",1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..8d27bab225 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Hard Threshold (Bytes)" +"2018 Q4",1347045040128000 +"2019 Q1",1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5933861663 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Hard Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota: Hard Threshold (Bytes)" +2018,1347045040128000 +2019,1347045040128000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-cd.csv new file mode 100644 index 0000000000..03853884ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-cd.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790316944806400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..03853884ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790316944806400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-usr.csv new file mode 100644 index 0000000000..03853884ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790316944806400.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-cd.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-cd.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7204b63b02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Logical Usage (Bytes)" +screw,790319204381866.5000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1bc3c1f829 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Logical Usage (Bytes)" +2018-12-27,794330985600000 +2018-12-28,800728364160000 +2018-12-29,802014395776000 +2018-12-30,805714147072000 +2018-12-31,802866164736000 +2019-01-01,795302417280000 +2019-01-02,783191268480000 +2019-01-03,775607716480000 +2019-01-04,774046449152000 +2019-01-05,769367539328000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cd.csv new file mode 100644 index 0000000000..83934bf99f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Logical Usage (Bytes)" +2018-12,801135330517333 +2019-01,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cs.csv new file mode 100644 index 0000000000..83934bf99f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Logical Usage (Bytes)" +2018-12,801135330517333 +2019-01,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..83934bf99f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Logical Usage (Bytes)" +2018-12,801135330517333 +2019-01,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-usr.csv new file mode 100644 index 0000000000..83934bf99f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Logical Usage (Bytes)" +2018-12,801135330517333 +2019-01,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d5d3e6525b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Logical Usage (Bytes)" +"2018 Q4",801135330517333 +"2019 Q1",779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-cs.csv new file mode 100644 index 0000000000..5fa156b902 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Logical Usage (Bytes)" +2018,801135330517333 +2019,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-pi.csv new file mode 100644 index 0000000000..5fa156b902 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-pi.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Logical Usage (Bytes)" +2018,801135330517333 +2019,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fa156b902 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Logical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Logical Usage (Bytes)" +2018,801135330517333 +2019,779503078246400 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1baf9f847a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4803 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-usr.csv new file mode 100644 index 0000000000..1baf9f847a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Day-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4803 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-cd.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-cd.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-cd.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-cd.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f05e3c204a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota Utilization: Logical (%)" +screw,80.4806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-cs.csv new file mode 100644 index 0000000000..ab44a408ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-cs.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota Utilization: Logical (%)" +2018-12-27,80.8891 +2018-12-28,81.5406 +2018-12-29,81.6715 +2018-12-30,82.0483 +2018-12-31,81.7583 +2019-01-01,80.9880 +2019-01-02,79.7547 +2019-01-03,78.9825 +2019-01-04,78.8235 +2019-01-05,78.3470 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ab44a408ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota Utilization: Logical (%)" +2018-12-27,80.8891 +2018-12-28,81.5406 +2018-12-29,81.6715 +2018-12-30,82.0483 +2018-12-31,81.7583 +2019-01-01,80.9880 +2019-01-02,79.7547 +2019-01-03,78.9825 +2019-01-04,78.8235 +2019-01-05,78.3470 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-usr.csv new file mode 100644 index 0000000000..ab44a408ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Day-usr.csv @@ -0,0 +1,19 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota Utilization: Logical (%)" +2018-12-27,80.8891 +2018-12-28,81.5406 +2018-12-29,81.6715 +2018-12-30,82.0483 +2018-12-31,81.7583 +2019-01-01,80.9880 +2019-01-02,79.7547 +2019-01-03,78.9825 +2019-01-04,78.8235 +2019-01-05,78.3470 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-cd.csv new file mode 100644 index 0000000000..76c3e3cee7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota Utilization: Logical (%)" +2018-12,81.5820 +2019-01,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..76c3e3cee7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota Utilization: Logical (%)" +2018-12,81.5820 +2019-01,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..4241b6743e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota Utilization: Logical (%)" +"2018 Q4",81.5820 +"2019 Q1",79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4241b6743e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota Utilization: Logical (%)" +"2018 Q4",81.5820 +"2019 Q1",79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..4241b6743e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota Utilization: Logical (%)" +"2018 Q4",81.5820 +"2019 Q1",79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-cs.csv new file mode 100644 index 0000000000..57d6f0ba66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota Utilization: Logical (%)" +2018,81.5820 +2019,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..57d6f0ba66 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota Utilization: Logical (%): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota Utilization: Logical (%)" +2018,81.5820 +2019,79.3791 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-cd.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-cd.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-pi.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-pi.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv new file mode 100644 index 0000000000..29fadd4c71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Physical Usage (Bytes)" +screw,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-pi.csv new file mode 100644 index 0000000000..ee609b2aec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-pi.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Physical Usage (Bytes)" +2018-12-27,0 +2018-12-28,0 +2018-12-29,0 +2018-12-30,0 +2018-12-31,0 +2019-01-01,0 +2019-01-02,0 +2019-01-03,0 +2019-01-04,0 +2019-01-05,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ee609b2aec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Physical Usage (Bytes)" +2018-12-27,0 +2018-12-28,0 +2018-12-29,0 +2018-12-30,0 +2018-12-31,0 +2019-01-01,0 +2019-01-02,0 +2019-01-03,0 +2019-01-04,0 +2019-01-05,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cbaf9fed26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Physical Usage (Bytes)" +2018-12,0 +2019-01,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ca0d3f385d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Physical Usage (Bytes)" +"2018 Q4",0 +"2019 Q1",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..ca0d3f385d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Physical Usage (Bytes)" +"2018 Q4",0 +"2019 Q1",0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2f8df1ba14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Physical Usage (Bytes)" +2018,0 +2019,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-usr.csv new file mode 100644 index 0000000000..2f8df1ba14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_physical_usage/timeseries-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Physical Usage (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Physical Usage (Bytes)" +2018,0 +2019,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-cs.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-cs.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-usr.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-cs.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Quarter-usr.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-pi.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4387d93448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","Quota: Soft Threshold (Bytes)" +screw,982000046080000.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0649370234 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] Quota: Soft Threshold (Bytes)" +2018-12-27,982000046080000 +2018-12-28,982000046080000 +2018-12-29,982000046080000 +2018-12-30,982000046080000 +2018-12-31,982000046080000 +2019-01-01,982000046080000 +2019-01-02,982000046080000 +2019-01-03,982000046080000 +2019-01-04,982000046080000 +2019-01-05,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-cd.csv new file mode 100644 index 0000000000..22928df51a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota: Soft Threshold (Bytes)" +2018-12,982000046080000 +2019-01,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv new file mode 100644 index 0000000000..22928df51a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota: Soft Threshold (Bytes)" +2018-12,982000046080000 +2019-01,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-usr.csv new file mode 100644 index 0000000000..22928df51a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] Quota: Soft Threshold (Bytes)" +2018-12,982000046080000 +2019-01,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..8c8b242a87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Soft Threshold (Bytes)" +"2018 Q4",982000046080000 +"2019 Q1",982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..8c8b242a87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-pi.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Soft Threshold (Bytes)" +"2018 Q4",982000046080000 +"2019 Q1",982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c8b242a87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Soft Threshold (Bytes)" +"2018 Q4",982000046080000 +"2019 Q1",982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..8c8b242a87 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] Quota: Soft Threshold (Bytes)" +"2018 Q4",982000046080000 +"2019 Q1",982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-cd.csv new file mode 100644 index 0000000000..bbf34e4afe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota: Soft Threshold (Bytes)" +2018,982000046080000 +2019,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-pi.csv new file mode 100644 index 0000000000..bbf34e4afe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-pi.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota: Soft Threshold (Bytes)" +2018,982000046080000 +2019,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bbf34e4afe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Quota: Soft Threshold (Bytes): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] Quota: Soft Threshold (Bytes)" +2018,982000046080000 +2019,982000046080000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-cs.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-cs.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-pi.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-pi.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-cd.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-cd.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-usr.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Month-usr.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-cd.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-cd.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-pi.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-pi.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..217d6262ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +"Service Provider","User Count (Number of Users)" +screw,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..95d863cb84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Day-reference.csv @@ -0,0 +1,19 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Day,"[screw] User Count (Number of Users)" +2018-12-27,343 +2018-12-28,343 +2018-12-29,344 +2018-12-30,344 +2018-12-31,344 +2019-01-01,344 +2019-01-02,344 +2019-01-03,344 +2019-01-04,344 +2019-01-05,343 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-cd.csv new file mode 100644 index 0000000000..61127de9ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] User Count (Number of Users)" +2018-12,344 +2019-01,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-pi.csv new file mode 100644 index 0000000000..61127de9ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-pi.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] User Count (Number of Users)" +2018-12,344 +2019-01,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..61127de9ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Month,"[screw] User Count (Number of Users)" +2018-12,344 +2019-01,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..b3acb9d89b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] User Count (Number of Users)" +"2018 Q4",344 +"2019 Q1",344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..b3acb9d89b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] User Count (Number of Users)" +"2018 Q4",344 +"2019 Q1",344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b3acb9d89b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Quarter,"[screw] User Count (Number of Users)" +"2018 Q4",344 +"2019 Q1",344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-cs.csv new file mode 100644 index 0000000000..5fc6dbefe0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] User Count (Number of Users)" +2018,344 +2019,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fc6dbefe0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Storage/provider/user_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Count (Number of Users): by Service Provider" +parameters + +start,end +2018-12-27,2019-01-05 +--------- +Year,"[screw] User Count (Number of Users)" +2018,344 +2019,344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/cloud.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/cloud.json index 8b3ce04f54..4c5cc40d41 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/cloud.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/cloud.json @@ -1,853 +1,853 @@ -["Instance ID","Resource","System Username (Deidentified)","User","Decanal Unit","Department","PI Group","Project","Principal Investigator","Instance Type","Number of Cores","Memory(MB)","Root Volume Size","Domain","Host","Start Date"] -["7374150b-3c87-47bc-b27f-69c00197871c","OpenStack","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c1.m4","1","4096","20","Default","srv-p24-35.cbls.ccr.buffalo.edu","2018-04-20 14:11:10"] -["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-32.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] -["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-41.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] -["565e8a1e-a83e-4104-a32c-85c79b7737fd","OpenStack","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c4.m16","4","16384","20","Default","srv-p24-34.cbls.ccr.buffalo.edu","2018-04-26 17:38:36"] -["a6c4053f-ba16-472e-9fe5-0196775acdc9","NutSetters","","allopatr","Unknown","Unknown","Unknown","allopatr","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] -["7600bd16-2447-4a94-88eb-0b7cc225f272","NutSetters","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] -["b76f580c-4ff6-46c7-a6a2-f46479a635c7","NutSetters","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] -["cb58a528-5063-4bda-95cd-e307971ebc5b","NutSetters","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.small","2","4096","20","adjunct","r03c4b07","2019-06-26 00:00:24"] -["1330d7c1-7139-4d10-bcec-1e8610962615","NutSetters","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r01c4b13","2019-06-26 00:00:23"] -["faca7e03-10ac-448a-906e-bff921375139","NutSetters","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["2332bf52-f34a-43c8-8d13-2f67d03ad745","NutSetters","","ljcohen","Unknown","Unknown","Unknown","ljcohen","Unknown","s1.xxlarge","44","122880","960","Default","r06c2b14","2019-06-26 00:00:48"] -["11e0e563-d5e7-40a2-a379-ecda48435265","NutSetters","","ppani","Unknown","Unknown","Unknown","ppani","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] -["7860ba4d-a348-4684-9cb9-90fe83fe39a4","NutSetters","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 22:43:05"] -["c553f329-674f-4270-ae7d-920a9d442f08","NutSetters","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r02c3b04","2019-06-26 22:04:17"] -["ec876f2e-da3d-441c-99a8-a59c70affa05","NutSetters","","dikim","Unknown","Unknown","Unknown","dikim","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] -["50b55380-e1a8-4e48-a1e9-4e8e342b5162","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.small","2","4096","20","tacc","r07c1b10","2019-06-26 00:00:04"] -["8498b471-0494-447a-abd9-6f18d85b7a40","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] -["cc4503ed-103a-4f8c-b0a6-d21da020cdce","NutSetters","","sruthi12","Unknown","Unknown","Unknown","sruthi12","Unknown","m1.medium","6","16384","60","Default","r02c4b07","2019-06-26 00:00:18"] -["06c8b241-42a7-4960-82d0-a593ac770e5b","NutSetters","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.tiny","1","2048","8","tacc","r01c2b16","2019-06-26 00:00:42"] -["09ddf2f8-fa48-4ce8-9536-501c165a1db0","NutSetters","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r07c2b01","2019-06-26 00:00:10"] -["3fb17152-b49f-4a03-a079-0a2990cf570d","NutSetters","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] -["40482879-2219-4dc5-b45c-1bfda108be05","NutSetters","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r02c1b06","2019-06-26 00:00:53"] -["79d7c087-ad59-4b54-9f76-aefd75051239","NutSetters","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c1b08","2019-06-26 00:00:37"] -["a1250ffe-26c6-4bbe-9a9e-5fc4b4af0712","NutSetters","","rsignell","Unknown","Unknown","Unknown","TG-OCE170022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] -["5b363a28-598b-47c0-b0f3-df4fcdcb8418","NutSetters","","wzhy2000","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wzhy2000","Egret, Snowy","m1.small","2","4096","20","Default","r07c1b07","2019-06-26 00:00:20"] -["f93059aa-4d4f-4cba-9c9d-e13014f0d4af","NutSetters","","mscott","Unknown","Unknown","Unknown","mscott","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["945191a1-8994-4d27-a3ff-7eff5968ad76","NutSetters","","dmm","Unknown","Unknown","Unknown","dmm","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] -["d60d6413-52e6-4d47-9c0c-d6258dcbf777","NutSetters","","dagrawa2","Unknown","Unknown","Unknown","dagrawa2","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["dde9e2fb-a519-4299-a35f-8a096a46404c","NutSetters","","vlflores","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlflores","Ibis, Glossy","m1.medium","6","16384","60","Default","r02c3b07","2019-06-26 00:00:48"] -["679ae462-5d27-41ff-b122-b5ab5d7af9e5","NutSetters","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r07c1b04","2019-06-26 00:00:33"] -["8605d428-c3f8-496d-92f3-35e6f6008d07","NutSetters","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r06c2b05","2019-06-26 00:00:02"] -["5e23125d-f4b4-4601-a270-ae63cec7f11f","NutSetters","","lmundia","Unknown","Unknown","Unknown","lmundia","Unknown","m1.tiny","1","2048","8","Default","r01c2b15","2019-06-26 00:00:27"] -["19ca89a0-91b4-4dd6-97c2-fed90741fbfb","NutSetters","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.tiny","1","2048","8","Default","r07c4b03","2019-06-26 00:00:36"] -["a08e9d1d-bd3f-496a-bb94-271d0234f635","NutSetters","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] -["07b0d86a-acde-443a-8076-ccf84555d18b","NutSetters","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r02c4b15","2019-06-26 00:00:37"] -["86191a2e-7251-4bc4-971d-9b027fbf2485","NutSetters","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] -["f6feb15c-ad29-4376-a8f9-bbb9300b245e","NutSetters","","jrmales","Unknown","Unknown","Unknown","jrmales","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b05","2019-06-26 00:00:22"] -["f20a18a4-26c3-49ff-b8b7-07e7ece2ac71","NutSetters","","aalmsaee","Unknown","Unknown","Unknown","aalmsaee","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] -["e63e2006-7a3d-4c98-b0d7-fe97f8deaf18","NutSetters","","td160021","Unknown","Unknown","Unknown","td160021","Unknown","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] -["363f661e-4cff-4395-b284-560f84f48198","NutSetters","","ssud2","Unknown","Unknown","Unknown","ssud2","Unknown","m1.tiny","1","2048","8","Default","r02c2b09","2019-06-26 00:00:50"] -["0b8ad228-28c2-4dc7-9774-9d9d75c1eb96","NutSetters","","millera2","Unknown","Unknown","Unknown","millera2","Unknown","m1.small","2","4096","20","Default","r02c2b02","2019-06-26 00:00:55"] -["5ea6533a-1ee6-4d48-99ec-28857e0cac9e","NutSetters","","lbao235","Unknown","Unknown","Unknown","lbao235","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["0b294aee-3df3-4d55-84ef-c4a55ddd2fdb","NutSetters","","chanchal","Unknown","Unknown","Unknown","chanchal","Unknown","m1.xlarge","24","61440","60","Default","r01c4b13","2019-06-26 00:00:23"] -["65890522-87d8-4bad-86a0-f546db0a2c4c","NutSetters","","ssmallen","Unknown","Unknown","Unknown","ssmallen","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["0d001e36-872f-4c9a-b0f9-fba4c2527467","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r06c2b13","2019-06-26 00:00:14"] -["25e46cbc-009f-4cfb-8297-b25c4289d146","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c1b03","2019-06-26 19:00:05"] -["6f502861-fa35-4543-9d44-9760a6c3e7db","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] -["bed56745-69cb-40f1-85d2-9ad4134a1352","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["e4393488-d995-48dc-bbfc-2c62c48af58d","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] -["1c589f8f-11ca-4c2f-bf43-5f6e14ae8e8c","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.large","10","30720","60","Default","r02c1b16","2019-06-26 00:00:26"] -["4733d86e-3e10-4252-9dc0-e5f7989ba322","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r07c4b03","2019-06-26 00:00:36"] -["d3147d53-ee4f-4ecf-9968-9daf879a8872","NutSetters","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r06c2b03","2019-06-26 15:00:16"] -["3cff64a0-461a-497c-8e0b-ab33e5a78e7d","NutSetters","","kangplee","Unknown","Unknown","Unknown","kangplee","Unknown","m1.tiny","1","2048","8","Default","r07c4b10","2019-06-26 00:00:12"] -["3d7589c6-3987-4559-a28a-562bf74e15c2","NutSetters","","wbt3","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wbt3","Tern, Sandwich","m1.small","2","4096","20","Default","r02c3b15","2019-06-26 00:00:40"] -["a31e1790-67d3-4b42-a7ca-af40090e6998","NutSetters","","jpummil","Unknown","Unknown","Unknown","jpummil","Unknown","m1.large","10","30720","60","Default","r06c1b01","2019-06-26 00:00:28"] -["b9c560b9-1066-483c-895e-aebb8b3c7ac1","NutSetters","","upendra","Geosciences","Polar Programs","Polar Ocean and Climate Systems","upendra","Egret, Snowy","m1.medium","6","16384","60","Default","r07c2b10","2019-06-26 00:00:05"] -["2c1b9f69-83ee-44c8-8a8d-28b0e751750e","NutSetters","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","m1.tiny","1","2048","8","Default","r06c1b01","2019-06-26 00:00:28"] -["c926ef79-69ea-4258-85c4-6a7859887f91","NutSetters","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","s1.large","10","30720","240","Default","r07c2b04","2019-06-26 00:00:51"] -["ca744fb8-c727-4699-a88d-26ed4fc5ee22","NutSetters","","zc8304","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zc8304","Ibis, Glossy","m1.small","2","4096","20","Default","r07c2b03","2019-06-26 01:00:12"] -["0a7b0b67-cebe-4d1f-8cfe-cb8c19416e80","NutSetters","","sharnly3","Unknown","Unknown","Unknown","sharnly3","Unknown","m1.small","2","4096","20","Default","r07c2b04","2019-06-26 00:00:51"] -["08b48a44-07f4-4a67-b50f-aae352e426dd","NutSetters","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] -["4133ea6f-e685-4f99-85bf-613175d93375","NutSetters","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] -["996ceef3-b429-450c-8e9f-bcd4fadba509","NutSetters","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] -["f6259fb3-d893-410a-95cd-4588a78da9fe","NutSetters","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:01"] -["0396a519-7380-4860-a819-ef70c3e8326a","NutSetters","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] -["196432e9-546a-41f9-968d-a09a653c21fc","NutSetters","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["1cd67c1e-fcda-4137-be3b-ce89e6ed7133","NutSetters","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] -["1dda1c51-163e-450c-b33e-dc45ad327eef","NutSetters","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] -["3ce24a13-c257-4006-b0d2-31f6b4397e04","NutSetters","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] -["f3dbc55d-35d5-4337-a9f9-799acbd5fb50","NutSetters","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["8dc31df4-44b2-41b5-b373-927a7385bf1f","NutSetters","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] -["aa864be4-5935-40f7-8d07-b0ceda55a5b8","NutSetters","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] -["70b16773-8eef-418a-a71e-a65be78282f0","NutSetters","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","s1.xxlarge","44","122880","960","Default","r07c4b05","2019-06-26 00:00:12"] -["586a61ae-184b-4d3c-b737-04121a3ef31b","NutSetters","","jcali","Unknown","Unknown","Unknown","jcali","Unknown","s1.large","10","30720","240","Default","r02c3b15","2019-06-26 00:00:40"] -["66e04098-1c2e-4101-a0c7-9be962fd1381","NutSetters","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] -["252299b1-d473-460d-aef8-cac75455b74b","NutSetters","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["0b802076-385b-49c2-8c51-6f2c1ed84f30","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r03c1b14","2019-06-26 00:00:00"] -["3249c779-9400-452c-a73d-4b5c3bbc4627","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c3b02","2019-06-26 00:00:58"] -["452b808c-dc3e-4a57-99c1-8cc1bd5145e4","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c2b02","2019-06-26 00:00:24"] -["6dd51a85-282b-4de2-ae41-ed5a28469690","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b10","2019-06-26 00:00:41"] -["84858cd4-9a68-4021-b4ce-a7c0b06eaa66","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c2b11","2019-06-26 00:00:01"] -["8bbde70e-1f0a-427b-8081-ebfe3a4672b2","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c2b11","2019-06-26 00:00:28"] -["8f402416-84c1-4fad-ac6c-e4f1e5ec3ed0","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b06","2019-06-26 00:00:32"] -["95219389-b2ca-4332-9146-40eeb857faa0","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r01c4b10","2019-06-26 00:00:34"] -["9e573e70-f6b8-47d5-8756-1c3d2e755f49","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c4b14","2019-06-26 00:00:18"] -["a49c2306-188b-4426-b30f-ef7ba2315c6b","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c1b09","2019-06-26 00:00:42"] -["b84a9c69-029f-4493-ad18-7eae58613983","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b14","2019-06-26 00:00:29"] -["cad0eff4-9d6b-4651-a6ff-247568a8b4dd","NutSetters","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b04","2019-06-26 00:00:33"] -["7f40857a-ef94-4c1d-93d1-197a559c23fb","NutSetters","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r07c1b03","2019-06-26 00:00:07"] -["94b88a4e-8804-4e88-891d-3b1b14abbe11","NutSetters","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] -["afd12b5e-748f-49bf-a2bc-f7bf33aa0330","NutSetters","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] -["d2f48b7a-2d69-426e-9a51-adef4f79983e","NutSetters","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r02c2b08","2019-06-26 00:00:09"] -["8de7c2a7-889b-4d4a-9c44-65176f094166","NutSetters","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r02c2b10","2019-06-26 00:00:04"] -["9773ae53-cb86-406c-9163-dfeed292cb29","NutSetters","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b13","2019-06-26 00:05:22"] -["c06912a6-dba8-418f-8b69-e4e6bac7e69c","NutSetters","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 18:44:54"] -["4cab08f2-76b2-4eaa-8ae5-9824513f53c1","NutSetters","","tskluzac","Unknown","Unknown","Unknown","tskluzac","Unknown","m1.large","10","30720","60","Default","r07c2b10","2019-06-26 00:00:05"] -["332d0b6a-2c5c-4195-a575-6075763422df","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c3b15","2019-06-26 00:00:16"] -["9769327f-810a-475c-a44d-1eede518ca61","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c1b13","2019-06-26 00:00:39"] -["106dcbb3-78e5-42df-bf50-872cd98720ed","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c3b13","2019-06-26 00:00:57"] -["7a1e2a7d-a532-40b8-9249-9ee0c9656971","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r07c2b02","2019-06-26 00:00:24"] -["936ca9f1-0f22-49bf-b984-eb5a953e29e6","NutSetters","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] -["8b5030b7-7387-4d02-a794-03eb908034f9","NutSetters","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.medium","6","16384","60","tacc","r07c2b01","2019-06-26 00:00:10"] -["6cd74e20-eff7-46a7-96db-d9de9174c9fa","NutSetters","","mworinge","Unknown","Unknown","Unknown","mworinge","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] -["90495dd5-bf0e-4cbd-a6bf-4bb64361c5b2","NutSetters","","eknox","Unknown","Unknown","Unknown","eknox","Unknown","s1.xxlarge","44","122880","960","Default","r03c1b07","2019-06-26 00:00:22"] -["0ae7a69d-da0c-47fe-9b68-34dd9065063b","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] -["0f31f83f-6cf8-4dc4-a97c-80da564bc3e7","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] -["a7a60145-68b8-45db-9052-f0b4670b0435","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["ec5cba0d-716f-4d39-a025-4f3352d3985c","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] -["f7493563-62e9-470b-ac9f-4eb68de2c486","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b02","2019-06-26 00:00:02"] -["0fef90d3-2626-4805-9a03-ec14669440f8","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.large","10","30720","60","tacc","r07c1b14","2019-06-26 00:00:17"] -["5ffa6463-d78a-4294-8a3f-9a65905f7fa0","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","s1.large","10","30720","240","tacc","r02c1b08","2019-06-26 00:00:16"] -["452c4e57-b44c-45a9-be85-3d4005b7a28a","NutSetters","","yclu","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yclu","Egret, Snowy","s1.xlarge","24","61440","480","Default","r01c2b10","2019-06-26 00:00:17"] -["acff346d-1acf-4348-a305-117ebf7488dc","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.tiny","1","2048","8","tacc","r06c2b07","2019-06-26 00:00:21"] -["19c60e43-7bd6-4f4f-a91f-dcf27072b4a3","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:41"] -["72221a29-1270-4353-b332-86b495dfb2a4","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b08","2019-06-26 00:00:57"] -["923ccd9c-e0fd-46c7-ab0a-d9512f6f1131","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b07","2019-06-26 00:00:43"] -["ad89d37d-e05b-41f7-b77c-487d0bece703","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] -["ae330718-7ef1-429b-ad37-ec6f40f07711","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] -["caadd360-3ee7-44e7-9113-8113c329b747","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["ee96a2b5-bc8e-4c46-a666-c987b113703f","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["18995afa-2edc-457c-8cd6-9b653d6c6ef0","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] -["19ec4a6f-bced-485e-bbd9-e1bf5f6aa348","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c2b07","2019-06-26 00:00:42"] -["3663294c-f4dd-488f-a49e-127f23449bf1","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c1b03","2019-06-26 00:00:07"] -["3a3c458e-1b4d-48d6-9056-2b6a3b9e1c25","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["4f4951f9-48d3-4d47-94f9-3bcf6c230903","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] -["6410da80-e5b1-4520-9eee-a92ab93c79b0","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b04","2019-06-26 00:00:04"] -["64fd8888-4063-49ae-ba6c-8438bdfd7b15","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c1b14","2019-06-26 00:00:29"] -["6dbb2280-cb34-4f64-9e8d-f77596e4f095","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c1b09","2019-06-26 00:00:06"] -["7bce86ae-037c-4141-b146-1b2ed0ee8a1b","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["9399443c-a368-408d-9ae4-6765876924fc","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c3b12","2019-06-26 00:00:51"] -["9482e6be-ecd5-449c-bb46-20df2402c0a3","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b02","2019-06-26 00:00:24"] -["978c0fbd-bbe5-449e-9afb-2ab7121a3f28","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b07","2019-06-26 00:00:17"] -["df5df764-2a01-4ce1-818e-e89cb7c98287","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] -["ec7b8779-8c7e-40ff-ab3b-12c9ed5daaaa","NutSetters","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c4b13","2019-06-26 00:00:23"] -["dd16f410-e8e7-498b-b9dd-3722ece48816","NutSetters","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.small","2","4096","20","adjunct","r06c4b05","2019-06-26 00:00:47"] -["af914abc-8773-48f5-b526-13fa2baf5465","NutSetters","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.xlarge","24","61440","60","adjunct","r07c3b05","2019-06-26 00:00:46"] -["381f77a7-eaa4-4264-ade9-b508ea20f423","NutSetters","","shayyag","Unknown","Unknown","Unknown","shayyag","Unknown","m1.small","2","4096","20","Default","r07c2b11","2019-06-26 00:00:48"] -["2c8dd9ce-efb2-4006-bc9a-da2dbe2a51c0","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r07c1b01","2019-06-26 00:00:01"] -["41d28667-77f8-4f62-8910-245dbad7a519","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] -["834a8a95-f650-48a8-9e6d-46f95cac9aef","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c1b10","2019-06-26 00:01:02"] -["b1ea880d-42a4-4301-b5a4-599ebdbf53d3","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] -["c7165fc2-4081-4c65-8925-784964c966e8","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r01c1b04","2019-06-26 00:00:07"] -["b4ba5f0d-8875-4f30-bc40-b94a8daabc20","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] -["c1563c71-d35c-4197-8e79-1aef5262b5fd","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["dfc5ff98-060c-46fb-ad3b-7d8643647404","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] -["37b06c82-ec8f-4052-af19-fa946eeb204f","NutSetters","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] -["ae97d816-189c-479e-a81b-45fa483e1cb4","NutSetters","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["4721fbae-32e0-46ae-a9d3-88322f222b3c","NutSetters","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b11","2019-06-26 00:00:07"] -["4d682c6f-27e3-42ee-9713-fd6e09459fe0","NutSetters","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["4f34dd83-f08e-4202-9c92-a95dd8d5a9cb","NutSetters","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b02","2019-06-26 00:00:36"] -["57af9f16-5a9a-4c61-a2c4-f729587691cc","NutSetters","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["79ef6f8c-6146-4683-856f-d8c307ccdd50","NutSetters","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r02c1b10","2019-06-26 00:00:51"] -["05ed5f32-f86a-46ab-ac59-d7f40c8bde59","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] -["57ced9da-be8b-42e1-ac41-e043a94a8e47","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.medium","6","16384","60","tacc","r06c1b13","2019-06-26 00:00:39"] -["07fa07bd-9b7e-44f9-abf8-4ff8a32d3961","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 08:20:14"] -["0b5eef4c-c408-43a1-a405-30f3f9b58973","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b05","2019-06-26 06:45:13"] -["5d8d0cd3-dfc3-4127-b5be-d554cd6030b7","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b09","2019-06-26 08:20:21"] -["687a7ba1-d464-4b45-be19-cde29b4425a1","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 08:20:28"] -["7f59108a-2543-422c-a62d-4bec27c5f234","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c2b07","2019-06-26 06:45:29"] -["f8efe9c3-e19c-46ae-84da-c5ecd73ed542","NutSetters","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r02c2b01","2019-06-26 06:40:12"] -["166a50f1-6ef6-4f33-8657-e5a956f6771d","NutSetters","","dpazruiz","Unknown","Unknown","Unknown","dpazruiz","Unknown","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] -["5e4dcee0-7df4-41fb-98bb-57592f6f7c06","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r07c1b11","2019-06-26 00:00:03"] -["ad983ec3-bcbb-428b-9ea0-d0b861fa0aa4","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c2b02","2019-06-26 00:00:56"] -["b5668e54-ee77-4b03-a6d6-7aae4f4b021f","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b02","2019-06-26 00:00:53"] -["c19b7af6-9111-4bef-aa62-30137a8ab499","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b01","2019-06-26 00:00:08"] -["c226f962-3a23-4d89-8b4e-27d7bf802fd2","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b05","2019-06-26 00:00:58"] -["e1d6ab63-82a3-4920-897e-ad66c92234f7","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b09","2019-06-26 00:00:39"] -["fdda9ba9-2895-4b9e-840b-fe3a581d8869","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c1b15","2019-06-26 00:00:26"] -["42fec381-64f5-4395-afd8-36acfb478997","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b16","2019-06-26 00:00:45"] -["551f49fd-a800-4797-b8c3-2e7e26de5243","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r07c3b15","2019-06-26 00:00:38"] -["6473619b-a915-40e3-ad8a-60bb1e538faa","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b11","2019-06-26 00:00:49"] -["a9756c07-2683-4c57-91a3-419b47a4c866","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b13","2019-06-26 00:00:08"] -["b4a7f7e9-a873-48da-8aee-8457920339da","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c4b06","2019-06-26 00:00:29"] -["db373e66-c954-4b35-bc75-84ad731599a9","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b04","2019-06-26 00:00:02"] -["f0bf2097-cfe1-4805-bdbb-c3849d3cda4f","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b12","2019-06-26 00:00:25"] -["f5c2f799-b2ad-4e9f-af0a-976ecf32f9e7","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r06c2b04","2019-06-26 00:00:38"] -["fd1b8017-58c3-402c-9893-3ea6c43a0717","NutSetters","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r02c3b04","2019-06-26 00:00:37"] -["b3a9918b-37d9-460c-92b1-9d202b0b7f30","NutSetters","","dtyoung","Unknown","Unknown","Unknown","dtyoung","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] -["b12bdb88-5032-40f2-8e13-eb646fc93776","NutSetters","","stephd","Unknown","Unknown","Unknown","stephd","Unknown","m1.medium","6","16384","60","Default","r01c2b07","2019-06-26 00:00:42"] -["98b3a9d0-7921-4620-a4d9-c9d4836cf14c","NutSetters","","ychatel","Engineering","Mechanical and Structural Systems","Mechanics and Materials","ychatel","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["adbfba12-c870-46ac-ace4-ccaafd732d24","NutSetters","","bake1349","Unknown","Unknown","Unknown","bake1349","Unknown","s1.xxlarge","44","122880","960","Default","r01c1b02","2019-06-26 00:00:12"] -["51589a10-968b-4ee0-a5f5-0c578827452a","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] -["61161601-6045-4ebf-83c0-179cce6b1431","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b12","2019-06-26 18:41:03"] -["7a662c2e-2828-4cea-ad92-9bf3dc6d9201","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] -["80cc3e60-8089-4e84-84e0-b06e813bd211","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b06","2019-06-26 00:00:15"] -["a1f310a7-5673-421f-b205-75c51af8a943","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["cd2ce889-7abf-41bf-ad8f-817bcda11ed4","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["cf5ae142-de41-4ee2-9905-3bc8e1e99c0b","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c4b13","2019-06-26 00:00:52"] -["d731f4d8-11e8-421c-a7f0-24eb15441eb2","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b13","2019-06-26 00:00:04"] -["0abe27fa-36b5-492f-aab3-a9bbd594d7b0","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c3b06","2019-06-26 00:00:12"] -["457113e9-32f5-4bd4-8d6f-be22cb59deb4","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c1b02","2019-06-26 00:00:27"] -["4b74d273-0e06-415f-af46-75a1eaea0fcc","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] -["ca763831-5715-48ce-aae0-49f684d056dd","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r02c3b15","2019-06-26 00:00:40"] -["05aca4a3-5f99-4120-9a11-7fc37e04e0bb","NutSetters","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b15","2019-06-26 00:00:12"] -["f86b42b1-5b2e-41b3-96da-7cc252312961","NutSetters","","kloster","Unknown","Unknown","Unknown","kloster","Unknown","m1.xlarge","24","61440","60","Default","r03c3b06","2019-06-26 00:00:38"] -["8a0cd2a0-07b3-474c-a01f-b29170d3c549","NutSetters","","wsang","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wsang","Tern, Sandwich","m1.tiny","1","2048","8","Default","r02c2b02","2019-06-26 00:00:55"] -["0c95a3c7-ea0b-411f-90d8-9a360f70b895","NutSetters","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["17fb59a8-362e-4dee-9f2b-e8f20c320884","NutSetters","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] -["9b371f81-1f4c-4c68-8e24-3cda5712a89d","NutSetters","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:17"] -["9d152447-71b9-4ff8-b4db-ff34edbc3d2e","NutSetters","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] -["a86f3d0b-29fd-428a-a85d-11854101fe16","NutSetters","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] -["c286e591-a8b7-40a4-97d7-7ed3263075e0","NutSetters","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] -["4341f3f0-e7d6-4577-b55c-2c730d24cdc0","NutSetters","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r07c1b04","2019-06-26 00:00:33"] -["7b94f6d7-6447-4c4b-9067-675751dcc323","NutSetters","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] -["b4c7b513-b7b9-460b-b89c-84bc9418dd6f","NutSetters","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["fc48b9b5-209e-458d-9011-2967debb88ec","NutSetters","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","120","tacc","r06c3b13","2019-06-26 00:00:57"] -["ae616f5f-a853-43e6-9e73-a92c1561fc8b","NutSetters","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","s1.xlarge","24","61440","480","tacc","r03c2b06","2019-06-26 00:00:12"] -["780e2422-455d-4c5a-9165-27d930f52378","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI160006","Unknown","m1.small","2","4096","20","tacc","r06c3b15","2019-06-26 00:00:16"] -["3f566e21-4af4-4e22-8888-5d25bb97a190","NutSetters","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] -["a5a2364c-7bc0-4d3d-92cc-89a98dcee424","NutSetters","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r03c4b13","2019-06-26 00:00:04"] -["46f70d4d-115e-40b7-845e-923aca662f99","NutSetters","","shzh9814","Unknown","Unknown","Unknown","shzh9814","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] -["1852e248-90fc-47d5-9d97-caddb09400a7","NutSetters","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b05","2019-06-26 00:00:10"] -["79b7185a-6940-4596-9d85-246d2920eb8b","NutSetters","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b03","2019-06-26 00:00:17"] -["a834476d-21f5-4125-b790-c4502ed33ff9","NutSetters","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] -["b69d8812-7858-4117-8aa7-fb8c8f4b6edf","NutSetters","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.small","2","4096","20","Default","r06c1b11","2019-06-26 00:00:06"] -["7a355cb4-d213-4423-b30c-30200b806ffa","NutSetters","","bhaakens","Unknown","Unknown","Unknown","bhaakens","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] -["a607be0e-3aed-426e-b706-c9cf9881002a","NutSetters","","rauta","Unknown","Unknown","Unknown","rauta","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["eeab4e1f-cebf-49af-8bd1-60122d0d4083","NutSetters","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","m1.medium","6","16384","60","Default","r07c3b06","2019-06-26 00:00:12"] -["5a724a10-1923-40c5-8c33-d727ed7844b7","NutSetters","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","s1.large","10","30720","240","Default","r03c4b13","2019-06-26 00:00:04"] -["562c2d1b-63bc-4e89-a873-90dc3c300aa8","NutSetters","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r03c4b07","2019-06-26 00:00:24"] -["621e173b-9a15-4b15-bfbe-cdbb74851283","NutSetters","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r07c1b01","2019-06-26 00:00:01"] -["c8f69d6d-4c05-40e1-80b4-eef28cbc26be","NutSetters","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r06c1b07","2019-06-26 00:00:21"] -["764be22a-dc91-4430-a733-216eaafe7015","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r02c4b15","2019-06-26 00:00:37"] -["86eb2cfc-f9c5-4c2b-a9ad-f07df1bf2992","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] -["886c56b9-460c-4a9a-873e-29c8154f752d","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r06c3b07","2019-06-26 00:00:11"] -["e8b86f3a-d817-4936-bd21-501088766c21","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c4b13","2019-06-26 00:00:59"] -["e9da6523-d9af-45ef-bed1-263a2f2c837e","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r03c3b13","2019-06-26 00:00:00"] -["49a87a04-eee4-4fa2-84b2-857cca8ba454","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c4b11","2019-06-26 00:00:10"] -["fe9bc7cd-9989-4953-8c9d-324189aa804c","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c1b08","2019-06-26 00:00:37"] -["51f2e510-03c3-4aa6-914a-48f707927164","NutSetters","","amco","Unknown","Unknown","Unknown","amco","Unknown","m1.large","10","30720","60","Default","r02c3b15","2019-06-26 00:00:40"] -["21d63405-af1f-46e3-8124-879682df8a9e","NutSetters","","dhaynes","Unknown","Unknown","Unknown","TG-SES180024","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] -["221ed886-808b-4a0b-8b67-162e1b3102f7","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CIE160029","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["0ade6a93-a0b8-42fd-8218-80f7ad711c52","NutSetters","","grcramer","Unknown","Unknown","Unknown","grcramer","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] -["d4ebe441-f406-4420-8873-828194f2e9a1","NutSetters","","rasc5939","Unknown","Unknown","Unknown","rasc5939","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:48"] -["a98b0dca-bcde-4505-bd4d-967ef56b990e","NutSetters","","tg834860","Unknown","Unknown","Unknown","TG-BIO170103","Unknown","m1.medium","6","16384","60","tacc","r02c3b07","2019-06-26 00:00:48"] -["97c83306-8f25-4ac7-8396-e8c91b5c46a4","NutSetters","","jdakka","Unknown","Unknown","Unknown","jdakka","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] -["0978e35f-313a-4ccc-9255-e3a7a53b1b6c","NutSetters","","mason25","Unknown","Unknown","Unknown","mason25","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["7e6ed2d6-1bad-40ef-8b62-a90340dfbf00","NutSetters","","swalke28","Unknown","Unknown","Unknown","swalke28","Unknown","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] -["8c773f57-6989-42e2-90cd-f5c624592d73","NutSetters","","jbadalam","Unknown","Unknown","Unknown","jbadalam","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] -["95557b46-f118-4862-ab48-4a94e7452865","NutSetters","","nardos","Unknown","Unknown","Unknown","nardos","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] -["462fd184-1aff-4cde-87aa-c4a92abd0dbb","NutSetters","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] -["97a4cdd8-265a-437d-9827-6840df5933c0","NutSetters","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r03c2b08","2019-06-26 00:00:37"] -["7a8c0d0e-55ed-4496-8af3-175f7e151981","NutSetters","","henschel","Unknown","Unknown","Unknown","henschel","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] -["b7266556-73e1-4b5d-8666-f354fe58fd7d","NutSetters","","rcampbel","Unknown","Unknown","Unknown","rcampbel","Unknown","m1.medium","6","16384","60","Default","r06c2b08","2019-06-26 00:00:26"] -["26c12f93-af3e-4e95-a2ee-f634a18720d5","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r07c1b05","2019-06-26 00:00:07"] -["502f29ec-2053-4fb9-85ed-5affc7674b56","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] -["eb41a224-91e0-47cc-9a60-e83dc78e6f70","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] -["f5007aa9-82fe-40dd-85f4-68a12ebbd710","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] -["51de1e9f-82e9-41ee-ac72-df3860f52424","NutSetters","","lambert8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.medium","6","16384","60","tacc","r06c1b10","2019-06-26 00:01:02"] -["5213611a-d8ad-441f-acae-3c04b2d1da5c","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r07c1b13","2019-06-26 00:00:10"] -["90a63b7c-5368-4b22-9a9e-425fd66f9673","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r06c4b05","2019-06-26 00:00:47"] -["0b7841a8-3fd0-42d4-a4e4-1d60fe7fa6f0","NutSetters","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c2b05","2019-06-26 00:00:55"] -["a010851e-73f3-4f10-9792-d8b5874aa377","NutSetters","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] -["edbab7fe-3252-4e71-a7a1-63c6a9b58489","NutSetters","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] -["0968ded7-bf0f-44a7-b6b4-02ce83fc77b7","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["b42224de-59e1-40a1-b15a-4cd8260a31a8","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] -["0df84fc2-e4e4-471e-a3fc-35cd057a38aa","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] -["31e737d5-352c-4ef7-9f63-e5701750080d","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] -["39a5eca2-f40a-4e97-8fb1-72577da2267a","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] -["3b528050-de0f-447b-a3ed-e6fb1447b26c","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c1b16","2019-06-26 00:00:26"] -["4b8c9ba6-9bf0-4c0e-b0ce-a217ac6fb966","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:01"] -["4df63612-e8de-4198-b148-9e4fb5773ce6","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] -["640a6afb-a1e3-4946-bd60-2e33bbad563d","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["68d2e5f1-61d2-4d61-b0a2-ca431b34733b","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] -["80183abc-930b-4005-bb4c-6d15d769cd0e","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b13","2019-06-26 00:00:10"] -["f5bca597-abfa-4cd4-b983-59d0ce2b1b4f","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] -["22df75f2-7cc3-4c83-a67e-cf13396e9c1f","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:18"] -["47374e12-421d-494d-aebd-0c0c31402e13","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] -["87525c23-041f-45d5-9936-7f5e980651f4","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r03c1b12","2019-06-26 00:00:25"] -["acf742b8-155b-422b-82db-9dcfb659ae53","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c3b06","2019-06-26 00:00:12"] -["2b670f9f-6d2c-4982-8016-2281a27bd929","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] -["62f27ed1-de43-4f18-bdc5-353d70bcd955","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:47"] -["d9a2039b-3439-47a9-8570-111574408450","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["5f8c438d-d573-46d1-afed-0344e10017a6","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] -["a47927a8-748c-46c0-931f-79bbe16c0559","NutSetters","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] -["f9c5bbcf-4eac-4456-877d-e2ec509f2479","NutSetters","","yhung","Engineering","Mechanical and Structural Systems","Mechanics and Materials","yhung","Tern, Sandwich","s1.large","10","30720","240","Default","r07c1b14","2019-06-26 00:00:17"] -["439fc530-b649-470a-95e3-4f09ad3d96fb","NutSetters","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] -["a2103cad-1df8-4c2a-a08b-ad2d624a68ff","NutSetters","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] -["b3fe8a7b-c6e1-46aa-949d-2cef25470e86","NutSetters","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] -["d8a73b5e-51d2-499d-9545-41e009aa6e4c","NutSetters","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.large","10","30720","60","Default","r01c2b03","2019-06-26 00:00:24"] -["1689c556-9720-499d-9c69-ca5e3010fe45","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] -["1c9a1ff9-abf8-4592-9412-d87ae6681f37","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] -["9afc269a-fc1a-4666-a2b6-986911649726","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b11","2019-06-26 00:00:48"] -["a5f4294f-ba0b-4437-bc57-0c155fd470ce","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] -["d47b4a17-6097-451d-857e-72f114b52ad2","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] -["e2c9d976-cd0c-43d5-b88d-d954e5d73912","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] -["f4ea2f9b-4868-4337-bd01-063fdd1273ce","NutSetters","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c3b03","2019-06-26 00:00:07"] -["f458f0a6-3b0c-45e1-879b-bf0ba5a2bee0","NutSetters","","plm02","Unknown","Unknown","Unknown","plm02","Unknown","m1.large","10","30720","60","Default","r02c1b03","2019-06-26 14:17:29"] -["86aecaca-35f2-466e-bda4-077ed46c1b9e","NutSetters","","nfrazier","Unknown","Unknown","Unknown","nfrazier","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["b9daec8a-0a27-45ad-8b75-791a1df94b4e","NutSetters","","ssg2394","Unknown","Unknown","Unknown","ssg2394","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] -["1aa5bcae-ada8-4ff0-8c71-b7c0004d0666","NutSetters","","vwangia","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vwangia","Tern, Sandwich","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] -["6d13b019-2ff7-4e1e-a11f-2a5c85f63c1f","NutSetters","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["d50c826e-4ce7-4819-be6d-f6e6b72ec590","NutSetters","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["a808991f-9ef3-42b2-8b66-ac418608fa5a","NutSetters","","hjnance","Unknown","Unknown","Unknown","hjnance","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] -["e891eb53-6790-49d4-890c-f8aebfd34510","NutSetters","","brooksph","Unknown","Unknown","Unknown","brooksph","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] -["435cb856-14ed-40fc-a135-88d3c3cec116","NutSetters","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b11","2019-06-26 00:00:09"] -["5b503292-ef8b-472e-b2f0-0dd1cbedd24f","NutSetters","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c4b11","2019-06-26 00:00:32"] -["a1c23a1c-f1e3-4487-ad64-ef20aefe4e41","NutSetters","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c1b10","2019-06-26 00:00:32"] -["b2cec3e5-e2a4-4eca-b273-0f7ff1eaf120","NutSetters","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c2b05","2019-06-26 00:00:14"] -["b4c3935a-5feb-4c9b-92e1-a094d34417b6","NutSetters","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b05","2019-06-26 00:00:32"] -["05fcd045-d22b-4083-b9d0-1a787748c6ca","NutSetters","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] -["3a69d1b8-b099-4415-9dd9-7b95fe62a26a","NutSetters","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r06c4b10","2019-06-26 00:00:41"] -["e3f90734-857e-462e-9026-8f5297e6414f","NutSetters","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] -["0351a743-e3df-4914-9595-6ae2b16e4957","NutSetters","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.large","10","30720","60","tacc","r01c4b13","2019-06-26 00:00:23"] -["73c86d68-5700-4a30-90b0-8dc7fab7f981","NutSetters","","tg839024","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","s1.xlarge","24","61440","480","tacc","r02c2b06","2019-06-26 00:00:19"] -["93280b72-9ea5-42a1-a234-b288c5751660","NutSetters","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["a90c99d4-310a-40e5-b160-e4138dc2c774","NutSetters","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["4905ece5-7938-4280-a5e0-8939a89a3b5c","NutSetters","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["17f1e0de-b4e3-401f-aa7e-82140e22d80b","NutSetters","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] -["9d95e874-ad16-49e1-ab53-8335fcb4cead","NutSetters","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] -["c56322b2-04c3-4009-8ba2-b8120bbc61ed","NutSetters","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r01c4b02","2019-06-26 00:00:01"] -["e91f2a82-9f79-4d12-8553-0e914c1fdeae","NutSetters","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r07c4b10","2019-06-26 00:00:12"] -["f29036ce-affa-4674-a00c-b739c45d3f37","NutSetters","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r01c2b09","2019-06-26 00:00:55"] -["bd5d7bf5-0dd7-4663-81ea-17fbf0434f50","NutSetters","","samroy","Unknown","Unknown","Unknown","samroy","Unknown","m1.small","2","4096","20","Default","r02c1b10","2019-06-26 00:00:51"] -["006855f2-cd9a-4410-b98d-e2173bab46b2","NutSetters","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r02c2b02","2019-06-26 00:00:55"] -["2b025a32-40fb-4279-98da-5a6c95aec029","NutSetters","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] -["258e2ab0-b2c5-4aa1-89e9-0e7f6ded12f1","NutSetters","","pmiksza","Unknown","Unknown","Unknown","pmiksza","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] -["e6118cc9-f3a2-4947-9289-fcbac1e25530","NutSetters","","lalakl","Unknown","Unknown","Unknown","lalakl","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] -["7d140e8e-709e-4d78-8bbd-7b6ac4e78a66","NutSetters","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["a30dcc0a-2bc1-4259-96b4-71ad84efc951","NutSetters","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.quad","4","10240","20","Default","r03c2b11","2019-06-26 00:00:47"] -["82ec4985-b597-4fed-8d27-f51fad5a5a23","NutSetters","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.tiny","1","2048","8","Default","r02c3b10","2019-06-26 00:00:40"] -["8a700fb4-213d-4797-b69f-eca6c3e8037c","NutSetters","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] -["eb78b8a6-f8b0-4713-a386-47706cfe02cc","NutSetters","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["c9a42d34-7cff-4d68-8c8f-d1969aeb3d46","NutSetters","","aymen","Unknown","Unknown","Unknown","aymen","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] -["75551e33-21d7-4809-93ae-473f4002acc0","NutSetters","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] -["a3d8b039-6f1e-42af-bc33-aa2242cb2d82","NutSetters","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["96623eb0-8175-4cbe-a740-b5f1eb2c6b5b","NutSetters","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.medium","6","16384","60","tacc","r02c4b11","2019-06-26 00:00:34"] -["6c0af781-8fff-49c7-a55a-dbf9029ab599","NutSetters","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] -["c457493f-58b7-4511-8239-831ca54d5061","NutSetters","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r02c3b14","2019-06-26 00:00:58"] -["66ec53e0-94a0-4e38-904f-6a5782237c18","NutSetters","","ianmacc","Unknown","Unknown","Unknown","ianmacc","Unknown","s1.xlarge","24","61440","480","Default","r02c3b07","2019-06-26 00:00:48"] -["d5e68903-f00c-4e8b-ac85-e61a0bf8e19f","NutSetters","","heena","Unknown","Unknown","Unknown","heena","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] -["be4a55ce-fea2-4fe9-a70b-a7a990098207","NutSetters","","heena","Unknown","Unknown","Unknown","heena","Unknown","s1.xxlarge","44","122880","960","Default","r02c3b12","2019-06-26 00:00:37"] -["e98930ca-cffb-4bd5-b46d-9e80d79f6172","NutSetters","","nova","Unknown","Unknown","Unknown","service","Unknown","m1.small","2","4096","20","Default","r03c4b10","2019-06-26 00:00:19"] -["c6f21e63-7c18-44ab-8f80-e3157f99808a","NutSetters","","dcooper3","Unknown","Unknown","Unknown","dcooper3","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["0b4a3a07-9969-4844-abac-b974e03ac0f0","NutSetters","","egforan","Unknown","Unknown","Unknown","egforan","Unknown","m1.medium","6","16384","60","Default","r06c3b07","2019-06-26 00:00:11"] -["54766b6d-96e2-4e7e-8421-17691563547a","NutSetters","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] -["70d86a48-725d-4dd5-b9a6-ac279cdab623","NutSetters","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] -["8cbac01a-321e-4fa1-a506-9f00c99452ce","NutSetters","","chastang","Unknown","Unknown","Unknown","chastang","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] -["2969e2dd-7f0b-452a-95f5-4b42b90fd9de","NutSetters","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c2b09","2019-06-26 00:00:50"] -["510dd80c-c111-4b66-9e11-40f4b93ba321","NutSetters","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] -["01f668b1-6fd3-4498-9482-3b8bd6796c29","NutSetters","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["2106b29b-b5be-4c60-ad72-e73edd7931dd","NutSetters","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r02c1b08","2019-06-26 00:00:16"] -["4954c7c8-440e-45ee-9d78-2f9fbd33c0ff","NutSetters","","rmickol","Unknown","Unknown","Unknown","rmickol","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["a988315d-5d70-4551-bb85-e69877f737a1","NutSetters","","gaojie22","Unknown","Unknown","Unknown","gaojie22","Unknown","m1.tiny","1","2048","8","Default","r06c1b14","2019-06-26 00:00:29"] -["3488f559-1cbe-4b2d-a21b-768b9b15dd80","NutSetters","","mkrenz","Unknown","Unknown","Unknown","mkrenz","Unknown","m1.tiny","1","2048","8","Default","r02c1b14","2019-06-26 00:16:39"] -["a7ceb817-eba4-44d6-af51-1894e42b4e9c","NutSetters","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] -["3ad61cb8-fb67-42a5-a040-a5d1286a777e","NutSetters","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","s1.xlarge","24","61440","480","Default","r07c3b06","2019-06-26 00:00:12"] -["64a37c7b-9391-45c1-a74e-6793ff6602ca","NutSetters","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] -["d82d33f1-12e5-494f-9810-0ea8a8fd1c35","NutSetters","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] -["17b97d5b-dc90-4ae0-80a3-1a68f5b5a61e","NutSetters","","saptpurk","Unknown","Unknown","Unknown","saptpurk","Unknown","m1.medium","6","16384","60","Default","r01c4b15","2019-06-26 00:00:06"] -["a6570c4a-15b8-4ca0-a188-a3e5ca81610c","NutSetters","","tg857713","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] -["11c47c54-73e4-476b-b553-1dadfb270c33","NutSetters","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] -["1b9c9c5d-900d-4d2e-b4ba-f7c5c324ceaf","NutSetters","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] -["f3a2bb67-b062-453f-be0f-6eed582d7ccf","NutSetters","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b13","2019-06-26 00:00:29"] -["3867b613-6c42-4b9a-ae70-2eb30b880074","NutSetters","","tg857711","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] -["3990b4da-b0ad-4895-9dd6-ee9bec2791f9","NutSetters","","tg857714","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] -["5891489c-7e5b-4307-bd13-92b69984988a","NutSetters","","tg856781","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c1b08","2019-06-26 00:00:37"] -["5fd47705-f24e-4931-b5a5-3120a65568d4","NutSetters","","tg857674","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r06c2b01","2019-06-26 00:00:27"] -["bca1f8b3-65d5-4ef4-80eb-1f472f50f7b8","NutSetters","","tg857485","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b11","2019-06-26 00:00:39"] -["0e1283f2-04d4-48b9-b1bc-e6a85e34a8eb","NutSetters","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b07","2019-06-26 18:12:50"] -["2dda52c1-6558-4a9e-9b76-6dcb37436209","NutSetters","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b12","2019-06-26 18:12:49"] -["8240a9a6-1b36-478b-96fc-c9615c060f1a","NutSetters","","tg857377","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b04","2019-06-26 00:00:51"] -["65ceac0a-947c-4c77-a605-e6050e929b18","NutSetters","","brhatton","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c2b16","2019-06-26 00:00:29"] -["2d9fea14-b2b9-48f8-a8ac-bffbc4334686","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["f4093f7b-f1d1-4577-aeb9-2fa4d82baf74","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b14","2019-06-26 00:00:59"] -["27786596-44c7-4c03-9956-8beaca0c34f3","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r01c4b05","2019-06-26 00:00:39"] -["77fcccc1-3d85-4a03-b789-6640cec20720","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["80ad257b-16c4-49cd-bc09-a3a7e494b9d1","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["efdf63ad-7b72-469d-88aa-614534c78004","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] -["0b31f29c-a1d2-4e4d-9527-3887f630b0c7","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r07c4b15","2019-06-26 01:00:08"] -["469c0107-798a-479d-82db-d3cdfc959bc4","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c3b07","2019-06-26 00:00:11"] -["ca28acb9-dcf2-4cd0-91c1-d3369a820c05","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c4b05","2019-06-26 00:00:47"] -["50e53cd4-a317-45dc-a3bc-e2a0f2d79dd9","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] -["62aa7b26-1a0c-42a4-a845-5e1e5c03874f","NutSetters","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.xlarge","24","61440","60","Default","r01c1b07","2019-06-26 00:00:26"] -["503ef3af-6e4c-474f-9cf0-b4ad86aa1d63","NutSetters","","schartlm","Unknown","Unknown","Unknown","schartlm","Unknown","m1.large","10","30720","60","Default","r03c3b12","2019-06-26 00:00:39"] -["fe6d04ab-c01e-4f65-91ab-f35dbf74f8b3","NutSetters","","kagross","Unknown","Unknown","Unknown","kagross","Unknown","m1.large","10","30720","60","Default","r01c3b13","2019-06-26 00:00:38"] -["04c536cd-9c04-4870-a4af-680f58483fe7","NutSetters","","sean1906","Unknown","Unknown","Unknown","sean1906","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["42a765a5-0842-4a1c-8417-16d07ccca2f6","NutSetters","","gryanp","Unknown","Unknown","Unknown","gryanp","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:02"] -["0058a2f1-0497-4c5b-844c-f274c7581238","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["4f735d19-e4c2-44b9-86df-8ed34836c35d","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] -["a2c51d0d-f85a-469b-9159-09a8f4608d3b","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] -["a560e353-1638-4b26-8075-66f83b35cbf9","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] -["b4b91070-2ba1-4c87-b126-a164072c606b","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] -["e5f73a5a-f242-4d84-8641-d8d576c04ec8","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["f3c31da1-38f9-48a4-a31a-f99a231e4ba3","NutSetters","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c2b07","2019-06-26 00:00:17"] -["98792c56-5fa3-4cdd-be3a-447df47b4121","NutSetters","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] -["b14cb5af-9809-43d4-8bbf-150b3af9bf0e","NutSetters","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] -["1578f7e4-1761-4097-832e-887935b3ca6f","NutSetters","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] -["c6c7a90c-1a55-4ce7-92f1-1e06af1b34ce","NutSetters","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["35e029f8-9dee-456b-a1e4-19c2a197515f","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 21:26:32"] -["a2365e04-fcdb-4a76-b898-58b79bd201cc","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r06c2b08","2019-06-26 21:05:44"] -["e56c9f66-8679-4266-b78d-fe4d5da01abc","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 21:27:28"] -["04bbc2c8-5923-4da7-b3e0-de722f076adf","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 22:10:38"] -["196745fd-4045-4ba5-ad32-f54b755f3baa","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r06c3b03","2019-06-26 21:04:49"] -["1a60f2bb-1e82-4525-83f2-229fdfec510d","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 18:57:19"] -["4b6620a5-51be-4984-8a2d-048c7fd5f1a5","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c4b15","2019-06-26 22:11:42"] -["933d7212-a812-44cb-a3ef-2b519d0322f1","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 21:30:27"] -["9a35e939-1242-48d8-b70c-b66390eddf73","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 21:00:05"] -["08c4310b-eaae-4d38-b8b7-f09ac18e795e","NutSetters","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","s1.xlarge","24","61440","480","Default","r02c4b12","2019-06-26 00:00:59"] -["67fe3092-a657-4874-8168-092f14756d46","NutSetters","","beckbw","Unknown","Unknown","Unknown","beckbw","Unknown","m1.small","2","4096","20","Default","r06c1b03","2019-06-26 00:00:46"] -["d62768ee-3c84-47c4-add4-894dc10f6a70","NutSetters","","schae234","Unknown","Unknown","Unknown","schae234","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["801a48cc-67c9-4988-b40e-29a2c29c3a9f","NutSetters","","eafgan","Unknown","Unknown","Unknown","Galaxy_Persistant_Services","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] -["955201c5-7b7d-451b-a327-63ac3f5d9128","NutSetters","","binod30","Unknown","Unknown","Unknown","binod30","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] -["0cf5e80c-d268-40a8-bd8c-bdb41022300e","NutSetters","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] -["bf4c6ed2-b5bb-4d83-abde-cd7ddaf0a670","NutSetters","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r06c3b15","2019-06-26 00:00:16"] -["c2092513-4503-46af-b6f0-6f9c1019a43d","NutSetters","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r02c1b07","2019-06-26 00:00:29"] -["a6037daa-53e1-4e44-b52d-134fd0269736","NutSetters","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:48"] -["64ad247e-0d58-4341-a558-c8cac9034475","NutSetters","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] -["7acb5694-02bd-42a3-a103-7e1d47a913b2","NutSetters","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] -["95d75e72-77ff-4d03-ad16-654134fd94a1","NutSetters","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] -["430d7e46-45de-459c-9d55-24507a359e08","NutSetters","","paulrad","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] -["072dbb0c-fa20-44bc-885b-f2059ff5d579","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["0fe869fb-76d6-47c2-82a1-cd2a547c112b","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b04","2019-06-26 00:00:46"] -["1d999199-e742-4fcb-996d-b909b0a26766","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] -["20aee1a3-92b1-4d74-aeda-40e2720ef1e7","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b04","2019-06-26 00:00:02"] -["221ae9f8-a164-4e84-8ca4-2cffc7bf5c35","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b14","2019-06-26 00:00:41"] -["28e347f2-8ea2-4332-a8b0-e39e222c972b","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c4b13","2019-06-26 00:00:52"] -["29e881aa-b50e-4228-826a-eedb7f6c9f90","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] -["2f1191ef-d323-4fac-81b4-416823fe6f30","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] -["3403b7f8-6f18-4193-a1d3-e86ed1efe32e","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] -["37b5c4bc-d953-4070-bbce-466076c49032","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["38192fb6-bd22-447f-b56c-164a12aaa080","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] -["3a60ea19-412f-4826-9fd5-af015a5e5594","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b07","2019-06-26 00:00:20"] -["42599c47-64a5-4446-b2e0-f932bcdce4c7","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["46cff06b-10c7-4e94-8482-58fc64d1d3e4","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] -["47e7c840-05d3-410d-a452-91250e99b7c1","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] -["4a7ddee1-8ae9-4fc6-a37d-d841150f4415","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] -["50b40f57-54c1-462a-9fe1-1042506f0253","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["54eebbfd-9d8c-403e-a736-5e4d50af2968","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] -["58b6f8ea-ccd9-48e8-9aa4-1544e48a74be","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] -["58d124e9-b4d3-45bf-8acd-6537ea28f539","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] -["5da2f79a-fb0c-46b7-a98c-227de15328a6","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] -["5fda4d39-b503-4726-9a36-b7beb0fa9f96","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] -["6296f6ed-6000-4c41-bfe8-4c078cdcbd01","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] -["62d33d15-f327-4d23-a902-b4c7ff9634ba","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] -["6e879f6f-d424-4234-8069-532e104d95df","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] -["7645fb55-a3e1-443e-adcc-a0ca7b3d2aab","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] -["780c2b7f-5625-4171-a9a0-609eb3a71733","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] -["7c245f8b-f6ce-40b4-8f38-3585d693f899","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b14","2019-06-26 00:00:04"] -["7db58296-36cd-49b7-a2f9-2c8372fcc34b","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c2b13","2019-06-26 00:00:29"] -["8928d5db-949d-4c00-8b50-d42bc23efa2c","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] -["905f9cc9-11a3-49ed-b568-73230ef41cc3","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] -["9b9e1789-cfc3-4cdb-b744-94021a9bb5a7","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] -["9e7d8dbc-c73e-43c8-af07-0b3a0468cd13","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c1b04","2019-06-26 00:00:08"] -["a33a0e1e-91dd-46db-b7f9-63bc4d8c666e","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["ae1d7748-aad0-4e72-99a9-eec39df5bc3d","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["af498cb9-d7e0-4b16-9e4f-17c838bba156","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] -["b292a16d-f1e6-4f21-aff1-fecd6145dddf","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] -["bc296bc1-4127-4d53-9f1e-7130447526ac","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b09","2019-06-26 00:00:01"] -["d428c193-d8e6-4077-836f-dbe9ed5592f1","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b05","2019-06-26 00:00:10"] -["d55f99a9-b546-4e7c-a417-3dfee7a1aecf","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] -["dae5f61a-6725-4d39-a4d3-46c60cc44e3e","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b04","2019-06-26 00:00:30"] -["e6fa7624-6af2-407b-9ff5-4fc8a131b41d","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["f52834c8-f37f-4890-98c6-2e3f21bfa5b8","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b06","2019-06-26 01:00:59"] -["f5c21758-4544-440c-b153-5d655ecd8e5c","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b07","2019-06-26 00:00:29"] -["ff50ac8b-deae-420c-8550-3d27ad39b3e9","NutSetters","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c3b14","2019-06-26 01:00:59"] -["4e0bdd28-486a-40cd-9909-6ec0848325fb","NutSetters","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r02c4b12","2019-06-26 00:00:59"] -["606d4cc3-9351-4405-95d3-d1d4608174c0","NutSetters","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] -["74b4541e-631d-47c6-b90d-ea4ddc895b8f","NutSetters","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] -["79d24f2e-057a-4a60-8042-3f4fbd43d833","NutSetters","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] -["6ff8ee24-a2e0-43a7-ae84-aa741f6761a4","NutSetters","","nathsnyd","Unknown","Unknown","Unknown","nathsnyd","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] -["6c63b3c1-dd9b-44b5-94e5-161cc102f743","NutSetters","","kz1954","Unknown","Unknown","Unknown","kz1954","Unknown","m1.large","10","30720","60","Default","r01c2b01","2019-06-26 00:00:05"] -["afac7dac-5855-4180-981e-2169ede77f0f","NutSetters","","ccc010","Unknown","Unknown","Unknown","ccc010","Unknown","m1.large","10","30720","60","Default","r03c3b14","2019-06-26 15:43:04"] -["2c205114-88da-4157-a7f0-831063a50efc","NutSetters","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c4b03","2019-06-26 00:00:36"] -["30584165-b530-4f01-add0-84d0f5be4ba5","NutSetters","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c3b05","2019-06-26 00:00:46"] -["20aafce3-f61c-4b4a-a8c5-c8f6efb40f03","NutSetters","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] -["9ab7ee80-35e1-488d-b9c0-08a10b1adfea","NutSetters","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.medium","6","16384","60","Default","r06c1b08","2019-06-26 00:00:57"] -["9c616284-12e2-49b4-a3af-678c12729477","NutSetters","","noorabom","Unknown","Unknown","Unknown","noorabom","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["12fc2131-3dce-478b-ac75-c056ca9c256c","NutSetters","","jdv","Unknown","Unknown","Unknown","jdv","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["9e63715d-6eb2-417f-9efd-d89b587884f6","NutSetters","","wscreen","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wscreen","Tern, Sandwich","m1.medium","6","16384","60","Default","r03c1b01","2019-06-26 00:00:05"] -["a9bb912c-c116-47fd-9762-ea58e3559399","NutSetters","","mpierce","Unknown","Unknown","Unknown","TG-EAR170011","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:48"] -["7056ccb7-ae8d-4d8a-8787-3185f311a260","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] -["86501b9d-fba3-4234-b82a-87846d526cb5","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] -["cc599893-acff-489e-af71-77049a62835b","NutSetters","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c4b04","2019-06-26 00:00:18"] -["6ddecac2-3e1f-4064-8968-19df59343ad3","NutSetters","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r02c3b06","2019-06-26 00:00:11"] -["91a83a69-b6fa-4fee-931a-ff305e9bdf11","NutSetters","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r06c4b04","2019-06-26 00:00:30"] -["2270bffe-404b-40ff-ac89-78d1efb5cae1","NutSetters","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["96590283-3f28-4cbf-acbe-368aed1e95a5","NutSetters","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["8381f000-53e6-4448-a3c3-4d8a2003aa32","NutSetters","","aashwani","Unknown","Unknown","Unknown","aashwani","Unknown","m1.large","10","30720","60","Default","r03c1b09","2019-06-26 00:00:01"] -["599cfe84-d5a8-4ec0-b2f0-cb7b7f740293","NutSetters","","cganote","Unknown","Unknown","Unknown","TG-MCB160163","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["3a11b2d4-948d-4bdf-b1fe-2b8008c9fcc7","NutSetters","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.small","2","4096","20","Default","r06c1b08","2019-06-26 00:00:57"] -["e928f28d-1c50-48a5-bfd1-dd1f32793ee2","NutSetters","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] -["24ef927c-ac39-4555-9f75-d125c69534f3","NutSetters","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b13","2019-06-26 00:00:00"] -["ad9f8566-6347-4fcd-9e8c-69f3127ae015","NutSetters","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] -["c2dc49c1-c94b-47a0-94c5-90bfb5d769e3","NutSetters","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] -["6b8baa48-3e9c-4aa5-b14b-824df862bad5","NutSetters","","nkern","Unknown","Unknown","Unknown","nkern","Unknown","m1.xxlarge","44","122880","60","Default","r02c4b05","2019-06-26 00:00:19"] -["50a68cc2-52c0-4c0a-a89f-05471ddacfa8","NutSetters","","pcpeters","Unknown","Unknown","Unknown","pcpeters","Unknown","m1.tiny","1","2048","8","Default","r01c4b02","2019-06-26 00:00:01"] -["cab28bbf-1fbe-44c8-8881-fdba8b7968d0","NutSetters","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.large","10","30720","120","Default","r02c2b09","2019-06-26 00:00:50"] -["165e878b-24f1-49f1-8ccd-9ea905461bd4","NutSetters","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.xxlarge","44","122880","480","Default","r01c3b02","2019-06-26 00:00:30"] -["0edc8b5e-47b7-481a-b640-8bb35673329a","NutSetters","","mhmurray","Unknown","Unknown","Unknown","mhmurray","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 00:00:39"] -["8b2153b5-631d-4c44-9b56-71c421861550","NutSetters","","marelize","Unknown","Unknown","Unknown","marelize","Unknown","m1.small","2","4096","20","Default","r07c1b05","2019-06-26 00:00:07"] -["78a3af0d-32b8-4de5-9a85-b9922cdda92f","NutSetters","","gjoshua","Unknown","Unknown","Unknown","gjoshua","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] -["94ef3844-813e-400f-b332-4f2ba48c58dc","NutSetters","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] -["08da3e01-4785-454c-9bc1-b97d1e4b5abd","NutSetters","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.large","10","30720","60","Default","r06c1b10","2019-06-26 00:01:02"] -["f9c09402-249d-46d6-8918-650daf1e3991","NutSetters","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","s1.large","10","30720","240","Default","r02c1b05","2019-06-26 00:00:10"] -["510e8cc0-4b69-4718-83b4-1873a9158272","NutSetters","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] -["21035723-2c62-419a-aab7-16c5f314d474","NutSetters","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] -["9363483e-670c-469d-9af8-e191de8dd3f5","NutSetters","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c1b04","2019-06-26 00:00:21"] -["a27fad25-2871-4072-a41e-bbc3fbd87060","NutSetters","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["bd40cb62-bcc6-4563-a534-772b43359eca","NutSetters","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:49"] -["c1cabd6e-b86f-416c-bb25-aab9c42df82e","NutSetters","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["61cd3bd5-6170-49d3-8409-2389669d083b","NutSetters","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["78c61df6-9ec0-45c8-bb4f-b5bf4c69f8b5","NutSetters","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] -["08257e59-d672-4e0f-b69d-9374d540d58a","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r06c4b04","2019-06-26 00:00:30"] -["ff26e218-ddeb-449e-bb74-79547a5b17c8","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r02c3b06","2019-06-26 00:00:11"] -["1b6cfd24-2e6c-4196-92d6-7059910228a9","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] -["ddb37419-cf3f-4144-b9e9-219e8c47a816","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] -["30ee7082-a62d-4821-b207-a24509a46a93","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c4b07","2019-06-26 00:00:43"] -["3b675684-a739-4b13-a9fd-9adea06fe5fa","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b14","2019-06-26 00:00:06"] -["547cc6ca-c281-4b0f-ac09-3cb8510f3481","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] -["96f781df-525c-49ee-a8c4-80be4e1a22fe","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r01c4b02","2019-06-26 00:00:01"] -["117c1009-1069-45de-a004-7fb37e8c537a","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c1b10","2019-06-26 00:00:04"] -["423cb913-83cc-42b1-a480-59f04868b0cb","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c2b05","2019-06-26 00:00:55"] -["98a8f771-97c3-47b3-b215-e9fb8600788c","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c4b07","2019-06-26 00:00:43"] -["cbaee545-741f-42e5-8021-17126cadef81","NutSetters","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c3b07","2019-06-26 00:00:06"] -["c5e9ae5e-1e2d-445e-be9c-711c945ba6ec","NutSetters","","metrics","Unknown","Unknown","Unknown","metrics","Unknown","m1.tiny","1","2048","8","adjunct","r02c1b16","2019-06-26 00:00:26"] -["ab881c72-0043-400a-b3f9-82715fe5c9f8","NutSetters","","amelung","Unknown","Unknown","Unknown","amelung","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["7e6ba467-af52-44a2-8737-eca6e02618d6","NutSetters","","rwehrer","Unknown","Unknown","Unknown","rwehrer","Unknown","m1.small","2","4096","20","Default","r01c2b01","2019-06-26 00:00:05"] -["d2e176e5-35ec-4a26-a4ec-408f4227e144","NutSetters","","bohendo","Unknown","Unknown","Unknown","bohendo","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] -["6b5de979-37f2-4154-a009-ef6b0132895b","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["ebf85c46-66a5-4df0-ab34-bc04dd59d145","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["1469f8fb-2ec0-4a5a-9075-3f65409c9016","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:42:56"] -["1d372cd3-1094-4d50-8850-676880ae0fe0","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r02c3b03","2019-06-26 15:23:46"] -["4bb0f70c-5cd8-4ea6-8baa-578b1a91f4ee","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r06c1b15","2019-06-26 00:00:11"] -["8959b0a8-b6f4-4601-b532-3f121d1e694f","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c4b13","2019-06-26 17:10:31"] -["997b5b20-38cd-4e68-831a-3fa8fd704370","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 15:23:34"] -["f507e0b3-dd7a-4193-9576-6f2116cb9667","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:29:43"] -["f7d750d8-1b1c-4ce6-9e41-fa3ff3f9fdcc","NutSetters","","mspinks","Unknown","Unknown","Unknown","mspinks","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] -["bf3a6687-d03f-4a65-95f6-74868aef78f4","NutSetters","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] -["2bb8efe7-43d0-49c3-83d7-db1e3f2f022c","NutSetters","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","s1.large","10","30720","240","Default","r03c4b07","2019-06-26 00:00:24"] -["836d64e1-e37b-4c40-9eb5-878d887b34c4","NutSetters","","jb557","Unknown","Unknown","Unknown","jb557","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] -["69cec90c-fe17-4f7f-833a-59a11588a4cb","NutSetters","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r01c4b05","2019-06-26 00:00:39"] -["cbd48900-5b06-4bef-ad0a-72234de0d755","NutSetters","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["f4d950a0-deb7-4b14-9c6c-3979658fa774","NutSetters","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["926fdc67-24d4-41b0-967a-f9042f63cc19","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r07c2b01","2019-06-26 00:00:10"] -["92a3cc6d-3b27-4361-ad2e-2c654e5df7b4","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r03c3b11","2019-06-26 00:00:39"] -["8135603c-42cb-4458-acde-9e43d3b68ff4","NutSetters","","tg457649","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.medium","6","16384","60","tacc","r03c1b06","2019-06-26 00:00:34"] -["5f7483bc-9de6-4345-a045-fcf0c97a62b3","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] -["aee38543-c7c6-4af8-96bf-d0f6d1913d15","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r02c1b03","2019-06-26 00:00:17"] -["536b9461-ecbf-47d7-ab57-3a43209098de","NutSetters","","shanghai","Unknown","Unknown","Unknown","shanghai","Unknown","m1.quad","4","10240","20","Default","r06c3b07","2019-06-26 00:00:11"] -["71c3a5ab-1930-4b38-bd32-999326cba8e1","NutSetters","","nykim","Unknown","Unknown","Unknown","nykim","Unknown","m1.tiny","1","2048","8","Default","r06c4b15","2019-06-26 00:00:25"] -["861c0670-5971-453f-9467-beb274b791ad","NutSetters","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] -["c3eb1b44-506e-4ba5-947c-fa4e1465df28","NutSetters","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.quad","4","10240","20","Default","r02c3b15","2019-06-26 16:00:34"] -["a2992151-b421-400e-9c31-353122f2276f","NutSetters","","upendra","Unknown","Unknown","Unknown","TG-BIO150062","Unknown","m1.medium","6","16384","60","tacc","r07c2b14","2019-06-26 00:00:06"] -["15ed9fb7-2821-456f-a408-0e4fd86a2933","NutSetters","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c1b08","2019-06-26 00:00:56"] -["da8ae9a1-696d-4f57-ae85-3b8126959829","NutSetters","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c4b10","2019-06-26 00:00:12"] -["47792bbe-ab6f-418a-9d48-82c14ac11932","NutSetters","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] -["9a827cf3-4d3f-4c88-a333-8a314c93db32","NutSetters","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r03c3b04","2019-06-26 00:00:12"] -["e2c886c1-90ca-4474-9e5b-2f6884e11eff","NutSetters","","quietjen","Unknown","Unknown","Unknown","quietjen","Unknown","s1.xlarge","24","61440","480","Default","r07c2b07","2019-06-26 00:15:52"] -["af18c2b3-70e6-44ad-b447-9c5f9877ac8d","NutSetters","","fils","Unknown","Unknown","Unknown","TG-EAR180009","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] -["d2dc5a9d-0e29-4914-b88c-86e467bbf640","NutSetters","","hilaryk","Unknown","Unknown","Unknown","hilaryk","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] -["71167345-b9ae-4233-923f-bd873e57f612","NutSetters","","tshep","Unknown","Unknown","Unknown","tshep","Unknown","m1.xxlarge","44","122880","60","Default","r07c2b09","2019-06-26 00:00:37"] -["daabe807-91b0-4b45-aecc-046a7ad6210d","NutSetters","","rmallen","Unknown","Unknown","Unknown","rmallen","Unknown","m1.xlarge","24","61440","60","Default","r07c2b10","2019-06-26 00:00:05"] -["9ab309bc-b822-4455-a468-49648df3f1cd","NutSetters","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c4b11","2019-06-26 00:00:40"] -["a8c6f4b2-7fe5-48d2-89bd-a641cd10e9c3","NutSetters","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c1b08","2019-06-26 00:00:57"] -["bffef4cc-d261-4c0b-9b3c-5c30e86db3cc","NutSetters","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["0a918539-2478-40f0-9260-f83187daa19e","NutSetters","","blakekas","Unknown","Unknown","Unknown","blakekas","Unknown","m1.small","2","4096","20","Default","r06c4b06","2019-06-26 00:00:32"] -["6d043be9-e20c-40b0-aa0a-e2608cf07c3a","NutSetters","","mattremm","Unknown","Unknown","Unknown","mattremm","Unknown","m1.tiny","1","2048","8","Default","r07c2b01","2019-06-26 00:00:10"] -["8d75e2c1-8131-44b0-bd76-536895c29816","NutSetters","","ljosyula","Unknown","Unknown","Unknown","ljosyula","Unknown","m1.medium","6","16384","60","Default","r07c4b12","2019-06-26 00:00:01"] -["80d1ace6-42d9-4092-9bd4-63554693712e","NutSetters","","mhannonj","Unknown","Unknown","Unknown","mhannonj","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] -["12276e05-a719-452e-8a4c-7dd770c6c2a6","NutSetters","","paxton","Unknown","Unknown","Unknown","paxton","Unknown","s1.xlarge","24","61440","480","Default","r01c3b12","2019-06-26 00:00:51"] -["8a33f4e7-54fb-486c-9d27-3c78b585514f","NutSetters","","jreadey","Unknown","Unknown","Unknown","jreadey","Unknown","m1.xlarge","24","61440","60","Default","r01c4b14","2019-06-26 00:00:05"] -["0595170f-ebab-4bcc-9829-cf5df77f7000","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["e1bb8815-3cc9-4034-b626-4ca35c99c4a5","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] -["06d8f85c-7323-46e4-af9c-4a660e9a20af","NutSetters","","sp0090","Unknown","Unknown","Unknown","sp0090","Unknown","m1.medium","6","16384","60","Default","r07c1b14","2019-06-26 00:00:18"] -["5b00f08b-ebb9-4c0f-a3c2-d35283262bca","NutSetters","","zking","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zking","Ibis, Glossy","s1.xlarge","24","61440","480","Default","r07c1b07","2019-06-26 00:00:20"] -["d377ccf2-0961-4122-a018-3052ff5817af","NutSetters","","ishv99","Unknown","Unknown","Unknown","ishv99","Unknown","s1.xlarge","24","61440","480","Default","r02c4b15","2019-06-26 00:00:37"] -["d9c6696e-00dc-4f7f-a8e4-0cba809e128a","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] -["4927f68c-9a2d-4dd7-a137-e894bf0a4633","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c2b08","2019-06-26 00:00:51"] -["4f6a096e-bbfe-4032-b71c-6037b27cd94a","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r02c1b04","2019-06-26 00:00:21"] -["c243f468-b5cc-42aa-bd9c-60c985079c23","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c1b01","2019-06-26 03:51:54"] -["8b8c16aa-e661-4d64-a31f-13e47cef49bf","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b04","2019-06-26 00:00:41"] -["bbda8bbd-2137-4946-826b-0e5f2826cdc8","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r07c2b02","2019-06-26 00:00:24"] -["eceaf113-c326-4233-9efe-e0e8b734bdcf","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] -["a7fb7e11-d74d-491f-87e2-c6ff99a474f9","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r01c1b09","2019-06-26 13:00:25"] -["bac70a49-3785-46a4-b447-2d23ae2e8299","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r02c4b10","2019-06-26 00:00:47"] -["efefe2a5-7607-4eee-b5e3-8b1ff744f504","NutSetters","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r03c3b14","2019-06-26 06:13:25"] -["5f2e73e3-26fa-418d-b3d4-169f90e2d15a","NutSetters","","gmanipon","Unknown","Unknown","Unknown","TG-CDA180009","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] -["1bf46756-8d54-442e-9801-83910808b6ae","NutSetters","","tasmia","Unknown","Unknown","Unknown","tasmia","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] -["7b0f1ad8-ed4b-47e7-bba0-bcad34634f9a","NutSetters","","beshel","Unknown","Unknown","Unknown","beshel","Unknown","s1.xlarge","24","61440","480","Default","r06c4b05","2019-06-26 00:00:47"] -["fee7acad-258a-490a-a362-5417483191ad","NutSetters","","majdavis","Unknown","Unknown","Unknown","majdavis","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["1a8af402-3360-4221-8ab8-41c7adf45c8c","NutSetters","","devon","Unknown","Unknown","Unknown","devon","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["87c3d541-5569-48cd-953a-7dc70f663133","NutSetters","","pcp","Engineering","Mechanical and Structural Systems","Mechanics and Materials","xdmod","Tern, Sandwich","m1.small","2","4096","20","adjunct","r03c1b08","2019-06-26 00:00:37"] -["a2b7efd0-0d7b-48a4-bba0-8da47e7c0231","NutSetters","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b07","2019-06-26 00:00:43"] -["d337316b-627c-433d-bd6f-df9c1e6303a0","NutSetters","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b12","2019-06-26 00:00:01"] -["edf89621-0cd4-48aa-b578-9b7ddc1a283e","NutSetters","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] -["f3dfb26e-9007-42c6-91f6-ad03949d4125","NutSetters","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["0262293c-c4d8-4069-bb0f-5f00f0b8ab94","NutSetters","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b08","2019-06-26 00:00:56"] -["f3c9830d-c73c-4146-ab22-a0d52e931d22","NutSetters","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r03c3b12","2019-06-26 00:00:39"] -["3466ddeb-079f-4cc9-9660-b827344ebefd","NutSetters","","adhage","Unknown","Unknown","Unknown","adhage","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] -["45fba7fe-5f7a-4cb3-a445-1b08f4052d2a","NutSetters","","jsdsmail","Unknown","Unknown","Unknown","jsdsmail","Unknown","m1.medium","6","16384","60","Default","r06c2b07","2019-06-26 00:00:21"] -["5fa98955-0944-4d3a-916f-87883237a9b1","NutSetters","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.small","2","4096","20","Default","r07c1b15","2019-06-26 00:00:19"] -["172df8e9-b2ec-4864-898d-a4d401de85f0","NutSetters","","wstuhr","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wstuhr","Egret, Snowy","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] -["881ba8d5-8cb7-4cec-88a0-de29867e32c9","NutSetters","","nsokol","Unknown","Unknown","Unknown","nsokol","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] -["0a61640d-b915-41d2-a81b-474e01b8f089","NutSetters","","marcusc","Unknown","Unknown","Unknown","marcusc","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] -["862bbdd5-5ec2-43b8-b943-c60227f53b0f","NutSetters","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["91e76f8c-6c68-4cff-b8fd-3294456ea8ac","NutSetters","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c3b02","2019-06-26 00:00:36"] -["f73664e4-7207-42ea-ad55-180d27164a1f","NutSetters","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] -["0091a1c7-2984-4b53-8683-93ef3c922325","NutSetters","","jhallida","Unknown","Unknown","Unknown","jhallida","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["0d8bbbdb-e755-4909-a250-9170459e5580","NutSetters","","cdosborn","Unknown","Unknown","Unknown","cdosborn","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["f1dc72da-c007-4a91-8412-b9b757719100","NutSetters","","dgilbert","Unknown","Unknown","Unknown","dgilbert","Unknown","m1.small","2","4096","20","Default","r06c2b07","2019-06-26 00:00:21"] -["f60ccb64-d856-4202-b2c8-f40009e12f2f","NutSetters","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] -["2ef90d32-7c86-449a-9e48-a19ee5f8b2ec","NutSetters","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.quad","4","10240","20","Default","r02c1b05","2019-06-26 00:00:10"] -["cc230bda-2521-4f13-99d5-db000a3ed565","NutSetters","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c1b06","2019-06-26 00:00:34"] -["eea732b8-53a5-421f-887b-afc7ad6c7577","NutSetters","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] -["88531a32-7dc2-41e8-bb9d-49143c927247","NutSetters","","dyhancoc","Unknown","Unknown","Unknown","dyhancoc","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] -["8811b052-3bcf-4805-8c37-501a94b3bbed","NutSetters","","lhin","Unknown","Unknown","Unknown","lhin","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] -["0d63ccb0-69dd-41fd-bc41-b815ee6d29b8","NutSetters","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["307066d5-0fd4-40fa-a887-c0c507d641fa","NutSetters","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r07c1b12","2019-06-26 00:00:47"] -["24aa72d7-83e9-43e9-8571-ba3241aac403","NutSetters","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.small","2","4096","20","Default","r07c1b14","2019-06-26 00:00:18"] -["7b720c9c-33c1-48f0-b896-7da6013d9498","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["80471527-ddda-42fd-88b3-b2df8bcc5f7e","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["a4fbd089-6628-45c2-802f-3760d9f8dff7","NutSetters","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c2b04","2019-06-26 00:00:38"] -["22f9acb1-8e20-4512-9a14-1d6b7e4d71ea","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:18"] -["3629851f-6caa-48e5-b091-25501c4913fd","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] -["4f4ffedc-1838-456d-ae6e-37b080b59eca","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] -["71c15136-7755-47bb-a48d-3e58cf3f9ae3","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c3b11","2019-06-26 00:00:07"] -["aeee4d91-64aa-43af-b884-29d6c6b5287c","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] -["f7635b04-1d25-454a-8aca-5c2da079a9cb","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r03c2b08","2019-06-26 00:00:37"] -["fc4d5de8-8412-40e7-aabc-69830aee1eaf","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b11","2019-06-26 00:00:48"] -["faf6ff94-19c7-472f-80c9-96819aea6f22","NutSetters","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:19"] -["e16b8084-06a6-4203-ae62-5128ce42ea72","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:05"] -["6adb6e2b-f024-48ce-a30f-a4743f84e986","NutSetters","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","s1.large","10","30720","240","tacc","r06c1b01","2019-06-26 00:00:28"] -["4fe2017e-651c-4f86-b169-b8ea65f8edd0","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xlarge","24","61440","60","tacc","r07c1b08","2019-06-26 00:00:56"] -["29263b0a-c17d-46be-ab65-e52163b24001","NutSetters","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","60","tacc","r06c4b03","2019-06-26 01:00:04"] -["b18c7cae-b615-42af-abd4-7c80473743c7","NutSetters","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","480","tacc","r03c2b12","2019-06-26 00:00:57"] -["33d17b83-ecd1-4acb-9ee8-651cc0ec9864","NutSetters","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] -["c4c7cea6-b4f3-4a7a-955a-8478116302b0","NutSetters","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r03c4b07","2019-06-26 00:00:24"] -["e3bd9c68-7177-4908-b289-83a750e7e5c2","NutSetters","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","s1.xlarge","24","61440","480","Default","r03c1b15","2019-06-26 00:00:02"] -["51edbaa0-d773-447c-8a77-25b249526fa3","NutSetters","","sidpath","Unknown","Unknown","Unknown","sidpath","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["dcf6b123-9cbd-42aa-925f-077733101aa5","NutSetters","","gspeyer","Unknown","Unknown","Unknown","gspeyer","Unknown","m1.small","2","4096","20","Default","r06c2b06","2019-06-26 00:00:49"] -["c5db8df1-08dd-4f9c-80ae-31803cf402ed","NutSetters","","mpierce","Unknown","Unknown","Unknown","TG-DBS160006","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["cf76dceb-7349-419e-b517-287a4c797e79","NutSetters","","madrina","Unknown","Unknown","Unknown","madrina","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["20157572-2da7-4fc2-838d-d9528153d92c","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-ENG170037","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] -["73a5d032-43ea-47e4-84d4-467ca1dcde2b","NutSetters","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","m1.xxlarge","44","122880","60","tacc","r07c3b04","2019-06-26 00:00:18"] -["a91650f3-ccc6-4412-9bb1-95c37a4eddd5","NutSetters","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","s1.xxlarge","44","122880","960","tacc","r03c2b01","2019-06-26 00:00:30"] -["14a98a0c-ab39-48d5-830f-578fd0711bc6","NutSetters","","agopu","Unknown","Unknown","Unknown","agopu","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] -["2b69ef43-27b3-4d2e-b51c-a2877f78d751","NutSetters","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 00:00:40"] -["f6688e09-456d-4d81-8e47-739d8271cc10","NutSetters","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] -["087c2472-c9c7-4849-828b-43281e8134a0","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] -["689044ca-4778-47f5-9ead-e6655826c3e0","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] -["841f2a04-2301-4092-b457-d71b148c60a0","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b03","2019-06-26 15:00:16"] -["007be263-57c9-4404-9f9e-3fd3a1f1bf20","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b06","2019-06-26 00:00:00"] -["2f17849f-c7f8-499d-9b9a-c402c1006e13","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r03c1b01","2019-06-26 01:00:57"] -["3f31ee22-ef04-43a7-b6a9-5d812bf9fd48","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b08","2019-06-26 00:00:56"] -["43ea0a6c-149c-4652-81f6-eda9dc0c05c5","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] -["44e5fb97-daf8-4a9a-b152-971df247c56a","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] -["55fb77fa-3afe-4f7b-a3d8-3c9e68e76ae7","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] -["58f01a50-9b28-4f77-9e86-01991bef14a8","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c4b05","2019-06-26 00:00:39"] -["5c661ca4-52fb-489b-aabe-91c5a53f19c2","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b15","2019-06-26 00:00:37"] -["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b10","2019-06-26 00:00:52"] -["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c4b15","2019-06-26 00:00:52"] -["84d11422-ce49-4ea3-99b9-eef84a08cbbe","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] -["8f8b828a-d3f8-4c03-b3a3-bbd088a484ec","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] -["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b04","2019-06-26 00:00:04"] -["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:04"] -["d8691e8e-7b2b-4a4b-b9e0-ab86a50e4580","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b03","2019-06-26 00:00:07"] -["e5974dad-efee-4a9f-b345-5f82ed4414f3","NutSetters","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b07","2019-06-26 00:00:29"] -["3a7c3eb8-5ad6-4389-8d08-b55faea7cd50","NutSetters","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] -["72b97f40-76b6-4b5c-959e-654554f65441","NutSetters","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] -["f80c09fe-52df-4e77-8f28-274352b81b06","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b07","2019-06-26 00:00:11"] -["54c0198a-0bbe-4216-ac30-cf60b5bf6a03","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["801b8da9-94fb-4fcd-a7cf-345458b7d920","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["af4bfe9c-8f30-4af0-ac87-48b588c62695","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:18"] -["c72f9562-7816-44d1-9e32-756ea1477a1a","NutSetters","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b06","2019-06-26 00:00:03"] -["e8f9732a-de87-4963-89fe-02165128c68c","NutSetters","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b03","2019-06-26 00:00:07"] -["ecc0fca7-66ce-406c-b739-e2f3c157dea6","NutSetters","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-4q","2","11264","20","tacc","r08g03","2019-06-26 00:00:39"] -["357a466b-8093-4e27-81ef-65d7a11871bd","NutSetters","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b11","2019-06-26 00:00:25"] -["9978fb58-2a7b-4961-b21b-3ab25e32d1f9","NutSetters","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b05","2019-06-26 00:00:10"] -["c1579d78-026e-4ab9-ade1-28e86056796e","NutSetters","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["6dd79b93-f318-4c56-b331-fff288483b31","NutSetters","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-16q","8","47104","20","tacc","r08g06","2019-06-26 00:00:08"] -["ca6c37a0-bcdd-4480-a84d-e2d60db8715f","NutSetters","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m2.medium","16","61440","60","tacc","r08c1b08","2019-06-26 00:00:05"] -["01ee20ab-8dde-409e-9556-5c7b55f9a2d8","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.xxlarge","44","122880","60","tacc","r01c3b03","2019-06-26 00:00:08"] -["1b5f0745-6efd-4247-a26c-f7cc23bdad59","NutSetters","","tg837136","Unknown","Unknown","Unknown","TG-DBS180009","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] -["fe2d12dd-423e-4798-aa70-82f6eec4ff30","NutSetters","","pswargam","Unknown","Unknown","Unknown","pswargam","Unknown","m1.medium","6","16384","60","Default","r06c4b07","2019-06-26 00:00:53"] -["a3499254-a95a-4794-bd6c-6a54c406480a","NutSetters","","mjames","Unknown","Unknown","Unknown","mjames","Unknown","m1.xxlarge","44","122880","60","Default","r02c2b04","2019-06-26 00:00:54"] -["dec223e4-6d15-4902-bc8d-678b8e21ff47","NutSetters","","ramya1","Unknown","Unknown","Unknown","ramya1","Unknown","m1.tiny","1","2048","8","Default","r06c2b13","2019-06-26 00:00:14"] -["77b5f6a6-2a5b-4046-a0c3-34676bfb9cef","NutSetters","","bret","Unknown","Unknown","Unknown","bret","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] -["9b726d6f-1cfd-4e0e-9315-a0daf7a174f1","NutSetters","","mesler","Unknown","Unknown","Unknown","TG-BIO170096","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:02"] -["da7ac9d8-dd99-4d1e-9e85-04ccf3395f19","NutSetters","","jeovany7","Unknown","Unknown","Unknown","jeovany7","Unknown","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] -["123708c9-c4ea-4f7b-9ea6-cdcb0c445ae4","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] -["73926b1f-3c59-4c9e-810d-4607b2237eef","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] -["9a854394-904a-4a92-b56d-da9acb807f3b","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c4b10","2019-06-26 00:00:12"] -["d98824c4-f903-42e0-833e-4a87653aa63d","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["04ac96c0-477b-43a0-b20f-12b3ec687443","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] -["0c8f4b51-f48f-43d0-9bd0-a4ae18a0ff50","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c3b03","2019-06-26 00:00:41"] -["22fb6441-a938-45c4-9eda-0d3fcb2242e4","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b12","2019-06-26 00:00:01"] -["335ec001-101d-4bc9-9584-f6431d1efd20","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b11","2019-06-26 00:00:08"] -["6e1df8f7-9f10-4f0f-8c5f-fbe3ce5c50a7","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c2b07","2019-06-26 00:00:17"] -["c51c6c38-5e6f-4da3-af9b-b62ffd85c181","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] -["e48481b8-3696-44cd-af7f-cc76e8b1816a","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] -["4da2876e-7dc6-477d-8ed6-a9b3102fa9aa","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] -["0f47b390-f15b-487d-847f-6a9bb1df40ac","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] -["2a59acc7-17a8-4485-8e7e-48913aee7b55","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c1b08","2019-06-26 00:00:57"] -["51a349c1-dd69-42ca-88aa-016d61c6b144","NutSetters","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b15","2019-06-26 00:00:12"] -["8d85ac29-2762-4674-b885-3561d5b98ffb","NutSetters","","andybeet","Unknown","Unknown","Unknown","andybeet","Unknown","m1.small","2","4096","20","Default","r01c4b03","2019-06-26 00:00:36"] -["0de66347-636d-4830-96b4-603c999541db","NutSetters","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] -["9aac0cb5-e16a-415b-a509-e681e4d4e561","NutSetters","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["b50ae469-6718-444d-9bbf-20d26634a41d","NutSetters","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] -["43d11768-1009-41ec-ad53-a06f62020924","NutSetters","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] -["f3788ca3-1fa6-4b47-a0e4-db9f476f886e","NutSetters","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r01c2b01","2019-06-26 00:00:05"] -["26c2a839-35d6-4582-a0ed-16c5a06d291d","NutSetters","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b07","2019-06-26 00:00:11"] -["38bc4a3e-d0b6-4fe5-8e0c-68d4b83a5558","NutSetters","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b02","2019-06-26 00:00:36"] -["14c39841-ca59-4924-913f-e830ba1f820b","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] -["0493f004-af47-419f-8cb6-942b3b1fac12","NutSetters","","tg858644","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r01c4b02","2019-06-26 00:00:01"] -["8c14b2c2-88dc-4547-aba6-81b0902737c3","NutSetters","","tg858635","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r06c4b04","2019-06-26 00:00:30"] -["1fc48ba3-3f5b-45f6-8da4-8b08f8ea3256","NutSetters","","tg858636","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] -["379b96da-a378-41ef-9f4f-f5d0a0b66d9d","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c3b10","2019-06-26 00:00:40"] -["7da8978d-0330-4f24-a163-b2b0aa2de426","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["e5a9c587-3a56-4f7f-a3cc-c16af3fc54f6","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c2b07","2019-06-26 00:00:09"] -["f76d6fe5-b89b-453a-abfd-4145798dea1c","NutSetters","","cldixon","Unknown","Unknown","Unknown","cldixon","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] -["0d7292d3-f244-41f5-b965-ad1f4445f3d5","NutSetters","","irberlui","Unknown","Unknown","Unknown","irberlui","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] -["839556a5-32ea-4801-83e5-2c251e4f9496","NutSetters","","steckm","Unknown","Unknown","Unknown","steckm","Unknown","m1.large","10","30720","60","Default","r06c1b14","2019-06-26 00:00:29"] -["f9f94f0e-3ba1-440f-a77c-1c2efcb91210","NutSetters","","cganote","Unknown","Unknown","Unknown","cganote","Unknown","m1.tiny","1","2048","8","Default","r02c1b10","2019-06-26 00:00:52"] -["950be30e-a275-4533-9d42-53df6145545b","NutSetters","","pmoriano","Unknown","Unknown","Unknown","pmoriano","Unknown","m1.tiny","1","2048","8","Default","r07c2b02","2019-06-26 00:00:24"] -["7f3a123c-c660-4f13-8d29-40327c6704db","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] -["598adf9a-315c-435d-a1ae-6d0aa072c2f7","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] -["4e502181-cfcd-4139-85cd-590e02ad9b0d","NutSetters","","iwatson","Unknown","Unknown","Unknown","TG-GEO160010","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] -["ba5fadc1-c717-4002-aba4-bd863e381d90","NutSetters","","smm6","Unknown","Unknown","Unknown","smm6","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["0abf53f8-3458-4e17-b3b0-2ec1b83f8ee4","NutSetters","","vlevkov","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlevkov","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["b5be32a5-e6ca-481f-af46-e53c302bf8e1","NutSetters","","vpenchv","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vpenchv","Tern, Sandwich","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] -["9c54e3ca-493c-402f-b08c-73c50469d5b3","NutSetters","","uma","Unknown","Unknown","Unknown","uma","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] -["6c124584-33fd-479a-a8d0-8ac8ba7e1371","NutSetters","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.large","10","30720","240","Default","r07c2b06","2019-06-26 01:48:20"] -["52c0b2a1-5c9f-4cab-8d58-f0b07b90f95b","NutSetters","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r02c4b10","2019-06-26 00:36:36"] -["c773a4d0-d4ce-4cd4-87cd-263e36ccd5cf","NutSetters","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r01c3b15","2019-06-26 06:06:56"] -["e9aa9c55-7800-48a5-b3c5-adcd7daca2b4","NutSetters","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.large","10","30720","240","Default","r07c1b02","2019-06-26 00:00:27"] -["359e855b-953f-445f-aebe-19bb4b4a0c22","NutSetters","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b12","2019-06-26 00:00:42"] -["56cc3381-7a82-4662-8eb5-8ace8f952fd2","NutSetters","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r02c1b13","2019-06-26 00:00:54"] -["db2dc4aa-58c7-4c5e-b635-0cdcd7fbabf3","NutSetters","","maxmck7","Unknown","Unknown","Unknown","maxmck7","Unknown","m1.small","2","4096","20","Default","r07c2b13","2019-06-26 00:00:29"] -["65e78b06-3e64-4b62-aa7f-85ab9db38140","NutSetters","","akanna","Unknown","Unknown","Unknown","akanna","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] -["95a59d3a-9cba-41a5-af10-a2dd1ccff628","NutSetters","","ssteady","Unknown","Unknown","Unknown","ssteady","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] -["4d5e602e-97b7-4839-8818-097d6bcc8e62","NutSetters","","virtual","Geosciences","Polar Programs","Polar Ocean and Climate Systems","virtual","Egret, Snowy","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] -["0cdc4c00-2f93-4399-9191-236c57c57491","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b15","2019-06-26 00:00:19"] -["0ffa15e9-825a-4852-892a-fcdd52cca744","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["1fac2573-5071-4460-bbf0-5016eb107e61","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c1b15","2019-06-26 00:00:50"] -["2467442a-77dd-4d96-b91e-7a6b45a050a1","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["24e8b8a0-2e63-4641-894a-8325ad5f9895","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b03","2019-06-26 00:00:01"] -["409bbceb-d979-43ce-bb6e-42f1e98c2148","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["42107ed1-3f63-4bfa-9957-094dac419db4","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["4660f4a9-2b9e-4501-961c-6f9d9b14f7a3","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["60a704fd-0d9d-4b14-a45d-15510dbe2496","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["8297ddd6-b9d9-4074-bbfb-2e301c6ade0a","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] -["8478604a-40bd-4ff2-91e7-36e7f379f390","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c2b11","2019-06-26 00:00:48"] -["848a4138-6199-4b97-9ca9-74aa5f89b807","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b05","2019-06-26 00:00:22"] -["9f2600fc-9c90-4fef-b939-e9943addb2bd","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b14","2019-06-26 00:00:18"] -["b29f4d37-07e5-487f-8d0f-2c4dfa065ef4","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b16","2019-06-26 00:00:55"] -["bc75c346-1088-4537-bc69-779c2ba9c5b3","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["c961fe87-e906-4ffd-bb0b-ffd9bf8b2cbf","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] -["d5b074f9-a37b-4f44-bf16-08581fb544c6","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["d6517ffd-8c30-43a3-a4d9-e64ca540b23a","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] -["d85684d2-1587-4029-96cd-366b1d3651fc","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c2b05","2019-06-26 00:00:21"] -["ec5bc29a-8773-4e6c-92ee-72799815615f","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c2b11","2019-06-26 00:00:48"] -["fab72e59-5e87-4309-84fd-06ea2920742b","NutSetters","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b05","2019-06-26 00:00:47"] -["b51b68e2-4ea1-43ea-8d93-39f719780e1c","NutSetters","","hannac","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] -["12f08e11-4e8c-4c01-b5c2-72acd3a3d110","NutSetters","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] -["65b13e09-17c1-421c-9dd1-91b5e277eb1f","NutSetters","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r01c4b06","2019-06-26 00:00:29"] -["b35dd35d-2595-4c19-9df5-6ab52a19b14b","NutSetters","","phillity","Unknown","Unknown","Unknown","phillity","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["98a68982-58e2-47e3-a736-c8bef2357db0","NutSetters","","bberlin","Unknown","Unknown","Unknown","bberlin","Unknown","s1.xxlarge","44","122880","960","Default","r03c4b10","2019-06-26 00:00:19"] -["46a035f8-f2b0-44ba-8ec5-08559bb68803","NutSetters","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c3b05","2019-06-26 00:00:08"] -["7d734be4-8193-4c7a-84ab-0a9cf3072516","NutSetters","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c1b15","2019-06-26 00:00:50"] -["94b124b0-0bbf-4924-9f1e-c89e2e2069c5","NutSetters","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r03c1b02","2019-06-26 00:00:02"] -["ccc5f86f-5ed5-432e-8b40-b80440a3a49b","NutSetters","","jselvam","Unknown","Unknown","Unknown","jselvam","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["83c285ea-1152-4008-97ce-3fe6a36259b8","NutSetters","","fils","Unknown","Unknown","Unknown","fils","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] -["f86d7a0e-c454-4026-bad8-920e11a97845","NutSetters","","kelumdi","Unknown","Unknown","Unknown","kelumdi","Unknown","m1.large","10","30720","60","Default","r03c2b06","2019-06-26 00:00:12"] -["3d3e8516-8971-4f0b-bbf6-51d8c3f79a20","NutSetters","","hudson89","Unknown","Unknown","Unknown","hudson89","Unknown","m1.xlarge","24","61440","60","Default","r07c2b08","2019-06-26 00:00:56"] -["d7d3305e-7223-4680-bd7b-deed31af0be9","NutSetters","","kemelian","Unknown","Unknown","Unknown","kemelian","Unknown","m1.xlarge","24","61440","60","Default","r06c3b10","2019-06-26 00:00:27"] -["87d17237-44a5-4480-b0c4-4ed6cb16141a","NutSetters","","tg857970","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["1cc05972-3d46-4490-8fab-1c6aa22094a8","NutSetters","","tg858245","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["73912317-8159-40c6-a3b7-a6989fe5ca7b","NutSetters","","tg858209","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["cb007931-77ae-4fd0-9418-15280593acf5","NutSetters","","tg853683","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["9fd3ab5a-79c6-4908-b5c8-6630e5e664e5","NutSetters","","akamber2","Unknown","Unknown","Unknown","akamber2","Unknown","m1.small","2","4096","20","Default","r07c3b13","2019-06-26 00:00:36"] -["68f78d18-a9f2-4e00-8597-fe04ea53be85","NutSetters","","kmadappa","Unknown","Unknown","Unknown","kmadappa","Unknown","m1.medium","6","16384","60","Default","r03c4b02","2019-06-26 00:00:42"] -["795af622-3fda-44ee-8f8f-10c9ad1407e9","NutSetters","","ktyle","Unknown","Unknown","Unknown","ktyle","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] -["0e37a693-d20c-4046-b75e-b5e29ebd432c","NutSetters","","j1axs01","Unknown","Unknown","Unknown","j1axs01","Unknown","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] -["9bb8cd73-c514-4f6d-af12-2ae28b64711e","NutSetters","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["acd5f004-097f-423a-8255-0ba1954c52a1","NutSetters","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] -["e5c37bb7-376f-4b46-bd04-6c7517efb0bc","NutSetters","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] -["0f04260f-152d-4973-a00e-547844e6650e","NutSetters","","zonca","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zonca","Tern, Sandwich","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] -["24703158-bb10-46e9-9a4e-5939b1b9ec6f","NutSetters","","jhallida","Unknown","Unknown","Unknown","TG-BIO160064","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] -["6f9c5759-4e90-45e9-9405-5ef522d34aac","NutSetters","","bmsamuel","Unknown","Unknown","Unknown","bmsamuel","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] -["3d599f20-2fbf-4b63-ae3f-8f83e26c7184","NutSetters","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r02c3b06","2019-06-26 01:00:59"] -["8b3b2b3c-e47e-4662-b05a-517773bb8a68","NutSetters","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r06c4b10","2019-06-26 00:00:42"] -["c138e77a-ad39-4912-8ce0-c0c1b3cd26e0","NutSetters","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] -["592e585f-6da6-405e-b8d2-f1536fb4efc5","NutSetters","","megm","Unknown","Unknown","Unknown","megm","Unknown","m1.large","10","30720","60","Default","r06c3b05","2019-06-26 14:11:09"] -["d0c1892a-8fde-4c7c-87b7-0b45c0583840","NutSetters","","tantrung","Unknown","Unknown","Unknown","tantrung","Unknown","m1.tiny","1","2048","8","Default","r06c3b04","2019-06-26 00:00:04"] -["4d774298-d1ac-4a04-a193-3943dedb5423","NutSetters","","ntrip","Unknown","Unknown","Unknown","ntrip","Unknown","m1.medium","6","16384","60","Default","r02c4b15","2019-06-26 00:00:37"] -["d11655dd-79fe-4601-83ee-5646370e790a","NutSetters","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r06c4b06","2019-06-26 00:00:32"] -["e8a4cc65-84d9-434e-86c1-e22b207571af","NutSetters","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r07c1b15","2019-06-26 00:00:19"] -["5ea4d354-4b39-49c0-91e0-91c0f0fdca59","NutSetters","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.xxlarge","44","122880","60","adjunct","r02c2b03","2019-06-26 00:00:53"] -["5db3fe4c-90c6-40ca-a3f3-0e3537bfa338","NutSetters","","geo","Unknown","Unknown","Unknown","system","Unknown","s1.xxlarge","44","122880","960","adjunct","r06c2b09","2019-06-26 00:00:12"] -["498f1cac-aa33-4c0b-a318-ca6b922639eb","NutSetters","","nmebadi","Unknown","Unknown","Unknown","nmebadi","Unknown","m1.tiny","1","2048","8","Default","r07c2b10","2019-06-26 00:00:05"] -["1a25eeb4-1241-40c2-b4be-b56f22dfc1ba","NutSetters","","cboettig","Unknown","Unknown","Unknown","cboettig","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] -["8d9c140b-2892-4d44-a8c8-f2f1c7dc460a","NutSetters","","willarno","Geosciences","Polar Programs","Polar Ocean and Climate Systems","willarno","Egret, Snowy","m1.large","10","30720","60","Default","r07c1b16","2019-06-26 00:00:55"] -["3860f159-58c8-48b7-996f-74693d6e142f","NutSetters","","scanchi","Unknown","Unknown","Unknown","scanchi","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["4e8849f6-cc20-411f-b306-b8ee4347852c","NutSetters","","danidub","Unknown","Unknown","Unknown","danidub","Unknown","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] -["77688c7c-ca57-4a8c-b740-b6ceac247978","NutSetters","","fpsom","Unknown","Unknown","Unknown","fpsom","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["ada50cd5-db44-4472-a667-74faef966675","NutSetters","","tg457210","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] -["017e63f8-2ccc-42eb-8fb5-54e57193abec","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.medium","6","16384","60","tacc","r07c1b07","2019-06-26 00:00:20"] -["0ccfbf28-751f-46ff-9464-0c2c2fdd0bf7","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 19:57:51"] -["1844674d-a185-42ed-8514-4d63dcc74b80","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 17:01:10"] -["19230bbc-7a70-49d9-b275-431d7d7fc359","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:26:32"] -["1ab64d90-338b-47c9-86b5-aef59aaed13b","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 19:57:53"] -["2b8e52d4-2d8f-4d64-acf3-6e90f273d174","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b11","2019-06-26 16:38:52"] -["345a9249-ca13-4050-ae8b-a044998f49ac","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 17:00:49"] -["367a6254-6094-46b2-ac15-86f2b44667db","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 17:01:12"] -["38b43fea-e9e6-48bc-b505-cab4549622d1","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 16:35:31"] -["392aea49-91e0-4e51-8633-d08314ea71a6","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 17:01:01"] -["40201487-9071-428c-a902-dc4e52cec04d","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:46:45"] -["413fb5c4-92f3-4977-8e30-bfc0ca08ae39","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c3b05","2019-06-26 10:54:19"] -["4776f42a-402a-480e-9236-f9d39c3df407","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b14","2019-06-26 17:00:52"] -["53037618-3a4d-4712-8ed9-3ddff09aadee","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 11:05:34"] -["69a7f613-c74b-4377-b1bd-5f7cde77f256","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b13","2019-06-26 19:58:09"] -["6dd1d337-de03-4fa8-ad8a-63552a052190","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 16:26:01"] -["6e4c48bd-6637-4074-9d16-9d31f607af6d","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 20:36:16"] -["88b6e3e9-fd0a-4998-a3cf-acbdd9816a91","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 16:38:32"] -["88d3e0e7-ad0f-41d7-a524-75bfe4d8992a","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b10","2019-06-26 11:30:08"] -["9693d53c-bbc4-42ac-9d08-9ab38f3d472e","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b08","2019-06-26 20:36:30"] -["9a2415d4-38d6-4960-96f4-45a5f819d454","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b15","2019-06-26 17:00:54"] -["a08c7729-2196-4be4-b073-2274e9749a2a","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 16:38:41"] -["a720649e-219a-42fd-945f-799a0f6b7e26","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 16:38:29"] -["a8d9db68-8d53-440f-9091-01878b2b4e8a","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b11","2019-06-26 16:39:01"] -["adb59b31-12ff-4129-b103-df552c4832ae","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 19:57:48"] -["b13444fa-a76d-4351-9f1f-c7fca73e4a29","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] -["be428c97-58f2-4eb8-b09e-faa61d15a6ad","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 11:05:05"] -["bfc7a5d9-69bc-4cda-8c9c-34836ea9cc74","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c4b12","2019-06-26 16:38:43"] -["c443e3d7-81e2-4078-9228-a98c9cf3d6dd","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 20:36:33"] -["c9baf336-9bd7-48d3-a74f-da1aa318a6fe","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 17:00:29"] -["cb5ec7d3-d58e-4e7c-b44a-175d7c8358a0","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b08","2019-06-26 19:58:14"] -["cf2095fc-0505-40fc-b7ca-0f0c0951d316","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 20:36:07"] -["dc8122aa-cc3b-4eef-8035-5128e02ce987","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:57"] -["dd4bf9c3-cd17-4dcb-b5b1-f8b3fa39075d","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] -["df3c5475-d67d-4531-9f73-4b1223ed98e3","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 17:01:03"] -["e21965a4-255f-4346-af06-21e0997f8be8","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c2b11","2019-06-26 16:38:34"] -["e3edf674-b383-4950-8849-141a14996527","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b12","2019-06-26 19:58:06"] -["f080805c-2519-482f-bac3-724c1cdbfbf6","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:56"] -["f5d341ae-2775-4bc9-9196-428107ab4590","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 20:36:48"] -["f6f9fdde-2b15-481f-8f1f-89a850182e00","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 20:36:25"] -["f839aadd-2ac7-4101-bf63-e673a8a88efe","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 20:36:56"] -["fbd79a77-4ce3-4c69-9a81-763a14f7e3d4","NutSetters","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b03","2019-06-26 10:54:37"] -["93465331-6c1c-4fc6-95ff-ffa601d1d424","NutSetters","","bsayre","Unknown","Unknown","Unknown","bsayre","Unknown","m1.large","10","30720","120","Default","r03c2b11","2019-06-26 00:00:48"] -["47cfe663-63a7-4dd5-b96f-69296accc505","NutSetters","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] -["91a34535-24be-4aff-9f11-dd916410192c","NutSetters","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r01c2b13","2019-06-26 00:00:08"] -["35e39c6f-7c4e-4e85-8df0-61b781f9d024","NutSetters","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r06c2b11","2019-06-26 00:00:28"] -["49655a01-ca42-4131-84f3-7df056db691a","NutSetters","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] -["aaa9031a-9d50-462f-96d0-e65056afd7ce","NutSetters","","jchuah","Unknown","Unknown","Unknown","jchuah","Unknown","m1.tiny","1","2048","8","Default","r02c1b11","2019-06-26 00:00:25"] -["4f13f65b-7005-432a-a051-f085fe1d4f38","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r02c3b02","2019-06-26 00:00:20"] -["8b4fe4e3-18d8-422c-b20a-debb0f0f29ac","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] -["aabd49fb-0b6c-4787-b717-0a6f7f943256","NutSetters","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.medium","6","16384","60","tacc","r01c4b04","2019-06-26 00:00:46"] -["7dba2f39-9799-4347-b119-14bbbecdd6ec","NutSetters","","jhaber","Unknown","Unknown","Unknown","jhaber","Unknown","m1.xlarge","24","61440","60","Default","r07c1b06","2019-06-26 00:00:26"] -["93522185-0c41-4d9e-97c9-24ea6e2717e8","NutSetters","","sclevey","Unknown","Unknown","Unknown","sclevey","Unknown","m1.small","2","4096","20","Default","r02c3b10","2019-06-26 00:00:40"] -["111f50cc-d3ed-49ae-a8ac-135f15e61150","NutSetters","","sjmiller","Unknown","Unknown","Unknown","sjmiller","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] -["81a15df9-ca8d-4a1f-9958-370d980d0d01","NutSetters","","josconno","Unknown","Unknown","Unknown","josconno","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] +["Instance ID","Resource","Service Provider","System Username (Deidentified)","User","Decanal Unit","Department","PI Group","Project","Principal Investigator","Instance Type","Number of Cores","Memory(MB)","Root Volume Size","Domain","Host","Start Date"] +["7374150b-3c87-47bc-b27f-69c00197871c","OpenStack","screw - Screwdriver","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c1.m4","1","4096","20","Default","srv-p24-35.cbls.ccr.buffalo.edu","2018-04-20 14:11:10"] +["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","screw - Screwdriver","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-32.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] +["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","screw - Screwdriver","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-41.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] +["565e8a1e-a83e-4104-a32c-85c79b7737fd","OpenStack","screw - Screwdriver","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c4.m16","4","16384","20","Default","srv-p24-34.cbls.ccr.buffalo.edu","2018-04-26 17:38:36"] +["a6c4053f-ba16-472e-9fe5-0196775acdc9","NutSetters","screw - Screwdriver","","allopatr","Unknown","Unknown","Unknown","allopatr","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] +["7600bd16-2447-4a94-88eb-0b7cc225f272","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] +["b76f580c-4ff6-46c7-a6a2-f46479a635c7","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] +["cb58a528-5063-4bda-95cd-e307971ebc5b","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.small","2","4096","20","adjunct","r03c4b07","2019-06-26 00:00:24"] +["1330d7c1-7139-4d10-bcec-1e8610962615","NutSetters","screw - Screwdriver","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r01c4b13","2019-06-26 00:00:23"] +["faca7e03-10ac-448a-906e-bff921375139","NutSetters","screw - Screwdriver","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["2332bf52-f34a-43c8-8d13-2f67d03ad745","NutSetters","screw - Screwdriver","","ljcohen","Unknown","Unknown","Unknown","ljcohen","Unknown","s1.xxlarge","44","122880","960","Default","r06c2b14","2019-06-26 00:00:48"] +["11e0e563-d5e7-40a2-a379-ecda48435265","NutSetters","screw - Screwdriver","","ppani","Unknown","Unknown","Unknown","ppani","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] +["7860ba4d-a348-4684-9cb9-90fe83fe39a4","NutSetters","screw - Screwdriver","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 22:43:05"] +["c553f329-674f-4270-ae7d-920a9d442f08","NutSetters","screw - Screwdriver","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r02c3b04","2019-06-26 22:04:17"] +["ec876f2e-da3d-441c-99a8-a59c70affa05","NutSetters","screw - Screwdriver","","dikim","Unknown","Unknown","Unknown","dikim","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] +["50b55380-e1a8-4e48-a1e9-4e8e342b5162","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.small","2","4096","20","tacc","r07c1b10","2019-06-26 00:00:04"] +["8498b471-0494-447a-abd9-6f18d85b7a40","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] +["cc4503ed-103a-4f8c-b0a6-d21da020cdce","NutSetters","screw - Screwdriver","","sruthi12","Unknown","Unknown","Unknown","sruthi12","Unknown","m1.medium","6","16384","60","Default","r02c4b07","2019-06-26 00:00:18"] +["06c8b241-42a7-4960-82d0-a593ac770e5b","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.tiny","1","2048","8","tacc","r01c2b16","2019-06-26 00:00:42"] +["09ddf2f8-fa48-4ce8-9536-501c165a1db0","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r07c2b01","2019-06-26 00:00:10"] +["3fb17152-b49f-4a03-a079-0a2990cf570d","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] +["40482879-2219-4dc5-b45c-1bfda108be05","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r02c1b06","2019-06-26 00:00:53"] +["79d7c087-ad59-4b54-9f76-aefd75051239","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c1b08","2019-06-26 00:00:37"] +["a1250ffe-26c6-4bbe-9a9e-5fc4b4af0712","NutSetters","screw - Screwdriver","","rsignell","Unknown","Unknown","Unknown","TG-OCE170022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] +["5b363a28-598b-47c0-b0f3-df4fcdcb8418","NutSetters","screw - Screwdriver","","wzhy2000","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wzhy2000","Egret, Snowy","m1.small","2","4096","20","Default","r07c1b07","2019-06-26 00:00:20"] +["f93059aa-4d4f-4cba-9c9d-e13014f0d4af","NutSetters","screw - Screwdriver","","mscott","Unknown","Unknown","Unknown","mscott","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["945191a1-8994-4d27-a3ff-7eff5968ad76","NutSetters","screw - Screwdriver","","dmm","Unknown","Unknown","Unknown","dmm","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] +["d60d6413-52e6-4d47-9c0c-d6258dcbf777","NutSetters","screw - Screwdriver","","dagrawa2","Unknown","Unknown","Unknown","dagrawa2","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["dde9e2fb-a519-4299-a35f-8a096a46404c","NutSetters","screw - Screwdriver","","vlflores","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlflores","Ibis, Glossy","m1.medium","6","16384","60","Default","r02c3b07","2019-06-26 00:00:48"] +["679ae462-5d27-41ff-b122-b5ab5d7af9e5","NutSetters","screw - Screwdriver","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r07c1b04","2019-06-26 00:00:33"] +["8605d428-c3f8-496d-92f3-35e6f6008d07","NutSetters","screw - Screwdriver","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r06c2b05","2019-06-26 00:00:02"] +["5e23125d-f4b4-4601-a270-ae63cec7f11f","NutSetters","screw - Screwdriver","","lmundia","Unknown","Unknown","Unknown","lmundia","Unknown","m1.tiny","1","2048","8","Default","r01c2b15","2019-06-26 00:00:27"] +["19ca89a0-91b4-4dd6-97c2-fed90741fbfb","NutSetters","screw - Screwdriver","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.tiny","1","2048","8","Default","r07c4b03","2019-06-26 00:00:36"] +["a08e9d1d-bd3f-496a-bb94-271d0234f635","NutSetters","screw - Screwdriver","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] +["07b0d86a-acde-443a-8076-ccf84555d18b","NutSetters","screw - Screwdriver","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r02c4b15","2019-06-26 00:00:37"] +["86191a2e-7251-4bc4-971d-9b027fbf2485","NutSetters","screw - Screwdriver","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] +["f6feb15c-ad29-4376-a8f9-bbb9300b245e","NutSetters","screw - Screwdriver","","jrmales","Unknown","Unknown","Unknown","jrmales","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b05","2019-06-26 00:00:22"] +["f20a18a4-26c3-49ff-b8b7-07e7ece2ac71","NutSetters","screw - Screwdriver","","aalmsaee","Unknown","Unknown","Unknown","aalmsaee","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] +["e63e2006-7a3d-4c98-b0d7-fe97f8deaf18","NutSetters","screw - Screwdriver","","td160021","Unknown","Unknown","Unknown","td160021","Unknown","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] +["363f661e-4cff-4395-b284-560f84f48198","NutSetters","screw - Screwdriver","","ssud2","Unknown","Unknown","Unknown","ssud2","Unknown","m1.tiny","1","2048","8","Default","r02c2b09","2019-06-26 00:00:50"] +["0b8ad228-28c2-4dc7-9774-9d9d75c1eb96","NutSetters","screw - Screwdriver","","millera2","Unknown","Unknown","Unknown","millera2","Unknown","m1.small","2","4096","20","Default","r02c2b02","2019-06-26 00:00:55"] +["5ea6533a-1ee6-4d48-99ec-28857e0cac9e","NutSetters","screw - Screwdriver","","lbao235","Unknown","Unknown","Unknown","lbao235","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["0b294aee-3df3-4d55-84ef-c4a55ddd2fdb","NutSetters","screw - Screwdriver","","chanchal","Unknown","Unknown","Unknown","chanchal","Unknown","m1.xlarge","24","61440","60","Default","r01c4b13","2019-06-26 00:00:23"] +["65890522-87d8-4bad-86a0-f546db0a2c4c","NutSetters","screw - Screwdriver","","ssmallen","Unknown","Unknown","Unknown","ssmallen","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["0d001e36-872f-4c9a-b0f9-fba4c2527467","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r06c2b13","2019-06-26 00:00:14"] +["25e46cbc-009f-4cfb-8297-b25c4289d146","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c1b03","2019-06-26 19:00:05"] +["6f502861-fa35-4543-9d44-9760a6c3e7db","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] +["bed56745-69cb-40f1-85d2-9ad4134a1352","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["e4393488-d995-48dc-bbfc-2c62c48af58d","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] +["1c589f8f-11ca-4c2f-bf43-5f6e14ae8e8c","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.large","10","30720","60","Default","r02c1b16","2019-06-26 00:00:26"] +["4733d86e-3e10-4252-9dc0-e5f7989ba322","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r07c4b03","2019-06-26 00:00:36"] +["d3147d53-ee4f-4ecf-9968-9daf879a8872","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r06c2b03","2019-06-26 15:00:16"] +["3cff64a0-461a-497c-8e0b-ab33e5a78e7d","NutSetters","screw - Screwdriver","","kangplee","Unknown","Unknown","Unknown","kangplee","Unknown","m1.tiny","1","2048","8","Default","r07c4b10","2019-06-26 00:00:12"] +["3d7589c6-3987-4559-a28a-562bf74e15c2","NutSetters","screw - Screwdriver","","wbt3","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wbt3","Tern, Sandwich","m1.small","2","4096","20","Default","r02c3b15","2019-06-26 00:00:40"] +["a31e1790-67d3-4b42-a7ca-af40090e6998","NutSetters","screw - Screwdriver","","jpummil","Unknown","Unknown","Unknown","jpummil","Unknown","m1.large","10","30720","60","Default","r06c1b01","2019-06-26 00:00:28"] +["b9c560b9-1066-483c-895e-aebb8b3c7ac1","NutSetters","screw - Screwdriver","","upendra","Geosciences","Polar Programs","Polar Ocean and Climate Systems","upendra","Egret, Snowy","m1.medium","6","16384","60","Default","r07c2b10","2019-06-26 00:00:05"] +["2c1b9f69-83ee-44c8-8a8d-28b0e751750e","NutSetters","screw - Screwdriver","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","m1.tiny","1","2048","8","Default","r06c1b01","2019-06-26 00:00:28"] +["c926ef79-69ea-4258-85c4-6a7859887f91","NutSetters","screw - Screwdriver","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","s1.large","10","30720","240","Default","r07c2b04","2019-06-26 00:00:51"] +["ca744fb8-c727-4699-a88d-26ed4fc5ee22","NutSetters","screw - Screwdriver","","zc8304","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zc8304","Ibis, Glossy","m1.small","2","4096","20","Default","r07c2b03","2019-06-26 01:00:12"] +["0a7b0b67-cebe-4d1f-8cfe-cb8c19416e80","NutSetters","screw - Screwdriver","","sharnly3","Unknown","Unknown","Unknown","sharnly3","Unknown","m1.small","2","4096","20","Default","r07c2b04","2019-06-26 00:00:51"] +["08b48a44-07f4-4a67-b50f-aae352e426dd","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] +["4133ea6f-e685-4f99-85bf-613175d93375","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] +["996ceef3-b429-450c-8e9f-bcd4fadba509","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] +["f6259fb3-d893-410a-95cd-4588a78da9fe","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:01"] +["0396a519-7380-4860-a819-ef70c3e8326a","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] +["196432e9-546a-41f9-968d-a09a653c21fc","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["1cd67c1e-fcda-4137-be3b-ce89e6ed7133","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] +["1dda1c51-163e-450c-b33e-dc45ad327eef","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] +["3ce24a13-c257-4006-b0d2-31f6b4397e04","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] +["f3dbc55d-35d5-4337-a9f9-799acbd5fb50","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["8dc31df4-44b2-41b5-b373-927a7385bf1f","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] +["aa864be4-5935-40f7-8d07-b0ceda55a5b8","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] +["70b16773-8eef-418a-a71e-a65be78282f0","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","s1.xxlarge","44","122880","960","Default","r07c4b05","2019-06-26 00:00:12"] +["586a61ae-184b-4d3c-b737-04121a3ef31b","NutSetters","screw - Screwdriver","","jcali","Unknown","Unknown","Unknown","jcali","Unknown","s1.large","10","30720","240","Default","r02c3b15","2019-06-26 00:00:40"] +["66e04098-1c2e-4101-a0c7-9be962fd1381","NutSetters","screw - Screwdriver","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] +["252299b1-d473-460d-aef8-cac75455b74b","NutSetters","screw - Screwdriver","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["0b802076-385b-49c2-8c51-6f2c1ed84f30","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r03c1b14","2019-06-26 00:00:00"] +["3249c779-9400-452c-a73d-4b5c3bbc4627","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c3b02","2019-06-26 00:00:58"] +["452b808c-dc3e-4a57-99c1-8cc1bd5145e4","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c2b02","2019-06-26 00:00:24"] +["6dd51a85-282b-4de2-ae41-ed5a28469690","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b10","2019-06-26 00:00:41"] +["84858cd4-9a68-4021-b4ce-a7c0b06eaa66","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c2b11","2019-06-26 00:00:01"] +["8bbde70e-1f0a-427b-8081-ebfe3a4672b2","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c2b11","2019-06-26 00:00:28"] +["8f402416-84c1-4fad-ac6c-e4f1e5ec3ed0","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b06","2019-06-26 00:00:32"] +["95219389-b2ca-4332-9146-40eeb857faa0","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r01c4b10","2019-06-26 00:00:34"] +["9e573e70-f6b8-47d5-8756-1c3d2e755f49","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c4b14","2019-06-26 00:00:18"] +["a49c2306-188b-4426-b30f-ef7ba2315c6b","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c1b09","2019-06-26 00:00:42"] +["b84a9c69-029f-4493-ad18-7eae58613983","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b14","2019-06-26 00:00:29"] +["cad0eff4-9d6b-4651-a6ff-247568a8b4dd","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b04","2019-06-26 00:00:33"] +["7f40857a-ef94-4c1d-93d1-197a559c23fb","NutSetters","screw - Screwdriver","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r07c1b03","2019-06-26 00:00:07"] +["94b88a4e-8804-4e88-891d-3b1b14abbe11","NutSetters","screw - Screwdriver","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] +["afd12b5e-748f-49bf-a2bc-f7bf33aa0330","NutSetters","screw - Screwdriver","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] +["d2f48b7a-2d69-426e-9a51-adef4f79983e","NutSetters","screw - Screwdriver","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r02c2b08","2019-06-26 00:00:09"] +["8de7c2a7-889b-4d4a-9c44-65176f094166","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r02c2b10","2019-06-26 00:00:04"] +["9773ae53-cb86-406c-9163-dfeed292cb29","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b13","2019-06-26 00:05:22"] +["c06912a6-dba8-418f-8b69-e4e6bac7e69c","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 18:44:54"] +["4cab08f2-76b2-4eaa-8ae5-9824513f53c1","NutSetters","screw - Screwdriver","","tskluzac","Unknown","Unknown","Unknown","tskluzac","Unknown","m1.large","10","30720","60","Default","r07c2b10","2019-06-26 00:00:05"] +["332d0b6a-2c5c-4195-a575-6075763422df","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c3b15","2019-06-26 00:00:16"] +["9769327f-810a-475c-a44d-1eede518ca61","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c1b13","2019-06-26 00:00:39"] +["106dcbb3-78e5-42df-bf50-872cd98720ed","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c3b13","2019-06-26 00:00:57"] +["7a1e2a7d-a532-40b8-9249-9ee0c9656971","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r07c2b02","2019-06-26 00:00:24"] +["936ca9f1-0f22-49bf-b984-eb5a953e29e6","NutSetters","screw - Screwdriver","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] +["8b5030b7-7387-4d02-a794-03eb908034f9","NutSetters","screw - Screwdriver","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.medium","6","16384","60","tacc","r07c2b01","2019-06-26 00:00:10"] +["6cd74e20-eff7-46a7-96db-d9de9174c9fa","NutSetters","screw - Screwdriver","","mworinge","Unknown","Unknown","Unknown","mworinge","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] +["90495dd5-bf0e-4cbd-a6bf-4bb64361c5b2","NutSetters","screw - Screwdriver","","eknox","Unknown","Unknown","Unknown","eknox","Unknown","s1.xxlarge","44","122880","960","Default","r03c1b07","2019-06-26 00:00:22"] +["0ae7a69d-da0c-47fe-9b68-34dd9065063b","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] +["0f31f83f-6cf8-4dc4-a97c-80da564bc3e7","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] +["a7a60145-68b8-45db-9052-f0b4670b0435","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["ec5cba0d-716f-4d39-a025-4f3352d3985c","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] +["f7493563-62e9-470b-ac9f-4eb68de2c486","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b02","2019-06-26 00:00:02"] +["0fef90d3-2626-4805-9a03-ec14669440f8","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.large","10","30720","60","tacc","r07c1b14","2019-06-26 00:00:17"] +["5ffa6463-d78a-4294-8a3f-9a65905f7fa0","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","s1.large","10","30720","240","tacc","r02c1b08","2019-06-26 00:00:16"] +["452c4e57-b44c-45a9-be85-3d4005b7a28a","NutSetters","screw - Screwdriver","","yclu","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yclu","Egret, Snowy","s1.xlarge","24","61440","480","Default","r01c2b10","2019-06-26 00:00:17"] +["acff346d-1acf-4348-a305-117ebf7488dc","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.tiny","1","2048","8","tacc","r06c2b07","2019-06-26 00:00:21"] +["19c60e43-7bd6-4f4f-a91f-dcf27072b4a3","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:41"] +["72221a29-1270-4353-b332-86b495dfb2a4","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b08","2019-06-26 00:00:57"] +["923ccd9c-e0fd-46c7-ab0a-d9512f6f1131","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b07","2019-06-26 00:00:43"] +["ad89d37d-e05b-41f7-b77c-487d0bece703","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] +["ae330718-7ef1-429b-ad37-ec6f40f07711","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] +["caadd360-3ee7-44e7-9113-8113c329b747","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["ee96a2b5-bc8e-4c46-a666-c987b113703f","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["18995afa-2edc-457c-8cd6-9b653d6c6ef0","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] +["19ec4a6f-bced-485e-bbd9-e1bf5f6aa348","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c2b07","2019-06-26 00:00:42"] +["3663294c-f4dd-488f-a49e-127f23449bf1","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c1b03","2019-06-26 00:00:07"] +["3a3c458e-1b4d-48d6-9056-2b6a3b9e1c25","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["4f4951f9-48d3-4d47-94f9-3bcf6c230903","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] +["6410da80-e5b1-4520-9eee-a92ab93c79b0","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b04","2019-06-26 00:00:04"] +["64fd8888-4063-49ae-ba6c-8438bdfd7b15","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c1b14","2019-06-26 00:00:29"] +["6dbb2280-cb34-4f64-9e8d-f77596e4f095","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c1b09","2019-06-26 00:00:06"] +["7bce86ae-037c-4141-b146-1b2ed0ee8a1b","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["9399443c-a368-408d-9ae4-6765876924fc","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c3b12","2019-06-26 00:00:51"] +["9482e6be-ecd5-449c-bb46-20df2402c0a3","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b02","2019-06-26 00:00:24"] +["978c0fbd-bbe5-449e-9afb-2ab7121a3f28","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b07","2019-06-26 00:00:17"] +["df5df764-2a01-4ce1-818e-e89cb7c98287","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] +["ec7b8779-8c7e-40ff-ab3b-12c9ed5daaaa","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c4b13","2019-06-26 00:00:23"] +["dd16f410-e8e7-498b-b9dd-3722ece48816","NutSetters","screw - Screwdriver","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.small","2","4096","20","adjunct","r06c4b05","2019-06-26 00:00:47"] +["af914abc-8773-48f5-b526-13fa2baf5465","NutSetters","screw - Screwdriver","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.xlarge","24","61440","60","adjunct","r07c3b05","2019-06-26 00:00:46"] +["381f77a7-eaa4-4264-ade9-b508ea20f423","NutSetters","screw - Screwdriver","","shayyag","Unknown","Unknown","Unknown","shayyag","Unknown","m1.small","2","4096","20","Default","r07c2b11","2019-06-26 00:00:48"] +["2c8dd9ce-efb2-4006-bc9a-da2dbe2a51c0","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r07c1b01","2019-06-26 00:00:01"] +["41d28667-77f8-4f62-8910-245dbad7a519","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] +["834a8a95-f650-48a8-9e6d-46f95cac9aef","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c1b10","2019-06-26 00:01:02"] +["b1ea880d-42a4-4301-b5a4-599ebdbf53d3","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] +["c7165fc2-4081-4c65-8925-784964c966e8","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r01c1b04","2019-06-26 00:00:07"] +["b4ba5f0d-8875-4f30-bc40-b94a8daabc20","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] +["c1563c71-d35c-4197-8e79-1aef5262b5fd","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["dfc5ff98-060c-46fb-ad3b-7d8643647404","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] +["37b06c82-ec8f-4052-af19-fa946eeb204f","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] +["ae97d816-189c-479e-a81b-45fa483e1cb4","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["4721fbae-32e0-46ae-a9d3-88322f222b3c","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b11","2019-06-26 00:00:07"] +["4d682c6f-27e3-42ee-9713-fd6e09459fe0","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["4f34dd83-f08e-4202-9c92-a95dd8d5a9cb","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b02","2019-06-26 00:00:36"] +["57af9f16-5a9a-4c61-a2c4-f729587691cc","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["79ef6f8c-6146-4683-856f-d8c307ccdd50","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r02c1b10","2019-06-26 00:00:51"] +["05ed5f32-f86a-46ab-ac59-d7f40c8bde59","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] +["57ced9da-be8b-42e1-ac41-e043a94a8e47","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.medium","6","16384","60","tacc","r06c1b13","2019-06-26 00:00:39"] +["07fa07bd-9b7e-44f9-abf8-4ff8a32d3961","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 08:20:14"] +["0b5eef4c-c408-43a1-a405-30f3f9b58973","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b05","2019-06-26 06:45:13"] +["5d8d0cd3-dfc3-4127-b5be-d554cd6030b7","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b09","2019-06-26 08:20:21"] +["687a7ba1-d464-4b45-be19-cde29b4425a1","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 08:20:28"] +["7f59108a-2543-422c-a62d-4bec27c5f234","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c2b07","2019-06-26 06:45:29"] +["f8efe9c3-e19c-46ae-84da-c5ecd73ed542","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r02c2b01","2019-06-26 06:40:12"] +["166a50f1-6ef6-4f33-8657-e5a956f6771d","NutSetters","screw - Screwdriver","","dpazruiz","Unknown","Unknown","Unknown","dpazruiz","Unknown","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] +["5e4dcee0-7df4-41fb-98bb-57592f6f7c06","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r07c1b11","2019-06-26 00:00:03"] +["ad983ec3-bcbb-428b-9ea0-d0b861fa0aa4","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c2b02","2019-06-26 00:00:56"] +["b5668e54-ee77-4b03-a6d6-7aae4f4b021f","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b02","2019-06-26 00:00:53"] +["c19b7af6-9111-4bef-aa62-30137a8ab499","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b01","2019-06-26 00:00:08"] +["c226f962-3a23-4d89-8b4e-27d7bf802fd2","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b05","2019-06-26 00:00:58"] +["e1d6ab63-82a3-4920-897e-ad66c92234f7","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b09","2019-06-26 00:00:39"] +["fdda9ba9-2895-4b9e-840b-fe3a581d8869","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c1b15","2019-06-26 00:00:26"] +["42fec381-64f5-4395-afd8-36acfb478997","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b16","2019-06-26 00:00:45"] +["551f49fd-a800-4797-b8c3-2e7e26de5243","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r07c3b15","2019-06-26 00:00:38"] +["6473619b-a915-40e3-ad8a-60bb1e538faa","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b11","2019-06-26 00:00:49"] +["a9756c07-2683-4c57-91a3-419b47a4c866","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b13","2019-06-26 00:00:08"] +["b4a7f7e9-a873-48da-8aee-8457920339da","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c4b06","2019-06-26 00:00:29"] +["db373e66-c954-4b35-bc75-84ad731599a9","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b04","2019-06-26 00:00:02"] +["f0bf2097-cfe1-4805-bdbb-c3849d3cda4f","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b12","2019-06-26 00:00:25"] +["f5c2f799-b2ad-4e9f-af0a-976ecf32f9e7","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r06c2b04","2019-06-26 00:00:38"] +["fd1b8017-58c3-402c-9893-3ea6c43a0717","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r02c3b04","2019-06-26 00:00:37"] +["b3a9918b-37d9-460c-92b1-9d202b0b7f30","NutSetters","screw - Screwdriver","","dtyoung","Unknown","Unknown","Unknown","dtyoung","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] +["b12bdb88-5032-40f2-8e13-eb646fc93776","NutSetters","screw - Screwdriver","","stephd","Unknown","Unknown","Unknown","stephd","Unknown","m1.medium","6","16384","60","Default","r01c2b07","2019-06-26 00:00:42"] +["98b3a9d0-7921-4620-a4d9-c9d4836cf14c","NutSetters","screw - Screwdriver","","ychatel","Engineering","Mechanical and Structural Systems","Mechanics and Materials","ychatel","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["adbfba12-c870-46ac-ace4-ccaafd732d24","NutSetters","screw - Screwdriver","","bake1349","Unknown","Unknown","Unknown","bake1349","Unknown","s1.xxlarge","44","122880","960","Default","r01c1b02","2019-06-26 00:00:12"] +["51589a10-968b-4ee0-a5f5-0c578827452a","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] +["61161601-6045-4ebf-83c0-179cce6b1431","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b12","2019-06-26 18:41:03"] +["7a662c2e-2828-4cea-ad92-9bf3dc6d9201","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] +["80cc3e60-8089-4e84-84e0-b06e813bd211","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b06","2019-06-26 00:00:15"] +["a1f310a7-5673-421f-b205-75c51af8a943","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["cd2ce889-7abf-41bf-ad8f-817bcda11ed4","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["cf5ae142-de41-4ee2-9905-3bc8e1e99c0b","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c4b13","2019-06-26 00:00:52"] +["d731f4d8-11e8-421c-a7f0-24eb15441eb2","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b13","2019-06-26 00:00:04"] +["0abe27fa-36b5-492f-aab3-a9bbd594d7b0","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c3b06","2019-06-26 00:00:12"] +["457113e9-32f5-4bd4-8d6f-be22cb59deb4","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c1b02","2019-06-26 00:00:27"] +["4b74d273-0e06-415f-af46-75a1eaea0fcc","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] +["ca763831-5715-48ce-aae0-49f684d056dd","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r02c3b15","2019-06-26 00:00:40"] +["05aca4a3-5f99-4120-9a11-7fc37e04e0bb","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b15","2019-06-26 00:00:12"] +["f86b42b1-5b2e-41b3-96da-7cc252312961","NutSetters","screw - Screwdriver","","kloster","Unknown","Unknown","Unknown","kloster","Unknown","m1.xlarge","24","61440","60","Default","r03c3b06","2019-06-26 00:00:38"] +["8a0cd2a0-07b3-474c-a01f-b29170d3c549","NutSetters","screw - Screwdriver","","wsang","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wsang","Tern, Sandwich","m1.tiny","1","2048","8","Default","r02c2b02","2019-06-26 00:00:55"] +["0c95a3c7-ea0b-411f-90d8-9a360f70b895","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["17fb59a8-362e-4dee-9f2b-e8f20c320884","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] +["9b371f81-1f4c-4c68-8e24-3cda5712a89d","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:17"] +["9d152447-71b9-4ff8-b4db-ff34edbc3d2e","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] +["a86f3d0b-29fd-428a-a85d-11854101fe16","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] +["c286e591-a8b7-40a4-97d7-7ed3263075e0","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] +["4341f3f0-e7d6-4577-b55c-2c730d24cdc0","NutSetters","screw - Screwdriver","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r07c1b04","2019-06-26 00:00:33"] +["7b94f6d7-6447-4c4b-9067-675751dcc323","NutSetters","screw - Screwdriver","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] +["b4c7b513-b7b9-460b-b89c-84bc9418dd6f","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","60","tacc","r06c3b02","2019-06-26 00:00:36"] +["fc48b9b5-209e-458d-9011-2967debb88ec","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","120","tacc","r06c3b13","2019-06-26 00:00:57"] +["ae616f5f-a853-43e6-9e73-a92c1561fc8b","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","s1.xlarge","24","61440","480","tacc","r03c2b06","2019-06-26 00:00:12"] +["780e2422-455d-4c5a-9165-27d930f52378","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI160006","Unknown","m1.small","2","4096","20","tacc","r06c3b15","2019-06-26 00:00:16"] +["3f566e21-4af4-4e22-8888-5d25bb97a190","NutSetters","screw - Screwdriver","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] +["a5a2364c-7bc0-4d3d-92cc-89a98dcee424","NutSetters","screw - Screwdriver","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r03c4b13","2019-06-26 00:00:04"] +["46f70d4d-115e-40b7-845e-923aca662f99","NutSetters","screw - Screwdriver","","shzh9814","Unknown","Unknown","Unknown","shzh9814","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] +["1852e248-90fc-47d5-9d97-caddb09400a7","NutSetters","screw - Screwdriver","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b05","2019-06-26 00:00:10"] +["79b7185a-6940-4596-9d85-246d2920eb8b","NutSetters","screw - Screwdriver","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b03","2019-06-26 00:00:17"] +["a834476d-21f5-4125-b790-c4502ed33ff9","NutSetters","screw - Screwdriver","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] +["b69d8812-7858-4117-8aa7-fb8c8f4b6edf","NutSetters","screw - Screwdriver","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.small","2","4096","20","Default","r06c1b11","2019-06-26 00:00:06"] +["7a355cb4-d213-4423-b30c-30200b806ffa","NutSetters","screw - Screwdriver","","bhaakens","Unknown","Unknown","Unknown","bhaakens","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] +["a607be0e-3aed-426e-b706-c9cf9881002a","NutSetters","screw - Screwdriver","","rauta","Unknown","Unknown","Unknown","rauta","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["eeab4e1f-cebf-49af-8bd1-60122d0d4083","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","m1.medium","6","16384","60","Default","r07c3b06","2019-06-26 00:00:12"] +["5a724a10-1923-40c5-8c33-d727ed7844b7","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","s1.large","10","30720","240","Default","r03c4b13","2019-06-26 00:00:04"] +["562c2d1b-63bc-4e89-a873-90dc3c300aa8","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r03c4b07","2019-06-26 00:00:24"] +["621e173b-9a15-4b15-bfbe-cdbb74851283","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r07c1b01","2019-06-26 00:00:01"] +["c8f69d6d-4c05-40e1-80b4-eef28cbc26be","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r06c1b07","2019-06-26 00:00:21"] +["764be22a-dc91-4430-a733-216eaafe7015","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r02c4b15","2019-06-26 00:00:37"] +["86eb2cfc-f9c5-4c2b-a9ad-f07df1bf2992","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] +["886c56b9-460c-4a9a-873e-29c8154f752d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r06c3b07","2019-06-26 00:00:11"] +["e8b86f3a-d817-4936-bd21-501088766c21","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c4b13","2019-06-26 00:00:59"] +["e9da6523-d9af-45ef-bed1-263a2f2c837e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r03c3b13","2019-06-26 00:00:00"] +["49a87a04-eee4-4fa2-84b2-857cca8ba454","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c4b11","2019-06-26 00:00:10"] +["fe9bc7cd-9989-4953-8c9d-324189aa804c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c1b08","2019-06-26 00:00:37"] +["51f2e510-03c3-4aa6-914a-48f707927164","NutSetters","screw - Screwdriver","","amco","Unknown","Unknown","Unknown","amco","Unknown","m1.large","10","30720","60","Default","r02c3b15","2019-06-26 00:00:40"] +["21d63405-af1f-46e3-8124-879682df8a9e","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","TG-SES180024","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] +["221ed886-808b-4a0b-8b67-162e1b3102f7","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CIE160029","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["0ade6a93-a0b8-42fd-8218-80f7ad711c52","NutSetters","screw - Screwdriver","","grcramer","Unknown","Unknown","Unknown","grcramer","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] +["d4ebe441-f406-4420-8873-828194f2e9a1","NutSetters","screw - Screwdriver","","rasc5939","Unknown","Unknown","Unknown","rasc5939","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:48"] +["a98b0dca-bcde-4505-bd4d-967ef56b990e","NutSetters","screw - Screwdriver","","tg834860","Unknown","Unknown","Unknown","TG-BIO170103","Unknown","m1.medium","6","16384","60","tacc","r02c3b07","2019-06-26 00:00:48"] +["97c83306-8f25-4ac7-8396-e8c91b5c46a4","NutSetters","screw - Screwdriver","","jdakka","Unknown","Unknown","Unknown","jdakka","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] +["0978e35f-313a-4ccc-9255-e3a7a53b1b6c","NutSetters","screw - Screwdriver","","mason25","Unknown","Unknown","Unknown","mason25","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["7e6ed2d6-1bad-40ef-8b62-a90340dfbf00","NutSetters","screw - Screwdriver","","swalke28","Unknown","Unknown","Unknown","swalke28","Unknown","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] +["8c773f57-6989-42e2-90cd-f5c624592d73","NutSetters","screw - Screwdriver","","jbadalam","Unknown","Unknown","Unknown","jbadalam","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] +["95557b46-f118-4862-ab48-4a94e7452865","NutSetters","screw - Screwdriver","","nardos","Unknown","Unknown","Unknown","nardos","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] +["462fd184-1aff-4cde-87aa-c4a92abd0dbb","NutSetters","screw - Screwdriver","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] +["97a4cdd8-265a-437d-9827-6840df5933c0","NutSetters","screw - Screwdriver","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r03c2b08","2019-06-26 00:00:37"] +["7a8c0d0e-55ed-4496-8af3-175f7e151981","NutSetters","screw - Screwdriver","","henschel","Unknown","Unknown","Unknown","henschel","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] +["b7266556-73e1-4b5d-8666-f354fe58fd7d","NutSetters","screw - Screwdriver","","rcampbel","Unknown","Unknown","Unknown","rcampbel","Unknown","m1.medium","6","16384","60","Default","r06c2b08","2019-06-26 00:00:26"] +["26c12f93-af3e-4e95-a2ee-f634a18720d5","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r07c1b05","2019-06-26 00:00:07"] +["502f29ec-2053-4fb9-85ed-5affc7674b56","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] +["eb41a224-91e0-47cc-9a60-e83dc78e6f70","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] +["f5007aa9-82fe-40dd-85f4-68a12ebbd710","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] +["51de1e9f-82e9-41ee-ac72-df3860f52424","NutSetters","screw - Screwdriver","","lambert8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.medium","6","16384","60","tacc","r06c1b10","2019-06-26 00:01:02"] +["5213611a-d8ad-441f-acae-3c04b2d1da5c","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r07c1b13","2019-06-26 00:00:10"] +["90a63b7c-5368-4b22-9a9e-425fd66f9673","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r06c4b05","2019-06-26 00:00:47"] +["0b7841a8-3fd0-42d4-a4e4-1d60fe7fa6f0","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c2b05","2019-06-26 00:00:55"] +["a010851e-73f3-4f10-9792-d8b5874aa377","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] +["edbab7fe-3252-4e71-a7a1-63c6a9b58489","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] +["0968ded7-bf0f-44a7-b6b4-02ce83fc77b7","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["b42224de-59e1-40a1-b15a-4cd8260a31a8","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] +["0df84fc2-e4e4-471e-a3fc-35cd057a38aa","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] +["31e737d5-352c-4ef7-9f63-e5701750080d","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] +["39a5eca2-f40a-4e97-8fb1-72577da2267a","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] +["3b528050-de0f-447b-a3ed-e6fb1447b26c","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c1b16","2019-06-26 00:00:26"] +["4b8c9ba6-9bf0-4c0e-b0ce-a217ac6fb966","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:01"] +["4df63612-e8de-4198-b148-9e4fb5773ce6","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] +["640a6afb-a1e3-4946-bd60-2e33bbad563d","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["68d2e5f1-61d2-4d61-b0a2-ca431b34733b","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] +["80183abc-930b-4005-bb4c-6d15d769cd0e","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b13","2019-06-26 00:00:10"] +["f5bca597-abfa-4cd4-b983-59d0ce2b1b4f","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] +["22df75f2-7cc3-4c83-a67e-cf13396e9c1f","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:18"] +["47374e12-421d-494d-aebd-0c0c31402e13","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] +["87525c23-041f-45d5-9936-7f5e980651f4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r03c1b12","2019-06-26 00:00:25"] +["acf742b8-155b-422b-82db-9dcfb659ae53","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c3b06","2019-06-26 00:00:12"] +["2b670f9f-6d2c-4982-8016-2281a27bd929","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] +["62f27ed1-de43-4f18-bdc5-353d70bcd955","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:47"] +["d9a2039b-3439-47a9-8570-111574408450","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["5f8c438d-d573-46d1-afed-0344e10017a6","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] +["a47927a8-748c-46c0-931f-79bbe16c0559","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] +["f9c5bbcf-4eac-4456-877d-e2ec509f2479","NutSetters","screw - Screwdriver","","yhung","Engineering","Mechanical and Structural Systems","Mechanics and Materials","yhung","Tern, Sandwich","s1.large","10","30720","240","Default","r07c1b14","2019-06-26 00:00:17"] +["439fc530-b649-470a-95e3-4f09ad3d96fb","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] +["a2103cad-1df8-4c2a-a08b-ad2d624a68ff","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] +["b3fe8a7b-c6e1-46aa-949d-2cef25470e86","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] +["d8a73b5e-51d2-499d-9545-41e009aa6e4c","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.large","10","30720","60","Default","r01c2b03","2019-06-26 00:00:24"] +["1689c556-9720-499d-9c69-ca5e3010fe45","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] +["1c9a1ff9-abf8-4592-9412-d87ae6681f37","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] +["9afc269a-fc1a-4666-a2b6-986911649726","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b11","2019-06-26 00:00:48"] +["a5f4294f-ba0b-4437-bc57-0c155fd470ce","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] +["d47b4a17-6097-451d-857e-72f114b52ad2","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] +["e2c9d976-cd0c-43d5-b88d-d954e5d73912","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] +["f4ea2f9b-4868-4337-bd01-063fdd1273ce","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c3b03","2019-06-26 00:00:07"] +["f458f0a6-3b0c-45e1-879b-bf0ba5a2bee0","NutSetters","screw - Screwdriver","","plm02","Unknown","Unknown","Unknown","plm02","Unknown","m1.large","10","30720","60","Default","r02c1b03","2019-06-26 14:17:29"] +["86aecaca-35f2-466e-bda4-077ed46c1b9e","NutSetters","screw - Screwdriver","","nfrazier","Unknown","Unknown","Unknown","nfrazier","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["b9daec8a-0a27-45ad-8b75-791a1df94b4e","NutSetters","screw - Screwdriver","","ssg2394","Unknown","Unknown","Unknown","ssg2394","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] +["1aa5bcae-ada8-4ff0-8c71-b7c0004d0666","NutSetters","screw - Screwdriver","","vwangia","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vwangia","Tern, Sandwich","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] +["6d13b019-2ff7-4e1e-a11f-2a5c85f63c1f","NutSetters","screw - Screwdriver","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["d50c826e-4ce7-4819-be6d-f6e6b72ec590","NutSetters","screw - Screwdriver","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["a808991f-9ef3-42b2-8b66-ac418608fa5a","NutSetters","screw - Screwdriver","","hjnance","Unknown","Unknown","Unknown","hjnance","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] +["e891eb53-6790-49d4-890c-f8aebfd34510","NutSetters","screw - Screwdriver","","brooksph","Unknown","Unknown","Unknown","brooksph","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] +["435cb856-14ed-40fc-a135-88d3c3cec116","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b11","2019-06-26 00:00:09"] +["5b503292-ef8b-472e-b2f0-0dd1cbedd24f","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c4b11","2019-06-26 00:00:32"] +["a1c23a1c-f1e3-4487-ad64-ef20aefe4e41","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c1b10","2019-06-26 00:00:32"] +["b2cec3e5-e2a4-4eca-b273-0f7ff1eaf120","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c2b05","2019-06-26 00:00:14"] +["b4c3935a-5feb-4c9b-92e1-a094d34417b6","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b05","2019-06-26 00:00:32"] +["05fcd045-d22b-4083-b9d0-1a787748c6ca","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] +["3a69d1b8-b099-4415-9dd9-7b95fe62a26a","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r06c4b10","2019-06-26 00:00:41"] +["e3f90734-857e-462e-9026-8f5297e6414f","NutSetters","screw - Screwdriver","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] +["0351a743-e3df-4914-9595-6ae2b16e4957","NutSetters","screw - Screwdriver","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.large","10","30720","60","tacc","r01c4b13","2019-06-26 00:00:23"] +["73c86d68-5700-4a30-90b0-8dc7fab7f981","NutSetters","screw - Screwdriver","","tg839024","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","s1.xlarge","24","61440","480","tacc","r02c2b06","2019-06-26 00:00:19"] +["93280b72-9ea5-42a1-a234-b288c5751660","NutSetters","screw - Screwdriver","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["a90c99d4-310a-40e5-b160-e4138dc2c774","NutSetters","screw - Screwdriver","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["4905ece5-7938-4280-a5e0-8939a89a3b5c","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["17f1e0de-b4e3-401f-aa7e-82140e22d80b","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] +["9d95e874-ad16-49e1-ab53-8335fcb4cead","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] +["c56322b2-04c3-4009-8ba2-b8120bbc61ed","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r01c4b02","2019-06-26 00:00:01"] +["e91f2a82-9f79-4d12-8553-0e914c1fdeae","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r07c4b10","2019-06-26 00:00:12"] +["f29036ce-affa-4674-a00c-b739c45d3f37","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r01c2b09","2019-06-26 00:00:55"] +["bd5d7bf5-0dd7-4663-81ea-17fbf0434f50","NutSetters","screw - Screwdriver","","samroy","Unknown","Unknown","Unknown","samroy","Unknown","m1.small","2","4096","20","Default","r02c1b10","2019-06-26 00:00:51"] +["006855f2-cd9a-4410-b98d-e2173bab46b2","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r02c2b02","2019-06-26 00:00:55"] +["2b025a32-40fb-4279-98da-5a6c95aec029","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] +["258e2ab0-b2c5-4aa1-89e9-0e7f6ded12f1","NutSetters","screw - Screwdriver","","pmiksza","Unknown","Unknown","Unknown","pmiksza","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] +["e6118cc9-f3a2-4947-9289-fcbac1e25530","NutSetters","screw - Screwdriver","","lalakl","Unknown","Unknown","Unknown","lalakl","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] +["7d140e8e-709e-4d78-8bbd-7b6ac4e78a66","NutSetters","screw - Screwdriver","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["a30dcc0a-2bc1-4259-96b4-71ad84efc951","NutSetters","screw - Screwdriver","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.quad","4","10240","20","Default","r03c2b11","2019-06-26 00:00:47"] +["82ec4985-b597-4fed-8d27-f51fad5a5a23","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.tiny","1","2048","8","Default","r02c3b10","2019-06-26 00:00:40"] +["8a700fb4-213d-4797-b69f-eca6c3e8037c","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] +["eb78b8a6-f8b0-4713-a386-47706cfe02cc","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["c9a42d34-7cff-4d68-8c8f-d1969aeb3d46","NutSetters","screw - Screwdriver","","aymen","Unknown","Unknown","Unknown","aymen","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] +["75551e33-21d7-4809-93ae-473f4002acc0","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] +["a3d8b039-6f1e-42af-bc33-aa2242cb2d82","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["96623eb0-8175-4cbe-a740-b5f1eb2c6b5b","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.medium","6","16384","60","tacc","r02c4b11","2019-06-26 00:00:34"] +["6c0af781-8fff-49c7-a55a-dbf9029ab599","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] +["c457493f-58b7-4511-8239-831ca54d5061","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r02c3b14","2019-06-26 00:00:58"] +["66ec53e0-94a0-4e38-904f-6a5782237c18","NutSetters","screw - Screwdriver","","ianmacc","Unknown","Unknown","Unknown","ianmacc","Unknown","s1.xlarge","24","61440","480","Default","r02c3b07","2019-06-26 00:00:48"] +["d5e68903-f00c-4e8b-ac85-e61a0bf8e19f","NutSetters","screw - Screwdriver","","heena","Unknown","Unknown","Unknown","heena","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] +["be4a55ce-fea2-4fe9-a70b-a7a990098207","NutSetters","screw - Screwdriver","","heena","Unknown","Unknown","Unknown","heena","Unknown","s1.xxlarge","44","122880","960","Default","r02c3b12","2019-06-26 00:00:37"] +["e98930ca-cffb-4bd5-b46d-9e80d79f6172","NutSetters","screw - Screwdriver","","nova","Unknown","Unknown","Unknown","service","Unknown","m1.small","2","4096","20","Default","r03c4b10","2019-06-26 00:00:19"] +["c6f21e63-7c18-44ab-8f80-e3157f99808a","NutSetters","screw - Screwdriver","","dcooper3","Unknown","Unknown","Unknown","dcooper3","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["0b4a3a07-9969-4844-abac-b974e03ac0f0","NutSetters","screw - Screwdriver","","egforan","Unknown","Unknown","Unknown","egforan","Unknown","m1.medium","6","16384","60","Default","r06c3b07","2019-06-26 00:00:11"] +["54766b6d-96e2-4e7e-8421-17691563547a","NutSetters","screw - Screwdriver","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] +["70d86a48-725d-4dd5-b9a6-ac279cdab623","NutSetters","screw - Screwdriver","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] +["8cbac01a-321e-4fa1-a506-9f00c99452ce","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","chastang","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] +["2969e2dd-7f0b-452a-95f5-4b42b90fd9de","NutSetters","screw - Screwdriver","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c2b09","2019-06-26 00:00:50"] +["510dd80c-c111-4b66-9e11-40f4b93ba321","NutSetters","screw - Screwdriver","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] +["01f668b1-6fd3-4498-9482-3b8bd6796c29","NutSetters","screw - Screwdriver","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["2106b29b-b5be-4c60-ad72-e73edd7931dd","NutSetters","screw - Screwdriver","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r02c1b08","2019-06-26 00:00:16"] +["4954c7c8-440e-45ee-9d78-2f9fbd33c0ff","NutSetters","screw - Screwdriver","","rmickol","Unknown","Unknown","Unknown","rmickol","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] +["a988315d-5d70-4551-bb85-e69877f737a1","NutSetters","screw - Screwdriver","","gaojie22","Unknown","Unknown","Unknown","gaojie22","Unknown","m1.tiny","1","2048","8","Default","r06c1b14","2019-06-26 00:00:29"] +["3488f559-1cbe-4b2d-a21b-768b9b15dd80","NutSetters","screw - Screwdriver","","mkrenz","Unknown","Unknown","Unknown","mkrenz","Unknown","m1.tiny","1","2048","8","Default","r02c1b14","2019-06-26 00:16:39"] +["a7ceb817-eba4-44d6-af51-1894e42b4e9c","NutSetters","screw - Screwdriver","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] +["3ad61cb8-fb67-42a5-a040-a5d1286a777e","NutSetters","screw - Screwdriver","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","s1.xlarge","24","61440","480","Default","r07c3b06","2019-06-26 00:00:12"] +["64a37c7b-9391-45c1-a74e-6793ff6602ca","NutSetters","screw - Screwdriver","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] +["d82d33f1-12e5-494f-9810-0ea8a8fd1c35","NutSetters","screw - Screwdriver","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] +["17b97d5b-dc90-4ae0-80a3-1a68f5b5a61e","NutSetters","screw - Screwdriver","","saptpurk","Unknown","Unknown","Unknown","saptpurk","Unknown","m1.medium","6","16384","60","Default","r01c4b15","2019-06-26 00:00:06"] +["a6570c4a-15b8-4ca0-a188-a3e5ca81610c","NutSetters","screw - Screwdriver","","tg857713","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] +["11c47c54-73e4-476b-b553-1dadfb270c33","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] +["1b9c9c5d-900d-4d2e-b4ba-f7c5c324ceaf","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] +["f3a2bb67-b062-453f-be0f-6eed582d7ccf","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b13","2019-06-26 00:00:29"] +["3867b613-6c42-4b9a-ae70-2eb30b880074","NutSetters","screw - Screwdriver","","tg857711","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] +["3990b4da-b0ad-4895-9dd6-ee9bec2791f9","NutSetters","screw - Screwdriver","","tg857714","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] +["5891489c-7e5b-4307-bd13-92b69984988a","NutSetters","screw - Screwdriver","","tg856781","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c1b08","2019-06-26 00:00:37"] +["5fd47705-f24e-4931-b5a5-3120a65568d4","NutSetters","screw - Screwdriver","","tg857674","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r06c2b01","2019-06-26 00:00:27"] +["bca1f8b3-65d5-4ef4-80eb-1f472f50f7b8","NutSetters","screw - Screwdriver","","tg857485","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b11","2019-06-26 00:00:39"] +["0e1283f2-04d4-48b9-b1bc-e6a85e34a8eb","NutSetters","screw - Screwdriver","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b07","2019-06-26 18:12:50"] +["2dda52c1-6558-4a9e-9b76-6dcb37436209","NutSetters","screw - Screwdriver","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b12","2019-06-26 18:12:49"] +["8240a9a6-1b36-478b-96fc-c9615c060f1a","NutSetters","screw - Screwdriver","","tg857377","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b04","2019-06-26 00:00:51"] +["65ceac0a-947c-4c77-a605-e6050e929b18","NutSetters","screw - Screwdriver","","brhatton","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c2b16","2019-06-26 00:00:29"] +["2d9fea14-b2b9-48f8-a8ac-bffbc4334686","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["f4093f7b-f1d1-4577-aeb9-2fa4d82baf74","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b14","2019-06-26 00:00:59"] +["27786596-44c7-4c03-9956-8beaca0c34f3","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r01c4b05","2019-06-26 00:00:39"] +["77fcccc1-3d85-4a03-b789-6640cec20720","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["80ad257b-16c4-49cd-bc09-a3a7e494b9d1","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["efdf63ad-7b72-469d-88aa-614534c78004","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] +["0b31f29c-a1d2-4e4d-9527-3887f630b0c7","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r07c4b15","2019-06-26 01:00:08"] +["469c0107-798a-479d-82db-d3cdfc959bc4","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c3b07","2019-06-26 00:00:11"] +["ca28acb9-dcf2-4cd0-91c1-d3369a820c05","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c4b05","2019-06-26 00:00:47"] +["50e53cd4-a317-45dc-a3bc-e2a0f2d79dd9","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] +["62aa7b26-1a0c-42a4-a845-5e1e5c03874f","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.xlarge","24","61440","60","Default","r01c1b07","2019-06-26 00:00:26"] +["503ef3af-6e4c-474f-9cf0-b4ad86aa1d63","NutSetters","screw - Screwdriver","","schartlm","Unknown","Unknown","Unknown","schartlm","Unknown","m1.large","10","30720","60","Default","r03c3b12","2019-06-26 00:00:39"] +["fe6d04ab-c01e-4f65-91ab-f35dbf74f8b3","NutSetters","screw - Screwdriver","","kagross","Unknown","Unknown","Unknown","kagross","Unknown","m1.large","10","30720","60","Default","r01c3b13","2019-06-26 00:00:38"] +["04c536cd-9c04-4870-a4af-680f58483fe7","NutSetters","screw - Screwdriver","","sean1906","Unknown","Unknown","Unknown","sean1906","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["42a765a5-0842-4a1c-8417-16d07ccca2f6","NutSetters","screw - Screwdriver","","gryanp","Unknown","Unknown","Unknown","gryanp","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:02"] +["0058a2f1-0497-4c5b-844c-f274c7581238","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["4f735d19-e4c2-44b9-86df-8ed34836c35d","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] +["a2c51d0d-f85a-469b-9159-09a8f4608d3b","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] +["a560e353-1638-4b26-8075-66f83b35cbf9","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] +["b4b91070-2ba1-4c87-b126-a164072c606b","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] +["e5f73a5a-f242-4d84-8641-d8d576c04ec8","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["f3c31da1-38f9-48a4-a31a-f99a231e4ba3","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c2b07","2019-06-26 00:00:17"] +["98792c56-5fa3-4cdd-be3a-447df47b4121","NutSetters","screw - Screwdriver","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] +["b14cb5af-9809-43d4-8bbf-150b3af9bf0e","NutSetters","screw - Screwdriver","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] +["1578f7e4-1761-4097-832e-887935b3ca6f","NutSetters","screw - Screwdriver","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] +["c6c7a90c-1a55-4ce7-92f1-1e06af1b34ce","NutSetters","screw - Screwdriver","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["35e029f8-9dee-456b-a1e4-19c2a197515f","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 21:26:32"] +["a2365e04-fcdb-4a76-b898-58b79bd201cc","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r06c2b08","2019-06-26 21:05:44"] +["e56c9f66-8679-4266-b78d-fe4d5da01abc","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 21:27:28"] +["04bbc2c8-5923-4da7-b3e0-de722f076adf","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 22:10:38"] +["196745fd-4045-4ba5-ad32-f54b755f3baa","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r06c3b03","2019-06-26 21:04:49"] +["1a60f2bb-1e82-4525-83f2-229fdfec510d","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 18:57:19"] +["4b6620a5-51be-4984-8a2d-048c7fd5f1a5","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c4b15","2019-06-26 22:11:42"] +["933d7212-a812-44cb-a3ef-2b519d0322f1","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 21:30:27"] +["9a35e939-1242-48d8-b70c-b66390eddf73","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 21:00:05"] +["08c4310b-eaae-4d38-b8b7-f09ac18e795e","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","s1.xlarge","24","61440","480","Default","r02c4b12","2019-06-26 00:00:59"] +["67fe3092-a657-4874-8168-092f14756d46","NutSetters","screw - Screwdriver","","beckbw","Unknown","Unknown","Unknown","beckbw","Unknown","m1.small","2","4096","20","Default","r06c1b03","2019-06-26 00:00:46"] +["d62768ee-3c84-47c4-add4-894dc10f6a70","NutSetters","screw - Screwdriver","","schae234","Unknown","Unknown","Unknown","schae234","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["801a48cc-67c9-4988-b40e-29a2c29c3a9f","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","Galaxy_Persistant_Services","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] +["955201c5-7b7d-451b-a327-63ac3f5d9128","NutSetters","screw - Screwdriver","","binod30","Unknown","Unknown","Unknown","binod30","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] +["0cf5e80c-d268-40a8-bd8c-bdb41022300e","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] +["bf4c6ed2-b5bb-4d83-abde-cd7ddaf0a670","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r06c3b15","2019-06-26 00:00:16"] +["c2092513-4503-46af-b6f0-6f9c1019a43d","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r02c1b07","2019-06-26 00:00:29"] +["a6037daa-53e1-4e44-b52d-134fd0269736","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:48"] +["64ad247e-0d58-4341-a558-c8cac9034475","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] +["7acb5694-02bd-42a3-a103-7e1d47a913b2","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] +["95d75e72-77ff-4d03-ad16-654134fd94a1","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] +["430d7e46-45de-459c-9d55-24507a359e08","NutSetters","screw - Screwdriver","","paulrad","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] +["072dbb0c-fa20-44bc-885b-f2059ff5d579","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["0fe869fb-76d6-47c2-82a1-cd2a547c112b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b04","2019-06-26 00:00:46"] +["1d999199-e742-4fcb-996d-b909b0a26766","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] +["20aee1a3-92b1-4d74-aeda-40e2720ef1e7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b04","2019-06-26 00:00:02"] +["221ae9f8-a164-4e84-8ca4-2cffc7bf5c35","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b14","2019-06-26 00:00:41"] +["28e347f2-8ea2-4332-a8b0-e39e222c972b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c4b13","2019-06-26 00:00:52"] +["29e881aa-b50e-4228-826a-eedb7f6c9f90","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] +["2f1191ef-d323-4fac-81b4-416823fe6f30","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] +["3403b7f8-6f18-4193-a1d3-e86ed1efe32e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] +["37b5c4bc-d953-4070-bbce-466076c49032","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["38192fb6-bd22-447f-b56c-164a12aaa080","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] +["3a60ea19-412f-4826-9fd5-af015a5e5594","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b07","2019-06-26 00:00:20"] +["42599c47-64a5-4446-b2e0-f932bcdce4c7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["46cff06b-10c7-4e94-8482-58fc64d1d3e4","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] +["47e7c840-05d3-410d-a452-91250e99b7c1","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] +["4a7ddee1-8ae9-4fc6-a37d-d841150f4415","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] +["50b40f57-54c1-462a-9fe1-1042506f0253","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["54eebbfd-9d8c-403e-a736-5e4d50af2968","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] +["58b6f8ea-ccd9-48e8-9aa4-1544e48a74be","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] +["58d124e9-b4d3-45bf-8acd-6537ea28f539","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] +["5da2f79a-fb0c-46b7-a98c-227de15328a6","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] +["5fda4d39-b503-4726-9a36-b7beb0fa9f96","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] +["6296f6ed-6000-4c41-bfe8-4c078cdcbd01","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] +["62d33d15-f327-4d23-a902-b4c7ff9634ba","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] +["6e879f6f-d424-4234-8069-532e104d95df","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] +["7645fb55-a3e1-443e-adcc-a0ca7b3d2aab","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] +["780c2b7f-5625-4171-a9a0-609eb3a71733","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] +["7c245f8b-f6ce-40b4-8f38-3585d693f899","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b14","2019-06-26 00:00:04"] +["7db58296-36cd-49b7-a2f9-2c8372fcc34b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c2b13","2019-06-26 00:00:29"] +["8928d5db-949d-4c00-8b50-d42bc23efa2c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] +["905f9cc9-11a3-49ed-b568-73230ef41cc3","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] +["9b9e1789-cfc3-4cdb-b744-94021a9bb5a7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] +["9e7d8dbc-c73e-43c8-af07-0b3a0468cd13","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c1b04","2019-06-26 00:00:08"] +["a33a0e1e-91dd-46db-b7f9-63bc4d8c666e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["ae1d7748-aad0-4e72-99a9-eec39df5bc3d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["af498cb9-d7e0-4b16-9e4f-17c838bba156","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] +["b292a16d-f1e6-4f21-aff1-fecd6145dddf","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] +["bc296bc1-4127-4d53-9f1e-7130447526ac","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b09","2019-06-26 00:00:01"] +["d428c193-d8e6-4077-836f-dbe9ed5592f1","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b05","2019-06-26 00:00:10"] +["d55f99a9-b546-4e7c-a417-3dfee7a1aecf","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] +["dae5f61a-6725-4d39-a4d3-46c60cc44e3e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b04","2019-06-26 00:00:30"] +["e6fa7624-6af2-407b-9ff5-4fc8a131b41d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["f52834c8-f37f-4890-98c6-2e3f21bfa5b8","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b06","2019-06-26 01:00:59"] +["f5c21758-4544-440c-b153-5d655ecd8e5c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b07","2019-06-26 00:00:29"] +["ff50ac8b-deae-420c-8550-3d27ad39b3e9","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c3b14","2019-06-26 01:00:59"] +["4e0bdd28-486a-40cd-9909-6ec0848325fb","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r02c4b12","2019-06-26 00:00:59"] +["606d4cc3-9351-4405-95d3-d1d4608174c0","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] +["74b4541e-631d-47c6-b90d-ea4ddc895b8f","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] +["79d24f2e-057a-4a60-8042-3f4fbd43d833","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] +["6ff8ee24-a2e0-43a7-ae84-aa741f6761a4","NutSetters","screw - Screwdriver","","nathsnyd","Unknown","Unknown","Unknown","nathsnyd","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] +["6c63b3c1-dd9b-44b5-94e5-161cc102f743","NutSetters","screw - Screwdriver","","kz1954","Unknown","Unknown","Unknown","kz1954","Unknown","m1.large","10","30720","60","Default","r01c2b01","2019-06-26 00:00:05"] +["afac7dac-5855-4180-981e-2169ede77f0f","NutSetters","screw - Screwdriver","","ccc010","Unknown","Unknown","Unknown","ccc010","Unknown","m1.large","10","30720","60","Default","r03c3b14","2019-06-26 15:43:04"] +["2c205114-88da-4157-a7f0-831063a50efc","NutSetters","screw - Screwdriver","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c4b03","2019-06-26 00:00:36"] +["30584165-b530-4f01-add0-84d0f5be4ba5","NutSetters","screw - Screwdriver","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c3b05","2019-06-26 00:00:46"] +["20aafce3-f61c-4b4a-a8c5-c8f6efb40f03","NutSetters","screw - Screwdriver","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] +["9ab7ee80-35e1-488d-b9c0-08a10b1adfea","NutSetters","screw - Screwdriver","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.medium","6","16384","60","Default","r06c1b08","2019-06-26 00:00:57"] +["9c616284-12e2-49b4-a3af-678c12729477","NutSetters","screw - Screwdriver","","noorabom","Unknown","Unknown","Unknown","noorabom","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["12fc2131-3dce-478b-ac75-c056ca9c256c","NutSetters","screw - Screwdriver","","jdv","Unknown","Unknown","Unknown","jdv","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["9e63715d-6eb2-417f-9efd-d89b587884f6","NutSetters","screw - Screwdriver","","wscreen","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wscreen","Tern, Sandwich","m1.medium","6","16384","60","Default","r03c1b01","2019-06-26 00:00:05"] +["a9bb912c-c116-47fd-9762-ea58e3559399","NutSetters","screw - Screwdriver","","mpierce","Unknown","Unknown","Unknown","TG-EAR170011","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:48"] +["7056ccb7-ae8d-4d8a-8787-3185f311a260","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] +["86501b9d-fba3-4234-b82a-87846d526cb5","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] +["cc599893-acff-489e-af71-77049a62835b","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c4b04","2019-06-26 00:00:18"] +["6ddecac2-3e1f-4064-8968-19df59343ad3","NutSetters","screw - Screwdriver","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r02c3b06","2019-06-26 00:00:11"] +["91a83a69-b6fa-4fee-931a-ff305e9bdf11","NutSetters","screw - Screwdriver","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r06c4b04","2019-06-26 00:00:30"] +["2270bffe-404b-40ff-ac89-78d1efb5cae1","NutSetters","screw - Screwdriver","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["96590283-3f28-4cbf-acbe-368aed1e95a5","NutSetters","screw - Screwdriver","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["8381f000-53e6-4448-a3c3-4d8a2003aa32","NutSetters","screw - Screwdriver","","aashwani","Unknown","Unknown","Unknown","aashwani","Unknown","m1.large","10","30720","60","Default","r03c1b09","2019-06-26 00:00:01"] +["599cfe84-d5a8-4ec0-b2f0-cb7b7f740293","NutSetters","screw - Screwdriver","","cganote","Unknown","Unknown","Unknown","TG-MCB160163","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["3a11b2d4-948d-4bdf-b1fe-2b8008c9fcc7","NutSetters","screw - Screwdriver","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.small","2","4096","20","Default","r06c1b08","2019-06-26 00:00:57"] +["e928f28d-1c50-48a5-bfd1-dd1f32793ee2","NutSetters","screw - Screwdriver","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] +["24ef927c-ac39-4555-9f75-d125c69534f3","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b13","2019-06-26 00:00:00"] +["ad9f8566-6347-4fcd-9e8c-69f3127ae015","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] +["c2dc49c1-c94b-47a0-94c5-90bfb5d769e3","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] +["6b8baa48-3e9c-4aa5-b14b-824df862bad5","NutSetters","screw - Screwdriver","","nkern","Unknown","Unknown","Unknown","nkern","Unknown","m1.xxlarge","44","122880","60","Default","r02c4b05","2019-06-26 00:00:19"] +["50a68cc2-52c0-4c0a-a89f-05471ddacfa8","NutSetters","screw - Screwdriver","","pcpeters","Unknown","Unknown","Unknown","pcpeters","Unknown","m1.tiny","1","2048","8","Default","r01c4b02","2019-06-26 00:00:01"] +["cab28bbf-1fbe-44c8-8881-fdba8b7968d0","NutSetters","screw - Screwdriver","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.large","10","30720","120","Default","r02c2b09","2019-06-26 00:00:50"] +["165e878b-24f1-49f1-8ccd-9ea905461bd4","NutSetters","screw - Screwdriver","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.xxlarge","44","122880","480","Default","r01c3b02","2019-06-26 00:00:30"] +["0edc8b5e-47b7-481a-b640-8bb35673329a","NutSetters","screw - Screwdriver","","mhmurray","Unknown","Unknown","Unknown","mhmurray","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 00:00:39"] +["8b2153b5-631d-4c44-9b56-71c421861550","NutSetters","screw - Screwdriver","","marelize","Unknown","Unknown","Unknown","marelize","Unknown","m1.small","2","4096","20","Default","r07c1b05","2019-06-26 00:00:07"] +["78a3af0d-32b8-4de5-9a85-b9922cdda92f","NutSetters","screw - Screwdriver","","gjoshua","Unknown","Unknown","Unknown","gjoshua","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] +["94ef3844-813e-400f-b332-4f2ba48c58dc","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] +["08da3e01-4785-454c-9bc1-b97d1e4b5abd","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.large","10","30720","60","Default","r06c1b10","2019-06-26 00:01:02"] +["f9c09402-249d-46d6-8918-650daf1e3991","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","s1.large","10","30720","240","Default","r02c1b05","2019-06-26 00:00:10"] +["510e8cc0-4b69-4718-83b4-1873a9158272","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] +["21035723-2c62-419a-aab7-16c5f314d474","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] +["9363483e-670c-469d-9af8-e191de8dd3f5","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c1b04","2019-06-26 00:00:21"] +["a27fad25-2871-4072-a41e-bbc3fbd87060","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["bd40cb62-bcc6-4563-a534-772b43359eca","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:49"] +["c1cabd6e-b86f-416c-bb25-aab9c42df82e","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["61cd3bd5-6170-49d3-8409-2389669d083b","NutSetters","screw - Screwdriver","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["78c61df6-9ec0-45c8-bb4f-b5bf4c69f8b5","NutSetters","screw - Screwdriver","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] +["08257e59-d672-4e0f-b69d-9374d540d58a","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r06c4b04","2019-06-26 00:00:30"] +["ff26e218-ddeb-449e-bb74-79547a5b17c8","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r02c3b06","2019-06-26 00:00:11"] +["1b6cfd24-2e6c-4196-92d6-7059910228a9","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] +["ddb37419-cf3f-4144-b9e9-219e8c47a816","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] +["30ee7082-a62d-4821-b207-a24509a46a93","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c4b07","2019-06-26 00:00:43"] +["3b675684-a739-4b13-a9fd-9adea06fe5fa","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b14","2019-06-26 00:00:06"] +["547cc6ca-c281-4b0f-ac09-3cb8510f3481","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] +["96f781df-525c-49ee-a8c4-80be4e1a22fe","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r01c4b02","2019-06-26 00:00:01"] +["117c1009-1069-45de-a004-7fb37e8c537a","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c1b10","2019-06-26 00:00:04"] +["423cb913-83cc-42b1-a480-59f04868b0cb","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c2b05","2019-06-26 00:00:55"] +["98a8f771-97c3-47b3-b215-e9fb8600788c","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c4b07","2019-06-26 00:00:43"] +["cbaee545-741f-42e5-8021-17126cadef81","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c3b07","2019-06-26 00:00:06"] +["c5e9ae5e-1e2d-445e-be9c-711c945ba6ec","NutSetters","screw - Screwdriver","","metrics","Unknown","Unknown","Unknown","metrics","Unknown","m1.tiny","1","2048","8","adjunct","r02c1b16","2019-06-26 00:00:26"] +["ab881c72-0043-400a-b3f9-82715fe5c9f8","NutSetters","screw - Screwdriver","","amelung","Unknown","Unknown","Unknown","amelung","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["7e6ba467-af52-44a2-8737-eca6e02618d6","NutSetters","screw - Screwdriver","","rwehrer","Unknown","Unknown","Unknown","rwehrer","Unknown","m1.small","2","4096","20","Default","r01c2b01","2019-06-26 00:00:05"] +["d2e176e5-35ec-4a26-a4ec-408f4227e144","NutSetters","screw - Screwdriver","","bohendo","Unknown","Unknown","Unknown","bohendo","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] +["6b5de979-37f2-4154-a009-ef6b0132895b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["ebf85c46-66a5-4df0-ab34-bc04dd59d145","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] +["1469f8fb-2ec0-4a5a-9075-3f65409c9016","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:42:56"] +["1d372cd3-1094-4d50-8850-676880ae0fe0","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r02c3b03","2019-06-26 15:23:46"] +["4bb0f70c-5cd8-4ea6-8baa-578b1a91f4ee","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r06c1b15","2019-06-26 00:00:11"] +["8959b0a8-b6f4-4601-b532-3f121d1e694f","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c4b13","2019-06-26 17:10:31"] +["997b5b20-38cd-4e68-831a-3fa8fd704370","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 15:23:34"] +["f507e0b3-dd7a-4193-9576-6f2116cb9667","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:29:43"] +["f7d750d8-1b1c-4ce6-9e41-fa3ff3f9fdcc","NutSetters","screw - Screwdriver","","mspinks","Unknown","Unknown","Unknown","mspinks","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] +["bf3a6687-d03f-4a65-95f6-74868aef78f4","NutSetters","screw - Screwdriver","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] +["2bb8efe7-43d0-49c3-83d7-db1e3f2f022c","NutSetters","screw - Screwdriver","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","s1.large","10","30720","240","Default","r03c4b07","2019-06-26 00:00:24"] +["836d64e1-e37b-4c40-9eb5-878d887b34c4","NutSetters","screw - Screwdriver","","jb557","Unknown","Unknown","Unknown","jb557","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] +["69cec90c-fe17-4f7f-833a-59a11588a4cb","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r01c4b05","2019-06-26 00:00:39"] +["cbd48900-5b06-4bef-ad0a-72234de0d755","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["f4d950a0-deb7-4b14-9c6c-3979658fa774","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["926fdc67-24d4-41b0-967a-f9042f63cc19","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r07c2b01","2019-06-26 00:00:10"] +["92a3cc6d-3b27-4361-ad2e-2c654e5df7b4","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r03c3b11","2019-06-26 00:00:39"] +["8135603c-42cb-4458-acde-9e43d3b68ff4","NutSetters","screw - Screwdriver","","tg457649","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.medium","6","16384","60","tacc","r03c1b06","2019-06-26 00:00:34"] +["5f7483bc-9de6-4345-a045-fcf0c97a62b3","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] +["aee38543-c7c6-4af8-96bf-d0f6d1913d15","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r02c1b03","2019-06-26 00:00:17"] +["536b9461-ecbf-47d7-ab57-3a43209098de","NutSetters","screw - Screwdriver","","shanghai","Unknown","Unknown","Unknown","shanghai","Unknown","m1.quad","4","10240","20","Default","r06c3b07","2019-06-26 00:00:11"] +["71c3a5ab-1930-4b38-bd32-999326cba8e1","NutSetters","screw - Screwdriver","","nykim","Unknown","Unknown","Unknown","nykim","Unknown","m1.tiny","1","2048","8","Default","r06c4b15","2019-06-26 00:00:25"] +["861c0670-5971-453f-9467-beb274b791ad","NutSetters","screw - Screwdriver","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] +["c3eb1b44-506e-4ba5-947c-fa4e1465df28","NutSetters","screw - Screwdriver","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.quad","4","10240","20","Default","r02c3b15","2019-06-26 16:00:34"] +["a2992151-b421-400e-9c31-353122f2276f","NutSetters","screw - Screwdriver","","upendra","Unknown","Unknown","Unknown","TG-BIO150062","Unknown","m1.medium","6","16384","60","tacc","r07c2b14","2019-06-26 00:00:06"] +["15ed9fb7-2821-456f-a408-0e4fd86a2933","NutSetters","screw - Screwdriver","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c1b08","2019-06-26 00:00:56"] +["da8ae9a1-696d-4f57-ae85-3b8126959829","NutSetters","screw - Screwdriver","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c4b10","2019-06-26 00:00:12"] +["47792bbe-ab6f-418a-9d48-82c14ac11932","NutSetters","screw - Screwdriver","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] +["9a827cf3-4d3f-4c88-a333-8a314c93db32","NutSetters","screw - Screwdriver","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r03c3b04","2019-06-26 00:00:12"] +["e2c886c1-90ca-4474-9e5b-2f6884e11eff","NutSetters","screw - Screwdriver","","quietjen","Unknown","Unknown","Unknown","quietjen","Unknown","s1.xlarge","24","61440","480","Default","r07c2b07","2019-06-26 00:15:52"] +["af18c2b3-70e6-44ad-b447-9c5f9877ac8d","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR180009","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] +["d2dc5a9d-0e29-4914-b88c-86e467bbf640","NutSetters","screw - Screwdriver","","hilaryk","Unknown","Unknown","Unknown","hilaryk","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] +["71167345-b9ae-4233-923f-bd873e57f612","NutSetters","screw - Screwdriver","","tshep","Unknown","Unknown","Unknown","tshep","Unknown","m1.xxlarge","44","122880","60","Default","r07c2b09","2019-06-26 00:00:37"] +["daabe807-91b0-4b45-aecc-046a7ad6210d","NutSetters","screw - Screwdriver","","rmallen","Unknown","Unknown","Unknown","rmallen","Unknown","m1.xlarge","24","61440","60","Default","r07c2b10","2019-06-26 00:00:05"] +["9ab309bc-b822-4455-a468-49648df3f1cd","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c4b11","2019-06-26 00:00:40"] +["a8c6f4b2-7fe5-48d2-89bd-a641cd10e9c3","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c1b08","2019-06-26 00:00:57"] +["bffef4cc-d261-4c0b-9b3c-5c30e86db3cc","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] +["0a918539-2478-40f0-9260-f83187daa19e","NutSetters","screw - Screwdriver","","blakekas","Unknown","Unknown","Unknown","blakekas","Unknown","m1.small","2","4096","20","Default","r06c4b06","2019-06-26 00:00:32"] +["6d043be9-e20c-40b0-aa0a-e2608cf07c3a","NutSetters","screw - Screwdriver","","mattremm","Unknown","Unknown","Unknown","mattremm","Unknown","m1.tiny","1","2048","8","Default","r07c2b01","2019-06-26 00:00:10"] +["8d75e2c1-8131-44b0-bd76-536895c29816","NutSetters","screw - Screwdriver","","ljosyula","Unknown","Unknown","Unknown","ljosyula","Unknown","m1.medium","6","16384","60","Default","r07c4b12","2019-06-26 00:00:01"] +["80d1ace6-42d9-4092-9bd4-63554693712e","NutSetters","screw - Screwdriver","","mhannonj","Unknown","Unknown","Unknown","mhannonj","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] +["12276e05-a719-452e-8a4c-7dd770c6c2a6","NutSetters","screw - Screwdriver","","paxton","Unknown","Unknown","Unknown","paxton","Unknown","s1.xlarge","24","61440","480","Default","r01c3b12","2019-06-26 00:00:51"] +["8a33f4e7-54fb-486c-9d27-3c78b585514f","NutSetters","screw - Screwdriver","","jreadey","Unknown","Unknown","Unknown","jreadey","Unknown","m1.xlarge","24","61440","60","Default","r01c4b14","2019-06-26 00:00:05"] +["0595170f-ebab-4bcc-9829-cf5df77f7000","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["e1bb8815-3cc9-4034-b626-4ca35c99c4a5","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] +["06d8f85c-7323-46e4-af9c-4a660e9a20af","NutSetters","screw - Screwdriver","","sp0090","Unknown","Unknown","Unknown","sp0090","Unknown","m1.medium","6","16384","60","Default","r07c1b14","2019-06-26 00:00:18"] +["5b00f08b-ebb9-4c0f-a3c2-d35283262bca","NutSetters","screw - Screwdriver","","zking","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zking","Ibis, Glossy","s1.xlarge","24","61440","480","Default","r07c1b07","2019-06-26 00:00:20"] +["d377ccf2-0961-4122-a018-3052ff5817af","NutSetters","screw - Screwdriver","","ishv99","Unknown","Unknown","Unknown","ishv99","Unknown","s1.xlarge","24","61440","480","Default","r02c4b15","2019-06-26 00:00:37"] +["d9c6696e-00dc-4f7f-a8e4-0cba809e128a","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] +["4927f68c-9a2d-4dd7-a137-e894bf0a4633","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c2b08","2019-06-26 00:00:51"] +["4f6a096e-bbfe-4032-b71c-6037b27cd94a","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r02c1b04","2019-06-26 00:00:21"] +["c243f468-b5cc-42aa-bd9c-60c985079c23","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c1b01","2019-06-26 03:51:54"] +["8b8c16aa-e661-4d64-a31f-13e47cef49bf","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b04","2019-06-26 00:00:41"] +["bbda8bbd-2137-4946-826b-0e5f2826cdc8","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r07c2b02","2019-06-26 00:00:24"] +["eceaf113-c326-4233-9efe-e0e8b734bdcf","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] +["a7fb7e11-d74d-491f-87e2-c6ff99a474f9","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r01c1b09","2019-06-26 13:00:25"] +["bac70a49-3785-46a4-b447-2d23ae2e8299","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r02c4b10","2019-06-26 00:00:47"] +["efefe2a5-7607-4eee-b5e3-8b1ff744f504","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r03c3b14","2019-06-26 06:13:25"] +["5f2e73e3-26fa-418d-b3d4-169f90e2d15a","NutSetters","screw - Screwdriver","","gmanipon","Unknown","Unknown","Unknown","TG-CDA180009","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] +["1bf46756-8d54-442e-9801-83910808b6ae","NutSetters","screw - Screwdriver","","tasmia","Unknown","Unknown","Unknown","tasmia","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] +["7b0f1ad8-ed4b-47e7-bba0-bcad34634f9a","NutSetters","screw - Screwdriver","","beshel","Unknown","Unknown","Unknown","beshel","Unknown","s1.xlarge","24","61440","480","Default","r06c4b05","2019-06-26 00:00:47"] +["fee7acad-258a-490a-a362-5417483191ad","NutSetters","screw - Screwdriver","","majdavis","Unknown","Unknown","Unknown","majdavis","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["1a8af402-3360-4221-8ab8-41c7adf45c8c","NutSetters","screw - Screwdriver","","devon","Unknown","Unknown","Unknown","devon","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] +["87c3d541-5569-48cd-953a-7dc70f663133","NutSetters","screw - Screwdriver","","pcp","Engineering","Mechanical and Structural Systems","Mechanics and Materials","xdmod","Tern, Sandwich","m1.small","2","4096","20","adjunct","r03c1b08","2019-06-26 00:00:37"] +["a2b7efd0-0d7b-48a4-bba0-8da47e7c0231","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b07","2019-06-26 00:00:43"] +["d337316b-627c-433d-bd6f-df9c1e6303a0","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b12","2019-06-26 00:00:01"] +["edf89621-0cd4-48aa-b578-9b7ddc1a283e","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] +["f3dfb26e-9007-42c6-91f6-ad03949d4125","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] +["0262293c-c4d8-4069-bb0f-5f00f0b8ab94","NutSetters","screw - Screwdriver","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b08","2019-06-26 00:00:56"] +["f3c9830d-c73c-4146-ab22-a0d52e931d22","NutSetters","screw - Screwdriver","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r03c3b12","2019-06-26 00:00:39"] +["3466ddeb-079f-4cc9-9660-b827344ebefd","NutSetters","screw - Screwdriver","","adhage","Unknown","Unknown","Unknown","adhage","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] +["45fba7fe-5f7a-4cb3-a445-1b08f4052d2a","NutSetters","screw - Screwdriver","","jsdsmail","Unknown","Unknown","Unknown","jsdsmail","Unknown","m1.medium","6","16384","60","Default","r06c2b07","2019-06-26 00:00:21"] +["5fa98955-0944-4d3a-916f-87883237a9b1","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.small","2","4096","20","Default","r07c1b15","2019-06-26 00:00:19"] +["172df8e9-b2ec-4864-898d-a4d401de85f0","NutSetters","screw - Screwdriver","","wstuhr","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wstuhr","Egret, Snowy","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] +["881ba8d5-8cb7-4cec-88a0-de29867e32c9","NutSetters","screw - Screwdriver","","nsokol","Unknown","Unknown","Unknown","nsokol","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] +["0a61640d-b915-41d2-a81b-474e01b8f089","NutSetters","screw - Screwdriver","","marcusc","Unknown","Unknown","Unknown","marcusc","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] +["862bbdd5-5ec2-43b8-b943-c60227f53b0f","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] +["91e76f8c-6c68-4cff-b8fd-3294456ea8ac","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c3b02","2019-06-26 00:00:36"] +["f73664e4-7207-42ea-ad55-180d27164a1f","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] +["0091a1c7-2984-4b53-8683-93ef3c922325","NutSetters","screw - Screwdriver","","jhallida","Unknown","Unknown","Unknown","jhallida","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] +["0d8bbbdb-e755-4909-a250-9170459e5580","NutSetters","screw - Screwdriver","","cdosborn","Unknown","Unknown","Unknown","cdosborn","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["f1dc72da-c007-4a91-8412-b9b757719100","NutSetters","screw - Screwdriver","","dgilbert","Unknown","Unknown","Unknown","dgilbert","Unknown","m1.small","2","4096","20","Default","r06c2b07","2019-06-26 00:00:21"] +["f60ccb64-d856-4202-b2c8-f40009e12f2f","NutSetters","screw - Screwdriver","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] +["2ef90d32-7c86-449a-9e48-a19ee5f8b2ec","NutSetters","screw - Screwdriver","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.quad","4","10240","20","Default","r02c1b05","2019-06-26 00:00:10"] +["cc230bda-2521-4f13-99d5-db000a3ed565","NutSetters","screw - Screwdriver","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c1b06","2019-06-26 00:00:34"] +["eea732b8-53a5-421f-887b-afc7ad6c7577","NutSetters","screw - Screwdriver","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] +["88531a32-7dc2-41e8-bb9d-49143c927247","NutSetters","screw - Screwdriver","","dyhancoc","Unknown","Unknown","Unknown","dyhancoc","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] +["8811b052-3bcf-4805-8c37-501a94b3bbed","NutSetters","screw - Screwdriver","","lhin","Unknown","Unknown","Unknown","lhin","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] +["0d63ccb0-69dd-41fd-bc41-b815ee6d29b8","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] +["307066d5-0fd4-40fa-a887-c0c507d641fa","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r07c1b12","2019-06-26 00:00:47"] +["24aa72d7-83e9-43e9-8571-ba3241aac403","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.small","2","4096","20","Default","r07c1b14","2019-06-26 00:00:18"] +["7b720c9c-33c1-48f0-b896-7da6013d9498","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["80471527-ddda-42fd-88b3-b2df8bcc5f7e","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["a4fbd089-6628-45c2-802f-3760d9f8dff7","NutSetters","screw - Screwdriver","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c2b04","2019-06-26 00:00:38"] +["22f9acb1-8e20-4512-9a14-1d6b7e4d71ea","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:18"] +["3629851f-6caa-48e5-b091-25501c4913fd","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] +["4f4ffedc-1838-456d-ae6e-37b080b59eca","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] +["71c15136-7755-47bb-a48d-3e58cf3f9ae3","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c3b11","2019-06-26 00:00:07"] +["aeee4d91-64aa-43af-b884-29d6c6b5287c","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] +["f7635b04-1d25-454a-8aca-5c2da079a9cb","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r03c2b08","2019-06-26 00:00:37"] +["fc4d5de8-8412-40e7-aabc-69830aee1eaf","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b11","2019-06-26 00:00:48"] +["faf6ff94-19c7-472f-80c9-96819aea6f22","NutSetters","screw - Screwdriver","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:19"] +["e16b8084-06a6-4203-ae62-5128ce42ea72","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:05"] +["6adb6e2b-f024-48ce-a30f-a4743f84e986","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","s1.large","10","30720","240","tacc","r06c1b01","2019-06-26 00:00:28"] +["4fe2017e-651c-4f86-b169-b8ea65f8edd0","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xlarge","24","61440","60","tacc","r07c1b08","2019-06-26 00:00:56"] +["29263b0a-c17d-46be-ab65-e52163b24001","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","60","tacc","r06c4b03","2019-06-26 01:00:04"] +["b18c7cae-b615-42af-abd4-7c80473743c7","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","480","tacc","r03c2b12","2019-06-26 00:00:57"] +["33d17b83-ecd1-4acb-9ee8-651cc0ec9864","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] +["c4c7cea6-b4f3-4a7a-955a-8478116302b0","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r03c4b07","2019-06-26 00:00:24"] +["e3bd9c68-7177-4908-b289-83a750e7e5c2","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","s1.xlarge","24","61440","480","Default","r03c1b15","2019-06-26 00:00:02"] +["51edbaa0-d773-447c-8a77-25b249526fa3","NutSetters","screw - Screwdriver","","sidpath","Unknown","Unknown","Unknown","sidpath","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["dcf6b123-9cbd-42aa-925f-077733101aa5","NutSetters","screw - Screwdriver","","gspeyer","Unknown","Unknown","Unknown","gspeyer","Unknown","m1.small","2","4096","20","Default","r06c2b06","2019-06-26 00:00:49"] +["c5db8df1-08dd-4f9c-80ae-31803cf402ed","NutSetters","screw - Screwdriver","","mpierce","Unknown","Unknown","Unknown","TG-DBS160006","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["cf76dceb-7349-419e-b517-287a4c797e79","NutSetters","screw - Screwdriver","","madrina","Unknown","Unknown","Unknown","madrina","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["20157572-2da7-4fc2-838d-d9528153d92c","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-ENG170037","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] +["73a5d032-43ea-47e4-84d4-467ca1dcde2b","NutSetters","screw - Screwdriver","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","m1.xxlarge","44","122880","60","tacc","r07c3b04","2019-06-26 00:00:18"] +["a91650f3-ccc6-4412-9bb1-95c37a4eddd5","NutSetters","screw - Screwdriver","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","s1.xxlarge","44","122880","960","tacc","r03c2b01","2019-06-26 00:00:30"] +["14a98a0c-ab39-48d5-830f-578fd0711bc6","NutSetters","screw - Screwdriver","","agopu","Unknown","Unknown","Unknown","agopu","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] +["2b69ef43-27b3-4d2e-b51c-a2877f78d751","NutSetters","screw - Screwdriver","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 00:00:40"] +["f6688e09-456d-4d81-8e47-739d8271cc10","NutSetters","screw - Screwdriver","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] +["087c2472-c9c7-4849-828b-43281e8134a0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] +["689044ca-4778-47f5-9ead-e6655826c3e0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] +["841f2a04-2301-4092-b457-d71b148c60a0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b03","2019-06-26 15:00:16"] +["007be263-57c9-4404-9f9e-3fd3a1f1bf20","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b06","2019-06-26 00:00:00"] +["2f17849f-c7f8-499d-9b9a-c402c1006e13","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r03c1b01","2019-06-26 01:00:57"] +["3f31ee22-ef04-43a7-b6a9-5d812bf9fd48","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b08","2019-06-26 00:00:56"] +["43ea0a6c-149c-4652-81f6-eda9dc0c05c5","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] +["44e5fb97-daf8-4a9a-b152-971df247c56a","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] +["55fb77fa-3afe-4f7b-a3d8-3c9e68e76ae7","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] +["58f01a50-9b28-4f77-9e86-01991bef14a8","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c4b05","2019-06-26 00:00:39"] +["5c661ca4-52fb-489b-aabe-91c5a53f19c2","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b15","2019-06-26 00:00:37"] +["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b10","2019-06-26 00:00:52"] +["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c4b15","2019-06-26 00:00:52"] +["84d11422-ce49-4ea3-99b9-eef84a08cbbe","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] +["8f8b828a-d3f8-4c03-b3a3-bbd088a484ec","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] +["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b04","2019-06-26 00:00:04"] +["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:04"] +["d8691e8e-7b2b-4a4b-b9e0-ab86a50e4580","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b03","2019-06-26 00:00:07"] +["e5974dad-efee-4a9f-b345-5f82ed4414f3","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b07","2019-06-26 00:00:29"] +["3a7c3eb8-5ad6-4389-8d08-b55faea7cd50","NutSetters","screw - Screwdriver","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] +["72b97f40-76b6-4b5c-959e-654554f65441","NutSetters","screw - Screwdriver","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] +["f80c09fe-52df-4e77-8f28-274352b81b06","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b07","2019-06-26 00:00:11"] +["54c0198a-0bbe-4216-ac30-cf60b5bf6a03","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] +["801b8da9-94fb-4fcd-a7cf-345458b7d920","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["af4bfe9c-8f30-4af0-ac87-48b588c62695","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:18"] +["c72f9562-7816-44d1-9e32-756ea1477a1a","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b06","2019-06-26 00:00:03"] +["e8f9732a-de87-4963-89fe-02165128c68c","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b03","2019-06-26 00:00:07"] +["ecc0fca7-66ce-406c-b739-e2f3c157dea6","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-4q","2","11264","20","tacc","r08g03","2019-06-26 00:00:39"] +["357a466b-8093-4e27-81ef-65d7a11871bd","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b11","2019-06-26 00:00:25"] +["9978fb58-2a7b-4961-b21b-3ab25e32d1f9","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b05","2019-06-26 00:00:10"] +["c1579d78-026e-4ab9-ade1-28e86056796e","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["6dd79b93-f318-4c56-b331-fff288483b31","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-16q","8","47104","20","tacc","r08g06","2019-06-26 00:00:08"] +["ca6c37a0-bcdd-4480-a84d-e2d60db8715f","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m2.medium","16","61440","60","tacc","r08c1b08","2019-06-26 00:00:05"] +["01ee20ab-8dde-409e-9556-5c7b55f9a2d8","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.xxlarge","44","122880","60","tacc","r01c3b03","2019-06-26 00:00:08"] +["1b5f0745-6efd-4247-a26c-f7cc23bdad59","NutSetters","screw - Screwdriver","","tg837136","Unknown","Unknown","Unknown","TG-DBS180009","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] +["fe2d12dd-423e-4798-aa70-82f6eec4ff30","NutSetters","screw - Screwdriver","","pswargam","Unknown","Unknown","Unknown","pswargam","Unknown","m1.medium","6","16384","60","Default","r06c4b07","2019-06-26 00:00:53"] +["a3499254-a95a-4794-bd6c-6a54c406480a","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","mjames","Unknown","m1.xxlarge","44","122880","60","Default","r02c2b04","2019-06-26 00:00:54"] +["dec223e4-6d15-4902-bc8d-678b8e21ff47","NutSetters","screw - Screwdriver","","ramya1","Unknown","Unknown","Unknown","ramya1","Unknown","m1.tiny","1","2048","8","Default","r06c2b13","2019-06-26 00:00:14"] +["77b5f6a6-2a5b-4046-a0c3-34676bfb9cef","NutSetters","screw - Screwdriver","","bret","Unknown","Unknown","Unknown","bret","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] +["9b726d6f-1cfd-4e0e-9315-a0daf7a174f1","NutSetters","screw - Screwdriver","","mesler","Unknown","Unknown","Unknown","TG-BIO170096","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:02"] +["da7ac9d8-dd99-4d1e-9e85-04ccf3395f19","NutSetters","screw - Screwdriver","","jeovany7","Unknown","Unknown","Unknown","jeovany7","Unknown","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] +["123708c9-c4ea-4f7b-9ea6-cdcb0c445ae4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] +["73926b1f-3c59-4c9e-810d-4607b2237eef","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] +["9a854394-904a-4a92-b56d-da9acb807f3b","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c4b10","2019-06-26 00:00:12"] +["d98824c4-f903-42e0-833e-4a87653aa63d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["04ac96c0-477b-43a0-b20f-12b3ec687443","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] +["0c8f4b51-f48f-43d0-9bd0-a4ae18a0ff50","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c3b03","2019-06-26 00:00:41"] +["22fb6441-a938-45c4-9eda-0d3fcb2242e4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b12","2019-06-26 00:00:01"] +["335ec001-101d-4bc9-9584-f6431d1efd20","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b11","2019-06-26 00:00:08"] +["6e1df8f7-9f10-4f0f-8c5f-fbe3ce5c50a7","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c2b07","2019-06-26 00:00:17"] +["c51c6c38-5e6f-4da3-af9b-b62ffd85c181","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] +["e48481b8-3696-44cd-af7f-cc76e8b1816a","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] +["4da2876e-7dc6-477d-8ed6-a9b3102fa9aa","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] +["0f47b390-f15b-487d-847f-6a9bb1df40ac","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] +["2a59acc7-17a8-4485-8e7e-48913aee7b55","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c1b08","2019-06-26 00:00:57"] +["51a349c1-dd69-42ca-88aa-016d61c6b144","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b15","2019-06-26 00:00:12"] +["8d85ac29-2762-4674-b885-3561d5b98ffb","NutSetters","screw - Screwdriver","","andybeet","Unknown","Unknown","Unknown","andybeet","Unknown","m1.small","2","4096","20","Default","r01c4b03","2019-06-26 00:00:36"] +["0de66347-636d-4830-96b4-603c999541db","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] +["9aac0cb5-e16a-415b-a509-e681e4d4e561","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["b50ae469-6718-444d-9bbf-20d26634a41d","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] +["43d11768-1009-41ec-ad53-a06f62020924","NutSetters","screw - Screwdriver","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] +["f3788ca3-1fa6-4b47-a0e4-db9f476f886e","NutSetters","screw - Screwdriver","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r01c2b01","2019-06-26 00:00:05"] +["26c2a839-35d6-4582-a0ed-16c5a06d291d","NutSetters","screw - Screwdriver","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b07","2019-06-26 00:00:11"] +["38bc4a3e-d0b6-4fe5-8e0c-68d4b83a5558","NutSetters","screw - Screwdriver","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b02","2019-06-26 00:00:36"] +["14c39841-ca59-4924-913f-e830ba1f820b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] +["0493f004-af47-419f-8cb6-942b3b1fac12","NutSetters","screw - Screwdriver","","tg858644","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r01c4b02","2019-06-26 00:00:01"] +["8c14b2c2-88dc-4547-aba6-81b0902737c3","NutSetters","screw - Screwdriver","","tg858635","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r06c4b04","2019-06-26 00:00:30"] +["1fc48ba3-3f5b-45f6-8da4-8b08f8ea3256","NutSetters","screw - Screwdriver","","tg858636","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] +["379b96da-a378-41ef-9f4f-f5d0a0b66d9d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c3b10","2019-06-26 00:00:40"] +["7da8978d-0330-4f24-a163-b2b0aa2de426","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["e5a9c587-3a56-4f7f-a3cc-c16af3fc54f6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c2b07","2019-06-26 00:00:09"] +["f76d6fe5-b89b-453a-abfd-4145798dea1c","NutSetters","screw - Screwdriver","","cldixon","Unknown","Unknown","Unknown","cldixon","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] +["0d7292d3-f244-41f5-b965-ad1f4445f3d5","NutSetters","screw - Screwdriver","","irberlui","Unknown","Unknown","Unknown","irberlui","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] +["839556a5-32ea-4801-83e5-2c251e4f9496","NutSetters","screw - Screwdriver","","steckm","Unknown","Unknown","Unknown","steckm","Unknown","m1.large","10","30720","60","Default","r06c1b14","2019-06-26 00:00:29"] +["f9f94f0e-3ba1-440f-a77c-1c2efcb91210","NutSetters","screw - Screwdriver","","cganote","Unknown","Unknown","Unknown","cganote","Unknown","m1.tiny","1","2048","8","Default","r02c1b10","2019-06-26 00:00:52"] +["950be30e-a275-4533-9d42-53df6145545b","NutSetters","screw - Screwdriver","","pmoriano","Unknown","Unknown","Unknown","pmoriano","Unknown","m1.tiny","1","2048","8","Default","r07c2b02","2019-06-26 00:00:24"] +["7f3a123c-c660-4f13-8d29-40327c6704db","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] +["598adf9a-315c-435d-a1ae-6d0aa072c2f7","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] +["4e502181-cfcd-4139-85cd-590e02ad9b0d","NutSetters","screw - Screwdriver","","iwatson","Unknown","Unknown","Unknown","TG-GEO160010","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] +["ba5fadc1-c717-4002-aba4-bd863e381d90","NutSetters","screw - Screwdriver","","smm6","Unknown","Unknown","Unknown","smm6","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] +["0abf53f8-3458-4e17-b3b0-2ec1b83f8ee4","NutSetters","screw - Screwdriver","","vlevkov","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlevkov","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] +["b5be32a5-e6ca-481f-af46-e53c302bf8e1","NutSetters","screw - Screwdriver","","vpenchv","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vpenchv","Tern, Sandwich","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] +["9c54e3ca-493c-402f-b08c-73c50469d5b3","NutSetters","screw - Screwdriver","","uma","Unknown","Unknown","Unknown","uma","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] +["6c124584-33fd-479a-a8d0-8ac8ba7e1371","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.large","10","30720","240","Default","r07c2b06","2019-06-26 01:48:20"] +["52c0b2a1-5c9f-4cab-8d58-f0b07b90f95b","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r02c4b10","2019-06-26 00:36:36"] +["c773a4d0-d4ce-4cd4-87cd-263e36ccd5cf","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r01c3b15","2019-06-26 06:06:56"] +["e9aa9c55-7800-48a5-b3c5-adcd7daca2b4","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.large","10","30720","240","Default","r07c1b02","2019-06-26 00:00:27"] +["359e855b-953f-445f-aebe-19bb4b4a0c22","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b12","2019-06-26 00:00:42"] +["56cc3381-7a82-4662-8eb5-8ace8f952fd2","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r02c1b13","2019-06-26 00:00:54"] +["db2dc4aa-58c7-4c5e-b635-0cdcd7fbabf3","NutSetters","screw - Screwdriver","","maxmck7","Unknown","Unknown","Unknown","maxmck7","Unknown","m1.small","2","4096","20","Default","r07c2b13","2019-06-26 00:00:29"] +["65e78b06-3e64-4b62-aa7f-85ab9db38140","NutSetters","screw - Screwdriver","","akanna","Unknown","Unknown","Unknown","akanna","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] +["95a59d3a-9cba-41a5-af10-a2dd1ccff628","NutSetters","screw - Screwdriver","","ssteady","Unknown","Unknown","Unknown","ssteady","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] +["4d5e602e-97b7-4839-8818-097d6bcc8e62","NutSetters","screw - Screwdriver","","virtual","Geosciences","Polar Programs","Polar Ocean and Climate Systems","virtual","Egret, Snowy","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] +["0cdc4c00-2f93-4399-9191-236c57c57491","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b15","2019-06-26 00:00:19"] +["0ffa15e9-825a-4852-892a-fcdd52cca744","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] +["1fac2573-5071-4460-bbf0-5016eb107e61","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c1b15","2019-06-26 00:00:50"] +["2467442a-77dd-4d96-b91e-7a6b45a050a1","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] +["24e8b8a0-2e63-4641-894a-8325ad5f9895","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b03","2019-06-26 00:00:01"] +["409bbceb-d979-43ce-bb6e-42f1e98c2148","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["42107ed1-3f63-4bfa-9957-094dac419db4","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] +["4660f4a9-2b9e-4501-961c-6f9d9b14f7a3","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["60a704fd-0d9d-4b14-a45d-15510dbe2496","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] +["8297ddd6-b9d9-4074-bbfb-2e301c6ade0a","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] +["8478604a-40bd-4ff2-91e7-36e7f379f390","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c2b11","2019-06-26 00:00:48"] +["848a4138-6199-4b97-9ca9-74aa5f89b807","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b05","2019-06-26 00:00:22"] +["9f2600fc-9c90-4fef-b939-e9943addb2bd","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b14","2019-06-26 00:00:18"] +["b29f4d37-07e5-487f-8d0f-2c4dfa065ef4","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b16","2019-06-26 00:00:55"] +["bc75c346-1088-4537-bc69-779c2ba9c5b3","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] +["c961fe87-e906-4ffd-bb0b-ffd9bf8b2cbf","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] +["d5b074f9-a37b-4f44-bf16-08581fb544c6","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] +["d6517ffd-8c30-43a3-a4d9-e64ca540b23a","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] +["d85684d2-1587-4029-96cd-366b1d3651fc","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c2b05","2019-06-26 00:00:21"] +["ec5bc29a-8773-4e6c-92ee-72799815615f","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c2b11","2019-06-26 00:00:48"] +["fab72e59-5e87-4309-84fd-06ea2920742b","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b05","2019-06-26 00:00:47"] +["b51b68e2-4ea1-43ea-8d93-39f719780e1c","NutSetters","screw - Screwdriver","","hannac","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] +["12f08e11-4e8c-4c01-b5c2-72acd3a3d110","NutSetters","screw - Screwdriver","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] +["65b13e09-17c1-421c-9dd1-91b5e277eb1f","NutSetters","screw - Screwdriver","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r01c4b06","2019-06-26 00:00:29"] +["b35dd35d-2595-4c19-9df5-6ab52a19b14b","NutSetters","screw - Screwdriver","","phillity","Unknown","Unknown","Unknown","phillity","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["98a68982-58e2-47e3-a736-c8bef2357db0","NutSetters","screw - Screwdriver","","bberlin","Unknown","Unknown","Unknown","bberlin","Unknown","s1.xxlarge","44","122880","960","Default","r03c4b10","2019-06-26 00:00:19"] +["46a035f8-f2b0-44ba-8ec5-08559bb68803","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c3b05","2019-06-26 00:00:08"] +["7d734be4-8193-4c7a-84ab-0a9cf3072516","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c1b15","2019-06-26 00:00:50"] +["94b124b0-0bbf-4924-9f1e-c89e2e2069c5","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r03c1b02","2019-06-26 00:00:02"] +["ccc5f86f-5ed5-432e-8b40-b80440a3a49b","NutSetters","screw - Screwdriver","","jselvam","Unknown","Unknown","Unknown","jselvam","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["83c285ea-1152-4008-97ce-3fe6a36259b8","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","fils","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] +["f86d7a0e-c454-4026-bad8-920e11a97845","NutSetters","screw - Screwdriver","","kelumdi","Unknown","Unknown","Unknown","kelumdi","Unknown","m1.large","10","30720","60","Default","r03c2b06","2019-06-26 00:00:12"] +["3d3e8516-8971-4f0b-bbf6-51d8c3f79a20","NutSetters","screw - Screwdriver","","hudson89","Unknown","Unknown","Unknown","hudson89","Unknown","m1.xlarge","24","61440","60","Default","r07c2b08","2019-06-26 00:00:56"] +["d7d3305e-7223-4680-bd7b-deed31af0be9","NutSetters","screw - Screwdriver","","kemelian","Unknown","Unknown","Unknown","kemelian","Unknown","m1.xlarge","24","61440","60","Default","r06c3b10","2019-06-26 00:00:27"] +["87d17237-44a5-4480-b0c4-4ed6cb16141a","NutSetters","screw - Screwdriver","","tg857970","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["1cc05972-3d46-4490-8fab-1c6aa22094a8","NutSetters","screw - Screwdriver","","tg858245","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["73912317-8159-40c6-a3b7-a6989fe5ca7b","NutSetters","screw - Screwdriver","","tg858209","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["cb007931-77ae-4fd0-9418-15280593acf5","NutSetters","screw - Screwdriver","","tg853683","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] +["9fd3ab5a-79c6-4908-b5c8-6630e5e664e5","NutSetters","screw - Screwdriver","","akamber2","Unknown","Unknown","Unknown","akamber2","Unknown","m1.small","2","4096","20","Default","r07c3b13","2019-06-26 00:00:36"] +["68f78d18-a9f2-4e00-8597-fe04ea53be85","NutSetters","screw - Screwdriver","","kmadappa","Unknown","Unknown","Unknown","kmadappa","Unknown","m1.medium","6","16384","60","Default","r03c4b02","2019-06-26 00:00:42"] +["795af622-3fda-44ee-8f8f-10c9ad1407e9","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","ktyle","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] +["0e37a693-d20c-4046-b75e-b5e29ebd432c","NutSetters","screw - Screwdriver","","j1axs01","Unknown","Unknown","Unknown","j1axs01","Unknown","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] +["9bb8cd73-c514-4f6d-af12-2ae28b64711e","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] +["acd5f004-097f-423a-8255-0ba1954c52a1","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] +["e5c37bb7-376f-4b46-bd04-6c7517efb0bc","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] +["0f04260f-152d-4973-a00e-547844e6650e","NutSetters","screw - Screwdriver","","zonca","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zonca","Tern, Sandwich","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] +["24703158-bb10-46e9-9a4e-5939b1b9ec6f","NutSetters","screw - Screwdriver","","jhallida","Unknown","Unknown","Unknown","TG-BIO160064","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] +["6f9c5759-4e90-45e9-9405-5ef522d34aac","NutSetters","screw - Screwdriver","","bmsamuel","Unknown","Unknown","Unknown","bmsamuel","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] +["3d599f20-2fbf-4b63-ae3f-8f83e26c7184","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r02c3b06","2019-06-26 01:00:59"] +["8b3b2b3c-e47e-4662-b05a-517773bb8a68","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r06c4b10","2019-06-26 00:00:42"] +["c138e77a-ad39-4912-8ce0-c0c1b3cd26e0","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] +["592e585f-6da6-405e-b8d2-f1536fb4efc5","NutSetters","screw - Screwdriver","","megm","Unknown","Unknown","Unknown","megm","Unknown","m1.large","10","30720","60","Default","r06c3b05","2019-06-26 14:11:09"] +["d0c1892a-8fde-4c7c-87b7-0b45c0583840","NutSetters","screw - Screwdriver","","tantrung","Unknown","Unknown","Unknown","tantrung","Unknown","m1.tiny","1","2048","8","Default","r06c3b04","2019-06-26 00:00:04"] +["4d774298-d1ac-4a04-a193-3943dedb5423","NutSetters","screw - Screwdriver","","ntrip","Unknown","Unknown","Unknown","ntrip","Unknown","m1.medium","6","16384","60","Default","r02c4b15","2019-06-26 00:00:37"] +["d11655dd-79fe-4601-83ee-5646370e790a","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r06c4b06","2019-06-26 00:00:32"] +["e8a4cc65-84d9-434e-86c1-e22b207571af","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r07c1b15","2019-06-26 00:00:19"] +["5ea4d354-4b39-49c0-91e0-91c0f0fdca59","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.xxlarge","44","122880","60","adjunct","r02c2b03","2019-06-26 00:00:53"] +["5db3fe4c-90c6-40ca-a3f3-0e3537bfa338","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","s1.xxlarge","44","122880","960","adjunct","r06c2b09","2019-06-26 00:00:12"] +["498f1cac-aa33-4c0b-a318-ca6b922639eb","NutSetters","screw - Screwdriver","","nmebadi","Unknown","Unknown","Unknown","nmebadi","Unknown","m1.tiny","1","2048","8","Default","r07c2b10","2019-06-26 00:00:05"] +["1a25eeb4-1241-40c2-b4be-b56f22dfc1ba","NutSetters","screw - Screwdriver","","cboettig","Unknown","Unknown","Unknown","cboettig","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] +["8d9c140b-2892-4d44-a8c8-f2f1c7dc460a","NutSetters","screw - Screwdriver","","willarno","Geosciences","Polar Programs","Polar Ocean and Climate Systems","willarno","Egret, Snowy","m1.large","10","30720","60","Default","r07c1b16","2019-06-26 00:00:55"] +["3860f159-58c8-48b7-996f-74693d6e142f","NutSetters","screw - Screwdriver","","scanchi","Unknown","Unknown","Unknown","scanchi","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] +["4e8849f6-cc20-411f-b306-b8ee4347852c","NutSetters","screw - Screwdriver","","danidub","Unknown","Unknown","Unknown","danidub","Unknown","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] +["77688c7c-ca57-4a8c-b740-b6ceac247978","NutSetters","screw - Screwdriver","","fpsom","Unknown","Unknown","Unknown","fpsom","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] +["ada50cd5-db44-4472-a667-74faef966675","NutSetters","screw - Screwdriver","","tg457210","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] +["017e63f8-2ccc-42eb-8fb5-54e57193abec","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.medium","6","16384","60","tacc","r07c1b07","2019-06-26 00:00:20"] +["0ccfbf28-751f-46ff-9464-0c2c2fdd0bf7","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 19:57:51"] +["1844674d-a185-42ed-8514-4d63dcc74b80","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 17:01:10"] +["19230bbc-7a70-49d9-b275-431d7d7fc359","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:26:32"] +["1ab64d90-338b-47c9-86b5-aef59aaed13b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 19:57:53"] +["2b8e52d4-2d8f-4d64-acf3-6e90f273d174","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b11","2019-06-26 16:38:52"] +["345a9249-ca13-4050-ae8b-a044998f49ac","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 17:00:49"] +["367a6254-6094-46b2-ac15-86f2b44667db","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 17:01:12"] +["38b43fea-e9e6-48bc-b505-cab4549622d1","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 16:35:31"] +["392aea49-91e0-4e51-8633-d08314ea71a6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 17:01:01"] +["40201487-9071-428c-a902-dc4e52cec04d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:46:45"] +["413fb5c4-92f3-4977-8e30-bfc0ca08ae39","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c3b05","2019-06-26 10:54:19"] +["4776f42a-402a-480e-9236-f9d39c3df407","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b14","2019-06-26 17:00:52"] +["53037618-3a4d-4712-8ed9-3ddff09aadee","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 11:05:34"] +["69a7f613-c74b-4377-b1bd-5f7cde77f256","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b13","2019-06-26 19:58:09"] +["6dd1d337-de03-4fa8-ad8a-63552a052190","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 16:26:01"] +["6e4c48bd-6637-4074-9d16-9d31f607af6d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 20:36:16"] +["88b6e3e9-fd0a-4998-a3cf-acbdd9816a91","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 16:38:32"] +["88d3e0e7-ad0f-41d7-a524-75bfe4d8992a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b10","2019-06-26 11:30:08"] +["9693d53c-bbc4-42ac-9d08-9ab38f3d472e","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b08","2019-06-26 20:36:30"] +["9a2415d4-38d6-4960-96f4-45a5f819d454","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b15","2019-06-26 17:00:54"] +["a08c7729-2196-4be4-b073-2274e9749a2a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 16:38:41"] +["a720649e-219a-42fd-945f-799a0f6b7e26","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 16:38:29"] +["a8d9db68-8d53-440f-9091-01878b2b4e8a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b11","2019-06-26 16:39:01"] +["adb59b31-12ff-4129-b103-df552c4832ae","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 19:57:48"] +["b13444fa-a76d-4351-9f1f-c7fca73e4a29","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] +["be428c97-58f2-4eb8-b09e-faa61d15a6ad","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 11:05:05"] +["bfc7a5d9-69bc-4cda-8c9c-34836ea9cc74","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c4b12","2019-06-26 16:38:43"] +["c443e3d7-81e2-4078-9228-a98c9cf3d6dd","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 20:36:33"] +["c9baf336-9bd7-48d3-a74f-da1aa318a6fe","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 17:00:29"] +["cb5ec7d3-d58e-4e7c-b44a-175d7c8358a0","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b08","2019-06-26 19:58:14"] +["cf2095fc-0505-40fc-b7ca-0f0c0951d316","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 20:36:07"] +["dc8122aa-cc3b-4eef-8035-5128e02ce987","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:57"] +["dd4bf9c3-cd17-4dcb-b5b1-f8b3fa39075d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] +["df3c5475-d67d-4531-9f73-4b1223ed98e3","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 17:01:03"] +["e21965a4-255f-4346-af06-21e0997f8be8","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c2b11","2019-06-26 16:38:34"] +["e3edf674-b383-4950-8849-141a14996527","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b12","2019-06-26 19:58:06"] +["f080805c-2519-482f-bac3-724c1cdbfbf6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:56"] +["f5d341ae-2775-4bc9-9196-428107ab4590","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 20:36:48"] +["f6f9fdde-2b15-481f-8f1f-89a850182e00","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 20:36:25"] +["f839aadd-2ac7-4101-bf63-e673a8a88efe","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 20:36:56"] +["fbd79a77-4ce3-4c69-9a81-763a14f7e3d4","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b03","2019-06-26 10:54:37"] +["93465331-6c1c-4fc6-95ff-ffa601d1d424","NutSetters","screw - Screwdriver","","bsayre","Unknown","Unknown","Unknown","bsayre","Unknown","m1.large","10","30720","120","Default","r03c2b11","2019-06-26 00:00:48"] +["47cfe663-63a7-4dd5-b96f-69296accc505","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] +["91a34535-24be-4aff-9f11-dd916410192c","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r01c2b13","2019-06-26 00:00:08"] +["35e39c6f-7c4e-4e85-8df0-61b781f9d024","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r06c2b11","2019-06-26 00:00:28"] +["49655a01-ca42-4131-84f3-7df056db691a","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] +["aaa9031a-9d50-462f-96d0-e65056afd7ce","NutSetters","screw - Screwdriver","","jchuah","Unknown","Unknown","Unknown","jchuah","Unknown","m1.tiny","1","2048","8","Default","r02c1b11","2019-06-26 00:00:25"] +["4f13f65b-7005-432a-a051-f085fe1d4f38","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r02c3b02","2019-06-26 00:00:20"] +["8b4fe4e3-18d8-422c-b20a-debb0f0f29ac","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] +["aabd49fb-0b6c-4787-b717-0a6f7f943256","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.medium","6","16384","60","tacc","r01c4b04","2019-06-26 00:00:46"] +["7dba2f39-9799-4347-b119-14bbbecdd6ec","NutSetters","screw - Screwdriver","","jhaber","Unknown","Unknown","Unknown","jhaber","Unknown","m1.xlarge","24","61440","60","Default","r07c1b06","2019-06-26 00:00:26"] +["93522185-0c41-4d9e-97c9-24ea6e2717e8","NutSetters","screw - Screwdriver","","sclevey","Unknown","Unknown","Unknown","sclevey","Unknown","m1.small","2","4096","20","Default","r02c3b10","2019-06-26 00:00:40"] +["111f50cc-d3ed-49ae-a8ac-135f15e61150","NutSetters","screw - Screwdriver","","sjmiller","Unknown","Unknown","Unknown","sjmiller","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] +["81a15df9-ca8d-4a1f-9958-370d980d0d01","NutSetters","screw - Screwdriver","","josconno","Unknown","Unknown","Unknown","josconno","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json index c5af694569..a063517990 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-fresh_install.json @@ -1,1312 +1,1312 @@ -["Local Job Id","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"] -["1012557[29]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[30]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[31]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[32]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[33]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[34]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[35]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[36]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[37]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[38]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[39]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[40]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[41]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[42]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[43]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[44]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[45]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[46]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[47]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[48]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[49]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6108925","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6112983","Robertson","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6108976","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108977","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108991","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108995","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108996","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108997","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108998","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108999","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109002","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109003","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109004","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109007","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109008","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109010","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109011","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109017","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109020","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109024","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109025","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109027","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109030","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109032","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109033","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109034","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109035","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109036","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109037","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109038","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109039","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109040","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109041","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109044","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109046","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109047","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109048","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109051","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109052","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109053","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109054","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109055","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109056","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109057","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109058","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109059","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109060","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109061","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109062","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109063","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109064","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109065","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109066","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109067","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109068","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109069","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109072","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109073","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109074","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109075","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109077","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109078","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109079","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109080","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109081","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109082","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109083","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109084","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109085","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109086","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109088","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109089","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109090","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109091","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109092","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109093","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109094","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109095","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109096","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109097","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109098","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109099","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109100","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109101","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109102","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109103","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109104","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109105","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109106","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109107","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109108","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109109","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109110","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109111","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109112","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109113","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109114","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109115","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109118","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109119","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109120","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109121","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109122","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109123","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109124","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109125","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109127","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109128","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109130","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109131","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109132","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109135","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109138","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109139","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109141","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109142","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109143","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109144","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109147","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109148","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109149","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109150","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109151","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109152","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109153","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109154","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109155","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109156","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109157","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109158","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109159","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109160","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109161","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109162","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109163","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109164","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109165","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109166","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109167","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109168","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109169","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109170","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109171","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109172","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109173","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109174","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109175","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109176","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109177","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109178","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109179","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109180","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109181","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109182","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109183","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109184","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109185","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109186","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109187","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109188","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109189","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109190","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109191","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109192","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109193","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109194","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109195","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109196","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1012557[74]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[50]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[51]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[52]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[53]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[54]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[55]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[56]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[57]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[58]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[59]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[60]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[61]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[62]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[67]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[68]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[70]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[71]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[72]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6108929","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6113332","Robertson","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["1019989","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020009","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020000","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020089","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309861","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309884","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019944","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1020095","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6117519","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6119997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120350","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["1020038","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018470","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2308432","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309845","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309860","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115789","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117558","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117561","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117576","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120115","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120140","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120150","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120343","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120363","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120367","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120380","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120441","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120447","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120448","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120461","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["1019923","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019934","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018314","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018806","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018919","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115525[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[59]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115537[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115539[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[18]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[46]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116050","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6116051","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1004733","Mortorq","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"] -["1019945","Posidriv","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1019972","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6113839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115604","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116091","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116098","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115303","Robertson","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115438","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115457","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119921","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119923","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["1019139","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020005","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020025","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309863","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6113101","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113155","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113185","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113270","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114933","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115592","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115607","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115617","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115621","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115623","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115651","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115655","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115673","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115685","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115686","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115687","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115689","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115721","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115724","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115782","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116066","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117511","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117527","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117550","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117554","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117563","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117578","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115287","Robertson","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115435","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115436","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115441","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115444","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115447","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115449","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115453","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115455","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119918","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119919","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119920","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119922","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119924","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["1019938","Posidriv","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018813","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115525[38]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115298","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6113512","Robertson","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6113518","Robertson","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6114923","Robertson","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6115525[56]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[25]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116630[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[67]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6118546","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6115641","Robertson","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6118367","Robertson","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6115544[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6112876","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"] -["6116000","Robertson","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["1005924","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["995612","Posidriv","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999221","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999242","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999289","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["165381","Phillips","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"] -["6109335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109479","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109648","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112989","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112990","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112994","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112995","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113062","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113063","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113387","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113393","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113841","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113844","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113848","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114034","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114035","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114452","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114453","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114454","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114455","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114457","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114459","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114460","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114852","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114853","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114925","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115116","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115120","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115598","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108027[4]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[5]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[6]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["1003355","Posidriv","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"] -["999183","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999188","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999254","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005888","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005890","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005900","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005907","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1012029","Posidriv","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["995583","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995627","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995628","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995629","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995630","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995631","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995632","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995633","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995634","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995635","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995636","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995637","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995638","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995639","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995640","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995641","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995642","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995643","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995644","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995645","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995646","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["163485","Phillips","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"] -["964693","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964694","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["2286681","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2288753","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2289004","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1009531","Posidriv","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6106081","Robertson","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108682","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109275","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109282","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109332","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109348","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109351","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109356","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109359","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109360","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109361","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109362","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109365","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109370","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109371","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109372","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109374","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109376","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109378","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109381","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109405","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109436","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109463","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109464","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109471","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109472","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109475","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109500","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109509","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109510","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109638","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109639","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109640","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109650","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109653","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109658","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109662","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109665","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109672","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109753","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109754","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109757","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109758","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109759","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109761","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109762","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109767","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109769","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109778","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109781","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109783","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109791","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109795","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109798","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109800","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109801","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109803","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109807","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109810","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112998","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113001","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113003","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113005","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113006","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113007","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113011","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113016","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113020","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113028","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113032","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113049","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113051","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113056","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113057","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113058","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113059","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113060","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113061","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113064","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113067","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113068","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113069","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113070","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113071","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113072","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113073","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113077","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113082","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113083","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113092","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113094","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113110","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113112","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113117","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113118","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113127","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113131","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113135","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113137","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113142","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113143","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113144","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113146","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113147","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113148","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113149","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113151","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113152","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113153","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113154","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113156","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113157","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113158","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113160","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113161","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113162","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113163","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113164","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113165","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113166","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113167","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113170","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113172","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113173","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113174","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113175","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113176","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113177","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113178","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113179","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113180","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113181","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113182","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113183","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113184","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113186","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113187","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113188","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113189","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113190","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113191","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113192","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113194","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113195","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113197","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113198","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113200","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113201","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113202","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113203","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113204","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113205","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113206","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113207","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113208","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113209","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113210","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113211","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113212","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113213","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113214","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113215","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113217","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113218","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113219","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113220","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113222","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113223","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113224","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113225","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113227","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113228","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113230","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113231","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113232","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113233","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113234","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113235","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113236","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113237","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113238","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113240","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113243","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113244","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113245","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113248","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113249","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113251","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113252","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113253","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113254","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113259","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113260","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113263","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113267","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113271","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113272","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113273","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113274","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113276","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113278","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113281","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113284","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113286","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113289","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113291","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113292","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113299","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113300","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113301","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113302","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113304","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113306","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113307","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113308","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113309","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113310","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113311","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113313","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113314","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113315","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113317","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113318","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113319","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113320","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113322","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113323","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113324","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113328","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113333","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113334","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113342","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113385","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113394","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113395","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113396","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113402","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113403","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113404","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113406","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113407","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113408","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113411","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113412","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113416","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113419","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113420","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113424","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113425","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113433","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113830","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113831","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113832","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113833","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113836","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113850","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113864","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113866","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113868","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113869","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113870","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113871","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113873","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113874","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113879","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113880","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113885","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113886","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113887","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114038","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114040","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114041","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114042","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114043","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114044","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114449","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114450","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114451","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114480","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114483","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114484","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114485","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114486","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114487","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114488","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114489","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114490","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114493","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114494","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114495","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114496","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114498","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114501","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114502","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114506","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114512","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114513","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114515","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114837","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114838","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114842","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114845","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114882","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114928","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114929","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114936","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114937","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114940","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114945","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114946","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114955","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114960","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114962","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114963","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114964","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114978","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115014","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115106","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115128","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115132","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115134","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115620","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115637","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115646","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115647","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115696","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115717","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6107586[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[12]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[29]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[24]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108716[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108716[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108800[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6109585[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6109585[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6111029[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112885[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112886[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112887[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112904[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107628","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107630","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107635","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107647","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6108907","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6108910","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["995647","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995648","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995650","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995652","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995653","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995654","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995655","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995656","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995657","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995658","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995659","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["1016250","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019924","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6112942","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112943","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112944","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112945","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6114330","Robertson","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6108018","Robertson","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6111029[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6110309","Robertson","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"] -["6110932","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110941","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110944","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110949","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110959","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110961","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110965","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110967","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110969","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110970","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110971","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110973","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110974","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110976","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111669","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111670","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111692","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111695","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111697","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111700","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111701","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111702","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111029[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["964695","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964696","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964697","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964698","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964699","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964700","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964701","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964702","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964703","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964704","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964705","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964706","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112948","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112946","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112947","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112949","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6111703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111704","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111705","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111708","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111709","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111710","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111711","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111731","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111732","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111733","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111734","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111735","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111736","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111737","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111738","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111739","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111741","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111742","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111743","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111744","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111748","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111749","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111772","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111773","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111774","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108176","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109583","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109608","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109610","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["964707","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112950","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6108913","Robertson","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6071470","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071484","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071502","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071518","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071523","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071529","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071533","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["995282","Posidriv","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"] -["6101316","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101317","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101752","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101753","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101754","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101755","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101756","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["Local Job Id","Resource","Service Provider","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"] +["1012557[29]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[30]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[31]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[32]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[33]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[34]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[35]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[36]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[37]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[38]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[39]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[40]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[41]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[42]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[43]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[44]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[45]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[46]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[47]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[48]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[49]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6108925","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6112983","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6108976","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108977","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108991","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108995","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108996","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108997","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108998","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108999","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109002","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109003","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109004","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109007","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109008","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109010","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109011","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109017","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109020","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109024","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109025","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109027","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109030","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109032","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109033","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109034","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109035","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109036","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109037","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109038","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109039","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109040","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109041","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109044","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109046","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109047","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109048","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109051","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109052","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109053","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109054","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109055","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109056","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109057","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109058","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109059","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109060","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109061","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109062","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109063","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109064","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109065","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109066","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109067","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109068","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109069","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109072","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109073","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109074","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109075","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109077","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109078","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109079","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109080","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109081","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109082","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109083","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109084","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109085","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109086","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109088","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109089","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109090","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109091","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109092","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109093","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109094","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109095","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109096","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109097","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109098","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109099","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109100","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109101","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109102","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109103","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109104","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109105","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109106","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109107","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109108","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109109","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109110","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109111","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109112","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109113","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109114","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109115","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109118","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109119","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109120","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109121","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109122","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109123","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109124","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109125","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109127","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109128","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109130","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109131","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109132","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109135","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109138","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109139","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109141","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109142","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109143","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109144","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109147","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109148","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109149","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109150","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109151","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109152","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109153","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109154","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109155","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109156","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109157","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109158","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109159","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109160","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109161","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109162","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109163","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109164","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109165","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109166","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109167","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109168","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109169","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109170","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109171","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109172","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109173","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109174","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109175","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109176","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109177","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109178","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109179","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109180","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109181","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109182","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109183","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109184","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109185","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109186","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109187","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109188","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109189","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109190","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109191","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109192","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109193","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109194","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109195","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109196","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1012557[74]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[50]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[51]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[52]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[53]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[54]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[55]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[56]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[57]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[58]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[59]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[60]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[61]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[62]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[67]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[68]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[70]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[71]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[72]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6108929","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6113332","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["2309861","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309884","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6117519","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6119997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120350","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["2308432","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309845","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309860","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6115789","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117558","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117561","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117576","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120115","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120140","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120150","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120343","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120363","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120367","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120380","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120441","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120447","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120448","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120461","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115525[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[59]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115537[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115539[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[18]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[46]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116050","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6116051","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1004733","Mortorq","screw - Screwdriver","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"] +["6113839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115604","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116091","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116098","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115303","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115438","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115457","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119921","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119923","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["2309863","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6113101","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113155","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113185","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113270","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114933","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115592","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115607","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115617","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115621","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115623","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115651","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115655","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115673","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115685","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115686","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115687","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115689","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115721","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115724","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115782","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116066","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117511","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117527","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117550","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117554","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117563","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117578","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115287","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115435","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115436","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115441","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115444","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115447","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115449","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115453","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115455","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119918","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119919","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119920","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119922","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119924","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115525[38]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115298","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6113512","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6113518","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6114923","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6115525[56]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[25]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116630[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[67]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6118546","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6115641","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6118367","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6115544[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6112876","Robertson","screw - Screwdriver","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"] +["6116000","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["165381","Phillips","screw - Screwdriver","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"] +["6109335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109479","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109648","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112989","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112990","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112994","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112995","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113062","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113063","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113387","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113393","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113841","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113844","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113848","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114034","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114035","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114452","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114453","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114454","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114455","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114457","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114459","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114460","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114852","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114853","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114925","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115116","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115120","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115598","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108027[4]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[5]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[6]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["995583","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995627","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995628","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995629","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995630","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995631","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995632","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995633","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995634","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995635","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995636","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995637","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995638","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995639","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995640","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995641","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995642","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995643","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995644","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995645","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995646","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["163485","Phillips","screw - Screwdriver","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"] +["964693","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964694","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["2286681","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2288753","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2289004","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6106081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108682","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109275","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109282","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109332","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109348","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109351","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109356","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109359","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109360","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109361","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109362","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109365","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109370","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109371","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109372","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109374","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109376","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109378","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109381","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109405","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109436","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109463","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109464","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109471","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109472","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109475","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109500","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109509","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109510","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109638","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109639","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109640","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109650","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109653","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["1019989","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020009","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020000","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020089","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019944","Posidriv","wrench - Wrench","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1020095","Posidriv","wrench - Wrench","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1020038","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018470","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019923","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019934","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018314","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018806","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018919","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019945","Posidriv","wrench - Wrench","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1019972","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019139","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020005","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020025","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019938","Posidriv","wrench - Wrench","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018813","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1005924","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["995612","Posidriv","wrench - Wrench","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999221","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999242","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999289","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1003355","Posidriv","wrench - Wrench","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"] +["999183","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999188","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999254","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005888","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005890","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005900","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005907","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1012029","Posidriv","wrench - Wrench","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1009531","Posidriv","wrench - Wrench","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6109658","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109662","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109665","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109672","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109753","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109754","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109757","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109758","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109759","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109761","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109762","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109767","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109769","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109778","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109781","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109783","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109787","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109791","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109795","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109798","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109800","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109801","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109803","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109807","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109810","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112998","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113001","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113003","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113005","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113006","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113007","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113011","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113016","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113020","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113028","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113032","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113049","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113051","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113056","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113057","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113058","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113059","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113060","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113061","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113064","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113067","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113068","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113069","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113070","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113071","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113072","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113073","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113077","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113082","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113083","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113092","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113094","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113110","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113112","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113117","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113118","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113127","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113131","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113135","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113137","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113142","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113143","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113144","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113146","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113147","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113148","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113149","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113151","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113152","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113153","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113154","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113156","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113157","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113158","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113160","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113161","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113162","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113163","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113164","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113165","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113166","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113167","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113170","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113172","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113173","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113174","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113175","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113176","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113177","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113178","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113179","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113180","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113181","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113182","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113183","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113184","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113186","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113187","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113188","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113189","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113190","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113191","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113192","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113194","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113195","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113197","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113198","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113200","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113201","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113202","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113203","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113204","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113205","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113206","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113207","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113208","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113209","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113210","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113211","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113212","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113213","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113214","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113215","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113217","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113218","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113219","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113220","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113222","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113223","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113224","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113225","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113227","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113228","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113230","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113231","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113232","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113233","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113234","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113235","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113236","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113237","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113238","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113240","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113243","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113244","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113245","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113248","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113249","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113251","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113252","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113253","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113254","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113259","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113260","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113263","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113267","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113271","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113272","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113273","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113274","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113276","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113278","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113281","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113284","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113286","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113289","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113291","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113292","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113299","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113300","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113301","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113302","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113304","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113306","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113307","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113308","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113309","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113310","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113311","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113313","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113314","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113315","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113317","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113318","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113319","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113320","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113322","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113323","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113324","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113328","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113333","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113334","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113342","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113385","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113394","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113395","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113396","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113402","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113403","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113404","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113406","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113407","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113408","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113411","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113412","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113416","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113419","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113420","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113424","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113425","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113433","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113830","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113831","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113832","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113833","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113836","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113850","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113864","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113866","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113868","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113869","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113870","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113871","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113873","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113874","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113879","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113880","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113885","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113886","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113887","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114038","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114040","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114041","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114042","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114043","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114044","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114449","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114450","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114451","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114480","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114483","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114484","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114485","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114486","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114487","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114488","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114489","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114490","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114493","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114494","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114495","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114496","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114498","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114501","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114502","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114506","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114512","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114513","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114515","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114837","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114838","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114842","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114845","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114882","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114928","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114929","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114936","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114937","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114940","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114945","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114946","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114955","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114960","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114962","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114963","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114964","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114978","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115014","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115106","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115128","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115132","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115134","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115620","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115637","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115646","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115647","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115696","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115717","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6107586[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[12]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[29]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[24]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108716[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108716[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108800[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6109585[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6109585[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6111029[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112885[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112886[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112887[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112904[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107628","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107630","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107635","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107647","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6108907","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6108910","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["995647","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995648","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995650","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995652","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995653","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995654","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995655","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995656","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995657","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995658","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995659","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112942","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112943","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112944","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112945","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6114330","Robertson","screw - Screwdriver","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6108018","Robertson","screw - Screwdriver","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6111029[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6110309","Robertson","screw - Screwdriver","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"] +["6110932","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110941","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110944","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110949","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110959","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110961","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110965","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110967","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110969","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110970","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110971","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110973","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110974","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110976","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111669","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111670","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111692","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111695","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111697","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111700","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111701","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111702","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111029[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["964695","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964696","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964697","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964698","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964699","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964700","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964701","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964702","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964703","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964704","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964705","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964706","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112948","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112946","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112947","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112949","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6111703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111704","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111705","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111708","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111709","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111710","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111711","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111731","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111732","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111733","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111734","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111735","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111736","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111737","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111738","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111739","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111741","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111742","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111743","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111744","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111748","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111749","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111772","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111773","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111774","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108176","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109583","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109608","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109610","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["964707","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112950","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6108913","Robertson","screw - Screwdriver","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6071470","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071484","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071502","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071518","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071523","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071529","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071533","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6101316","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101317","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101752","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101753","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101754","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101755","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101756","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1016250","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019924","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["995282","Posidriv","wrench - Wrench","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"] diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json index c5af694569..4951d3b83a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/jobs-upgrade.json @@ -1,1312 +1,1312 @@ -["Local Job Id","Resource","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"] -["1012557[29]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[30]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[31]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[32]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[33]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[34]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[35]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[36]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[37]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[38]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[39]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[40]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[41]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[42]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[43]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[44]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[45]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[46]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[47]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[48]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[49]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6108925","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6112983","Robertson","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6108976","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108977","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108991","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108995","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108996","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108997","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108998","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108999","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109002","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109003","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109004","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109007","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109008","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109010","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109011","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109017","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109020","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109024","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109025","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109027","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109030","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109032","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109033","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109034","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109035","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109036","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109037","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109038","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109039","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109040","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109041","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109044","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109046","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109047","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109048","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109051","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109052","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109053","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109054","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109055","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109056","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109057","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109058","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109059","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109060","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109061","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109062","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109063","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109064","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109065","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109066","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109067","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109068","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109069","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109072","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109073","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109074","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109075","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109077","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109078","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109079","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109080","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109081","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109082","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109083","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109084","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109085","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109086","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109088","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109089","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109090","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109091","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109092","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109093","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109094","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109095","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109096","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109097","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109098","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109099","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109100","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109101","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109102","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109103","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109104","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109105","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109106","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109107","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109108","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109109","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109110","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109111","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109112","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109113","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109114","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109115","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109118","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109119","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109120","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109121","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109122","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109123","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109124","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109125","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109127","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109128","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109130","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109131","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109132","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109135","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109138","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109139","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109141","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109142","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109143","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109144","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109147","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109148","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109149","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109150","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109151","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109152","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109153","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109154","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109155","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109156","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109157","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109158","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109159","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109160","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109161","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109162","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109163","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109164","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109165","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109166","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109167","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109168","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109169","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109170","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109171","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109172","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109173","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109174","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109175","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109176","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109177","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109178","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109179","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109180","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109181","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109182","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109183","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109184","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109185","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109186","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109187","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109188","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109189","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109190","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109191","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109192","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109193","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109194","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109195","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109196","Robertson","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1012557[74]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[50]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[51]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[52]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[53]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[54]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[55]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[56]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[57]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[58]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[59]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[60]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[61]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[62]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[67]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[68]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[70]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[71]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[72]","Mortorq","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6108929","Robertson","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6113332","Robertson","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["1019989","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020009","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020000","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020089","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309861","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309884","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019944","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1020095","Posidriv","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6117519","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6119997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120350","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["1020038","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018470","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2308432","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309845","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309860","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115789","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117558","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117561","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117576","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120115","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120140","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120150","Robertson","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120343","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120363","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120367","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120380","Robertson","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120441","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120447","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120448","Robertson","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120461","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["1019923","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019934","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018314","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018806","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018919","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115525[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[59]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115537[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115539[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[18]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[46]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116050","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6116051","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1004733","Mortorq","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"] -["1019945","Posidriv","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1019972","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6113839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115604","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116091","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116098","Robertson","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115303","Robertson","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115438","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115457","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119921","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119923","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["1019139","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020005","Posidriv","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020025","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309863","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6113101","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113155","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113185","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113270","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114074","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114933","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115105","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115592","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115607","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115617","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115621","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115623","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115651","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115655","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115673","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115685","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115686","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115687","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115689","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115721","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115724","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115782","Robertson","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116066","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117511","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117527","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117550","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117554","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117563","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117578","Robertson","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115287","Robertson","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115435","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115436","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115441","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115444","Robertson","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115447","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115449","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115453","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115455","Robertson","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119918","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119919","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119920","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119922","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119924","Robertson","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["1019938","Posidriv","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018813","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115525[38]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115298","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6113512","Robertson","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6113518","Robertson","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6114923","Robertson","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6115525[56]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[25]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116630[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[67]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6118546","Robertson","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6115641","Robertson","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6118367","Robertson","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6115544[22]","Robertson","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6112876","Robertson","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"] -["6116000","Robertson","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["1005924","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["995612","Posidriv","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999221","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999242","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999289","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["165381","Phillips","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"] -["6109335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109479","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109648","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112989","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112990","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112994","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112995","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113062","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113063","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113387","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113389","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113393","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113841","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113844","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113847","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113848","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114034","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114035","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114452","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114453","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114454","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114455","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114457","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114458","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114459","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114460","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114852","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114853","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114925","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115116","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115120","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115598","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108027[4]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[5]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[6]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["1003355","Posidriv","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"] -["999183","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999188","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999254","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005888","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005890","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005900","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005907","Posidriv","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1012029","Posidriv","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["995583","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995627","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995628","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995629","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995630","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995631","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995632","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995633","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995634","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995635","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995636","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995637","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995638","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995639","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995640","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995641","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995642","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995643","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995644","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995645","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995646","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["163485","Phillips","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"] -["964693","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964694","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["2286681","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2288753","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2289004","Frearson","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1009531","Posidriv","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6106081","Robertson","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108682","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109275","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109282","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109332","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109347","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109348","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109351","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109356","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109357","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109359","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109360","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109361","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109362","Robertson","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109365","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109368","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109370","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109371","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109372","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109374","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109376","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109378","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109381","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109388","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109390","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109391","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109392","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109405","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109436","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109462","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109463","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109464","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109471","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109472","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109475","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109500","Robertson","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109509","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109510","Robertson","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109638","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109639","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109640","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109650","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109652","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109653","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109654","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109658","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109662","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109665","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109672","Robertson","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109753","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109754","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109757","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109758","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109759","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109761","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109762","Robertson","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109767","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109769","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109778","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109781","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109783","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109787","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109791","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109795","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109798","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109800","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109801","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109803","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109807","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109810","Robertson","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112998","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113001","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113003","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113004","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113005","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113006","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113007","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113011","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113015","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113016","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113017","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113020","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113028","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113032","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113033","Robertson","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113049","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113051","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113056","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113057","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113058","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113059","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113060","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113061","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113064","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113067","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113068","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113069","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113070","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113071","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113072","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113073","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113077","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113082","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113083","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113085","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113087","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113092","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113094","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113096","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113097","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113110","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113112","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113113","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113114","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113117","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113118","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113121","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113123","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113127","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113131","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113135","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113137","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113139","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113141","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113142","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113143","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113144","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113146","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113147","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113148","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113149","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113151","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113152","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113153","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113154","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113156","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113157","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113158","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113160","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113161","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113162","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113163","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113164","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113165","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113166","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113167","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113170","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113172","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113173","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113174","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113175","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113176","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113177","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113178","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113179","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113180","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113181","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113182","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113183","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113184","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113186","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113187","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113188","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113189","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113190","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113191","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113192","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113193","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113194","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113195","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113197","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113198","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113200","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113201","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113202","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113203","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113204","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113205","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113206","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113207","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113208","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113209","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113210","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113211","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113212","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113213","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113214","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113215","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113217","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113218","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113219","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113220","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113222","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113223","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113224","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113225","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113226","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113227","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113228","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113229","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113230","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113231","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113232","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113233","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113234","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113235","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113236","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113237","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113238","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113239","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113240","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113242","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113243","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113244","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113245","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113246","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113247","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113248","Robertson","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113249","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113251","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113252","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113253","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113254","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113255","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113256","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113257","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113258","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113259","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113260","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113261","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113262","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113263","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113264","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113266","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113267","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113268","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113269","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113271","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113272","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113273","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113274","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113276","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113277","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113278","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113279","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113280","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113281","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113283","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113284","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113285","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113286","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113287","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113288","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113289","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113290","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113291","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113292","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113293","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113294","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113296","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113297","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113298","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113299","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113300","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113301","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113302","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113303","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113304","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113305","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113306","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113307","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113308","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113309","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113310","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113311","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113312","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113313","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113314","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113315","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113317","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113318","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113319","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113320","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113321","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113322","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113323","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113324","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113327","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113328","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113333","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113334","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113335","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113336","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113339","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113342","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113385","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113386","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113394","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113395","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113396","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113397","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113398","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113399","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113400","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113401","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113402","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113403","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113404","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113406","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113407","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113408","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113409","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113410","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113411","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113412","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113413","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113414","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113415","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113416","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113417","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113418","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113419","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113420","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113421","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113423","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113424","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113425","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113426","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113427","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113428","Robertson","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113429","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113430","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113431","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113432","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113433","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113434","Robertson","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113830","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113831","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113832","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113833","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113836","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113849","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113850","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113864","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113866","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113868","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113869","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113870","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113871","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113873","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113874","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113879","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113880","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113885","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113886","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113887","Robertson","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114018","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114019","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114021","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114022","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114023","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114024","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114025","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114026","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114027","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114029","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114030","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114031","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114037","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114038","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114040","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114041","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114042","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114043","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114044","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114045","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114046","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114047","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114048","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114050","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114052","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114053","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114054","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114075","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114076","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114078","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114079","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114080","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114081","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114088","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114090","Robertson","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114449","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114450","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114451","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114480","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114481","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114482","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114483","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114484","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114485","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114486","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114487","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114488","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114489","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114490","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114492","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114493","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114494","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114495","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114496","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114498","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114501","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114502","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114503","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114506","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114507","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114508","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114512","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114513","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114515","Robertson","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114834","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114835","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114837","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114838","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114839","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114840","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114842","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114843","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114845","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114846","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114876","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114877","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114878","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114881","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114882","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114883","Robertson","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114928","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114929","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114936","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114937","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114940","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114945","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114946","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114955","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114960","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114962","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114963","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114964","Robertson","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114978","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114981","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114985","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114991","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114992","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114993","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114996","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114997","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115000","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115002","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115008","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115009","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115010","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115012","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115013","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115014","Robertson","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115103","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115106","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115107","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115125","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115128","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115129","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115132","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115133","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115134","Robertson","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115325","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115326","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115329","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115330","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115331","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115337","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115338","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115340","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115341","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115344","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115353","Robertson","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115620","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115637","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115646","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115647","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115696","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115717","Robertson","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116369","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116373","Robertson","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6107586[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[7]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[8]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[9]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[11]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[12]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[15]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[13]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[14]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[18]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[19]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[29]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[30]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[21]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[24]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[25]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[26]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[27]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108716[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108716[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108800[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6109585[1]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6109585[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6111029[2]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112885[16]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112886[17]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112887[20]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112904[23]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107628","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107630","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107635","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107647","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6108907","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6108910","Robertson","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["995647","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995648","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995650","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995652","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995653","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995654","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995655","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995656","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995657","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995658","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995659","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["1016250","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019924","Posidriv","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6112942","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112943","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112944","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112945","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6114330","Robertson","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6108018","Robertson","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6111029[10]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6110309","Robertson","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"] -["6110932","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110934","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110935","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110941","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110943","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110944","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110948","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110949","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110951","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110952","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110953","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110956","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110957","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110959","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110961","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110965","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110966","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110967","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110969","Robertson","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110970","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110971","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110972","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110973","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110974","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110975","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110976","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110979","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110980","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110982","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110983","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110984","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110986","Robertson","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111667","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111669","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111670","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111671","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111692","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111693","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111695","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111697","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111700","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111701","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111702","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111029[22]","Robertson","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["964695","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964696","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964697","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964698","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964699","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964700","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964701","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964702","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964703","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964704","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964705","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964706","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112948","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112946","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112947","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112949","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6111703","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111704","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111705","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111706","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111707","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111708","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111709","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111710","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111711","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111731","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111732","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111733","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111734","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111735","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111736","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111737","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111738","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111739","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111741","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111742","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111743","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111744","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111748","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111749","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111770","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111771","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111772","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111773","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111774","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111775","Robertson","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108176","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109583","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109608","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109610","Robertson","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["964707","Mortorq","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112950","Robertson","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6108913","Robertson","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6071470","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071484","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071502","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071518","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071523","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071529","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071533","Robertson","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["995282","Posidriv","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"] -["6101316","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101317","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101752","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101753","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101754","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101755","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101756","Robertson","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["Local Job Id","Resource","Service Provider","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"] +["1012557[29]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[30]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[31]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[32]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[33]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[34]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[35]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[36]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[37]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[38]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[39]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[40]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[41]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[42]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[43]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[44]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[45]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[46]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[47]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[48]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[49]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6108925","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6112983","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6108976","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108977","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108991","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108995","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108996","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108997","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108998","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6108999","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109002","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109003","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109004","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109007","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109008","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109010","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109011","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109017","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109020","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109024","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109025","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109027","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109030","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109032","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109033","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109034","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109035","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109036","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109037","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109038","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109039","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109040","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109041","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109044","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109046","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109047","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109048","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109051","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109052","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109053","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109054","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109055","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109056","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109057","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109058","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109059","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109060","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109061","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109062","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109063","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109064","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109065","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109066","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109067","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109068","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109069","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109072","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109073","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109074","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109075","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109077","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109078","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109079","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109080","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109081","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109082","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109083","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109084","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109085","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109086","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109088","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109089","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109090","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109091","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109092","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109093","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109094","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109095","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109096","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109097","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109098","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109099","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109100","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109101","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109102","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109103","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109104","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109105","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109106","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109107","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109108","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109109","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109110","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109111","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109112","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109113","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109114","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109115","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109118","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109119","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109120","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109121","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109122","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109123","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109124","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109125","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109127","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109128","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109130","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109131","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109132","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109135","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109138","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109139","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109141","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109142","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109143","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109144","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109147","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109148","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109149","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109150","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109151","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109152","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109153","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109154","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109155","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109156","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109157","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109158","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109159","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109160","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109161","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109162","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109163","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109164","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109165","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109166","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109167","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109168","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109169","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109170","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109171","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109172","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109173","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109174","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109175","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109176","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109177","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109178","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109179","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109180","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109181","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109182","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109183","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109184","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109185","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109186","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109187","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109188","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109189","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109190","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109191","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109192","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109193","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109194","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109195","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["6109196","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1012557[74]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[50]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[51]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[52]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[53]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[54]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[55]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[56]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[57]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[58]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[59]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[60]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[61]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[62]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[67]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[68]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[70]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[71]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["1012557[72]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6108929","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["6113332","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] +["1019989","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020009","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020000","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020089","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309861","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309884","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019944","Posidriv","screw - Screwdriver","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1020095","Posidriv","screw - Screwdriver","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6117519","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6119997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120350","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["1020038","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018470","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2308432","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309845","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309860","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6115789","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117558","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117561","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117576","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120115","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120140","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120150","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120343","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120363","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120367","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120380","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120441","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120447","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120448","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120461","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6120462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["1019923","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019934","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018314","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018806","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018919","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6115525[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[59]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115537[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115539[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[18]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[46]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116050","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6116051","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1004733","Mortorq","screw - Screwdriver","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"] +["1019945","Posidriv","screw - Screwdriver","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["1019972","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6113839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115604","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116091","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116098","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115303","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115438","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115457","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119921","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119923","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["1019139","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020005","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1020025","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2309863","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6113101","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113155","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113185","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113270","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114933","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115592","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115607","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115617","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115621","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115623","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115651","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115655","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115673","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115685","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115686","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115687","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115689","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115721","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115724","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115782","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116066","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117511","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117527","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117550","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117554","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117563","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6117578","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115287","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115435","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115436","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115441","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115444","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115447","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115449","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115453","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6115455","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119918","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119919","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119920","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119922","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6119924","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["1019938","Posidriv","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1018813","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6115525[38]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115298","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6113512","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6113518","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6114923","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6115525[56]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6115534[25]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116630[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6116638[67]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6118546","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6115641","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6118367","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["6115544[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] +["6112876","Robertson","screw - Screwdriver","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"] +["6116000","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] +["1005924","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["995612","Posidriv","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999221","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999242","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999289","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["165381","Phillips","screw - Screwdriver","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"] +["6109335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109479","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109648","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112989","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112990","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112994","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112995","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113062","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113063","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113387","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113393","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113841","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113844","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113848","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114034","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114035","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114452","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114453","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114454","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114455","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114457","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114459","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114460","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114852","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114853","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114925","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115116","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115120","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115598","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108027[4]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[5]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[6]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["1003355","Posidriv","screw - Screwdriver","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"] +["999183","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999188","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["999254","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005888","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005890","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005900","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1005907","Posidriv","screw - Screwdriver","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] +["1012029","Posidriv","screw - Screwdriver","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["995583","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995627","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995628","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995629","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995630","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995631","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995632","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995633","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995634","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995635","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995636","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995637","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995638","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995639","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995640","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995641","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995642","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995643","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995644","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995645","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995646","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["163485","Phillips","screw - Screwdriver","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"] +["964693","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964694","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["2286681","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2288753","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["2289004","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1009531","Posidriv","screw - Screwdriver","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6106081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108682","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109275","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109282","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109332","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109348","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109351","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109356","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109359","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109360","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109361","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109362","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109365","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109370","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109371","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109372","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109374","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109376","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109378","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109381","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109405","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109436","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109463","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109464","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109471","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109472","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109475","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109500","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109509","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109510","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109638","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109639","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109640","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109650","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109653","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109658","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109662","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109665","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109672","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109753","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109754","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109757","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109758","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109759","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109761","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109762","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109767","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109769","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109778","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109781","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109783","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109787","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109791","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109795","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109798","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109800","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109801","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109803","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109807","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6109810","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6112998","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113001","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113003","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113005","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113006","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113007","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113011","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113016","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113020","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113028","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113032","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113049","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113051","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113056","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113057","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113058","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113059","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113060","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113061","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113064","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113067","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113068","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113069","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113070","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113071","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113072","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113073","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113077","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113082","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113083","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113092","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113094","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113110","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113112","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113117","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113118","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113127","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113131","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113135","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113137","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113142","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113143","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113144","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113146","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113147","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113148","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113149","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113151","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113152","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113153","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113154","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113156","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113157","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113158","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113160","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113161","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113162","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113163","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113164","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113165","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113166","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113167","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113170","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113172","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113173","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113174","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113175","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113176","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113177","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113178","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113179","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113180","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113181","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113182","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113183","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113184","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113186","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113187","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113188","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113189","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113190","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113191","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113192","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113194","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113195","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113197","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113198","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113200","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113201","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113202","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113203","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113204","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113205","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113206","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113207","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113208","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113209","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113210","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113211","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113212","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113213","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113214","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113215","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113217","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113218","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113219","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113220","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113222","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113223","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113224","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113225","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113227","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113228","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113230","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113231","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113232","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113233","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113234","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113235","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113236","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113237","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113238","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113240","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113243","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113244","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113245","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113248","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113249","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113251","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113252","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113253","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113254","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113259","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113260","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113263","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113267","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113271","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113272","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113273","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113274","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113276","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113278","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113281","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113284","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113286","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113289","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113291","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113292","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113299","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113300","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113301","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113302","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113304","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113306","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113307","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113308","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113309","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113310","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113311","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113313","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113314","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113315","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113317","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113318","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113319","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113320","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113322","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113323","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113324","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113328","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113333","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113334","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113342","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113385","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113394","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113395","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113396","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113402","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113403","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113404","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113406","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113407","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113408","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113411","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113412","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113416","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113419","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113420","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113424","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113425","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113433","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113830","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113831","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113832","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113833","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113836","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113850","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113864","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113866","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113868","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113869","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113870","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113871","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113873","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113874","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113879","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113880","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113885","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113886","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6113887","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114038","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114040","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114041","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114042","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114043","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114044","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114449","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114450","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114451","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114480","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114483","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114484","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114485","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114486","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114487","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114488","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114489","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114490","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114493","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114494","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114495","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114496","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114498","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114501","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114502","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114506","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114512","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114513","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114515","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114837","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114838","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114842","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114845","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114882","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114928","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114929","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114936","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114937","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114940","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114945","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114946","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114955","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114960","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114962","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114963","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114964","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114978","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6114997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115014","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115106","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115128","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115132","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115134","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115620","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115637","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115646","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115647","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115696","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6115717","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6116373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6107586[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[12]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107586[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107820[29]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[24]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108027[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108716[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108716[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6108800[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6109585[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6109585[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6111029[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112885[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112886[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112887[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6112904[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6107628","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107630","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107635","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6107647","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6108907","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["6108910","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] +["995647","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995648","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995650","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995652","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995653","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995654","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995655","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995656","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995657","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995658","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["995659","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["1016250","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["1019924","Posidriv","screw - Screwdriver","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6112942","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112943","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112944","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112945","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6114330","Robertson","screw - Screwdriver","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] +["6108018","Robertson","screw - Screwdriver","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6111029[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["6110309","Robertson","screw - Screwdriver","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"] +["6110932","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110941","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110944","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110949","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110959","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110961","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110965","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110967","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110969","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110970","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110971","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110973","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110974","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110976","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6110986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111669","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111670","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111692","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111695","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111697","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111700","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111701","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111702","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111029[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] +["964695","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964696","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964697","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964698","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964699","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964700","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964701","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964702","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964703","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964704","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964705","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["964706","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112948","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112946","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112947","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6112949","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6111703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111704","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111705","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111708","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111709","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111710","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111711","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111731","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111732","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111733","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111734","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111735","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111736","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111737","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111738","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111739","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111741","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111742","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111743","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111744","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111748","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111749","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111772","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111773","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111774","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6111775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] +["6108176","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109583","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109608","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["6109610","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] +["964707","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] +["6112950","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] +["6108913","Robertson","screw - Screwdriver","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] +["6071470","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071484","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071502","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071518","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071523","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071529","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["6071533","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] +["995282","Posidriv","screw - Screwdriver","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"] +["6101316","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101317","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101752","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101753","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101754","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101755","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] +["6101756","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/resourcespecifications.json b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/resourcespecifications.json index 0b61622860..2573e51aed 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/resourcespecifications.json +++ b/tests/artifacts/xdmod/regression/current/expected/reference/raw-data/resourcespecifications.json @@ -2,5 +2,5 @@ ["1","Frearson","CPU Allocated","1482796800","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] ["2","Mortorq","GPU Allocated","1482710400","1577923199","4000","400","10","4000","400","10","1.0000",null,"High-performance computing","Screwdriver","100"] ["3","Phillips","CPU Node Allocated","1482364800","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] -["4","Posidriv","CPU Allocated","1482278400","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] +["4","Posidriv","CPU Allocated","1482278400","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Wrench","100"] ["5","Robertson","GPU Node Allocated","1481500800","1577923199","4000","400","10","4000","400","10","1.0000",null,"High-performance computing","Screwdriver","100"] diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-Public User-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-Public User-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-Public User-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-Public User-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-admin-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-admin-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-admin-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-admin-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerdirector-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerdirector-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerdirector-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerdirector-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerstaff-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerstaff-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerstaff-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-centerstaff-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-normaluser-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-normaluser-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-normaluser-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-normaluser-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-principal-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-principal-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-principal-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-principal-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cd.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cd.one-center-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cd.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cd.one-center-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cs.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cs.one-center-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cs.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.cs.one-center-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.normal-user-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.normal-user-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.normal-user-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.normal-user-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.pi-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.pi-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.pi-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.pi-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_dev-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_dev-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr_dev-1.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/cloud/get_menus-test.usr_mgr_dev-1.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json index ff7b3dc38f..e2df7cb1ef 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json @@ -32,4 +32,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json index 05734dcae1..f03add0295 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] +] \ No newline at end of file diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-Public User-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-Public User-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-Public User-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-Public User-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-admin-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-admin-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-admin-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-admin-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerdirector-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerdirector-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerdirector-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerdirector-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerstaff-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerstaff-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerstaff-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-centerstaff-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-normaluser-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-normaluser-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-normaluser-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-normaluser-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-principal-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-principal-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-principal-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-principal-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cd.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cd.one-center-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cd.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cd.one-center-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cs.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cs.one-center-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cs.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.cs.one-center-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.normal-user-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.normal-user-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.normal-user-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.normal-user-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.pi-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.pi-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.pi-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.pi-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_dev-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_dev-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr_dev-1.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/storage/get_menus-test.usr_mgr_dev-1.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_interface/output/cloud/cd-get_menus.json b/tests/artifacts/xdmod/user_interface/output/cloud/cd-get_menus.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_interface/output/cloud/cd-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/cloud/cd-get_menus.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_interface/output/cloud/cs-get_menus.json b/tests/artifacts/xdmod/user_interface/output/cloud/cs-get_menus.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_interface/output/cloud/cs-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/cloud/cs-get_menus.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_interface/output/cloud/pi-get_menus.json b/tests/artifacts/xdmod/user_interface/output/cloud/pi-get_menus.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_interface/output/cloud/pi-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/cloud/pi-get_menus.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_interface/output/cloud/pub-get_menus.json b/tests/artifacts/xdmod/user_interface/output/cloud/pub-get_menus.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_interface/output/cloud/pub-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/cloud/pub-get_menus.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_interface/output/cloud/usr-get_menus.json b/tests/artifacts/xdmod/user_interface/output/cloud/usr-get_menus.json index 3be935aa64..939a445959 100644 --- a/tests/artifacts/xdmod/user_interface/output/cloud/usr-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/cloud/usr-get_menus.json @@ -111,6 +111,20 @@ "description": "Project", "leaf": false }, + { + "text": "Cloud by Provider", + "id": "group_by_Cloud_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Cloud", + "realm": "Cloud", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Provider", + "leaf": false + }, { "text": "Cloud by Resource", "id": "group_by_Cloud_resource", diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json deleted file mode 100644 index 99961aca50..0000000000 --- a/tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "text": "Gateways Summary", - "id": "group_by_Gateways_none", - "group_by": "none", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Screwdriver", - "leaf": false - }, - { - "text": "Gateways by Decanal Unit", - "id": "group_by_Gateways_nsfdirectorate", - "group_by": "nsfdirectorate", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Decanal Unit", - "leaf": false - }, - { - "text": "Gateways by Department", - "id": "group_by_Gateways_parentscience", - "group_by": "parentscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Department", - "leaf": false - }, - { - "text": "Gateways by Gateway", - "id": "group_by_Gateways_gateway", - "group_by": "gateway", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway", - "leaf": false - }, - { - "text": "Gateways by Gateway Acronym", - "id": "group_by_Gateways_acronym", - "group_by": "acronym", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Acronym", - "leaf": false - }, - { - "text": "Gateways by Gateway Community User", - "id": "group_by_Gateways_proxy_person", - "group_by": "proxy_person", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway Community User", - "leaf": false - }, - { - "text": "Gateways by Gateway PI", - "id": "group_by_Gateways_gateway_pi", - "group_by": "gateway_pi", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Gateway PI", - "leaf": false - }, - { - "text": "Gateways by Job Size", - "id": "group_by_Gateways_jobsize", - "group_by": "jobsize", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Size", - "leaf": false - }, - { - "text": "Gateways by Job Wait Time", - "id": "group_by_Gateways_jobwaittime", - "group_by": "jobwaittime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wait Time", - "leaf": false - }, - { - "text": "Gateways by Job Wall Time", - "id": "group_by_Gateways_jobwalltime", - "group_by": "jobwalltime", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Job Wall Time", - "leaf": false - }, - { - "text": "Gateways by Node Count", - "id": "group_by_Gateways_nodecount", - "group_by": "nodecount", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Node Count", - "leaf": false - }, - { - "text": "Gateways by PI Group", - "id": "group_by_Gateways_fieldofscience", - "group_by": "fieldofscience", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "PI Group", - "leaf": false - }, - { - "text": "Gateways by Queue", - "id": "group_by_Gateways_queue", - "group_by": "queue", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Queue", - "leaf": false - }, - { - "text": "Gateways by Resource", - "id": "group_by_Gateways_resource", - "group_by": "resource", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource", - "leaf": false - }, - { - "text": "Gateways by Resource Type", - "id": "group_by_Gateways_resource_type", - "group_by": "resource_type", - "query_group": "tg_usage", - "category": "Gateways", - "realm": "Gateways", - "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", - "node_type": "group_by", - "iconCls": "menu", - "description": "Resource Type", - "leaf": false - }, - { - "text": "", - "id": "-111", - "node_type": "separator", - "iconCls": "blank", - "leaf": true, - "disabled": true - } -] diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json index 7350e9d9c2..ed9fa46d5e 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json @@ -195,6 +195,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Jobs by Service Provider", + "id": "group_by_Jobs_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Jobs by System Username", "id": "group_by_Jobs_username", diff --git a/tests/artifacts/xdmod/user_interface/output/storage/cd-get_menus.json b/tests/artifacts/xdmod/user_interface/output/storage/cd-get_menus.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_interface/output/storage/cd-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/storage/cd-get_menus.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_interface/output/storage/cs-get_menus.json b/tests/artifacts/xdmod/user_interface/output/storage/cs-get_menus.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_interface/output/storage/cs-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/storage/cs-get_menus.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_interface/output/storage/pi-get_menus.json b/tests/artifacts/xdmod/user_interface/output/storage/pi-get_menus.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_interface/output/storage/pi-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/storage/pi-get_menus.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_interface/output/storage/pub-get_menus.json b/tests/artifacts/xdmod/user_interface/output/storage/pub-get_menus.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_interface/output/storage/pub-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/storage/pub-get_menus.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/artifacts/xdmod/user_interface/output/storage/usr-get_menus.json b/tests/artifacts/xdmod/user_interface/output/storage/usr-get_menus.json index e5197ae272..7857d0def5 100644 --- a/tests/artifacts/xdmod/user_interface/output/storage/usr-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/storage/usr-get_menus.json @@ -111,6 +111,20 @@ "description": "Resource Type", "leaf": false }, + { + "text": "Storage by Service Provider", + "id": "group_by_Storage_provider", + "group_by": "provider", + "query_group": "tg_usage", + "category": "Storage", + "realm": "Storage", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Service Provider", + "leaf": false + }, { "text": "Storage by System Username", "id": "group_by_Storage_username", diff --git a/tests/ci/bootstrap.sh b/tests/ci/bootstrap.sh index ac3d5a5a70..12cffd8e42 100755 --- a/tests/ci/bootstrap.sh +++ b/tests/ci/bootstrap.sh @@ -80,8 +80,8 @@ then copy_template_httpd_conf ~/bin/services start - mysql -e "CREATE USER 'root'@'gateway' IDENTIFIED BY ''; - GRANT ALL PRIVILEGES ON *.* TO 'root'@'gateway' WITH GRANT OPTION; + mysql -e "CREATE USER 'root'@'_gateway' IDENTIFIED BY ''; + GRANT ALL PRIVILEGES ON *.* TO 'root'@'_gateway' WITH GRANT OPTION; FLUSH PRIVILEGES;" # TODO: Replace diff files with hard fixes @@ -160,6 +160,20 @@ then ~/bin/services start + mysql -e "CREATE USER 'root'@'_gateway' IDENTIFIED BY ''; + GRANT ALL PRIVILEGES ON *.* TO 'root'@'_gateway' WITH GRANT OPTION; + FLUSH PRIVILEGES;" + expect $BASEDIR/scripts/xdmod-upgrade.tcl | col -b + cat /etc/xdmod/organization.json | jq '.[1] |= .+ {"name": "Wrench", "abbrev": "wrench"}' > /etc/xdmod/organization2.json + jq . /etc/xdmod/organization2.json > /etc/xdmod/organization.json + rm -f /etc/xdmod/organization2.json + + cat /etc/xdmod/resources.json | jq '[ .[] | if (.["resource"] == "pozidriv") then .["organization"] else empty end = "wrench"]' > /etc/xdmod/resources2.json + jq . /etc/xdmod/resources2.json > /etc/xdmod/resources.json + rm -f /etc/xdmod/resources2.json + + sudo -u xdmod /usr/share/xdmod/tools/etl/etl_overseer.php -p ingest-organizations -p ingest-resources + sudo -u xdmod xdmod-ingestor --last-modified-start-date "2017-01-01 00:00:00" fi diff --git a/tests/ci/scripts/xdmod-setup-jobs.tcl b/tests/ci/scripts/xdmod-setup-jobs.tcl index 9845c2f9b7..7f4d7a5fbd 100644 --- a/tests/ci/scripts/xdmod-setup-jobs.tcl +++ b/tests/ci/scripts/xdmod-setup-jobs.tcl @@ -12,7 +12,7 @@ set resources [list] lappend resources [list frearson Frearson hpc cpu screw 2016-12-27 400 4000] lappend resources [list mortorq Mortorq hpc gpu screw 2016-12-26 400 4000 400 4000] lappend resources [list phillips Phillips hpc cpunode screw 2016-12-22 400 4000] -lappend resources [list pozidriv Posidriv hpc cpu screw 2016-12-21 400 4000] +lappend resources [list pozidriv Posidriv hpc cpu wrench 2016-12-21 400 4000] lappend resources [list robertson Robertson hpc gpunode screw 2016-12-12 400 4000 400 4000] # ------------- diff --git a/tests/component/lib/AclsTest.php b/tests/component/lib/AclsTest.php index 298a4afd2f..343b4d9af4 100644 --- a/tests/component/lib/AclsTest.php +++ b/tests/component/lib/AclsTest.php @@ -306,6 +306,7 @@ public function provideGetQueryDescripters() 'resource', 'resource_type', 'username', + 'provider' ); $stats = array( diff --git a/tests/integration/lib/Controllers/UsageExplorerTest.php b/tests/integration/lib/Controllers/UsageExplorerTest.php index af1480a040..7d0ae6e9da 100644 --- a/tests/integration/lib/Controllers/UsageExplorerTest.php +++ b/tests/integration/lib/Controllers/UsageExplorerTest.php @@ -1209,6 +1209,11 @@ public function provideGetTimeseriesDataCsv() $arrays = array(); foreach (array($noGroupBy, $withGroupBy) as $groupParams) { foreach (array($noFilter, $withFilter) as $filterParams) { + + if($filterParams[0] === 'provider_filter' && $groupParams[0] === 'resource') { + $groupParams[2] = array('robertson', 'frearson', 'mortorq', 'phillips'); + } + foreach (array($emptyData, $nonEmptyData) as $emptinessParams) { $arrays[] = array_merge( $groupParams, diff --git a/tests/integration/lib/Rest/JobViewerTest.php b/tests/integration/lib/Rest/JobViewerTest.php index 8cf16322cb..42e33de4ec 100644 --- a/tests/integration/lib/Rest/JobViewerTest.php +++ b/tests/integration/lib/Rest/JobViewerTest.php @@ -30,6 +30,7 @@ private static function getDimensions() { 'queue', 'resource', 'resource_type', + 'provider', 'username', 'person' ); diff --git a/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php b/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php index 9aef32bde6..c8bf5f0b4c 100644 --- a/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php +++ b/tests/integration/lib/Rest/WarehouseExportControllerProviderTest.php @@ -234,7 +234,7 @@ public function testGetRealmsTokenAuth($role, $tokenType) { $index++; } - $counts = [28, 16, 16]; + $counts = [29, 17, 16]; for ($i = 0; $i < count($counts); $i++) { $this->assertCount( $counts[$i], diff --git a/tests/regression/lib/Controllers/UsageExplorerJobsTest.php b/tests/regression/lib/Controllers/UsageExplorerJobsTest.php index 96682b467c..b91f1b2514 100644 --- a/tests/regression/lib/Controllers/UsageExplorerJobsTest.php +++ b/tests/regression/lib/Controllers/UsageExplorerJobsTest.php @@ -88,6 +88,7 @@ public function csvExportProvider() 'person', 'pi', 'queue', + 'provider', 'resource', 'resource_type', 'username', diff --git a/tests/regression/lib/Controllers/UsageExplorerStorageTest.php b/tests/regression/lib/Controllers/UsageExplorerStorageTest.php index 6b109b70d9..cdd4fa3f75 100644 --- a/tests/regression/lib/Controllers/UsageExplorerStorageTest.php +++ b/tests/regression/lib/Controllers/UsageExplorerStorageTest.php @@ -65,6 +65,7 @@ public function csvExportProvider() 'pi', 'resource', 'resource_type', + 'provider', 'username', 'person' ]; diff --git a/tests/regression/lib/TestHarness/RegressionTestHelper.php b/tests/regression/lib/TestHarness/RegressionTestHelper.php index 31e817c1bf..78c5fade41 100644 --- a/tests/regression/lib/TestHarness/RegressionTestHelper.php +++ b/tests/regression/lib/TestHarness/RegressionTestHelper.php @@ -608,6 +608,7 @@ public function checkRawData($testName, array $input, $sort = false) 'raw-data', $testName, $data, + $testName, $testName ); } else { From 2f61bfd4b824e83e1ff8cc1b25f60501cb82bd7a Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 3 Mar 2025 11:56:23 -0500 Subject: [PATCH 4/9] readding gateway files that were removed --- .../gateways/get_menus-Public User-1.json | 220 ++++++++++++++++++ .../output/gateways/get_menus-admin-1.json | 220 ++++++++++++++++++ .../gateways/get_menus-centerdirector-1.json | 220 ++++++++++++++++++ .../gateways/get_menus-centerstaff-1.json | 220 ++++++++++++++++++ .../gateways/get_menus-normaluser-1.json | 220 ++++++++++++++++++ .../gateways/get_menus-principal-1.json | 220 ++++++++++++++++++ .../get_menus-test.cd.one-center-1.json | 220 ++++++++++++++++++ .../get_menus-test.cs.one-center-1.json | 220 ++++++++++++++++++ .../get_menus-test.normal-user-1.json | 220 ++++++++++++++++++ .../output/gateways/get_menus-test.pi-1.json | 220 ++++++++++++++++++ .../gateways/get_menus-test.usr_dev-1.json | 220 ++++++++++++++++++ .../gateways/get_menus-test.usr_mgr-1.json | 220 ++++++++++++++++++ .../get_menus-test.usr_mgr_dev-1.json | 220 ++++++++++++++++++ .../output/gateways/cd-get_menus.json | 220 ++++++++++++++++++ .../output/gateways/cs-get_menus.json | 220 ++++++++++++++++++ .../output/gateways/pi-get_menus.json | 220 ++++++++++++++++++ .../output/gateways/pub-get_menus.json | 220 ++++++++++++++++++ .../output/gateways/usr-get_menus.json | 220 ++++++++++++++++++ 18 files changed, 3960 insertions(+) create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json create mode 100644 tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json create mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json create mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json create mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json create mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json create mode 100644 tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-Public User-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-admin-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerdirector-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-centerstaff-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-normaluser-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-principal-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cd.one-center-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.cs.one-center-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.normal-user-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.pi-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_dev-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_admin/output/gateways/get_menus-test.usr_mgr_dev-1.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_interface/output/gateways/cd-get_menus.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_interface/output/gateways/cs-get_menus.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_interface/output/gateways/pi-get_menus.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_interface/output/gateways/pub-get_menus.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] diff --git a/tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json b/tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json new file mode 100644 index 0000000000..99961aca50 --- /dev/null +++ b/tests/artifacts/xdmod/user_interface/output/gateways/usr-get_menus.json @@ -0,0 +1,220 @@ +[ + { + "text": "Gateways Summary", + "id": "group_by_Gateways_none", + "group_by": "none", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"timeseries\",\"display_type\":\"line\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Screwdriver", + "leaf": false + }, + { + "text": "Gateways by Decanal Unit", + "id": "group_by_Gateways_nsfdirectorate", + "group_by": "nsfdirectorate", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"pie\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"n\",\"show_aggregate_labels\":\"y\",\"show_error_labels\":\"n\",\"enable_errors\":\"n\",\"enable_trend_line\":\"n\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Decanal Unit", + "leaf": false + }, + { + "text": "Gateways by Department", + "id": "group_by_Gateways_parentscience", + "group_by": "parentscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Department", + "leaf": false + }, + { + "text": "Gateways by Gateway", + "id": "group_by_Gateways_gateway", + "group_by": "gateway", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway", + "leaf": false + }, + { + "text": "Gateways by Gateway Acronym", + "id": "group_by_Gateways_acronym", + "group_by": "acronym", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Acronym", + "leaf": false + }, + { + "text": "Gateways by Gateway Community User", + "id": "group_by_Gateways_proxy_person", + "group_by": "proxy_person", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway Community User", + "leaf": false + }, + { + "text": "Gateways by Gateway PI", + "id": "group_by_Gateways_gateway_pi", + "group_by": "gateway_pi", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Gateway PI", + "leaf": false + }, + { + "text": "Gateways by Job Size", + "id": "group_by_Gateways_jobsize", + "group_by": "jobsize", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Size", + "leaf": false + }, + { + "text": "Gateways by Job Wait Time", + "id": "group_by_Gateways_jobwaittime", + "group_by": "jobwaittime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wait Time", + "leaf": false + }, + { + "text": "Gateways by Job Wall Time", + "id": "group_by_Gateways_jobwalltime", + "group_by": "jobwalltime", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Job Wall Time", + "leaf": false + }, + { + "text": "Gateways by Node Count", + "id": "group_by_Gateways_nodecount", + "group_by": "nodecount", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Node Count", + "leaf": false + }, + { + "text": "Gateways by PI Group", + "id": "group_by_Gateways_fieldofscience", + "group_by": "fieldofscience", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "PI Group", + "leaf": false + }, + { + "text": "Gateways by Queue", + "id": "group_by_Gateways_queue", + "group_by": "queue", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Queue", + "leaf": false + }, + { + "text": "Gateways by Resource", + "id": "group_by_Gateways_resource", + "group_by": "resource", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource", + "leaf": false + }, + { + "text": "Gateways by Resource Type", + "id": "group_by_Gateways_resource_type", + "group_by": "resource_type", + "query_group": "tg_usage", + "category": "Gateways", + "realm": "Gateways", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"h_bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "Resource Type", + "leaf": false + }, + { + "text": "", + "id": "-111", + "node_type": "separator", + "iconCls": "blank", + "leaf": true, + "disabled": true + } +] From e3e16b2006401604541e6a2369594b23d256a7f8 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 17 Mar 2025 09:20:29 -0400 Subject: [PATCH 5/9] removing tests added in error --- .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 15 - .../aggregate-Month-reference.csv | 15 - .../aggregate-Quarter-reference.csv | 15 - .../aggregate-Year-reference.csv | 15 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../cloud_core_time/aggregate-Day-cd.csv | 12 - .../cloud_core_time/aggregate-Day-cs.csv | 12 - .../cloud_core_time/aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../cloud_core_time/aggregate-Day-usr.csv | 10 - .../cloud_core_time/aggregate-Month-cd.csv | 12 - .../cloud_core_time/aggregate-Month-cs.csv | 12 - .../cloud_core_time/aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../cloud_core_time/aggregate-Month-usr.csv | 10 - .../cloud_core_time/aggregate-Quarter-cd.csv | 12 - .../cloud_core_time/aggregate-Quarter-cs.csv | 12 - .../cloud_core_time/aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../cloud_core_time/aggregate-Quarter-usr.csv | 10 - .../cloud_core_time/aggregate-Year-cd.csv | 12 - .../cloud_core_time/aggregate-Year-cs.csv | 12 - .../cloud_core_time/aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../cloud_core_time/aggregate-Year-usr.csv | 10 - .../cloud_core_time/timeseries-Day-cd.csv | 22 - .../cloud_core_time/timeseries-Day-cs.csv | 22 - .../cloud_core_time/timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../cloud_core_time/timeseries-Day-usr.csv | 10 - .../cloud_core_time/timeseries-Month-cd.csv | 10 - .../cloud_core_time/timeseries-Month-cs.csv | 10 - .../cloud_core_time/timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../cloud_core_time/timeseries-Month-usr.csv | 10 - .../cloud_core_time/timeseries-Quarter-cd.csv | 10 - .../cloud_core_time/timeseries-Quarter-cs.csv | 10 - .../cloud_core_time/timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../cloud_core_time/timeseries-Year-cd.csv | 10 - .../cloud_core_time/timeseries-Year-cs.csv | 10 - .../cloud_core_time/timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../cloud_core_time/timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 12 - .../aggregate-Day-cs.csv | 12 - .../aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 12 - .../aggregate-Month-cs.csv | 12 - .../aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 12 - .../aggregate-Quarter-cs.csv | 12 - .../aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 12 - .../aggregate-Year-cs.csv | 12 - .../aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 22 - .../timeseries-Day-cs.csv | 22 - .../timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 10 - .../timeseries-Month-cs.csv | 10 - .../timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 10 - .../timeseries-Quarter-cs.csv | 10 - .../timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 10 - .../timeseries-Year-cs.csv | 10 - .../timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../cloud_wall_time/aggregate-Day-cd.csv | 12 - .../cloud_wall_time/aggregate-Day-cs.csv | 12 - .../cloud_wall_time/aggregate-Day-pi.csv | 10 - .../aggregate-Day-reference.csv | 10 - .../cloud_wall_time/aggregate-Day-usr.csv | 10 - .../cloud_wall_time/aggregate-Month-cd.csv | 12 - .../cloud_wall_time/aggregate-Month-cs.csv | 12 - .../cloud_wall_time/aggregate-Month-pi.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../cloud_wall_time/aggregate-Month-usr.csv | 10 - .../cloud_wall_time/aggregate-Quarter-cd.csv | 12 - .../cloud_wall_time/aggregate-Quarter-cs.csv | 12 - .../cloud_wall_time/aggregate-Quarter-pi.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../cloud_wall_time/aggregate-Quarter-usr.csv | 10 - .../cloud_wall_time/aggregate-Year-cd.csv | 12 - .../cloud_wall_time/aggregate-Year-cs.csv | 12 - .../cloud_wall_time/aggregate-Year-pi.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../cloud_wall_time/aggregate-Year-usr.csv | 10 - .../cloud_wall_time/timeseries-Day-cd.csv | 22 - .../cloud_wall_time/timeseries-Day-cs.csv | 22 - .../cloud_wall_time/timeseries-Day-pi.csv | 10 - .../timeseries-Day-reference.csv | 10 - .../cloud_wall_time/timeseries-Day-usr.csv | 10 - .../cloud_wall_time/timeseries-Month-cd.csv | 10 - .../cloud_wall_time/timeseries-Month-cs.csv | 10 - .../cloud_wall_time/timeseries-Month-pi.csv | 10 - .../timeseries-Month-reference.csv | 10 - .../cloud_wall_time/timeseries-Month-usr.csv | 10 - .../cloud_wall_time/timeseries-Quarter-cd.csv | 10 - .../cloud_wall_time/timeseries-Quarter-cs.csv | 10 - .../cloud_wall_time/timeseries-Quarter-pi.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../cloud_wall_time/timeseries-Year-cd.csv | 10 - .../cloud_wall_time/timeseries-Year-cs.csv | 10 - .../cloud_wall_time/timeseries-Year-pi.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../cloud_wall_time/timeseries-Year-usr.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 22 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Year-reference.csv | 10 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 49 - .../avg_gpus/aggregate-Month-reference.csv | 49 - .../avg_gpus/aggregate-Quarter-reference.csv | 49 - .../avg_gpus/aggregate-Year-reference.csv | 49 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 49 - .../job_count/aggregate-Month-reference.csv | 49 - .../job_count/aggregate-Quarter-reference.csv | 49 - .../job_count/aggregate-Year-reference.csv | 49 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 49 - .../aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../aggregate-Year-reference.csv | 49 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 49 - .../utilization/aggregate-Month-reference.csv | 49 - .../aggregate-Quarter-reference.csv | 49 - .../utilization/aggregate-Year-reference.csv | 49 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 11 - .../avg_gpus/aggregate-Month-reference.csv | 11 - .../avg_gpus/aggregate-Quarter-reference.csv | 11 - .../avg_gpus/aggregate-Year-reference.csv | 11 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 11 - .../job_count/aggregate-Month-reference.csv | 11 - .../job_count/aggregate-Quarter-reference.csv | 11 - .../job_count/aggregate-Year-reference.csv | 11 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 11 - .../utilization/aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../utilization/aggregate-Year-reference.csv | 11 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 19 - .../avg_gpus/aggregate-Month-reference.csv | 19 - .../avg_gpus/aggregate-Quarter-reference.csv | 19 - .../avg_gpus/aggregate-Year-reference.csv | 19 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 19 - .../job_count/aggregate-Month-reference.csv | 19 - .../job_count/aggregate-Quarter-reference.csv | 19 - .../job_count/aggregate-Year-reference.csv | 19 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-cd.csv | 19 - .../aggregate-Day-cs.csv | 19 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 19 - .../aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../aggregate-Year-reference.csv | 19 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 19 - .../utilization/aggregate-Month-reference.csv | 19 - .../aggregate-Quarter-reference.csv | 19 - .../utilization/aggregate-Year-reference.csv | 19 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 17 - .../avg_gpus/aggregate-Month-reference.csv | 17 - .../avg_gpus/aggregate-Quarter-reference.csv | 17 - .../avg_gpus/aggregate-Year-reference.csv | 17 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 17 - .../job_count/aggregate-Month-reference.csv | 17 - .../job_count/aggregate-Quarter-reference.csv | 17 - .../job_count/aggregate-Year-reference.csv | 17 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 17 - .../utilization/aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../utilization/aggregate-Year-reference.csv | 17 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 17 - .../avg_gpus/aggregate-Month-reference.csv | 17 - .../avg_gpus/aggregate-Quarter-reference.csv | 17 - .../avg_gpus/aggregate-Year-reference.csv | 17 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 17 - .../job_count/aggregate-Month-reference.csv | 17 - .../job_count/aggregate-Quarter-reference.csv | 17 - .../job_count/aggregate-Year-reference.csv | 17 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 17 - .../utilization/aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../utilization/aggregate-Year-reference.csv | 17 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 24 - .../avg_gpus/aggregate-Month-reference.csv | 24 - .../avg_gpus/aggregate-Quarter-reference.csv | 24 - .../avg_gpus/aggregate-Year-reference.csv | 24 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 24 - .../job_count/aggregate-Month-reference.csv | 24 - .../job_count/aggregate-Quarter-reference.csv | 24 - .../job_count/aggregate-Year-reference.csv | 24 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 24 - .../aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../aggregate-Year-reference.csv | 24 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 24 - .../utilization/aggregate-Month-reference.csv | 24 - .../aggregate-Quarter-reference.csv | 24 - .../utilization/aggregate-Year-reference.csv | 24 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../none/avg_gpus/aggregate-Day-reference.csv | 10 - .../avg_gpus/aggregate-Month-reference.csv | 10 - .../avg_gpus/aggregate-Quarter-reference.csv | 10 - .../avg_gpus/aggregate-Year-reference.csv | 10 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 10 - .../job_count/aggregate-Month-reference.csv | 10 - .../job_count/aggregate-Quarter-reference.csv | 10 - .../job_count/aggregate-Year-reference.csv | 10 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 10 - .../utilization/aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../utilization/aggregate-Year-reference.csv | 10 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 16 - .../avg_gpus/aggregate-Month-reference.csv | 16 - .../avg_gpus/aggregate-Quarter-reference.csv | 16 - .../avg_gpus/aggregate-Year-reference.csv | 16 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 16 - .../job_count/aggregate-Month-reference.csv | 16 - .../job_count/aggregate-Quarter-reference.csv | 16 - .../job_count/aggregate-Year-reference.csv | 16 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-cd.csv | 16 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 16 - .../aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../aggregate-Year-reference.csv | 16 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 16 - .../utilization/aggregate-Month-reference.csv | 16 - .../aggregate-Quarter-reference.csv | 16 - .../utilization/aggregate-Year-reference.csv | 16 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 27 - .../avg_gpus/aggregate-Month-reference.csv | 27 - .../avg_gpus/aggregate-Quarter-reference.csv | 27 - .../avg_gpus/aggregate-Year-reference.csv | 27 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 27 - .../job_count/aggregate-Month-reference.csv | 27 - .../job_count/aggregate-Quarter-reference.csv | 27 - .../job_count/aggregate-Year-reference.csv | 27 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 27 - .../utilization/aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../utilization/aggregate-Year-reference.csv | 27 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 75 - .../avg_gpus/aggregate-Month-reference.csv | 75 - .../avg_gpus/aggregate-Quarter-reference.csv | 75 - .../avg_gpus/aggregate-Year-reference.csv | 75 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 75 - .../job_count/aggregate-Month-reference.csv | 75 - .../job_count/aggregate-Quarter-reference.csv | 75 - .../job_count/aggregate-Year-reference.csv | 75 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 75 - .../aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../aggregate-Year-reference.csv | 75 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 75 - .../utilization/aggregate-Month-reference.csv | 75 - .../aggregate-Quarter-reference.csv | 75 - .../utilization/aggregate-Year-reference.csv | 75 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../pi/avg_gpus/aggregate-Day-reference.csv | 50 - .../pi/avg_gpus/aggregate-Month-reference.csv | 50 - .../avg_gpus/aggregate-Quarter-reference.csv | 50 - .../pi/avg_gpus/aggregate-Year-reference.csv | 50 - .../pi/avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../pi/avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../pi/job_count/aggregate-Day-reference.csv | 50 - .../job_count/aggregate-Month-reference.csv | 50 - .../job_count/aggregate-Quarter-reference.csv | 50 - .../pi/job_count/aggregate-Year-reference.csv | 50 - .../pi/job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-cd.csv | 50 - .../aggregate-Day-pi.csv | 50 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Day-usr.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 50 - .../aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../aggregate-Year-reference.csv | 50 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 50 - .../utilization/aggregate-Month-reference.csv | 50 - .../aggregate-Quarter-reference.csv | 50 - .../utilization/aggregate-Year-reference.csv | 50 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 11 - .../avg_gpus/aggregate-Month-reference.csv | 11 - .../avg_gpus/aggregate-Quarter-reference.csv | 11 - .../avg_gpus/aggregate-Year-reference.csv | 11 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 11 - .../job_count/aggregate-Month-reference.csv | 11 - .../job_count/aggregate-Quarter-reference.csv | 11 - .../job_count/aggregate-Year-reference.csv | 11 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 11 - .../utilization/aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../utilization/aggregate-Year-reference.csv | 11 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../qos/avg_gpus/aggregate-Day-reference.csv | 28 - .../avg_gpus/aggregate-Month-reference.csv | 28 - .../avg_gpus/aggregate-Quarter-reference.csv | 28 - .../qos/avg_gpus/aggregate-Year-reference.csv | 28 - .../qos/avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../qos/job_count/aggregate-Day-reference.csv | 28 - .../job_count/aggregate-Month-reference.csv | 28 - .../job_count/aggregate-Quarter-reference.csv | 28 - .../job_count/aggregate-Year-reference.csv | 28 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-cd.csv | 28 - .../aggregate-Day-cs.csv | 28 - .../aggregate-Day-pi.csv | 28 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Day-usr.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 28 - .../aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../aggregate-Year-reference.csv | 28 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 28 - .../utilization/aggregate-Month-reference.csv | 28 - .../aggregate-Quarter-reference.csv | 28 - .../utilization/aggregate-Year-reference.csv | 28 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 27 - .../avg_gpus/aggregate-Month-reference.csv | 27 - .../avg_gpus/aggregate-Quarter-reference.csv | 27 - .../avg_gpus/aggregate-Year-reference.csv | 27 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 27 - .../job_count/aggregate-Month-reference.csv | 27 - .../job_count/aggregate-Quarter-reference.csv | 27 - .../job_count/aggregate-Year-reference.csv | 27 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 27 - .../aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../aggregate-Year-reference.csv | 27 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 27 - .../utilization/aggregate-Month-reference.csv | 27 - .../aggregate-Quarter-reference.csv | 27 - .../utilization/aggregate-Year-reference.csv | 27 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 14 - .../avg_gpus/aggregate-Month-reference.csv | 14 - .../avg_gpus/aggregate-Quarter-reference.csv | 14 - .../avg_gpus/aggregate-Year-reference.csv | 14 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 14 - .../job_count/aggregate-Month-reference.csv | 14 - .../job_count/aggregate-Quarter-reference.csv | 14 - .../job_count/aggregate-Year-reference.csv | 14 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 14 - .../utilization/aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../utilization/aggregate-Year-reference.csv | 14 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_cpu_hours/aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpu_hours/aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../avg_gpus/aggregate-Day-reference.csv | 10 - .../avg_gpus/aggregate-Month-reference.csv | 10 - .../avg_gpus/aggregate-Quarter-reference.csv | 10 - .../avg_gpus/aggregate-Year-reference.csv | 10 - .../avg_gpus/timeseries-Day-reference.csv | 20 - .../avg_gpus/timeseries-Month-reference.csv | 11 - .../avg_gpus/timeseries-Quarter-reference.csv | 11 - .../avg_gpus/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../job_count/aggregate-Day-reference.csv | 10 - .../job_count/aggregate-Month-reference.csv | 10 - .../job_count/aggregate-Quarter-reference.csv | 10 - .../job_count/aggregate-Year-reference.csv | 10 - .../job_count/timeseries-Day-reference.csv | 20 - .../job_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../job_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../utilization/aggregate-Day-reference.csv | 10 - .../utilization/aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../utilization/aggregate-Year-reference.csv | 10 - .../utilization/timeseries-Day-reference.csv | 20 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../utilization/timeseries-Year-reference.csv | 11 - .../active_person_count/aggregate-Day-cd.csv | 75 - .../active_person_count/aggregate-Day-cs.csv | 75 - .../active_person_count/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../active_person_count/aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../active_person_count/aggregate-Year-cd.csv | 75 - .../active_person_count/aggregate-Year-cs.csv | 75 - .../active_person_count/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../active_person_count/timeseries-Day-cd.csv | 20 - .../active_person_count/timeseries-Day-cs.csv | 20 - .../active_person_count/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../active_pi_count/aggregate-Day-cd.csv | 75 - .../active_pi_count/aggregate-Day-cs.csv | 75 - .../active_pi_count/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../active_pi_count/aggregate-Day-usr.csv | 11 - .../active_pi_count/aggregate-Month-cd.csv | 75 - .../active_pi_count/aggregate-Month-cs.csv | 75 - .../active_pi_count/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../active_pi_count/aggregate-Month-usr.csv | 11 - .../active_pi_count/aggregate-Quarter-cd.csv | 75 - .../active_pi_count/aggregate-Quarter-cs.csv | 75 - .../active_pi_count/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../active_pi_count/aggregate-Quarter-usr.csv | 11 - .../active_pi_count/aggregate-Year-cd.csv | 75 - .../active_pi_count/aggregate-Year-cs.csv | 75 - .../active_pi_count/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../active_pi_count/aggregate-Year-usr.csv | 11 - .../active_pi_count/timeseries-Day-cd.csv | 20 - .../active_pi_count/timeseries-Day-cs.csv | 20 - .../active_pi_count/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../active_pi_count/timeseries-Day-usr.csv | 13 - .../active_pi_count/timeseries-Month-cd.csv | 11 - .../active_pi_count/timeseries-Month-cs.csv | 11 - .../active_pi_count/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../active_pi_count/timeseries-Month-usr.csv | 12 - .../active_pi_count/timeseries-Quarter-cd.csv | 11 - .../active_pi_count/timeseries-Quarter-cs.csv | 11 - .../active_pi_count/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../active_pi_count/timeseries-Year-cd.csv | 11 - .../active_pi_count/timeseries-Year-cs.csv | 11 - .../active_pi_count/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../active_pi_count/timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../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 | 10 - .../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 | 10 - .../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 | 10 - .../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 | 10 - .../avg_cpu_hours/aggregate-Year-usr.csv | 11 - .../avg_cpu_hours/timeseries-Day-cd.csv | 20 - .../avg_cpu_hours/timeseries-Day-cs.csv | 20 - .../avg_cpu_hours/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_cpu_hours/timeseries-Day-usr.csv | 13 - .../avg_cpu_hours/timeseries-Month-cd.csv | 11 - .../avg_cpu_hours/timeseries-Month-cs.csv | 11 - .../avg_cpu_hours/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../avg_cpu_hours/timeseries-Month-usr.csv | 12 - .../avg_cpu_hours/timeseries-Quarter-cd.csv | 11 - .../avg_cpu_hours/timeseries-Quarter-cs.csv | 11 - .../avg_cpu_hours/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../avg_cpu_hours/timeseries-Quarter-usr.csv | 12 - .../avg_cpu_hours/timeseries-Year-cd.csv | 11 - .../avg_cpu_hours/timeseries-Year-cs.csv | 11 - .../avg_cpu_hours/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../avg_cpu_hours/timeseries-Year-usr.csv | 12 - .../avg_gpu_hours/aggregate-Day-cd.csv | 75 - .../avg_gpu_hours/aggregate-Day-cs.csv | 75 - .../avg_gpu_hours/aggregate-Day-pi.csv | 16 - .../avg_gpu_hours/aggregate-Day-reference.csv | 10 - .../avg_gpu_hours/aggregate-Day-usr.csv | 11 - .../avg_gpu_hours/aggregate-Month-cd.csv | 75 - .../avg_gpu_hours/aggregate-Month-cs.csv | 75 - .../avg_gpu_hours/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../avg_gpu_hours/aggregate-Month-usr.csv | 11 - .../avg_gpu_hours/aggregate-Quarter-cd.csv | 75 - .../avg_gpu_hours/aggregate-Quarter-cs.csv | 75 - .../avg_gpu_hours/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../avg_gpu_hours/aggregate-Quarter-usr.csv | 11 - .../avg_gpu_hours/aggregate-Year-cd.csv | 75 - .../avg_gpu_hours/aggregate-Year-cs.csv | 75 - .../avg_gpu_hours/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../avg_gpu_hours/aggregate-Year-usr.csv | 11 - .../avg_gpu_hours/timeseries-Day-cd.csv | 20 - .../avg_gpu_hours/timeseries-Day-cs.csv | 20 - .../avg_gpu_hours/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_gpu_hours/timeseries-Day-usr.csv | 13 - .../avg_gpu_hours/timeseries-Month-cd.csv | 11 - .../avg_gpu_hours/timeseries-Month-cs.csv | 11 - .../avg_gpu_hours/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../avg_gpu_hours/timeseries-Month-usr.csv | 12 - .../avg_gpu_hours/timeseries-Quarter-cd.csv | 11 - .../avg_gpu_hours/timeseries-Quarter-cs.csv | 11 - .../avg_gpu_hours/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../avg_gpu_hours/timeseries-Quarter-usr.csv | 12 - .../avg_gpu_hours/timeseries-Year-cd.csv | 11 - .../avg_gpu_hours/timeseries-Year-cs.csv | 11 - .../avg_gpu_hours/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../avg_gpu_hours/timeseries-Year-usr.csv | 12 - .../username/avg_gpus/aggregate-Day-cd.csv | 75 - .../username/avg_gpus/aggregate-Day-cs.csv | 75 - .../username/avg_gpus/aggregate-Day-pi.csv | 16 - .../avg_gpus/aggregate-Day-reference.csv | 10 - .../username/avg_gpus/aggregate-Day-usr.csv | 11 - .../username/avg_gpus/aggregate-Month-cd.csv | 75 - .../username/avg_gpus/aggregate-Month-cs.csv | 75 - .../username/avg_gpus/aggregate-Month-pi.csv | 16 - .../avg_gpus/aggregate-Month-reference.csv | 10 - .../username/avg_gpus/aggregate-Month-usr.csv | 11 - .../avg_gpus/aggregate-Quarter-cd.csv | 75 - .../avg_gpus/aggregate-Quarter-cs.csv | 75 - .../avg_gpus/aggregate-Quarter-pi.csv | 16 - .../avg_gpus/aggregate-Quarter-reference.csv | 10 - .../avg_gpus/aggregate-Quarter-usr.csv | 11 - .../username/avg_gpus/aggregate-Year-cd.csv | 75 - .../username/avg_gpus/aggregate-Year-cs.csv | 75 - .../username/avg_gpus/aggregate-Year-pi.csv | 16 - .../avg_gpus/aggregate-Year-reference.csv | 10 - .../username/avg_gpus/aggregate-Year-usr.csv | 11 - .../username/avg_gpus/timeseries-Day-cd.csv | 20 - .../username/avg_gpus/timeseries-Day-cs.csv | 20 - .../username/avg_gpus/timeseries-Day-pi.csv | 20 - .../avg_gpus/timeseries-Day-reference.csv | 10 - .../username/avg_gpus/timeseries-Day-usr.csv | 13 - .../username/avg_gpus/timeseries-Month-cd.csv | 11 - .../username/avg_gpus/timeseries-Month-cs.csv | 11 - .../username/avg_gpus/timeseries-Month-pi.csv | 12 - .../avg_gpus/timeseries-Month-reference.csv | 10 - .../avg_gpus/timeseries-Month-usr.csv | 12 - .../avg_gpus/timeseries-Quarter-cd.csv | 11 - .../avg_gpus/timeseries-Quarter-cs.csv | 11 - .../avg_gpus/timeseries-Quarter-pi.csv | 12 - .../avg_gpus/timeseries-Quarter-reference.csv | 10 - .../avg_gpus/timeseries-Quarter-usr.csv | 12 - .../username/avg_gpus/timeseries-Year-cd.csv | 11 - .../username/avg_gpus/timeseries-Year-cs.csv | 11 - .../username/avg_gpus/timeseries-Year-pi.csv | 12 - .../avg_gpus/timeseries-Year-reference.csv | 10 - .../username/avg_gpus/timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../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 | 10 - .../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 | 10 - .../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 | 10 - .../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 | 10 - .../avg_node_hours/aggregate-Year-usr.csv | 11 - .../avg_node_hours/timeseries-Day-cd.csv | 20 - .../avg_node_hours/timeseries-Day-cs.csv | 20 - .../avg_node_hours/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_node_hours/timeseries-Day-usr.csv | 13 - .../avg_node_hours/timeseries-Month-cd.csv | 11 - .../avg_node_hours/timeseries-Month-cs.csv | 11 - .../avg_node_hours/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../avg_node_hours/timeseries-Month-usr.csv | 12 - .../avg_node_hours/timeseries-Quarter-cd.csv | 11 - .../avg_node_hours/timeseries-Quarter-cs.csv | 11 - .../avg_node_hours/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../avg_node_hours/timeseries-Quarter-usr.csv | 12 - .../avg_node_hours/timeseries-Year-cd.csv | 11 - .../avg_node_hours/timeseries-Year-cs.csv | 11 - .../avg_node_hours/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../avg_node_hours/timeseries-Year-usr.csv | 12 - .../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 | 10 - .../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 | 10 - .../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 | 10 - .../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 | 10 - .../avg_processors/aggregate-Year-usr.csv | 11 - .../avg_processors/timeseries-Day-cd.csv | 20 - .../avg_processors/timeseries-Day-cs.csv | 20 - .../avg_processors/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_processors/timeseries-Day-usr.csv | 13 - .../avg_processors/timeseries-Month-cd.csv | 11 - .../avg_processors/timeseries-Month-cs.csv | 11 - .../avg_processors/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../avg_processors/timeseries-Month-usr.csv | 12 - .../avg_processors/timeseries-Quarter-cd.csv | 11 - .../avg_processors/timeseries-Quarter-cs.csv | 11 - .../avg_processors/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../avg_processors/timeseries-Quarter-usr.csv | 12 - .../avg_processors/timeseries-Year-cd.csv | 11 - .../avg_processors/timeseries-Year-cs.csv | 11 - .../avg_processors/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../avg_processors/timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../expansion_factor/aggregate-Day-cd.csv | 75 - .../expansion_factor/aggregate-Day-cs.csv | 75 - .../expansion_factor/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../expansion_factor/aggregate-Day-usr.csv | 11 - .../expansion_factor/aggregate-Month-cd.csv | 75 - .../expansion_factor/aggregate-Month-cs.csv | 75 - .../expansion_factor/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../expansion_factor/aggregate-Month-usr.csv | 11 - .../expansion_factor/aggregate-Quarter-cd.csv | 75 - .../expansion_factor/aggregate-Quarter-cs.csv | 75 - .../expansion_factor/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../expansion_factor/aggregate-Year-cd.csv | 75 - .../expansion_factor/aggregate-Year-cs.csv | 75 - .../expansion_factor/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../expansion_factor/aggregate-Year-usr.csv | 11 - .../expansion_factor/timeseries-Day-cd.csv | 20 - .../expansion_factor/timeseries-Day-cs.csv | 20 - .../expansion_factor/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../expansion_factor/timeseries-Day-usr.csv | 13 - .../expansion_factor/timeseries-Month-cd.csv | 11 - .../expansion_factor/timeseries-Month-cs.csv | 11 - .../expansion_factor/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../expansion_factor/timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../expansion_factor/timeseries-Year-cd.csv | 11 - .../expansion_factor/timeseries-Year-cs.csv | 11 - .../expansion_factor/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../expansion_factor/timeseries-Year-usr.csv | 12 - .../username/job_count/aggregate-Day-cd.csv | 75 - .../username/job_count/aggregate-Day-cs.csv | 75 - .../username/job_count/aggregate-Day-pi.csv | 16 - .../job_count/aggregate-Day-reference.csv | 10 - .../username/job_count/aggregate-Day-usr.csv | 11 - .../username/job_count/aggregate-Month-cd.csv | 75 - .../username/job_count/aggregate-Month-cs.csv | 75 - .../username/job_count/aggregate-Month-pi.csv | 16 - .../job_count/aggregate-Month-reference.csv | 10 - .../job_count/aggregate-Month-usr.csv | 11 - .../job_count/aggregate-Quarter-cd.csv | 75 - .../job_count/aggregate-Quarter-cs.csv | 75 - .../job_count/aggregate-Quarter-pi.csv | 16 - .../job_count/aggregate-Quarter-reference.csv | 10 - .../job_count/aggregate-Quarter-usr.csv | 11 - .../username/job_count/aggregate-Year-cd.csv | 75 - .../username/job_count/aggregate-Year-cs.csv | 75 - .../username/job_count/aggregate-Year-pi.csv | 16 - .../job_count/aggregate-Year-reference.csv | 10 - .../username/job_count/aggregate-Year-usr.csv | 11 - .../username/job_count/timeseries-Day-cd.csv | 20 - .../username/job_count/timeseries-Day-cs.csv | 20 - .../username/job_count/timeseries-Day-pi.csv | 20 - .../job_count/timeseries-Day-reference.csv | 10 - .../username/job_count/timeseries-Day-usr.csv | 13 - .../job_count/timeseries-Month-cd.csv | 11 - .../job_count/timeseries-Month-cs.csv | 11 - .../job_count/timeseries-Month-pi.csv | 12 - .../job_count/timeseries-Month-reference.csv | 10 - .../job_count/timeseries-Month-usr.csv | 12 - .../job_count/timeseries-Quarter-cd.csv | 11 - .../job_count/timeseries-Quarter-cs.csv | 11 - .../job_count/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../job_count/timeseries-Quarter-usr.csv | 12 - .../username/job_count/timeseries-Year-cd.csv | 11 - .../username/job_count/timeseries-Year-cs.csv | 11 - .../username/job_count/timeseries-Year-pi.csv | 12 - .../job_count/timeseries-Year-reference.csv | 10 - .../job_count/timeseries-Year-usr.csv | 12 - .../max_processors/aggregate-Day-cd.csv | 75 - .../max_processors/aggregate-Day-cs.csv | 75 - .../max_processors/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../max_processors/aggregate-Day-usr.csv | 11 - .../max_processors/aggregate-Month-cd.csv | 75 - .../max_processors/aggregate-Month-cs.csv | 75 - .../max_processors/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../max_processors/aggregate-Month-usr.csv | 11 - .../max_processors/aggregate-Quarter-cd.csv | 75 - .../max_processors/aggregate-Quarter-cs.csv | 75 - .../max_processors/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../max_processors/aggregate-Quarter-usr.csv | 11 - .../max_processors/aggregate-Year-cd.csv | 75 - .../max_processors/aggregate-Year-cs.csv | 75 - .../max_processors/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../max_processors/aggregate-Year-usr.csv | 11 - .../max_processors/timeseries-Day-cd.csv | 20 - .../max_processors/timeseries-Day-cs.csv | 20 - .../max_processors/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../max_processors/timeseries-Day-usr.csv | 13 - .../max_processors/timeseries-Month-cd.csv | 11 - .../max_processors/timeseries-Month-cs.csv | 11 - .../max_processors/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../max_processors/timeseries-Month-usr.csv | 12 - .../max_processors/timeseries-Quarter-cd.csv | 11 - .../max_processors/timeseries-Quarter-cs.csv | 11 - .../max_processors/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../max_processors/timeseries-Quarter-usr.csv | 12 - .../max_processors/timeseries-Year-cd.csv | 11 - .../max_processors/timeseries-Year-cs.csv | 11 - .../max_processors/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../max_processors/timeseries-Year-usr.csv | 12 - .../min_processors/aggregate-Day-cd.csv | 75 - .../min_processors/aggregate-Day-cs.csv | 75 - .../min_processors/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../min_processors/aggregate-Day-usr.csv | 11 - .../min_processors/aggregate-Month-cd.csv | 75 - .../min_processors/aggregate-Month-cs.csv | 75 - .../min_processors/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../min_processors/aggregate-Month-usr.csv | 11 - .../min_processors/aggregate-Quarter-cd.csv | 75 - .../min_processors/aggregate-Quarter-cs.csv | 75 - .../min_processors/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../min_processors/aggregate-Quarter-usr.csv | 11 - .../min_processors/aggregate-Year-cd.csv | 75 - .../min_processors/aggregate-Year-cs.csv | 75 - .../min_processors/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../min_processors/aggregate-Year-usr.csv | 11 - .../min_processors/timeseries-Day-cd.csv | 20 - .../min_processors/timeseries-Day-cs.csv | 20 - .../min_processors/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../min_processors/timeseries-Day-usr.csv | 13 - .../min_processors/timeseries-Month-cd.csv | 11 - .../min_processors/timeseries-Month-cs.csv | 11 - .../min_processors/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../min_processors/timeseries-Month-usr.csv | 12 - .../min_processors/timeseries-Quarter-cd.csv | 11 - .../min_processors/timeseries-Quarter-cs.csv | 11 - .../min_processors/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../min_processors/timeseries-Quarter-usr.csv | 12 - .../min_processors/timeseries-Year-cd.csv | 11 - .../min_processors/timeseries-Year-cs.csv | 11 - .../min_processors/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../min_processors/timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../running_job_count/aggregate-Day-cd.csv | 75 - .../running_job_count/aggregate-Day-cs.csv | 75 - .../running_job_count/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../running_job_count/aggregate-Day-usr.csv | 11 - .../running_job_count/aggregate-Month-cd.csv | 75 - .../running_job_count/aggregate-Month-cs.csv | 75 - .../running_job_count/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../running_job_count/aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../running_job_count/aggregate-Year-cd.csv | 75 - .../running_job_count/aggregate-Year-cs.csv | 75 - .../running_job_count/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../running_job_count/aggregate-Year-usr.csv | 11 - .../running_job_count/timeseries-Day-cd.csv | 20 - .../running_job_count/timeseries-Day-cs.csv | 20 - .../running_job_count/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../running_job_count/timeseries-Day-usr.csv | 13 - .../running_job_count/timeseries-Month-cd.csv | 11 - .../running_job_count/timeseries-Month-cs.csv | 11 - .../running_job_count/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../running_job_count/timeseries-Year-cd.csv | 11 - .../running_job_count/timeseries-Year-cs.csv | 11 - .../running_job_count/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../running_job_count/timeseries-Year-usr.csv | 12 - .../started_job_count/aggregate-Day-cd.csv | 75 - .../started_job_count/aggregate-Day-cs.csv | 75 - .../started_job_count/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../started_job_count/aggregate-Day-usr.csv | 11 - .../started_job_count/aggregate-Month-cd.csv | 75 - .../started_job_count/aggregate-Month-cs.csv | 75 - .../started_job_count/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../started_job_count/aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../started_job_count/aggregate-Year-cd.csv | 75 - .../started_job_count/aggregate-Year-cs.csv | 75 - .../started_job_count/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../started_job_count/aggregate-Year-usr.csv | 11 - .../started_job_count/timeseries-Day-cd.csv | 20 - .../started_job_count/timeseries-Day-cs.csv | 20 - .../started_job_count/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../started_job_count/timeseries-Day-usr.csv | 13 - .../started_job_count/timeseries-Month-cd.csv | 11 - .../started_job_count/timeseries-Month-cs.csv | 11 - .../started_job_count/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../started_job_count/timeseries-Year-cd.csv | 11 - .../started_job_count/timeseries-Year-cs.csv | 11 - .../started_job_count/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../started_job_count/timeseries-Year-usr.csv | 12 - .../submitted_job_count/aggregate-Day-cd.csv | 75 - .../submitted_job_count/aggregate-Day-cs.csv | 75 - .../submitted_job_count/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../submitted_job_count/aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../submitted_job_count/aggregate-Year-cd.csv | 75 - .../submitted_job_count/aggregate-Year-cs.csv | 75 - .../submitted_job_count/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../submitted_job_count/timeseries-Day-cd.csv | 20 - .../submitted_job_count/timeseries-Day-cs.csv | 20 - .../submitted_job_count/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../total_cpu_hours/aggregate-Day-cd.csv | 75 - .../total_cpu_hours/aggregate-Day-cs.csv | 75 - .../total_cpu_hours/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../total_cpu_hours/aggregate-Day-usr.csv | 11 - .../total_cpu_hours/aggregate-Month-cd.csv | 75 - .../total_cpu_hours/aggregate-Month-cs.csv | 75 - .../total_cpu_hours/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../total_cpu_hours/aggregate-Month-usr.csv | 11 - .../total_cpu_hours/aggregate-Quarter-cd.csv | 75 - .../total_cpu_hours/aggregate-Quarter-cs.csv | 75 - .../total_cpu_hours/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../total_cpu_hours/aggregate-Quarter-usr.csv | 11 - .../total_cpu_hours/aggregate-Year-cd.csv | 75 - .../total_cpu_hours/aggregate-Year-cs.csv | 75 - .../total_cpu_hours/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../total_cpu_hours/aggregate-Year-usr.csv | 11 - .../total_cpu_hours/timeseries-Day-cd.csv | 20 - .../total_cpu_hours/timeseries-Day-cs.csv | 20 - .../total_cpu_hours/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../total_cpu_hours/timeseries-Day-usr.csv | 13 - .../total_cpu_hours/timeseries-Month-cd.csv | 11 - .../total_cpu_hours/timeseries-Month-cs.csv | 11 - .../total_cpu_hours/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../total_cpu_hours/timeseries-Month-usr.csv | 12 - .../total_cpu_hours/timeseries-Quarter-cd.csv | 11 - .../total_cpu_hours/timeseries-Quarter-cs.csv | 11 - .../total_cpu_hours/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../total_cpu_hours/timeseries-Year-cd.csv | 11 - .../total_cpu_hours/timeseries-Year-cs.csv | 11 - .../total_cpu_hours/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../total_cpu_hours/timeseries-Year-usr.csv | 12 - .../total_gpu_hours/aggregate-Day-cd.csv | 75 - .../total_gpu_hours/aggregate-Day-cs.csv | 75 - .../total_gpu_hours/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../total_gpu_hours/aggregate-Day-usr.csv | 11 - .../total_gpu_hours/aggregate-Month-cd.csv | 75 - .../total_gpu_hours/aggregate-Month-cs.csv | 75 - .../total_gpu_hours/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../total_gpu_hours/aggregate-Month-usr.csv | 11 - .../total_gpu_hours/aggregate-Quarter-cd.csv | 75 - .../total_gpu_hours/aggregate-Quarter-cs.csv | 75 - .../total_gpu_hours/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../total_gpu_hours/aggregate-Quarter-usr.csv | 11 - .../total_gpu_hours/aggregate-Year-cd.csv | 75 - .../total_gpu_hours/aggregate-Year-cs.csv | 75 - .../total_gpu_hours/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../total_gpu_hours/aggregate-Year-usr.csv | 11 - .../total_gpu_hours/timeseries-Day-cd.csv | 20 - .../total_gpu_hours/timeseries-Day-cs.csv | 20 - .../total_gpu_hours/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../total_gpu_hours/timeseries-Day-usr.csv | 13 - .../total_gpu_hours/timeseries-Month-cd.csv | 11 - .../total_gpu_hours/timeseries-Month-cs.csv | 11 - .../total_gpu_hours/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../total_gpu_hours/timeseries-Month-usr.csv | 12 - .../total_gpu_hours/timeseries-Quarter-cd.csv | 11 - .../total_gpu_hours/timeseries-Quarter-cs.csv | 11 - .../total_gpu_hours/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../total_gpu_hours/timeseries-Year-cd.csv | 11 - .../total_gpu_hours/timeseries-Year-cs.csv | 11 - .../total_gpu_hours/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../total_gpu_hours/timeseries-Year-usr.csv | 12 - .../total_node_hours/aggregate-Day-cd.csv | 75 - .../total_node_hours/aggregate-Day-cs.csv | 75 - .../total_node_hours/aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../total_node_hours/aggregate-Day-usr.csv | 11 - .../total_node_hours/aggregate-Month-cd.csv | 75 - .../total_node_hours/aggregate-Month-cs.csv | 75 - .../total_node_hours/aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../total_node_hours/aggregate-Month-usr.csv | 11 - .../total_node_hours/aggregate-Quarter-cd.csv | 75 - .../total_node_hours/aggregate-Quarter-cs.csv | 75 - .../total_node_hours/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../total_node_hours/aggregate-Year-cd.csv | 75 - .../total_node_hours/aggregate-Year-cs.csv | 75 - .../total_node_hours/aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../total_node_hours/aggregate-Year-usr.csv | 11 - .../total_node_hours/timeseries-Day-cd.csv | 20 - .../total_node_hours/timeseries-Day-cs.csv | 20 - .../total_node_hours/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../total_node_hours/timeseries-Day-usr.csv | 13 - .../total_node_hours/timeseries-Month-cd.csv | 11 - .../total_node_hours/timeseries-Month-cs.csv | 11 - .../total_node_hours/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../total_node_hours/timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../total_node_hours/timeseries-Year-cd.csv | 11 - .../total_node_hours/timeseries-Year-cs.csv | 11 - .../total_node_hours/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../total_node_hours/timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../aggregate-Day-cd.csv | 75 - .../aggregate-Day-cs.csv | 75 - .../aggregate-Day-pi.csv | 16 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 11 - .../aggregate-Month-cd.csv | 75 - .../aggregate-Month-cs.csv | 75 - .../aggregate-Month-pi.csv | 16 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 11 - .../aggregate-Quarter-cd.csv | 75 - .../aggregate-Quarter-cs.csv | 75 - .../aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 11 - .../aggregate-Year-cd.csv | 75 - .../aggregate-Year-cs.csv | 75 - .../aggregate-Year-pi.csv | 16 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 11 - .../timeseries-Day-cd.csv | 20 - .../timeseries-Day-cs.csv | 20 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 13 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 12 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 12 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 12 - .../username/utilization/aggregate-Day-cd.csv | 75 - .../username/utilization/aggregate-Day-cs.csv | 75 - .../username/utilization/aggregate-Day-pi.csv | 16 - .../utilization/aggregate-Day-reference.csv | 10 - .../utilization/aggregate-Day-usr.csv | 11 - .../utilization/aggregate-Month-cd.csv | 75 - .../utilization/aggregate-Month-cs.csv | 75 - .../utilization/aggregate-Month-pi.csv | 16 - .../utilization/aggregate-Month-reference.csv | 10 - .../utilization/aggregate-Month-usr.csv | 11 - .../utilization/aggregate-Quarter-cd.csv | 75 - .../utilization/aggregate-Quarter-cs.csv | 75 - .../utilization/aggregate-Quarter-pi.csv | 16 - .../aggregate-Quarter-reference.csv | 10 - .../utilization/aggregate-Quarter-usr.csv | 11 - .../utilization/aggregate-Year-cd.csv | 75 - .../utilization/aggregate-Year-cs.csv | 75 - .../utilization/aggregate-Year-pi.csv | 16 - .../utilization/aggregate-Year-reference.csv | 10 - .../utilization/aggregate-Year-usr.csv | 11 - .../utilization/timeseries-Day-cd.csv | 20 - .../utilization/timeseries-Day-cs.csv | 20 - .../utilization/timeseries-Day-pi.csv | 20 - .../utilization/timeseries-Day-reference.csv | 10 - .../utilization/timeseries-Day-usr.csv | 13 - .../utilization/timeseries-Month-cd.csv | 11 - .../utilization/timeseries-Month-cs.csv | 11 - .../utilization/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../utilization/timeseries-Month-usr.csv | 12 - .../utilization/timeseries-Quarter-cd.csv | 11 - .../utilization/timeseries-Quarter-cs.csv | 11 - .../utilization/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../utilization/timeseries-Quarter-usr.csv | 12 - .../utilization/timeseries-Year-cd.csv | 11 - .../utilization/timeseries-Year-cs.csv | 11 - .../utilization/timeseries-Year-pi.csv | 12 - .../utilization/timeseries-Year-reference.csv | 10 - .../utilization/timeseries-Year-usr.csv | 12 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 14 - .../aggregate-Month-reference.csv | 14 - .../aggregate-Quarter-reference.csv | 14 - .../aggregate-Year-reference.csv | 14 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 13 - .../aggregate-Month-reference.csv | 13 - .../aggregate-Quarter-reference.csv | 13 - .../aggregate-Year-reference.csv | 13 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 26 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 41 - .../aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../aggregate-Year-reference.csv | 41 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 41 - .../aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../aggregate-Year-reference.csv | 41 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 41 - .../aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../aggregate-Year-reference.csv | 41 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 41 - .../aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../aggregate-Year-reference.csv | 41 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 41 - .../aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../aggregate-Year-reference.csv | 41 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 41 - .../aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../aggregate-Year-reference.csv | 41 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 41 - .../user_count/aggregate-Month-reference.csv | 41 - .../aggregate-Quarter-reference.csv | 41 - .../user_count/aggregate-Year-reference.csv | 41 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 12 - .../aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../aggregate-Year-reference.csv | 12 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 12 - .../user_count/aggregate-Month-reference.csv | 12 - .../aggregate-Quarter-reference.csv | 12 - .../user_count/aggregate-Year-reference.csv | 12 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 10 - .../user_count/aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../user_count/aggregate-Year-reference.csv | 10 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 17 - .../aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../aggregate-Year-reference.csv | 17 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 17 - .../user_count/aggregate-Month-reference.csv | 17 - .../aggregate-Quarter-reference.csv | 17 - .../user_count/aggregate-Year-reference.csv | 17 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 26 - .../aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../aggregate-Year-reference.csv | 26 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 26 - .../aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../aggregate-Year-reference.csv | 26 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 26 - .../aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../aggregate-Year-reference.csv | 26 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 26 - .../aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../aggregate-Year-reference.csv | 26 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 26 - .../aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../aggregate-Year-reference.csv | 26 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 26 - .../aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../aggregate-Year-reference.csv | 26 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 26 - .../user_count/aggregate-Month-reference.csv | 26 - .../aggregate-Quarter-reference.csv | 26 - .../user_count/aggregate-Year-reference.csv | 26 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 353 ----- .../aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../aggregate-Year-reference.csv | 353 ----- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 353 ----- .../aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../aggregate-Year-reference.csv | 353 ----- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 353 ----- .../aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../aggregate-Year-reference.csv | 353 ----- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 353 ----- .../aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../aggregate-Year-reference.csv | 353 ----- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 353 ----- .../aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../aggregate-Year-reference.csv | 353 ----- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 353 ----- .../aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../aggregate-Year-reference.csv | 353 ----- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 353 ----- .../user_count/aggregate-Month-reference.csv | 353 ----- .../aggregate-Quarter-reference.csv | 353 ----- .../user_count/aggregate-Year-reference.csv | 353 ----- .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 165 --- .../aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../aggregate-Year-reference.csv | 165 --- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 165 --- .../aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../aggregate-Year-reference.csv | 165 --- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 165 --- .../aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../aggregate-Year-reference.csv | 165 --- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 165 --- .../aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../aggregate-Year-reference.csv | 165 --- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 165 --- .../aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../aggregate-Year-reference.csv | 165 --- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 165 --- .../aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../aggregate-Year-reference.csv | 165 --- .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../pi/user_count/aggregate-Day-reference.csv | 165 --- .../user_count/aggregate-Month-reference.csv | 165 --- .../aggregate-Quarter-reference.csv | 165 --- .../user_count/aggregate-Year-reference.csv | 165 --- .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Year-reference.csv | 10 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 10 - .../user_count/aggregate-Month-reference.csv | 10 - .../aggregate-Quarter-reference.csv | 10 - .../user_count/aggregate-Year-reference.csv | 10 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 11 - .../user_count/aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../user_count/aggregate-Year-reference.csv | 11 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../aggregate-Day-reference.csv | 11 - .../aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../aggregate-Year-reference.csv | 11 - .../timeseries-Day-reference.csv | 19 - .../timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../timeseries-Year-reference.csv | 11 - .../user_count/aggregate-Day-reference.csv | 11 - .../user_count/aggregate-Month-reference.csv | 11 - .../aggregate-Quarter-reference.csv | 11 - .../user_count/aggregate-Year-reference.csv | 11 - .../user_count/timeseries-Day-reference.csv | 19 - .../user_count/timeseries-Month-reference.csv | 11 - .../timeseries-Quarter-reference.csv | 11 - .../user_count/timeseries-Year-reference.csv | 11 - .../avg_file_count/aggregate-Day-cd.csv | 353 ----- .../avg_file_count/aggregate-Day-cs.csv | 353 ----- .../avg_file_count/aggregate-Day-pi.csv | 25 - .../aggregate-Day-reference.csv | 10 - .../avg_file_count/aggregate-Day-usr.csv | 10 - .../avg_file_count/aggregate-Month-cd.csv | 353 ----- .../avg_file_count/aggregate-Month-cs.csv | 353 ----- .../avg_file_count/aggregate-Month-pi.csv | 25 - .../aggregate-Month-reference.csv | 10 - .../avg_file_count/aggregate-Month-usr.csv | 10 - .../avg_file_count/aggregate-Quarter-cd.csv | 353 ----- .../avg_file_count/aggregate-Quarter-cs.csv | 353 ----- .../avg_file_count/aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../avg_file_count/aggregate-Quarter-usr.csv | 10 - .../avg_file_count/aggregate-Year-cd.csv | 353 ----- .../avg_file_count/aggregate-Year-cs.csv | 353 ----- .../avg_file_count/aggregate-Year-pi.csv | 25 - .../aggregate-Year-reference.csv | 10 - .../avg_file_count/aggregate-Year-usr.csv | 10 - .../avg_file_count/timeseries-Day-cd.csv | 19 - .../avg_file_count/timeseries-Day-cs.csv | 19 - .../avg_file_count/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_file_count/timeseries-Day-usr.csv | 10 - .../avg_file_count/timeseries-Month-cd.csv | 11 - .../avg_file_count/timeseries-Month-cs.csv | 11 - .../avg_file_count/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../avg_file_count/timeseries-Month-usr.csv | 10 - .../avg_file_count/timeseries-Quarter-cd.csv | 11 - .../avg_file_count/timeseries-Quarter-cs.csv | 11 - .../avg_file_count/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../avg_file_count/timeseries-Quarter-usr.csv | 10 - .../avg_file_count/timeseries-Year-cd.csv | 11 - .../avg_file_count/timeseries-Year-cs.csv | 11 - .../avg_file_count/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../avg_file_count/timeseries-Year-usr.csv | 10 - .../avg_hard_threshold/aggregate-Day-cd.csv | 353 ----- .../avg_hard_threshold/aggregate-Day-cs.csv | 353 ----- .../avg_hard_threshold/aggregate-Day-pi.csv | 25 - .../aggregate-Day-reference.csv | 10 - .../avg_hard_threshold/aggregate-Day-usr.csv | 10 - .../avg_hard_threshold/aggregate-Month-cd.csv | 353 ----- .../avg_hard_threshold/aggregate-Month-cs.csv | 353 ----- .../avg_hard_threshold/aggregate-Month-pi.csv | 25 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 353 ----- .../aggregate-Quarter-cs.csv | 353 ----- .../aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../avg_hard_threshold/aggregate-Year-cd.csv | 353 ----- .../avg_hard_threshold/aggregate-Year-cs.csv | 353 ----- .../avg_hard_threshold/aggregate-Year-pi.csv | 25 - .../aggregate-Year-reference.csv | 10 - .../avg_hard_threshold/aggregate-Year-usr.csv | 10 - .../avg_hard_threshold/timeseries-Day-cd.csv | 19 - .../avg_hard_threshold/timeseries-Day-cs.csv | 19 - .../avg_hard_threshold/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_hard_threshold/timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../avg_hard_threshold/timeseries-Year-cd.csv | 11 - .../avg_hard_threshold/timeseries-Year-cs.csv | 11 - .../avg_hard_threshold/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../avg_logical_usage/aggregate-Day-cd.csv | 353 ----- .../avg_logical_usage/aggregate-Day-cs.csv | 353 ----- .../avg_logical_usage/aggregate-Day-pi.csv | 25 - .../aggregate-Day-reference.csv | 10 - .../avg_logical_usage/aggregate-Day-usr.csv | 10 - .../avg_logical_usage/aggregate-Month-cd.csv | 353 ----- .../avg_logical_usage/aggregate-Month-cs.csv | 353 ----- .../avg_logical_usage/aggregate-Month-pi.csv | 25 - .../aggregate-Month-reference.csv | 10 - .../avg_logical_usage/aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 353 ----- .../aggregate-Quarter-cs.csv | 353 ----- .../aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../avg_logical_usage/aggregate-Year-cd.csv | 353 ----- .../avg_logical_usage/aggregate-Year-cs.csv | 353 ----- .../avg_logical_usage/aggregate-Year-pi.csv | 25 - .../aggregate-Year-reference.csv | 10 - .../avg_logical_usage/aggregate-Year-usr.csv | 10 - .../avg_logical_usage/timeseries-Day-cd.csv | 19 - .../avg_logical_usage/timeseries-Day-cs.csv | 19 - .../avg_logical_usage/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_logical_usage/timeseries-Day-usr.csv | 10 - .../avg_logical_usage/timeseries-Month-cd.csv | 11 - .../avg_logical_usage/timeseries-Month-cs.csv | 11 - .../avg_logical_usage/timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../avg_logical_usage/timeseries-Year-cd.csv | 11 - .../avg_logical_usage/timeseries-Year-cs.csv | 11 - .../avg_logical_usage/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../avg_logical_usage/timeseries-Year-usr.csv | 10 - .../aggregate-Day-cd.csv | 353 ----- .../aggregate-Day-cs.csv | 353 ----- .../aggregate-Day-pi.csv | 25 - .../aggregate-Day-reference.csv | 10 - .../aggregate-Day-usr.csv | 10 - .../aggregate-Month-cd.csv | 353 ----- .../aggregate-Month-cs.csv | 353 ----- .../aggregate-Month-pi.csv | 25 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 353 ----- .../aggregate-Quarter-cs.csv | 353 ----- .../aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../aggregate-Year-cd.csv | 353 ----- .../aggregate-Year-cs.csv | 353 ----- .../aggregate-Year-pi.csv | 25 - .../aggregate-Year-reference.csv | 10 - .../aggregate-Year-usr.csv | 10 - .../timeseries-Day-cd.csv | 19 - .../timeseries-Day-cs.csv | 19 - .../timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../timeseries-Year-cd.csv | 11 - .../timeseries-Year-cs.csv | 11 - .../timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../avg_physical_usage/aggregate-Day-cd.csv | 353 ----- .../avg_physical_usage/aggregate-Day-cs.csv | 353 ----- .../avg_physical_usage/aggregate-Day-pi.csv | 25 - .../aggregate-Day-reference.csv | 10 - .../avg_physical_usage/aggregate-Day-usr.csv | 10 - .../avg_physical_usage/aggregate-Month-cd.csv | 353 ----- .../avg_physical_usage/aggregate-Month-cs.csv | 353 ----- .../avg_physical_usage/aggregate-Month-pi.csv | 25 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 353 ----- .../aggregate-Quarter-cs.csv | 353 ----- .../aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../avg_physical_usage/aggregate-Year-cd.csv | 353 ----- .../avg_physical_usage/aggregate-Year-cs.csv | 353 ----- .../avg_physical_usage/aggregate-Year-pi.csv | 25 - .../aggregate-Year-reference.csv | 10 - .../avg_physical_usage/aggregate-Year-usr.csv | 10 - .../avg_physical_usage/timeseries-Day-cd.csv | 19 - .../avg_physical_usage/timeseries-Day-cs.csv | 19 - .../avg_physical_usage/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_physical_usage/timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../avg_physical_usage/timeseries-Year-cd.csv | 11 - .../avg_physical_usage/timeseries-Year-cs.csv | 11 - .../avg_physical_usage/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../avg_soft_threshold/aggregate-Day-cd.csv | 353 ----- .../avg_soft_threshold/aggregate-Day-cs.csv | 353 ----- .../avg_soft_threshold/aggregate-Day-pi.csv | 25 - .../aggregate-Day-reference.csv | 10 - .../avg_soft_threshold/aggregate-Day-usr.csv | 10 - .../avg_soft_threshold/aggregate-Month-cd.csv | 353 ----- .../avg_soft_threshold/aggregate-Month-cs.csv | 353 ----- .../avg_soft_threshold/aggregate-Month-pi.csv | 25 - .../aggregate-Month-reference.csv | 10 - .../aggregate-Month-usr.csv | 10 - .../aggregate-Quarter-cd.csv | 353 ----- .../aggregate-Quarter-cs.csv | 353 ----- .../aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../aggregate-Quarter-usr.csv | 10 - .../avg_soft_threshold/aggregate-Year-cd.csv | 353 ----- .../avg_soft_threshold/aggregate-Year-cs.csv | 353 ----- .../avg_soft_threshold/aggregate-Year-pi.csv | 25 - .../aggregate-Year-reference.csv | 10 - .../avg_soft_threshold/aggregate-Year-usr.csv | 10 - .../avg_soft_threshold/timeseries-Day-cd.csv | 19 - .../avg_soft_threshold/timeseries-Day-cs.csv | 19 - .../avg_soft_threshold/timeseries-Day-pi.csv | 20 - .../timeseries-Day-reference.csv | 10 - .../avg_soft_threshold/timeseries-Day-usr.csv | 10 - .../timeseries-Month-cd.csv | 11 - .../timeseries-Month-cs.csv | 11 - .../timeseries-Month-pi.csv | 12 - .../timeseries-Month-reference.csv | 10 - .../timeseries-Month-usr.csv | 10 - .../timeseries-Quarter-cd.csv | 11 - .../timeseries-Quarter-cs.csv | 11 - .../timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../timeseries-Quarter-usr.csv | 10 - .../avg_soft_threshold/timeseries-Year-cd.csv | 11 - .../avg_soft_threshold/timeseries-Year-cs.csv | 11 - .../avg_soft_threshold/timeseries-Year-pi.csv | 12 - .../timeseries-Year-reference.csv | 10 - .../timeseries-Year-usr.csv | 10 - .../username/user_count/aggregate-Day-cd.csv | 353 ----- .../username/user_count/aggregate-Day-cs.csv | 353 ----- .../username/user_count/aggregate-Day-pi.csv | 25 - .../user_count/aggregate-Day-reference.csv | 10 - .../username/user_count/aggregate-Day-usr.csv | 10 - .../user_count/aggregate-Month-cd.csv | 353 ----- .../user_count/aggregate-Month-cs.csv | 353 ----- .../user_count/aggregate-Month-pi.csv | 25 - .../user_count/aggregate-Month-reference.csv | 10 - .../user_count/aggregate-Month-usr.csv | 10 - .../user_count/aggregate-Quarter-cd.csv | 353 ----- .../user_count/aggregate-Quarter-cs.csv | 353 ----- .../user_count/aggregate-Quarter-pi.csv | 25 - .../aggregate-Quarter-reference.csv | 10 - .../user_count/aggregate-Quarter-usr.csv | 10 - .../username/user_count/aggregate-Year-cd.csv | 353 ----- .../username/user_count/aggregate-Year-cs.csv | 353 ----- .../username/user_count/aggregate-Year-pi.csv | 25 - .../user_count/aggregate-Year-reference.csv | 10 - .../user_count/aggregate-Year-usr.csv | 10 - .../username/user_count/timeseries-Day-cd.csv | 19 - .../username/user_count/timeseries-Day-cs.csv | 19 - .../username/user_count/timeseries-Day-pi.csv | 20 - .../user_count/timeseries-Day-reference.csv | 10 - .../user_count/timeseries-Day-usr.csv | 10 - .../user_count/timeseries-Month-cd.csv | 11 - .../user_count/timeseries-Month-cs.csv | 11 - .../user_count/timeseries-Month-pi.csv | 12 - .../user_count/timeseries-Month-reference.csv | 10 - .../user_count/timeseries-Month-usr.csv | 10 - .../user_count/timeseries-Quarter-cd.csv | 11 - .../user_count/timeseries-Quarter-cs.csv | 11 - .../user_count/timeseries-Quarter-pi.csv | 12 - .../timeseries-Quarter-reference.csv | 10 - .../user_count/timeseries-Quarter-usr.csv | 10 - .../user_count/timeseries-Year-cd.csv | 11 - .../user_count/timeseries-Year-cs.csv | 11 - .../user_count/timeseries-Year-pi.csv | 12 - .../user_count/timeseries-Year-reference.csv | 10 - .../user_count/timeseries-Year-usr.csv | 10 - .../raw-data/cloud-fields-and-filters.json | 5 - .../expected/localhost/raw-data/cloud.json | 853 ----------- .../raw-data/jobs-fields-and-filters.json | 89 -- .../raw-data/jobs-fresh_install.json | 1312 ----------------- ...urcespecifications-fields-and-filters.json | 3 - .../raw-data/resourcespecifications.json | 6 - 7469 files changed, 164704 deletions(-) delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-usr.csv delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json delete mode 100644 tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index bd81a1b3fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Cores Reserved Weighted By Wall Hours" -c4.m16,4.0000 -c2.m4,2.0000 -c2.m8,2.0000 -m1.small,2.0000 -c1.m1,1.0000 -c1.m4,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index bd81a1b3fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Cores Reserved Weighted By Wall Hours" -c4.m16,4.0000 -c2.m4,2.0000 -c2.m8,2.0000 -m1.small,2.0000 -c1.m1,1.0000 -c1.m4,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index bd81a1b3fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Cores Reserved Weighted By Wall Hours" -c4.m16,4.0000 -c2.m4,2.0000 -c2.m8,2.0000 -m1.small,2.0000 -c1.m1,1.0000 -c1.m4,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index bd81a1b3fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Cores Reserved Weighted By Wall Hours" -c4.m16,4.0000 -c2.m4,2.0000 -c2.m8,2.0000 -m1.small,2.0000 -c1.m1,1.0000 -c1.m4,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index f402a99849..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 -2018-04-19,0,2.0000,0,0,1.0000,1.0000 -2018-04-20,0,2.0000,0,0,0,1.0000 -2018-04-21,0,2.0000,0,0,0,1.0000 -2018-04-22,0,2.0000,0,0,0,1.0000 -2018-04-23,0,2.0000,0,0,0,1.0000 -2018-04-24,0,2.0000,0,0,0,1.0000 -2018-04-25,0,2.0000,0,0,0,1.0000 -2018-04-26,4.0000,2.0000,0,0,0,1.0000 -2018-04-27,4.0000,2.0000,0,0,1.0000,1.0000 -2018-04-28,4.0000,0,0,0,0,1.0000 -2018-04-29,4.0000,0,0,0,0,1.0000 -2018-04-30,4.0000,2.0000,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index bb0fe60f79..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" -2018-04,4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 149c70f788..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 3809d52700..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c4.m16] Average Cores Reserved Weighted By Wall Hours","[c2.m4] Average Cores Reserved Weighted By Wall Hours","[c2.m8] Average Cores Reserved Weighted By Wall Hours","[m1.small] Average Cores Reserved Weighted By Wall Hours","[c1.m1] Average Cores Reserved Weighted By Wall Hours","[c1.m4] Average Cores Reserved Weighted By Wall Hours" -2018,4.0000,2.0000,2.0000,2.0000,1.0000,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 15fe55aba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" -c4.m16,17179869184.0000 -c2.m8,8589934592.0000 -c1.m4,4299974822.5086 -c2.m4,4294967296.0000 -m1.small,4294967296.0000 -c1.m1,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 15fe55aba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" -c4.m16,17179869184.0000 -c2.m8,8589934592.0000 -c1.m4,4299974822.5086 -c2.m4,4294967296.0000 -m1.small,4294967296.0000 -c1.m1,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 15fe55aba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" -c4.m16,17179869184.0000 -c2.m8,8589934592.0000 -c1.m4,4299974822.5086 -c2.m4,4294967296.0000 -m1.small,4294967296.0000 -c1.m1,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 15fe55aba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Memory Reserved Weighted By Wall Hours (Bytes)" -c4.m16,17179869184.0000 -c2.m8,8589934592.0000 -c1.m4,4299974822.5086 -c2.m4,4294967296.0000 -m1.small,4294967296.0000 -c1.m1,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 31bd32e3a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,17179869184.0000,8589934592.0000,4434564236.9765,4294967296.0000,4294967296.0000,1073741824.0000 -2018-04-19,0,0,4294967296.0000,4294967296.0000,0,1073741824.0000 -2018-04-20,0,0,4294967296.0000,4294967296.0000,0,0 -2018-04-21,0,0,4294967296.0000,4294967296.0000,0,0 -2018-04-22,0,0,4294967296.0000,4294967296.0000,0,0 -2018-04-23,0,0,4294967296.0000,4294967296.0000,0,0 -2018-04-24,0,0,4294967296.0000,4294967296.0000,0,0 -2018-04-25,0,0,4294967296.0000,4294967296.0000,0,0 -2018-04-26,17179869184.0000,0,4294967296.0000,4294967296.0000,0,0 -2018-04-27,17179869184.0000,0,4294967296.0000,4294967296.0000,0,1073741824.0000 -2018-04-28,17179869184.0000,0,4294967296.0000,0,0,0 -2018-04-29,17179869184.0000,0,4294967296.0000,0,0,0 -2018-04-30,17179869184.0000,0,4294967296.0000,4294967296.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 656d181633..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,17179869184.0000,8589934592.0000,4299974822.5086,4294967296.0000,4294967296.0000,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index ed0ac05554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",17179869184.0000,8589934592.0000,4299974822.5086,4294967296.0000,4294967296.0000,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 435ea896f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c4.m16] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Memory Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Memory Reserved Weighted By Wall Hours (Bytes)","[c1.m1] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,17179869184.0000,8589934592.0000,4299974822.5086,4294967296.0000,4294967296.0000,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 81ec236a01..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -c1.m1,21474836480.0000 -c1.m4,21474836480.0000 -c2.m4,21474836480.0000 -c2.m8,21474836480.0000 -c4.m16,21474836480.0000 -m1.small,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 81ec236a01..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -c1.m1,21474836480.0000 -c1.m4,21474836480.0000 -c2.m4,21474836480.0000 -c2.m8,21474836480.0000 -c4.m16,21474836480.0000 -m1.small,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 81ec236a01..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -c1.m1,21474836480.0000 -c1.m4,21474836480.0000 -c2.m4,21474836480.0000 -c2.m8,21474836480.0000 -c4.m16,21474836480.0000 -m1.small,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 81ec236a01..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -c1.m1,21474836480.0000 -c1.m4,21474836480.0000 -c2.m4,21474836480.0000 -c2.m8,21474836480.0000 -c4.m16,21474836480.0000 -m1.small,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index cb5a5a8f46..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000,0,0,0 -2018-04-20,0,21474836480.0000,21474836480.0000,0,0,0 -2018-04-21,0,21474836480.0000,21474836480.0000,0,0,0 -2018-04-22,0,21474836480.0000,21474836480.0000,0,0,0 -2018-04-23,0,21474836480.0000,21474836480.0000,0,0,0 -2018-04-24,0,21474836480.0000,21474836480.0000,0,0,0 -2018-04-25,0,21474836480.0000,21474836480.0000,0,0,0 -2018-04-26,0,21474836480.0000,21474836480.0000,0,21474836480.0000,0 -2018-04-27,21474836480.0000,21474836480.0000,21474836480.0000,0,21474836480.0000,0 -2018-04-28,0,21474836480.0000,0,0,21474836480.0000,0 -2018-04-29,0,21474836480.0000,0,0,21474836480.0000,0 -2018-04-30,0,21474836480.0000,21474836480.0000,0,21474836480.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 89c01acd1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index d0edd65513..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index d14b81d754..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c1.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m4] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c2.m8] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[c4.m16] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[m1.small] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index ef93a4665f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Per Session" -c2.m4,52.40437500 -c4.m16,35.26453704 -c1.m4,23.19602564 -c1.m1,1.10305556 -c2.m8,0.23527778 -m1.small,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index ef93a4665f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Per Session" -c2.m4,52.40437500 -c4.m16,35.26453704 -c1.m4,23.19602564 -c1.m1,1.10305556 -c2.m8,0.23527778 -m1.small,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ef93a4665f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Per Session" -c2.m4,52.40437500 -c4.m16,35.26453704 -c1.m4,23.19602564 -c1.m1,1.10305556 -c2.m8,0.23527778 -m1.small,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index ef93a4665f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Per Session" -c2.m4,52.40437500 -c4.m16,35.26453704 -c1.m4,23.19602564 -c1.m1,1.10305556 -c2.m8,0.23527778 -m1.small,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 13d7161912..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" -2018-04-18,0.70805556,2.21305556,1.91251634,0.01527778,0.23527778,0.00000000 -2018-04-19,7.89680556,0,5.64845029,0.23722222,0,0 -2018-04-20,24.00000000,0,4.90663889,0,0,0 -2018-04-21,24.00000000,0,24.00000000,0,0,0 -2018-04-22,24.00000000,0,24.00000000,0,0,0 -2018-04-23,24.00000000,0,24.00000000,0,0,0 -2018-04-24,24.00000000,0,24.00000000,0,0,0 -2018-04-25,24.00000000,0,24.00000000,0,0,0 -2018-04-26,24.00000000,6.35250000,18.11465278,0,0,0 -2018-04-27,19.82805556,24.00000000,24.00000000,5.67055556,0,0 -2018-04-28,0,24.00000000,24.00000000,0,0,0 -2018-04-29,0,24.00000000,24.00000000,0,0,0 -2018-04-30,5.28861111,23.01500000,23.00472222,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index a3355a4a1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" -2018-04,52.40458333,35.26453704,23.24032051,1.10578704,0.23527778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ab9ef2f353..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" -"2018 Q2",52.40458333,35.26453704,23.24032051,1.10578704,0.23527778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index e1f5dcc3e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c2.m4] Wall Hours: Per Session","[c4.m16] Wall Hours: Per Session","[c1.m4] Wall Hours: Per Session","[c1.m1] Wall Hours: Per Session","[c2.m8] Wall Hours: Per Session","[m1.small] Wall Hours: Per Session" -2018,52.40458333,35.26453704,23.24032051,1.10578704,0.23527778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index a5dfc90b97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","CPU Hours: Total" -c1.m4,906.3725 -c4.m16,423.1744 -c2.m4,419.2367 -c1.m1,6.6347 -c2.m8,0.4706 -m1.small,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index a5dfc90b97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","CPU Hours: Total" -c1.m4,906.3725 -c4.m16,423.1744 -c2.m4,419.2367 -c1.m1,6.6347 -c2.m8,0.4706 -m1.small,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index a5dfc90b97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","CPU Hours: Total" -c1.m4,906.3725 -c4.m16,423.1744 -c2.m4,419.2367 -c1.m1,6.6347 -c2.m8,0.4706 -m1.small,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index a5dfc90b97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","CPU Hours: Total" -c1.m4,906.3725 -c4.m16,423.1744 -c2.m4,419.2367 -c1.m1,6.6347 -c2.m8,0.4706 -m1.small,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index f90af43a69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" -2018-04-18,32.5128,17.7044,1.4161,0.0153,0.4706,0.0006 -2018-04-19,107.3206,0,31.5872,0.9489,0,0 -2018-04-20,49.0664,0,48.0000,0,0,0 -2018-04-21,72.0000,0,48.0000,0,0,0 -2018-04-22,72.0000,0,48.0000,0,0,0 -2018-04-23,72.0000,0,48.0000,0,0,0 -2018-04-24,72.0000,0,48.0000,0,0,0 -2018-04-25,72.0000,0,48.0000,0,0,0 -2018-04-26,72.4586,25.4100,48.0000,0,0,0 -2018-04-27,72.0000,96.0000,39.6561,5.6706,0,0 -2018-04-28,72.0000,96.0000,0,0,0,0 -2018-04-29,72.0000,96.0000,0,0,0,0 -2018-04-30,69.0142,92.0600,10.5772,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index c150998690..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" -2018-04,906.3725,423.1744,419.2367,6.6347,0.4706,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index f27a09a224..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" -"2018 Q2",906.3725,423.1744,419.2367,6.6347,0.4706,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index e8c4eb40fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m4] CPU Hours: Total","[c4.m16] CPU Hours: Total","[c2.m4] CPU Hours: Total","[c1.m1] CPU Hours: Total","[c2.m8] CPU Hours: Total","[m1.small] CPU Hours: Total" -2018,906.3725,423.1744,419.2367,6.6347,0.4706,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 3457dcd3f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Core Hour Utilization (%)" -c1.m4,1.2415 -c4.m16,0.5796 -c2.m4,0.5742 -c1.m1,0.0091 -c2.m8,0.0006 -m1.small,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 3457dcd3f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Core Hour Utilization (%)" -c1.m4,1.2415 -c4.m16,0.5796 -c2.m4,0.5742 -c1.m1,0.0091 -c2.m8,0.0006 -m1.small,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index bfde071c1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Core Hour Utilization (%)" -c1.m4,0.2181 -c4.m16,0.1018 -c2.m4,0.1009 -c1.m1,0.0016 -c2.m8,0.0001 -m1.small,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 1ebbb0aba8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Core Hour Utilization (%)" -c1.m4,0.0626 -c4.m16,0.0292 -c2.m4,0.0289 -c1.m1,0.0005 -c2.m8,0.0000 -m1.small,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 77710f49e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" -2018-04-18,0.5789,0.3153,0.0252,0.0003,0.0084,0.0000 -2018-04-19,1.9110,0,0.5625,0.0169,0,0 -2018-04-20,0.8737,0,0.8547,0,0,0 -2018-04-21,1.2821,0,0.8547,0,0,0 -2018-04-22,1.2821,0,0.8547,0,0,0 -2018-04-23,1.2821,0,0.8547,0,0,0 -2018-04-24,1.2821,0,0.8547,0,0,0 -2018-04-25,1.2821,0,0.8547,0,0,0 -2018-04-26,1.2902,0.4525,0.8547,0,0,0 -2018-04-27,1.2821,1.7094,0.7061,0.1010,0,0 -2018-04-28,1.2821,1.7094,0,0,0,0 -2018-04-29,1.2821,1.7094,0,0,0,0 -2018-04-30,1.2289,1.6392,0.1883,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 980670a5ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" -2018-04,1.2415,0.5796,0.5742,0.0091,0.0006,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 172be10608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" -"2018 Q2",0.2181,0.1018,0.1009,0.0016,0.0001,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 0e173ebcd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m4] Core Hour Utilization (%)","[c4.m16] Core Hour Utilization (%)","[c2.m4] Core Hour Utilization (%)","[c1.m1] Core Hour Utilization (%)","[c2.m8] Core Hour Utilization (%)","[m1.small] Core Hour Utilization (%)" -2018,0.0626,0.0292,0.0289,0.0005,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index d7ad7dee53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Ended" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index d7ad7dee53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Ended" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index d7ad7dee53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Ended" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index d7ad7dee53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Ended" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index d04a0fccd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" -2018-04-18,10,1,1,2,1,0 -2018-04-19,18,4,1,0,0,0 -2018-04-20,7,0,0,0,0,0 -2018-04-21,0,0,0,0,0,0 -2018-04-22,0,0,0,0,0,0 -2018-04-23,0,0,0,0,0,0 -2018-04-24,0,0,0,0,0,0 -2018-04-25,0,0,0,0,0,0 -2018-04-26,1,0,0,0,0,0 -2018-04-27,0,1,1,0,0,0 -2018-04-28,0,0,0,0,0,0 -2018-04-29,0,0,0,0,0,0 -2018-04-30,3,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 5e0626e2e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" -2018-04,39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 2044e986d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" -"2018 Q2",39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 72086f5f94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m4] Number of Sessions Ended","[c1.m1] Number of Sessions Ended","[c2.m4] Number of Sessions Ended","[c4.m16] Number of Sessions Ended","[c2.m8] Number of Sessions Ended","[m1.small] Number of Sessions Ended" -2018,39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index fafdc7826b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Active" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index fafdc7826b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Active" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index fafdc7826b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Active" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index fafdc7826b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Active" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 0b1cbaa8be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" -2018-04-18,17,1,1,2,1,0 -2018-04-19,19,4,2,0,0,0 -2018-04-20,10,0,1,0,0,0 -2018-04-21,3,0,1,0,0,0 -2018-04-22,3,0,1,0,0,0 -2018-04-23,3,0,1,0,0,0 -2018-04-24,3,0,1,0,0,0 -2018-04-25,3,0,1,0,0,0 -2018-04-26,4,0,1,1,0,0 -2018-04-27,3,1,1,1,0,0 -2018-04-28,3,0,0,1,0,0 -2018-04-29,3,0,0,1,0,0 -2018-04-30,3,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index c66293965c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" -2018-04,39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 0255df39ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" -"2018 Q2",39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index ebe4e37ed3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m4] Number of Sessions Active","[c1.m1] Number of Sessions Active","[c2.m4] Number of Sessions Active","[c4.m16] Number of Sessions Active","[c2.m8] Number of Sessions Active","[m1.small] Number of Sessions Active" -2018,39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 3d2928ca7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Started" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 3d2928ca7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Started" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 3d2928ca7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Started" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 3d2928ca7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Number of Sessions Started" -c1.m4,39 -c1.m1,6 -c2.m4,4 -c4.m16,3 -c2.m8,1 -m1.small,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 793642e8ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" -2018-04-18,17,1,1,2,1,0 -2018-04-19,12,4,2,0,0,0 -2018-04-20,9,0,0,0,0,0 -2018-04-21,0,0,0,0,0,0 -2018-04-22,0,0,0,0,0,0 -2018-04-23,0,0,0,0,0,0 -2018-04-24,0,0,0,0,0,0 -2018-04-25,0,0,0,0,0,0 -2018-04-26,1,0,0,1,0,0 -2018-04-27,0,1,0,0,0,0 -2018-04-28,0,0,0,0,0,0 -2018-04-29,0,0,0,0,0,0 -2018-04-30,0,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 9eabe00da5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" -2018-04,39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index e48d097a52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" -"2018 Q2",39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 0b5fc153dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m4] Number of Sessions Started","[c1.m1] Number of Sessions Started","[c2.m4] Number of Sessions Started","[c4.m16] Number of Sessions Started","[c2.m8] Number of Sessions Started","[m1.small] Number of Sessions Started" -2018,39,6,4,3,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 537b7490d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Total" -c1.m4,906.3725 -c2.m4,209.6183 -c4.m16,105.7936 -c1.m1,6.6347 -c2.m8,0.2353 -m1.small,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 537b7490d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Total" -c1.m4,906.3725 -c2.m4,209.6183 -c4.m16,105.7936 -c1.m1,6.6347 -c2.m8,0.2353 -m1.small,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 537b7490d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Total" -c1.m4,906.3725 -c2.m4,209.6183 -c4.m16,105.7936 -c1.m1,6.6347 -c2.m8,0.2353 -m1.small,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 537b7490d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,15 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Instance Type","Wall Hours: Total" -c1.m4,906.3725 -c2.m4,209.6183 -c4.m16,105.7936 -c1.m1,6.6347 -c2.m8,0.2353 -m1.small,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index e3c46cde17..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" -2018-04-18,32.5128,0.7081,4.4261,0.0153,0.2353,0.0003 -2018-04-19,107.3206,15.7936,0,0.9489,0,0 -2018-04-20,49.0664,24.0000,0,0,0,0 -2018-04-21,72.0000,24.0000,0,0,0,0 -2018-04-22,72.0000,24.0000,0,0,0,0 -2018-04-23,72.0000,24.0000,0,0,0,0 -2018-04-24,72.0000,24.0000,0,0,0,0 -2018-04-25,72.0000,24.0000,0,0,0,0 -2018-04-26,72.4586,24.0000,6.3525,0,0,0 -2018-04-27,72.0000,19.8281,24.0000,5.6706,0,0 -2018-04-28,72.0000,0,24.0000,0,0,0 -2018-04-29,72.0000,0,24.0000,0,0,0 -2018-04-30,69.0142,5.2886,23.0150,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index d6071ec8c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" -2018-04,906.3725,209.6183,105.7936,6.6347,0.2353,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 7fc9f5aa6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" -"2018 Q2",906.3725,209.6183,105.7936,6.6347,0.2353,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 71b9c64685..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/configuration/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Instance Type" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[c1.m4] Wall Hours: Total","[c2.m4] Wall Hours: Total","[c4.m16] Wall Hours: Total","[c1.m1] Wall Hours: Total","[c2.m8] Wall Hours: Total","[m1.small] Wall Hours: Total" -2018,906.3725,209.6183,105.7936,6.6347,0.2353,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 87e2f60950..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Cores Reserved Weighted By Wall Hours" -Default,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 87e2f60950..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Cores Reserved Weighted By Wall Hours" -Default,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 87e2f60950..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Cores Reserved Weighted By Wall Hours" -Default,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 87e2f60950..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Cores Reserved Weighted By Wall Hours" -Default,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 6391179ab2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index d25e3d3e0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index dffea7ce55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index cbdb2eb2cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 01fa6ec919..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Default,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 01fa6ec919..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Default,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 01fa6ec919..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Default,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 01fa6ec919..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Default,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 5f726a58be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 28573f41cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index e692fdd5f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index e85db3fc07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 3cc7deee23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Default,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 3cc7deee23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Default,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 3cc7deee23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Default,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 3cc7deee23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Default,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 056cd008d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 87b309d290..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 09b18048e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 1598a3f682..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index d3b7ccb785..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Per Session" -Default,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index d3b7ccb785..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Per Session" -Default,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index d3b7ccb785..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Per Session" -Default,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index d3b7ccb785..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Per Session" -Default,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index cf4c339def..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7d8ca194f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d452c98c7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index b5121ae6b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index f24d3e010f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"CPU Hours: Total" -Default,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index f24d3e010f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"CPU Hours: Total" -Default,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index f24d3e010f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"CPU Hours: Total" -Default,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index f24d3e010f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"CPU Hours: Total" -Default,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 12c450cd70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index e37eebdcc2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index f498c4c4b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index ae55bfbb7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index ebd64cf360..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Core Hour Utilization (%)" -Default,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index ebd64cf360..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Core Hour Utilization (%)" -Default,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 3dafd52527..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Core Hour Utilization (%)" -Default,0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index bdc56ccd1f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Core Hour Utilization (%)" -Default,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index f70d2f2642..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 7bbce1eae5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 4f2f2d0c85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 994005311f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 9cb0a758d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Ended" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 9cb0a758d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Ended" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 9cb0a758d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Ended" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 9cb0a758d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Ended" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index d3ca231678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 8df786df56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 1b2148d8c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 85e8faf645..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 7e8189e48c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Active" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 7e8189e48c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Active" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 7e8189e48c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Active" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 7e8189e48c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Active" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 767b84ac6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index f42f89d6df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index e450598813..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 67ee2c6f1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 38d5716d41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Started" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 38d5716d41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Started" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 38d5716d41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Started" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 38d5716d41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Number of Sessions Started" -Default,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index e97133d7f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 5509c6aa32..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 47d18a57b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 3dca008133..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 9e619df4ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Total" -Default,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 9e619df4ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Total" -Default,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 9e619df4ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Total" -Default,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 9e619df4ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Domain,"Wall Hours: Total" -Default,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 6eee99942c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Default] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index ed7d1ce067..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Default] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 6fdfff8ed6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Default] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index bcf74b68f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/domain/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Domain" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Default] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 127c5e9594..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Cores Reserved Weighted By Wall Hours" -"Mechanics and Materials",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 127c5e9594..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Cores Reserved Weighted By Wall Hours" -"Mechanics and Materials",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 127c5e9594..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Cores Reserved Weighted By Wall Hours" -"Mechanics and Materials",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 127c5e9594..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Cores Reserved Weighted By Wall Hours" -"Mechanics and Materials",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 3b187e33e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 8f17e5cdae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 782c75c761..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index e036cbde6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 570dfab8fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 570dfab8fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 570dfab8fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 570dfab8fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 13c44ac4a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index bd6a543595..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 9d03709501..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index fe731342bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 104446dd05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 104446dd05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 104446dd05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 104446dd05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanics and Materials",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 4c3c33056e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 7d95ac4eaa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 41b806c57d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 5d7e1b9e0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4ee14b867b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Per Session" -"Mechanics and Materials",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4ee14b867b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Per Session" -"Mechanics and Materials",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4ee14b867b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Per Session" -"Mechanics and Materials",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4ee14b867b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Per Session" -"Mechanics and Materials",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8b72438110..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5483d454c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 549e3479d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index c95d468350..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 16baddc1f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","CPU Hours: Total" -"Mechanics and Materials",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 16baddc1f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","CPU Hours: Total" -"Mechanics and Materials",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 16baddc1f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","CPU Hours: Total" -"Mechanics and Materials",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 16baddc1f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","CPU Hours: Total" -"Mechanics and Materials",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 3434f31b0c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 7bb8cca21b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 8fab4572dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 6c0c8564d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 310aa74686..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Core Hour Utilization (%)" -"Mechanics and Materials",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 310aa74686..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Core Hour Utilization (%)" -"Mechanics and Materials",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index f961ef2f18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Core Hour Utilization (%)" -"Mechanics and Materials",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index eaba7fedaa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Core Hour Utilization (%)" -"Mechanics and Materials",0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index ea6e9dd7cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index b83fa08726..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index b102731d70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index f7c26149ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 7a465edcf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Ended" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 7a465edcf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Ended" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 7a465edcf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Ended" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 7a465edcf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Ended" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 80819d8e55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index f8a503847c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 8809614330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index ed0c4051ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index cab1dc5a66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Active" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index cab1dc5a66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Active" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index cab1dc5a66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Active" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index cab1dc5a66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Active" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 8cf7ddd98f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index e884acf60e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 5e18ed191d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 68934def1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 83082391b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Started" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 83082391b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Started" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 83082391b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Started" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 83082391b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Number of Sessions Started" -"Mechanics and Materials",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index ffb9dc55d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 966118a7b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 50062330b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index a231cb0135..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 3e55a14aff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Total" -"Mechanics and Materials",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 3e55a14aff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Total" -"Mechanics and Materials",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 3e55a14aff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Total" -"Mechanics and Materials",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 3e55a14aff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"PI Group","Wall Hours: Total" -"Mechanics and Materials",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 3404c797b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanics and Materials] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index e90baa8fac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanics and Materials] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 2764985d49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanics and Materials] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 13d2879334..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/fieldofscience/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanics and Materials] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index a65a2d8755..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Cores Reserved Weighted By Wall Hours" -Active,1.4297 -Inactive,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index a65a2d8755..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Cores Reserved Weighted By Wall Hours" -Active,1.4297 -Inactive,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index a65a2d8755..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Cores Reserved Weighted By Wall Hours" -Active,1.4297 -Inactive,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index a65a2d8755..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Cores Reserved Weighted By Wall Hours" -Active,1.4297 -Inactive,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index d7fabf3e4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753,1.2857 -2018-04-19,1.1291,1.0000 -2018-04-20,1.3285,0.0000 -2018-04-21,1.2500,0 -2018-04-22,1.2500,0 -2018-04-23,1.2500,0 -2018-04-24,1.2500,0 -2018-04-25,1.2500,0 -2018-04-26,1.4188,0.0000 -2018-04-27,1.7558,2.0000 -2018-04-28,1.7500,0 -2018-04-29,1.7500,0 -2018-04-30,1.7638,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 3ae0dca0b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4297,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index cf83b8431a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4297,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 5f4c2471ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Average Cores Reserved Weighted By Wall Hours","[Inactive] Average Cores Reserved Weighted By Wall Hours" -2018,1.4297,1.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index ca685e1026..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Active,5393140917.1785 -Inactive,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index ca685e1026..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Active,5393140917.1785 -Inactive,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index ca685e1026..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Active,5393140917.1785 -Inactive,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index ca685e1026..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Active,5393140917.1785 -Inactive,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 31bea5a10b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944764131.5393,9213088329.1429 -2018-04-19,4270403251.7652,4265183926.4199 -2018-04-20,4294967296.0000,0.0000 -2018-04-21,4294967296.0000,0 -2018-04-22,4294967296.0000,0 -2018-04-23,4294967296.0000,0 -2018-04-24,4294967296.0000,0 -2018-04-25,4294967296.0000,0 -2018-04-26,5091100499.4926,0.0000 -2018-04-27,6689827368.0124,4294967296.0000 -2018-04-28,7516192768.0000,0 -2018-04-29,7516192768.0000,0 -2018-04-30,7342168641.6194,4294967296.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 96bcbe1583..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5393140917.1785,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 97d7215bf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5393140917.1785,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 5549a8dabf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5393140917.1785,4270706832.7488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index c2508fde20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Active,21474836480.0000 -Inactive,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index c2508fde20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Active,21474836480.0000 -Inactive,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index c2508fde20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Active,21474836480.0000 -Inactive,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index c2508fde20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Active,21474836480.0000 -Inactive,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 310c06b674..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000 -2018-04-20,21474836480.0000,0.0000 -2018-04-21,21474836480.0000,0 -2018-04-22,21474836480.0000,0 -2018-04-23,21474836480.0000,0 -2018-04-24,21474836480.0000,0 -2018-04-25,21474836480.0000,0 -2018-04-26,21474836480.0000,0.0000 -2018-04-27,21474836480.0000,21474836480.0000 -2018-04-28,21474836480.0000,0 -2018-04-29,21474836480.0000,0 -2018-04-30,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 15a119e057..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 7bc0d2160a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 95ec61c83f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Inactive] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 114b7c52c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Per Session" -Active,23.14924004 -Inactive,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 114b7c52c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Per Session" -Active,23.14924004 -Inactive,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 114b7c52c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Per Session" -Active,23.14924004 -Inactive,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 114b7c52c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Per Session" -Active,23.14924004 -Inactive,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index dc0c020fa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" -2018-04-18,1.72253788,0.00000000 -2018-04-19,4.89282222,0.00000000 -2018-04-20,6.64239899,0.00000000 -2018-04-21,24.00000000,0 -2018-04-22,24.00000000,0 -2018-04-23,24.00000000,0 -2018-04-24,24.00000000,0 -2018-04-25,24.00000000,0 -2018-04-26,17.13518519,0.00000000 -2018-04-27,20.24972222,0.00000000 -2018-04-28,24.00000000,0 -2018-04-29,24.00000000,0 -2018-04-30,19.46350000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 618ccd916a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" -2018-04,23.14924004,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3a07a01e86..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" -"2018 Q2",23.14924004,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6676b25d48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Wall Hours: Per Session","[Inactive] Wall Hours: Per Session" -2018,23.14924004,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 637f0a1c37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","CPU Hours: Total" -Active,1754.1433 -Inactive,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 637f0a1c37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","CPU Hours: Total" -Active,1754.1433 -Inactive,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 637f0a1c37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","CPU Hours: Total" -Active,1754.1433 -Inactive,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 637f0a1c37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","CPU Hours: Total" -Active,1754.1433 -Inactive,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 4264954127..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" -2018-04-18,52.1172,0.0025 -2018-04-19,138.1142,1.7425 -2018-04-20,97.0664,0.0000 -2018-04-21,120.0000,0 -2018-04-22,120.0000,0 -2018-04-23,120.0000,0 -2018-04-24,120.0000,0 -2018-04-25,120.0000,0 -2018-04-26,145.8686,0.0000 -2018-04-27,213.3261,0.0006 -2018-04-28,168.0000,0 -2018-04-29,168.0000,0 -2018-04-30,171.6508,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 76b2a5e8c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" -2018-04,1754.1433,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 88b8985d88..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" -"2018 Q2",1754.1433,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 8e8e6a2923..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] CPU Hours: Total","[Inactive] CPU Hours: Total" -2018,1754.1433,1.7461 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 4135533aea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Core Hour Utilization (%)" -Active,2.4027 -Inactive,0.0024 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 4135533aea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Core Hour Utilization (%)" -Active,2.4027 -Inactive,0.0024 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index f354c63b3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Core Hour Utilization (%)" -Active,0.4221 -Inactive,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index be4b47c7e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Core Hour Utilization (%)" -Active,0.1211 -Inactive,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index dc01e7fc46..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" -2018-04-18,0.9280,0.0000 -2018-04-19,2.4593,0.0310 -2018-04-20,1.7284,0.0000 -2018-04-21,2.1368,0 -2018-04-22,2.1368,0 -2018-04-23,2.1368,0 -2018-04-24,2.1368,0 -2018-04-25,2.1368,0 -2018-04-26,2.5974,0.0000 -2018-04-27,3.7985,0.0000 -2018-04-28,2.9915,0 -2018-04-29,2.9915,0 -2018-04-30,3.0565,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index dc956aa37e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" -2018-04,2.4027,0.0024 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index c67865f95a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" -"2018 Q2",0.4221,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 18ec29189a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Core Hour Utilization (%)","[Inactive] Core Hour Utilization (%)" -2018,0.1211,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 020640cedd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Ended" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 020640cedd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Ended" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 020640cedd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Ended" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 020640cedd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Ended" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 452b33c4e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" -2018-04-18,15,0 -2018-04-19,23,0 -2018-04-20,7,0 -2018-04-21,0,0 -2018-04-22,0,0 -2018-04-23,0,0 -2018-04-24,0,0 -2018-04-25,0,0 -2018-04-26,1,0 -2018-04-27,2,0 -2018-04-28,0,0 -2018-04-29,0,0 -2018-04-30,5,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 4fc945e99e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" -2018-04,53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 84fe39f4e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" -"2018 Q2",53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 6e43b0e43d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Number of Sessions Ended","[Inactive] Number of Sessions Ended" -2018,53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 92f60a263f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Active" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 92f60a263f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Active" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 92f60a263f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Active" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 92f60a263f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Active" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 30f2cbff26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" -2018-04-18,22,0 -2018-04-19,25,0 -2018-04-20,11,0 -2018-04-21,4,0 -2018-04-22,4,0 -2018-04-23,4,0 -2018-04-24,4,0 -2018-04-25,4,0 -2018-04-26,6,0 -2018-04-27,6,0 -2018-04-28,4,0 -2018-04-29,4,0 -2018-04-30,5,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 9b7ab770bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" -2018-04,53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index e2d0ea36d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" -"2018 Q2",53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 233dd99a90..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Number of Sessions Active","[Inactive] Number of Sessions Active" -2018,53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 7e0629f574..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Started" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 7e0629f574..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Started" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 7e0629f574..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Started" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 7e0629f574..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Number of Sessions Started" -Active,53 -Inactive,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index ad2d2661ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" -2018-04-18,22,0 -2018-04-19,18,0 -2018-04-20,9,0 -2018-04-21,0,0 -2018-04-22,0,0 -2018-04-23,0,0 -2018-04-24,0,0 -2018-04-25,0,0 -2018-04-26,2,0 -2018-04-27,1,0 -2018-04-28,0,0 -2018-04-29,0,0 -2018-04-30,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 6ee75cad41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" -2018-04,53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 9139f6bda2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" -"2018 Q2",53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 39a857378c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Number of Sessions Started","[Inactive] Number of Sessions Started" -2018,53,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index dc2d339266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Total" -Active,1226.9097 -Inactive,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index dc2d339266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Total" -Active,1226.9097 -Inactive,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index dc2d339266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Total" -Active,1226.9097 -Inactive,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index dc2d339266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM State","Wall Hours: Total" -Active,1226.9097 -Inactive,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index b8f1b7810d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" -2018-04-18,37.8958,0.0019 -2018-04-19,122.3206,1.7425 -2018-04-20,73.0664,0.0000 -2018-04-21,96.0000,0 -2018-04-22,96.0000,0 -2018-04-23,96.0000,0 -2018-04-24,96.0000,0 -2018-04-25,96.0000,0 -2018-04-26,102.8111,0.0000 -2018-04-27,121.4983,0.0003 -2018-04-28,96.0000,0 -2018-04-29,96.0000,0 -2018-04-30,97.3175,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index dfb603e94a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" -2018-04,1226.9097,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 1cf939ef30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" -"2018 Q2",1226.9097,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index e190f285a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/instance_state/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM State" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Active] Wall Hours: Total","[Inactive] Wall Hours: Total" -2018,1226.9097,1.7450 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 8d91b13ca6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Cores Reserved Weighted By Wall Hours" -Screwdriver,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 8d91b13ca6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Cores Reserved Weighted By Wall Hours" -Screwdriver,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 8d91b13ca6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Cores Reserved Weighted By Wall Hours" -Screwdriver,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 8d91b13ca6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Cores Reserved Weighted By Wall Hours" -Screwdriver,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index ad58e909e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 6816a3999a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 0255312e24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index afdee35951..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index eefe5613e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index eefe5613e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index eefe5613e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index eefe5613e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index b269ef1adc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index fdbc971d69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 30dceddd3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 69f20432b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 3cf79a7fa8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 3cf79a7fa8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 3cf79a7fa8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 3cf79a7fa8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Screwdriver,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index a1971c89fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index ddbef51730..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 48c3db5ab2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 78c741a157..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9a47d68627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Per Session" -Screwdriver,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9a47d68627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Per Session" -Screwdriver,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9a47d68627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Per Session" -Screwdriver,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9a47d68627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Per Session" -Screwdriver,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index a0306725d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index a89dd99043..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d8d8ed36b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 29c2c761a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 688eb32f63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"CPU Hours: Total" -Screwdriver,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 688eb32f63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"CPU Hours: Total" -Screwdriver,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 688eb32f63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"CPU Hours: Total" -Screwdriver,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 688eb32f63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"CPU Hours: Total" -Screwdriver,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 4785446a98..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index dbb7828e5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 7b91183017..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 566f7a2c16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 8254c2d1d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Core Hour Utilization (%)" -Screwdriver,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 8254c2d1d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Core Hour Utilization (%)" -Screwdriver,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 77b75ba563..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Core Hour Utilization (%)" -Screwdriver,0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index c19d743f0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Core Hour Utilization (%)" -Screwdriver,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 7c38c7d99b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index dfe63cc209..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index fd0788b55d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index ca492705ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%)" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 505cbfe473..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Ended" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 505cbfe473..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Ended" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 505cbfe473..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Ended" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 505cbfe473..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Ended" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 1bbc8947f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 04e819cf7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 3f10522b80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 78078bee64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index df07ac502f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Active" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index df07ac502f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Active" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index df07ac502f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Active" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index df07ac502f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Active" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index a342a1824e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index cd087dcee0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 54c11f9de4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index f7d0ed180b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 4629de7b6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Started" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 4629de7b6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Started" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 4629de7b6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Started" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 4629de7b6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Number of Sessions Started" -Screwdriver,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 673d902b14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 4e67bd5f1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 5ff870b2a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index c1417d8bf3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index cbd94480b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Total" -Screwdriver,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index cbd94480b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Total" -Screwdriver,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index cbd94480b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Total" -Screwdriver,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index cbd94480b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Summary,"Wall Hours: Total" -Screwdriver,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 33de98cca4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Screwdriver] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 62b33d3b4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Screwdriver] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index dbbe780c00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Screwdriver] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 2e3f7d0e07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/none/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Screwdriver] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index ef00b04ccb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" -Engineering,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index ef00b04ccb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" -Engineering,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index ef00b04ccb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" -Engineering,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index ef00b04ccb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Cores Reserved Weighted By Wall Hours" -Engineering,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index b52ffc7dad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 51dff6a354..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 23052ba9d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 156f0a1788..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 6895678901..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Engineering,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 6895678901..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Engineering,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 6895678901..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Engineering,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 6895678901..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Memory Reserved Weighted By Wall Hours (Bytes)" -Engineering,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 01ce6c35ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 324cc3a8e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index c34f70b45a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index efbc494712..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index a978a405e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Engineering,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index a978a405e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Engineering,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index a978a405e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Engineering,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index a978a405e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -Engineering,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 3b455a700b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 5a652325c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index e9ffdb60a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index b564dd9929..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9e9ca30ceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Per Session" -Engineering,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9e9ca30ceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Per Session" -Engineering,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9e9ca30ceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Per Session" -Engineering,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9e9ca30ceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Per Session" -Engineering,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 353a687b2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9df43ce2e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3265fcfab8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 64919a32d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 7a6177f0d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","CPU Hours: Total" -Engineering,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 7a6177f0d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","CPU Hours: Total" -Engineering,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 7a6177f0d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","CPU Hours: Total" -Engineering,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 7a6177f0d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","CPU Hours: Total" -Engineering,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 6194e8eab8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 6bb15a2a27..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index a9c42e6f51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 752ef10c56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 55a6145667..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Core Hour Utilization (%)" -Engineering,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 55a6145667..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Core Hour Utilization (%)" -Engineering,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 9c00bb0517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Core Hour Utilization (%)" -Engineering,0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 22b526eec1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Core Hour Utilization (%)" -Engineering,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index cbaeb86e85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index dca40b7b15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 1df264253c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index ac7ae2f337..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 1ce4c65cd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Ended" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 1ce4c65cd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Ended" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 1ce4c65cd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Ended" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 1ce4c65cd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Ended" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index fcc3a608da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index da89af6369..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 036baf7f09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index d95140ad7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 03534d0b23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Active" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 03534d0b23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Active" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 03534d0b23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Active" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 03534d0b23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Active" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 9431aae706..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 1095371f13..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 5c43352425..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 803f71c3bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 5cceb34bb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Started" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 5cceb34bb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Started" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 5cceb34bb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Started" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 5cceb34bb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Number of Sessions Started" -Engineering,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 44292901ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index cde4515406..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 304f8f9192..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 0cd0de3a0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index e8bc793dcf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Total" -Engineering,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index e8bc793dcf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Total" -Engineering,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index e8bc793dcf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Total" -Engineering,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index e8bc793dcf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Decanal Unit","Wall Hours: Total" -Engineering,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 5f5e25e758..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Engineering] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 3ab0cb28b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Engineering] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index dbb60f8147..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Engineering] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index edeef8895b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/nsfdirectorate/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Engineering] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index b26decd21e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Cores Reserved Weighted By Wall Hours" -"Mechanical and Structural Systems",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index b26decd21e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Cores Reserved Weighted By Wall Hours" -"Mechanical and Structural Systems",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index b26decd21e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Cores Reserved Weighted By Wall Hours" -"Mechanical and Structural Systems",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index b26decd21e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Cores Reserved Weighted By Wall Hours" -"Mechanical and Structural Systems",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index cb2ad6c693..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 5c028ed84c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index b3a5c7e9a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index b83dd41a2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index ed69f98698..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index ed69f98698..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index ed69f98698..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index ed69f98698..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index bb536e6958..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index b6a5adfe34..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index d482bd133a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 7258442838..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 29a500d79c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 29a500d79c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 29a500d79c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 29a500d79c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Mechanical and Structural Systems",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 24b67cd53f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 8db3d700c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 6026c018e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index ac94ea5d4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index f1a7bdffb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Per Session" -"Mechanical and Structural Systems",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index f1a7bdffb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Per Session" -"Mechanical and Structural Systems",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f1a7bdffb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Per Session" -"Mechanical and Structural Systems",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index f1a7bdffb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Per Session" -"Mechanical and Structural Systems",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0031b9a0df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d15b383410..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 735cf2674c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 99a37ff999..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index bb6eb5a39f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"CPU Hours: Total" -"Mechanical and Structural Systems",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index bb6eb5a39f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"CPU Hours: Total" -"Mechanical and Structural Systems",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index bb6eb5a39f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"CPU Hours: Total" -"Mechanical and Structural Systems",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index bb6eb5a39f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"CPU Hours: Total" -"Mechanical and Structural Systems",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 3f1b9818ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 02aa8538aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index d35ff22351..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index f6b74bdd95..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index c294982292..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Core Hour Utilization (%)" -"Mechanical and Structural Systems",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index c294982292..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Core Hour Utilization (%)" -"Mechanical and Structural Systems",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 88de98bd00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Core Hour Utilization (%)" -"Mechanical and Structural Systems",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 57f9bf972d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Core Hour Utilization (%)" -"Mechanical and Structural Systems",0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 1da7167554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 8c61c6b18e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 5d0e62b4e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 88ea4fb6c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index af6178a61b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Ended" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index af6178a61b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Ended" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index af6178a61b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Ended" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index af6178a61b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Ended" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 948643d118..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index b96f3365a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 4d22ff7824..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index f8eadc0690..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 055432fba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Active" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 055432fba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Active" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 055432fba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Active" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 055432fba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Active" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 72b5793aec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 316e0de5b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index d381928eff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 2dec624df9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 227ac8e6d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Started" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 227ac8e6d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Started" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 227ac8e6d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Started" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 227ac8e6d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Number of Sessions Started" -"Mechanical and Structural Systems",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index dec1300a22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 5d1b236ff8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index ad2caa239c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 36716f225f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 8b2a882e52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Total" -"Mechanical and Structural Systems",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 8b2a882e52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Total" -"Mechanical and Structural Systems",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 8b2a882e52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Total" -"Mechanical and Structural Systems",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 8b2a882e52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Department,"Wall Hours: Total" -"Mechanical and Structural Systems",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 07da17cfd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Mechanical and Structural Systems] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 8508a8ffbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Mechanical and Structural Systems] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index da9302f809..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Mechanical and Structural Systems] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 899804ac51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/parentscience/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Mechanical and Structural Systems] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 64eabfa8a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Cores Reserved Weighted By Wall Hours" -"Warbler, Yellow",2.0145 -"Warbler, Yellow-rumped",1.3040 -"Warbler, Blackburnian",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 64eabfa8a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Cores Reserved Weighted By Wall Hours" -"Warbler, Yellow",2.0145 -"Warbler, Yellow-rumped",1.3040 -"Warbler, Blackburnian",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 64eabfa8a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Cores Reserved Weighted By Wall Hours" -"Warbler, Yellow",2.0145 -"Warbler, Yellow-rumped",1.3040 -"Warbler, Blackburnian",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 64eabfa8a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Cores Reserved Weighted By Wall Hours" -"Warbler, Yellow",2.0145 -"Warbler, Yellow-rumped",1.3040 -"Warbler, Blackburnian",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index b5e6579795..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,3.9999,1.0282,0 -2018-04-19,2.0000,1.0000,1.0000 -2018-04-20,2.0000,1.0000,0 -2018-04-21,2.0000,1.0000,0 -2018-04-22,2.0000,1.0000,0 -2018-04-23,2.0000,1.0000,0 -2018-04-24,2.0000,1.0000,0 -2018-04-25,2.0000,1.0000,0 -2018-04-26,2.0000,1.2418,0 -2018-04-27,1.7776,1.7500,0 -2018-04-28,0,1.7500,0 -2018-04-29,0,1.7500,0 -2018-04-30,2.0000,1.7503,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 5718f350ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" -2018-04,2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index d5e2d7aae1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 8905b069b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow] Average Cores Reserved Weighted By Wall Hours","[Warbler, Yellow-rumped] Average Cores Reserved Weighted By Wall Hours","[Warbler, Blackburnian] Average Cores Reserved Weighted By Wall Hours" -2018,2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 8947a3c7dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Yellow-rumped",5602121263.9108 -"Warbler, Yellow",4471965428.8596 -"Warbler, Blackburnian",3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 8947a3c7dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Yellow-rumped",5602121263.9108 -"Warbler, Yellow",4471965428.8596 -"Warbler, Blackburnian",3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 8947a3c7dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Yellow-rumped",5602121263.9108 -"Warbler, Yellow",4471965428.8596 -"Warbler, Blackburnian",3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 8947a3c7dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Yellow-rumped",5602121263.9108 -"Warbler, Yellow",4471965428.8596 -"Warbler, Blackburnian",3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index d3625453c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,4459286187.3607,17179060592.7300,0 -2018-04-19,4294967296.0000,4294967296.0000,3804999079.2242 -2018-04-20,4294967296.0000,4294967296.0000,0 -2018-04-21,4294967296.0000,4294967296.0000,0 -2018-04-22,4294967296.0000,4294967296.0000,0 -2018-04-23,4294967296.0000,4294967296.0000,0 -2018-04-24,4294967296.0000,4294967296.0000,0 -2018-04-25,4294967296.0000,4294967296.0000,0 -2018-04-26,5333543431.8969,4294967296.0000,0 -2018-04-27,7516192768.0000,3578609141.5754,0 -2018-04-28,7516192768.0000,0,0 -2018-04-29,7516192768.0000,0,0 -2018-04-30,7517272003.2285,4294967296.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 11f0a0cc79..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 0331ee41e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index d0ed2bec20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Memory Reserved Weighted By Wall Hours (Bytes)","[Warbler, Blackburnian] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 10cba484a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Blackburnian",21474836480.0000 -"Warbler, Yellow",21474836480.0000 -"Warbler, Yellow-rumped",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 10cba484a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Blackburnian",21474836480.0000 -"Warbler, Yellow",21474836480.0000 -"Warbler, Yellow-rumped",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 10cba484a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Blackburnian",21474836480.0000 -"Warbler, Yellow",21474836480.0000 -"Warbler, Yellow-rumped",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 10cba484a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Warbler, Blackburnian",21474836480.0000 -"Warbler, Yellow",21474836480.0000 -"Warbler, Yellow-rumped",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index a928beec22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,0,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-20,0,21474836480.0000,21474836480.0000 -2018-04-21,0,21474836480.0000,21474836480.0000 -2018-04-22,0,21474836480.0000,21474836480.0000 -2018-04-23,0,21474836480.0000,21474836480.0000 -2018-04-24,0,21474836480.0000,21474836480.0000 -2018-04-25,0,21474836480.0000,21474836480.0000 -2018-04-26,0,21474836480.0000,21474836480.0000 -2018-04-27,0,21474836480.0000,21474836480.0000 -2018-04-28,0,0,21474836480.0000 -2018-04-29,0,0,21474836480.0000 -2018-04-30,0,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 1b74dac386..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 60a35ce01b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index b8de8efb4f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Blackburnian] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[Warbler, Yellow-rumped] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index e8f38d3468..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Per Session" -"Warbler, Yellow",36.50106481 -"Warbler, Yellow-rumped",27.87240741 -"Warbler, Blackburnian",0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index e8f38d3468..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Per Session" -"Warbler, Yellow",36.50106481 -"Warbler, Yellow-rumped",27.87240741 -"Warbler, Blackburnian",0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e8f38d3468..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Per Session" -"Warbler, Yellow",36.50106481 -"Warbler, Yellow-rumped",27.87240741 -"Warbler, Blackburnian",0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index e8f38d3468..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Per Session" -"Warbler, Yellow",36.50106481 -"Warbler, Yellow-rumped",27.87240741 -"Warbler, Blackburnian",0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9a83fbdef4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" -2018-04-18,0.00000000,1.67356944,0 -2018-04-19,7.89680556,8.50259259,0.56712121 -2018-04-20,24.00000000,4.90663889,0 -2018-04-21,24.00000000,24.00000000,0 -2018-04-22,24.00000000,24.00000000,0 -2018-04-23,24.00000000,24.00000000,0 -2018-04-24,24.00000000,24.00000000,0 -2018-04-25,24.00000000,24.00000000,0 -2018-04-26,24.00000000,15.76222222,0 -2018-04-27,12.74930556,24.00000000,0 -2018-04-28,0,24.00000000,0 -2018-04-29,0,24.00000000,0 -2018-04-30,5.28861111,23.00729167,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d6d1f47e62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" -2018-04,36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f1248b438f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" -"2018 Q2",36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 172a39462a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow] Wall Hours: Per Session","[Warbler, Yellow-rumped] Wall Hours: Per Session","[Warbler, Blackburnian] Wall Hours: Per Session" -2018,36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 3efc0e36d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"CPU Hours: Total" -"Warbler, Yellow-rumped",1308.4550 -"Warbler, Yellow",441.1961 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 3efc0e36d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"CPU Hours: Total" -"Warbler, Yellow-rumped",1308.4550 -"Warbler, Yellow",441.1961 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 3efc0e36d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"CPU Hours: Total" -"Warbler, Yellow-rumped",1308.4550 -"Warbler, Yellow",441.1961 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 3efc0e36d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"CPU Hours: Total" -"Warbler, Yellow-rumped",1308.4550 -"Warbler, Yellow",441.1961 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 4ffcdcd8ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" -2018-04-18,34.4147,17.7050,0 -2018-04-19,102.0311,31.5872,6.2383 -2018-04-20,49.0664,48.0000,0 -2018-04-21,72.0000,48.0000,0 -2018-04-22,72.0000,48.0000,0 -2018-04-23,72.0000,48.0000,0 -2018-04-24,72.0000,48.0000,0 -2018-04-25,72.0000,48.0000,0 -2018-04-26,97.8686,48.0000,0 -2018-04-27,168.0000,45.3267,0 -2018-04-28,168.0000,0,0 -2018-04-29,168.0000,0,0 -2018-04-30,161.0742,10.5772,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index c0ba86aea4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" -2018-04,1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index e094723b87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" -"2018 Q2",1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index e5148829ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] CPU Hours: Total","[Warbler, Yellow] CPU Hours: Total","[Warbler, Blackburnian] CPU Hours: Total" -2018,1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 7ebab57dc7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Core Hour Utilization (%)" -"Warbler, Yellow-rumped",1.7922 -"Warbler, Yellow",0.6043 -"Warbler, Blackburnian",0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 7ebab57dc7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Core Hour Utilization (%)" -"Warbler, Yellow-rumped",1.7922 -"Warbler, Yellow",0.6043 -"Warbler, Blackburnian",0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index b125e194f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Core Hour Utilization (%)" -"Warbler, Yellow-rumped",0.3148 -"Warbler, Yellow",0.1062 -"Warbler, Blackburnian",0.0015 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 88a0c7c1f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Core Hour Utilization (%)" -"Warbler, Yellow-rumped",0.0903 -"Warbler, Yellow",0.0304 -"Warbler, Blackburnian",0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 8737d4d3e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" -2018-04-18,0.6128,0.3153,0 -2018-04-19,1.8168,0.5625,0.1111 -2018-04-20,0.8737,0.8547,0 -2018-04-21,1.2821,0.8547,0 -2018-04-22,1.2821,0.8547,0 -2018-04-23,1.2821,0.8547,0 -2018-04-24,1.2821,0.8547,0 -2018-04-25,1.2821,0.8547,0 -2018-04-26,1.7427,0.8547,0 -2018-04-27,2.9915,0.8071,0 -2018-04-28,2.9915,0,0 -2018-04-29,2.9915,0,0 -2018-04-30,2.8681,0.1883,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 5c90713d13..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" -2018-04,1.7922,0.6043,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 1362268b8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" -"2018 Q2",0.3148,0.1062,0.0015 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 4c30344adc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] Core Hour Utilization (%)","[Warbler, Yellow] Core Hour Utilization (%)","[Warbler, Blackburnian] Core Hour Utilization (%)" -2018,0.0903,0.0304,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 5d02779466..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Ended" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 5d02779466..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Ended" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 5d02779466..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Ended" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 5d02779466..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Ended" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 407f4ab0cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" -2018-04-18,13,0,2 -2018-04-19,11,11,1 -2018-04-20,7,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,1,0,0 -2018-04-27,0,0,2 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,4,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index b724855ffe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 754f7a5117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 9fd831af69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] Number of Sessions Ended","[Warbler, Blackburnian] Number of Sessions Ended","[Warbler, Yellow] Number of Sessions Ended" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 4b6c17b8dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Active" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 4b6c17b8dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Active" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 4b6c17b8dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Active" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 4b6c17b8dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Active" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index e7a5faf779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" -2018-04-18,20,0,2 -2018-04-19,12,11,2 -2018-04-20,10,0,1 -2018-04-21,3,0,1 -2018-04-22,3,0,1 -2018-04-23,3,0,1 -2018-04-24,3,0,1 -2018-04-25,3,0,1 -2018-04-26,5,0,1 -2018-04-27,4,0,2 -2018-04-28,4,0,0 -2018-04-29,4,0,0 -2018-04-30,4,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index e37ec97f27..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index a229c6276d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 722adaac85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] Number of Sessions Active","[Warbler, Blackburnian] Number of Sessions Active","[Warbler, Yellow] Number of Sessions Active" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 8fa0057781..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Started" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 8fa0057781..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Started" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 8fa0057781..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Started" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 8fa0057781..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Number of Sessions Started" -"Warbler, Yellow-rumped",36 -"Warbler, Blackburnian",11 -"Warbler, Yellow",6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index fbea6d23c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" -2018-04-18,20,0,2 -2018-04-19,5,11,2 -2018-04-20,9,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,2,0,0 -2018-04-27,0,0,1 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 5ce5aecc21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 33b8e8a223..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 37201e6729..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] Number of Sessions Started","[Warbler, Blackburnian] Number of Sessions Started","[Warbler, Yellow] Number of Sessions Started" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 2c9e12911f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Total" -"Warbler, Yellow-rumped",1003.4092 -"Warbler, Yellow",219.0072 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 2c9e12911f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Total" -"Warbler, Yellow-rumped",1003.4092 -"Warbler, Yellow",219.0072 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 2c9e12911f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Total" -"Warbler, Yellow-rumped",1003.4092 -"Warbler, Yellow",219.0072 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 2c9e12911f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -User,"Wall Hours: Total" -"Warbler, Yellow-rumped",1003.4092 -"Warbler, Yellow",219.0072 -"Warbler, Blackburnian",6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index c77da7d960..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" -2018-04-18,33.4714,4.4264,0 -2018-04-19,102.0311,15.7936,6.2383 -2018-04-20,49.0664,24.0000,0 -2018-04-21,72.0000,24.0000,0 -2018-04-22,72.0000,24.0000,0 -2018-04-23,72.0000,24.0000,0 -2018-04-24,72.0000,24.0000,0 -2018-04-25,72.0000,24.0000,0 -2018-04-26,78.8111,24.0000,0 -2018-04-27,96.0000,25.4986,0 -2018-04-28,96.0000,0,0 -2018-04-29,96.0000,0,0 -2018-04-30,92.0292,5.2886,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index e752468c60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" -2018-04,1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 2ab1631779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" -"2018 Q2",1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 1ad5f9cca1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/person/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Warbler, Yellow-rumped] Wall Hours: Total","[Warbler, Yellow] Wall Hours: Total","[Warbler, Blackburnian] Wall Hours: Total" -2018,1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index e2c5e10b1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Cores Reserved Weighted By Wall Hours" -"Tern, Sandwich",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index e2c5e10b1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Cores Reserved Weighted By Wall Hours" -"Tern, Sandwich",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index e2c5e10b1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Cores Reserved Weighted By Wall Hours" -"Tern, Sandwich",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index e2c5e10b1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Cores Reserved Weighted By Wall Hours" -"Tern, Sandwich",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 75ac63c8ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 75334a01a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 9d35329ebc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index e03748d6fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 54d3e68a7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 54d3e68a7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 54d3e68a7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 54d3e68a7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index bad5c50797..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 10acf5591b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index ce269a1719..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index a7b57821f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 88c6386c20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 88c6386c20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 88c6386c20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 88c6386c20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"Tern, Sandwich",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 2a1965d006..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index bfc3d2d9b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index e3685d5ed1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index c31e5ac715..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c00f112bac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Per Session" -"Tern, Sandwich",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c00f112bac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Per Session" -"Tern, Sandwich",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c00f112bac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Per Session" -"Tern, Sandwich",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c00f112bac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Per Session" -"Tern, Sandwich",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 1b3274be5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index afc53f9b07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e1fe7d44d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 85897aa742..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 30444a776b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"CPU Hours: Total" -"Tern, Sandwich",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 30444a776b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"CPU Hours: Total" -"Tern, Sandwich",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 30444a776b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"CPU Hours: Total" -"Tern, Sandwich",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 30444a776b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"CPU Hours: Total" -"Tern, Sandwich",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index cb2449f1dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 39a8b6a2e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 197926b1f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 8f56888c0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index b50a871589..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Core Hour Utilization (%)" -"Tern, Sandwich",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index b50a871589..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Core Hour Utilization (%)" -"Tern, Sandwich",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 2f6562e35a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Core Hour Utilization (%)" -"Tern, Sandwich",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 4a23e4d2d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Core Hour Utilization (%)" -"Tern, Sandwich",0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index f6a235b012..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 8e456e27e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index e9c602d474..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index ec488b6fa4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index c44d0dd655..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Ended" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index c44d0dd655..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Ended" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index c44d0dd655..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Ended" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index c44d0dd655..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Ended" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index f1cc4d24d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 7969b6a49c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 93466b565d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index b379780f68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index d512d68130..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Active" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index d512d68130..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Active" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index d512d68130..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Active" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index d512d68130..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Active" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 750ea6e1e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 2889645319..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index fa3e46d076..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index bcf9e62c31..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 62e5ed14c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Started" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 62e5ed14c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Started" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 62e5ed14c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Started" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 62e5ed14c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Number of Sessions Started" -"Tern, Sandwich",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 688c7d457b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 5e76bd066e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index c05d6b6c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 2036bac36e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 64a8a45d68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Total" -"Tern, Sandwich",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 64a8a45d68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Total" -"Tern, Sandwich",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 64a8a45d68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Total" -"Tern, Sandwich",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 64a8a45d68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -PI,"Wall Hours: Total" -"Tern, Sandwich",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 6b20466f32..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[Tern, Sandwich] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 6c825a078d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[Tern, Sandwich] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index d91bbda416..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[Tern, Sandwich] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 6c2b8a46ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/pi/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[Tern, Sandwich] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index df69cb2eed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Cores Reserved Weighted By Wall Hours" -zealous,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index df69cb2eed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Cores Reserved Weighted By Wall Hours" -zealous,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index df69cb2eed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Cores Reserved Weighted By Wall Hours" -zealous,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index df69cb2eed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Cores Reserved Weighted By Wall Hours" -zealous,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 5d23617c0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 9300508965..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 9664336342..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 63014232bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index a93e45912c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -zealous,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index a93e45912c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -zealous,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index a93e45912c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -zealous,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index a93e45912c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -zealous,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index df0ff09937..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 628c6871de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 0b5b7f6d09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index f90a6375fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 5b6b7e17f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -zealous,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 5b6b7e17f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -zealous,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 5b6b7e17f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -zealous,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 5b6b7e17f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -zealous,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index df168220a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 30ba1b4954..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 11a75093a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 923343fa17..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index fcf37e5ea9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Per Session" -zealous,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index fcf37e5ea9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Per Session" -zealous,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fcf37e5ea9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Per Session" -zealous,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index fcf37e5ea9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Per Session" -zealous,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6c49887aea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 8f8c6a3d29..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2517b5553f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index a5321033ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 23dde743dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"CPU Hours: Total" -zealous,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 23dde743dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"CPU Hours: Total" -zealous,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 23dde743dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"CPU Hours: Total" -zealous,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 23dde743dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"CPU Hours: Total" -zealous,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index b548ffac6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 33154564d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 5eb38730c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index b1a5844faa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 8c7ba13517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Core Hour Utilization (%)" -zealous,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 8c7ba13517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Core Hour Utilization (%)" -zealous,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 04038b410b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Core Hour Utilization (%)" -zealous,0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 0a32bf3b7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Core Hour Utilization (%)" -zealous,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index fd1d7becca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 46851b80af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index a40489639a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 4f825ea11c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 9bed979a7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Ended" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 9bed979a7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Ended" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 9bed979a7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Ended" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 9bed979a7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Ended" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index ec0cc80afa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index ce01842432..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 564b67d05b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 5644e8eb6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 68f3748e9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Active" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 68f3748e9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Active" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 68f3748e9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Active" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 68f3748e9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Active" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index d13529facc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 35b51da1b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 10b7fd0770..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index bddc35ce43..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 848431fa3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Started" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 848431fa3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Started" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 848431fa3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Started" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 848431fa3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Number of Sessions Started" -zealous,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 9ce92f3e71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 01027968cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index ffe6cb2fd6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 5137186e4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index bc806d3c4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Total" -zealous,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index bc806d3c4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Total" -zealous,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index bc806d3c4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Total" -zealous,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index bc806d3c4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Project,"Wall Hours: Total" -zealous,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 8b00b64396..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[zealous] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 41f37aa8c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[zealous] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index ea8908c5f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[zealous] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 30d211a4df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/project/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Project" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[zealous] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 9ce2cc9406..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Cores Reserved Weighted By Wall Hours" -"screw - Screwdriver",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 9ce2cc9406..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Cores Reserved Weighted By Wall Hours" -"screw - Screwdriver",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 9ce2cc9406..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Cores Reserved Weighted By Wall Hours" -"screw - Screwdriver",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 9ce2cc9406..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Cores Reserved Weighted By Wall Hours" -"screw - Screwdriver",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index e77d9086ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 7fbe9dbaa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index a2d12ee55c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 7bbd354c61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 2f13f995b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 2f13f995b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 2f13f995b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 2f13f995b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index d310501226..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 4d28087a2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 717dce8236..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index b979ab21c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 3e931f2561..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 3e931f2561..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 3e931f2561..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 3e931f2561..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"screw - Screwdriver",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 965b9a6983..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 979ce91bed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 93f9349a3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index a7562ed66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7c131a0951..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Per Session" -"screw - Screwdriver",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 7c131a0951..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Per Session" -"screw - Screwdriver",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7c131a0951..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Per Session" -"screw - Screwdriver",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7c131a0951..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Per Session" -"screw - Screwdriver",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6f8bd7c3ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d44c8eb754..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 314441cd82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 4e310a16a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 14c26d2c4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"CPU Hours: Total" -"screw - Screwdriver",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 14c26d2c4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"CPU Hours: Total" -"screw - Screwdriver",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 14c26d2c4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"CPU Hours: Total" -"screw - Screwdriver",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 14c26d2c4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"CPU Hours: Total" -"screw - Screwdriver",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 64b733c30c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 8ef6073eb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 528fe6e0b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index beb5f95662..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 6ecea90d1a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Core Hour Utilization (%)" -"screw - Screwdriver",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 6ecea90d1a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Core Hour Utilization (%)" -"screw - Screwdriver",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index ac0a34dad9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Core Hour Utilization (%)" -"screw - Screwdriver",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 01116015bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Core Hour Utilization (%)" -"screw - Screwdriver",0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 8a35c87509..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 24a9f285ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index d4a78e0e46..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index e31d0a81b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 3cc88026d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Ended" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 3cc88026d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Ended" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 3cc88026d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Ended" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 3cc88026d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Ended" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 69879ecfd9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index ecaaf14417..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index f5becb61fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 01361e2861..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index a333280d94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Active" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index a333280d94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Active" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index a333280d94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Active" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index a333280d94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Active" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 24bf522178..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index e48af8fe21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index f35c83e900..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 49112e2372..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 999af8511d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Started" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 999af8511d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Started" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 999af8511d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Started" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 999af8511d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Number of Sessions Started" -"screw - Screwdriver",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index e971b62308..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index ab3a336928..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index eb0564f6d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 6b0882f42a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 8b7ad15f99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Total" -"screw - Screwdriver",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 8b7ad15f99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Total" -"screw - Screwdriver",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 8b7ad15f99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Total" -"screw - Screwdriver",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 8b7ad15f99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Provider,"Wall Hours: Total" -"screw - Screwdriver",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 9824d82fe6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[screw - Screwdriver] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index c9b20a53c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[screw - Screwdriver] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 2d4ed066e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[screw - Screwdriver] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index af46af2cab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/provider/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Provider" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[screw - Screwdriver] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index db4d9db2e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Cores Reserved Weighted By Wall Hours" -openstack,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index db4d9db2e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Cores Reserved Weighted By Wall Hours" -openstack,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index db4d9db2e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Cores Reserved Weighted By Wall Hours" -openstack,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index db4d9db2e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Cores Reserved Weighted By Wall Hours" -openstack,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 5087ad9a70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 9291a07418..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 0f4b094718..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index dc3ca0cb91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 642dfb0949..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -openstack,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 642dfb0949..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -openstack,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 642dfb0949..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -openstack,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 642dfb0949..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Memory Reserved Weighted By Wall Hours (Bytes)" -openstack,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index d444bd7147..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 9e8a8b7b01..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index d35d08efc2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 2ba9a2c47e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 535c238bb6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -openstack,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 535c238bb6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -openstack,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 535c238bb6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -openstack,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 535c238bb6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -openstack,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 37b6eee9a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index ef12af600f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index f75611dcfe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 131aded05e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5f4723a2f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Per Session" -openstack,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5f4723a2f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Per Session" -openstack,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5f4723a2f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Per Session" -openstack,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5f4723a2f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Per Session" -openstack,23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 00955f6dab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 565f35be8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4376bdafe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index ebfcd5c07f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 52ff3a6881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"CPU Hours: Total" -openstack,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 52ff3a6881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"CPU Hours: Total" -openstack,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 52ff3a6881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"CPU Hours: Total" -openstack,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 52ff3a6881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"CPU Hours: Total" -openstack,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 803b53d60e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 9a2702a892..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index ceeeffc25b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 822ab3c566..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 4d7b0ef05b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Core Hour Utilization (%)" -openstack,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 4d7b0ef05b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Core Hour Utilization (%)" -openstack,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 75cdb96326..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Core Hour Utilization (%)" -openstack,0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 3ee4f4e5aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Core Hour Utilization (%)" -openstack,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 92e21f7b7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index cfdd0d4c9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index e55d6a4b74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index d12b4d5a52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index c28f04bd0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Ended" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index c28f04bd0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Ended" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index c28f04bd0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Ended" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index c28f04bd0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Ended" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index ddeeb8d272..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index a15e4cacb1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 677631fe1a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 6070fba798..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 343d32827b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Active" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 343d32827b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Active" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 343d32827b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Active" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 343d32827b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Active" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 0d4310f180..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 8cb5b11a27..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 07ae9dffc9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 690a1076db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 86660be25b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Started" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 86660be25b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Started" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 86660be25b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Started" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 86660be25b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Number of Sessions Started" -openstack,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 0dc78031ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 4fecd74b94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index ac1603b741..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index cb8f8df4ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 01d2a93256..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Total" -openstack,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 01d2a93256..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Total" -openstack,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 01d2a93256..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Total" -openstack,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 01d2a93256..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Resource,"Wall Hours: Total" -openstack,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 7ace7e5a0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[openstack] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 05282ff1d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[openstack] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index f20a54769d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[openstack] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index cede06a87e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/resource/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[openstack] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index fa35e68910..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Cores Reserved Weighted By Wall Hours" -"OpenStack API",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index fa35e68910..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Cores Reserved Weighted By Wall Hours" -"OpenStack API",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index fa35e68910..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Cores Reserved Weighted By Wall Hours" -"OpenStack API",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index fa35e68910..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Cores Reserved Weighted By Wall Hours" -"OpenStack API",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index a0ee5cb230..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.3753 -2018-04-19,1.1273 -2018-04-20,1.3285 -2018-04-21,1.2500 -2018-04-22,1.2500 -2018-04-23,1.2500 -2018-04-24,1.2500 -2018-04-25,1.2500 -2018-04-26,1.4188 -2018-04-27,1.7558 -2018-04-28,1.7500 -2018-04-29,1.7500 -2018-04-30,1.7638 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 5a36ec9abb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 6cb99e5551..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 45388dd3c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Average Cores Reserved Weighted By Wall Hours" -2018,1.4291 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 8cc27e6b61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 8cc27e6b61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 8cc27e6b61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 8cc27e6b61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index c390cef2a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,5944931821.4462 -2018-04-19,4270329944.8942 -2018-04-20,4294967296.0000 -2018-04-21,4294967296.0000 -2018-04-22,4294967296.0000 -2018-04-23,4294967296.0000 -2018-04-24,4294967296.0000 -2018-04-25,4294967296.0000 -2018-04-26,5091100499.4926 -2018-04-27,6689821892.7325 -2018-04-28,7516192768.0000 -2018-04-29,7516192768.0000 -2018-04-30,7342159943.8785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index e4caa6efff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index fb78b4a4b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 746345b04d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5391546777.3100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index a5eb3091d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index a5eb3091d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index a5eb3091d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index a5eb3091d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"OpenStack API",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 97836e91ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000 -2018-04-19,21474836480.0000 -2018-04-20,21474836480.0000 -2018-04-21,21474836480.0000 -2018-04-22,21474836480.0000 -2018-04-23,21474836480.0000 -2018-04-24,21474836480.0000 -2018-04-25,21474836480.0000 -2018-04-26,21474836480.0000 -2018-04-27,21474836480.0000 -2018-04-28,21474836480.0000 -2018-04-29,21474836480.0000 -2018-04-30,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 9fe00c1b44..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 8e5f38bd57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index f8f3232ba2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c8f7b83637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Per Session" -"OpenStack API",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c8f7b83637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Per Session" -"OpenStack API",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c8f7b83637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Per Session" -"OpenStack API",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c8f7b83637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Per Session" -"OpenStack API",23.14924004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index f277d0fa65..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Wall Hours: Per Session" -2018-04-18,1.72262626 -2018-04-19,4.96252222 -2018-04-20,6.64239899 -2018-04-21,24.00000000 -2018-04-22,24.00000000 -2018-04-23,24.00000000 -2018-04-24,24.00000000 -2018-04-25,24.00000000 -2018-04-26,17.13518519 -2018-04-27,20.24976852 -2018-04-28,24.00000000 -2018-04-29,24.00000000 -2018-04-30,19.46355556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0f739a8950..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Wall Hours: Per Session" -2018-04,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ed744dc398..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Wall Hours: Per Session" -"2018 Q2",23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8f70eeb0a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Wall Hours: Per Session" -2018,23.18216457 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 5b8a2d80fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","CPU Hours: Total" -"OpenStack API",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 5b8a2d80fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","CPU Hours: Total" -"OpenStack API",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 5b8a2d80fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","CPU Hours: Total" -"OpenStack API",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 5b8a2d80fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","CPU Hours: Total" -"OpenStack API",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 9388e47bc3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] CPU Hours: Total" -2018-04-18,52.1197 -2018-04-19,139.8567 -2018-04-20,97.0664 -2018-04-21,120.0000 -2018-04-22,120.0000 -2018-04-23,120.0000 -2018-04-24,120.0000 -2018-04-25,120.0000 -2018-04-26,145.8686 -2018-04-27,213.3267 -2018-04-28,168.0000 -2018-04-29,168.0000 -2018-04-30,171.6514 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 8cd625d0c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] CPU Hours: Total" -2018-04,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 89286e756e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] CPU Hours: Total" -"2018 Q2",1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 5ab4386f2c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] CPU Hours: Total" -2018,1755.8894 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 17beb83d2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Core Hour Utilization (%)" -"OpenStack API",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 17beb83d2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Core Hour Utilization (%)" -"OpenStack API",2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 8bb7bf4a7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Core Hour Utilization (%)" -"OpenStack API",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 76fbf8bbfa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Core Hour Utilization (%)" -"OpenStack API",0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index f89d6b7df2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Core Hour Utilization (%)" -2018-04-18,0.9281 -2018-04-19,2.4903 -2018-04-20,1.7284 -2018-04-21,2.1368 -2018-04-22,2.1368 -2018-04-23,2.1368 -2018-04-24,2.1368 -2018-04-25,2.1368 -2018-04-26,2.5974 -2018-04-27,3.7986 -2018-04-28,2.9915 -2018-04-29,2.9915 -2018-04-30,3.0565 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 19b5ba2804..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Core Hour Utilization (%)" -2018-04,2.4051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 446d4c4d3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Core Hour Utilization (%)" -"2018 Q2",0.4225 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 9281ec7ff5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Core Hour Utilization (%)" -2018,0.1212 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 1944ee23c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Ended" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 1944ee23c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Ended" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 1944ee23c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Ended" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 1944ee23c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Ended" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 32c85fae14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Number of Sessions Ended" -2018-04-18,15 -2018-04-19,23 -2018-04-20,7 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,1 -2018-04-27,2 -2018-04-28,0 -2018-04-29,0 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 172ab89b52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Number of Sessions Ended" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index ebaadb5bc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Number of Sessions Ended" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 0294f3a0d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Number of Sessions Ended" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 41c70d1e7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Active" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 41c70d1e7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Active" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 41c70d1e7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Active" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 41c70d1e7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Active" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index c19bad5828..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Number of Sessions Active" -2018-04-18,22 -2018-04-19,25 -2018-04-20,11 -2018-04-21,4 -2018-04-22,4 -2018-04-23,4 -2018-04-24,4 -2018-04-25,4 -2018-04-26,6 -2018-04-27,6 -2018-04-28,4 -2018-04-29,4 -2018-04-30,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 82acd2a9ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Number of Sessions Active" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 37db5260bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Number of Sessions Active" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 5fd9c56d58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Number of Sessions Active" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 6d1a356c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Started" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 6d1a356c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Started" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 6d1a356c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Started" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 6d1a356c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Number of Sessions Started" -"OpenStack API",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index f59bf67e5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Number of Sessions Started" -2018-04-18,22 -2018-04-19,18 -2018-04-20,9 -2018-04-21,0 -2018-04-22,0 -2018-04-23,0 -2018-04-24,0 -2018-04-25,0 -2018-04-26,2 -2018-04-27,1 -2018-04-28,0 -2018-04-29,0 -2018-04-30,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 6ad802d3e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Number of Sessions Started" -2018-04,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 547d0ca149..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Number of Sessions Started" -"2018 Q2",53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 1ac5fc59f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Number of Sessions Started" -2018,53 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index fb11550960..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Total" -"OpenStack API",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index fb11550960..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Total" -"OpenStack API",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index fb11550960..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Total" -"OpenStack API",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index fb11550960..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"Submission Venue","Wall Hours: Total" -"OpenStack API",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 05fb48d00b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[OpenStack API] Wall Hours: Total" -2018-04-18,37.8978 -2018-04-19,124.0631 -2018-04-20,73.0664 -2018-04-21,96.0000 -2018-04-22,96.0000 -2018-04-23,96.0000 -2018-04-24,96.0000 -2018-04-25,96.0000 -2018-04-26,102.8111 -2018-04-27,121.4986 -2018-04-28,96.0000 -2018-04-29,96.0000 -2018-04-30,97.3178 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 842e5f3db8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[OpenStack API] Wall Hours: Total" -2018-04,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 903865cda1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[OpenStack API] Wall Hours: Total" -"2018 Q2",1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 1ecccbdc24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/submission_venue/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Submission Venue" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[OpenStack API] Wall Hours: Total" -2018,1228.6547 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv deleted file mode 100644 index f497718fef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv deleted file mode 100644 index 2dd3e7e5f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv deleted file mode 100644 index f497718fef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv deleted file mode 100644 index 2dd3e7e5f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv deleted file mode 100644 index f497718fef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv deleted file mode 100644 index 2dd3e7e5f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv deleted file mode 100644 index 278e325441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" -ylwwa,2.0145 -yerwa,1.3040 -setusca,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv deleted file mode 100644 index f497718fef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv deleted file mode 100644 index 2dd3e7e5f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Cores Reserved Weighted By Wall Hours" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv deleted file mode 100644 index 69696dbe1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,3.9999,1.0282,0 -2018-04-19,2.0000,1.0000,1.0000 -2018-04-20,2.0000,1.0000,0 -2018-04-21,2.0000,1.0000,0 -2018-04-22,2.0000,1.0000,0 -2018-04-23,2.0000,1.0000,0 -2018-04-24,2.0000,1.0000,0 -2018-04-25,2.0000,1.0000,0 -2018-04-26,2.0000,1.2418,0 -2018-04-27,1.7776,1.7500,0 -2018-04-28,0,1.7500,0 -2018-04-29,0,1.7500,0 -2018-04-30,2.0000,1.7503,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv deleted file mode 100644 index 69696dbe1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,3.9999,1.0282,0 -2018-04-19,2.0000,1.0000,1.0000 -2018-04-20,2.0000,1.0000,0 -2018-04-21,2.0000,1.0000,0 -2018-04-22,2.0000,1.0000,0 -2018-04-23,2.0000,1.0000,0 -2018-04-24,2.0000,1.0000,0 -2018-04-25,2.0000,1.0000,0 -2018-04-26,2.0000,1.2418,0 -2018-04-27,1.7776,1.7500,0 -2018-04-28,0,1.7500,0 -2018-04-29,0,1.7500,0 -2018-04-30,2.0000,1.7503,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv deleted file mode 100644 index c61d640a76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv deleted file mode 100644 index 2c62d3f0f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv deleted file mode 100644 index c04f4c8cad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -2018-04,2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv deleted file mode 100644 index c04f4c8cad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -2018-04,2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv deleted file mode 100644 index 7339d96a9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv deleted file mode 100644 index aa1b35e665..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv deleted file mode 100644 index 15500c212e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv deleted file mode 100644 index 15500c212e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv deleted file mode 100644 index e0a5e64b10..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv deleted file mode 100644 index e0f0a480e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv deleted file mode 100644 index ac4d744143..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -2018,2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv deleted file mode 100644 index ac4d744143..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[ylwwa] Average Cores Reserved Weighted By Wall Hours","[yerwa] Average Cores Reserved Weighted By Wall Hours","[setusca] Average Cores Reserved Weighted By Wall Hours" -2018,2.0145,1.3040,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv deleted file mode 100644 index 2f2ef116b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv deleted file mode 100644 index ef8efb3429..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_cores_reserved/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv deleted file mode 100644 index 043bc7cf97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv deleted file mode 100644 index 233e545f70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv deleted file mode 100644 index 043bc7cf97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv deleted file mode 100644 index 233e545f70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv deleted file mode 100644 index 043bc7cf97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv deleted file mode 100644 index 233e545f70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv deleted file mode 100644 index edf6a054cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" -yerwa,5602121263.9108 -ylwwa,4471965428.8596 -setusca,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv deleted file mode 100644 index 043bc7cf97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv deleted file mode 100644 index 233e545f70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Memory Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv deleted file mode 100644 index 25c1a1eb94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,4459286187.3607,17179060592.7300,0 -2018-04-19,4294967296.0000,4294967296.0000,3804999079.2242 -2018-04-20,4294967296.0000,4294967296.0000,0 -2018-04-21,4294967296.0000,4294967296.0000,0 -2018-04-22,4294967296.0000,4294967296.0000,0 -2018-04-23,4294967296.0000,4294967296.0000,0 -2018-04-24,4294967296.0000,4294967296.0000,0 -2018-04-25,4294967296.0000,4294967296.0000,0 -2018-04-26,5333543431.8969,4294967296.0000,0 -2018-04-27,7516192768.0000,3578609141.5754,0 -2018-04-28,7516192768.0000,0,0 -2018-04-29,7516192768.0000,0,0 -2018-04-30,7517272003.2285,4294967296.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv deleted file mode 100644 index 25c1a1eb94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,4459286187.3607,17179060592.7300,0 -2018-04-19,4294967296.0000,4294967296.0000,3804999079.2242 -2018-04-20,4294967296.0000,4294967296.0000,0 -2018-04-21,4294967296.0000,4294967296.0000,0 -2018-04-22,4294967296.0000,4294967296.0000,0 -2018-04-23,4294967296.0000,4294967296.0000,0 -2018-04-24,4294967296.0000,4294967296.0000,0 -2018-04-25,4294967296.0000,4294967296.0000,0 -2018-04-26,5333543431.8969,4294967296.0000,0 -2018-04-27,7516192768.0000,3578609141.5754,0 -2018-04-28,7516192768.0000,0,0 -2018-04-29,7516192768.0000,0,0 -2018-04-30,7517272003.2285,4294967296.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv deleted file mode 100644 index 701ffd09a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv deleted file mode 100644 index 4ec91117be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv deleted file mode 100644 index a0939b6534..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv deleted file mode 100644 index a0939b6534..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv deleted file mode 100644 index 2e3de6d022..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv deleted file mode 100644 index 8d717ca006..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv deleted file mode 100644 index ebdf0412f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv deleted file mode 100644 index ebdf0412f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv deleted file mode 100644 index 7b153f0b7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv deleted file mode 100644 index 316e206254..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv deleted file mode 100644 index 90367f0726..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv deleted file mode 100644 index 90367f0726..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Memory Reserved Weighted By Wall Hours (Bytes)","[setusca] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,5602121263.9108,4471965428.8596,3804999079.2242 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv deleted file mode 100644 index 58db961411..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv deleted file mode 100644 index 66614e5249..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_memory_reserved/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv deleted file mode 100644 index 0c4bdd4d62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv deleted file mode 100644 index 3aaeba13bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv deleted file mode 100644 index 0c4bdd4d62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv deleted file mode 100644 index 3aaeba13bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv deleted file mode 100644 index 0c4bdd4d62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv deleted file mode 100644 index 3aaeba13bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv deleted file mode 100644 index 2088a487e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -setusca,21474836480.0000 -yerwa,21474836480.0000 -ylwwa,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv deleted file mode 100644 index 0c4bdd4d62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv deleted file mode 100644 index 3aaeba13bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv deleted file mode 100644 index cffe17237c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,0,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-20,0,21474836480.0000,21474836480.0000 -2018-04-21,0,21474836480.0000,21474836480.0000 -2018-04-22,0,21474836480.0000,21474836480.0000 -2018-04-23,0,21474836480.0000,21474836480.0000 -2018-04-24,0,21474836480.0000,21474836480.0000 -2018-04-25,0,21474836480.0000,21474836480.0000 -2018-04-26,0,21474836480.0000,21474836480.0000 -2018-04-27,0,21474836480.0000,21474836480.0000 -2018-04-28,0,21474836480.0000,0 -2018-04-29,0,21474836480.0000,0 -2018-04-30,0,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv deleted file mode 100644 index cffe17237c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,0,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-20,0,21474836480.0000,21474836480.0000 -2018-04-21,0,21474836480.0000,21474836480.0000 -2018-04-22,0,21474836480.0000,21474836480.0000 -2018-04-23,0,21474836480.0000,21474836480.0000 -2018-04-24,0,21474836480.0000,21474836480.0000 -2018-04-25,0,21474836480.0000,21474836480.0000 -2018-04-26,0,21474836480.0000,21474836480.0000 -2018-04-27,0,21474836480.0000,21474836480.0000 -2018-04-28,0,21474836480.0000,0 -2018-04-29,0,21474836480.0000,0 -2018-04-30,0,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv deleted file mode 100644 index 4fec585b0d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv deleted file mode 100644 index 2f639719ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv deleted file mode 100644 index 23015d66f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv deleted file mode 100644 index 23015d66f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv deleted file mode 100644 index 347d0f568f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv deleted file mode 100644 index b1d4ab7569..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv deleted file mode 100644 index 4c0e1d9f75..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv deleted file mode 100644 index 4c0e1d9f75..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv deleted file mode 100644 index 33c39370e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv deleted file mode 100644 index ed91cd9e44..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv deleted file mode 100644 index bc2ab190ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv deleted file mode 100644 index bc2ab190ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[setusca] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[yerwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[ylwwa] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv deleted file mode 100644 index da1c86a6d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv deleted file mode 100644 index 2a29b43c93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_rv_storage_reserved/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv deleted file mode 100644 index 5f9d0320c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv deleted file mode 100644 index 75cba497c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv deleted file mode 100644 index 5f9d0320c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv deleted file mode 100644 index 75cba497c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index 5f9d0320c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 75cba497c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv deleted file mode 100644 index 3f36e2cb57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" -ylwwa,36.50106481 -yerwa,27.87240741 -setusca,0.40878788 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv deleted file mode 100644 index 5f9d0320c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv deleted file mode 100644 index 75cba497c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Per Session" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv deleted file mode 100644 index f6dee46627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -2018-04-18,0.00000000,1.67356944,0 -2018-04-19,7.89680556,8.50259259,0.56712121 -2018-04-20,24.00000000,4.90663889,0 -2018-04-21,24.00000000,24.00000000,0 -2018-04-22,24.00000000,24.00000000,0 -2018-04-23,24.00000000,24.00000000,0 -2018-04-24,24.00000000,24.00000000,0 -2018-04-25,24.00000000,24.00000000,0 -2018-04-26,24.00000000,15.76222222,0 -2018-04-27,12.74930556,24.00000000,0 -2018-04-28,0,24.00000000,0 -2018-04-29,0,24.00000000,0 -2018-04-30,5.28861111,23.00729167,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv deleted file mode 100644 index f6dee46627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -2018-04-18,0.00000000,1.67356944,0 -2018-04-19,7.89680556,8.50259259,0.56712121 -2018-04-20,24.00000000,4.90663889,0 -2018-04-21,24.00000000,24.00000000,0 -2018-04-22,24.00000000,24.00000000,0 -2018-04-23,24.00000000,24.00000000,0 -2018-04-24,24.00000000,24.00000000,0 -2018-04-25,24.00000000,24.00000000,0 -2018-04-26,24.00000000,15.76222222,0 -2018-04-27,12.74930556,24.00000000,0 -2018-04-28,0,24.00000000,0 -2018-04-29,0,24.00000000,0 -2018-04-30,5.28861111,23.00729167,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv deleted file mode 100644 index 025a686b60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv deleted file mode 100644 index d0155c8b3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv deleted file mode 100644 index cdd881cf9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -2018-04,36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv deleted file mode 100644 index cdd881cf9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -2018-04,36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv deleted file mode 100644 index 6ee20ab3c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv deleted file mode 100644 index 30bbc55538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index d170a3e5ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -"2018 Q2",36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index d170a3e5ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -"2018 Q2",36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index f30e8d03b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 3b24fe0830..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv deleted file mode 100644 index 377f7b706a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -2018,36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv deleted file mode 100644 index 377f7b706a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[ylwwa] Wall Hours: Per Session","[yerwa] Wall Hours: Per Session","[setusca] Wall Hours: Per Session" -2018,36.50120370,27.87247685,0.56712121 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv deleted file mode 100644 index e377cd353f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv deleted file mode 100644 index c2522eff82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_avg_wallduration_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv deleted file mode 100644 index 930a5d36bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv deleted file mode 100644 index e88ad7bf70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv deleted file mode 100644 index 930a5d36bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv deleted file mode 100644 index e88ad7bf70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv deleted file mode 100644 index 930a5d36bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv deleted file mode 100644 index e88ad7bf70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv deleted file mode 100644 index a21753294d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" -yerwa,1308.4550 -ylwwa,441.1961 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv deleted file mode 100644 index 930a5d36bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv deleted file mode 100644 index e88ad7bf70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","CPU Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv deleted file mode 100644 index c2c3915975..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -2018-04-18,34.4147,17.7050,0 -2018-04-19,102.0311,31.5872,6.2383 -2018-04-20,49.0664,48.0000,0 -2018-04-21,72.0000,48.0000,0 -2018-04-22,72.0000,48.0000,0 -2018-04-23,72.0000,48.0000,0 -2018-04-24,72.0000,48.0000,0 -2018-04-25,72.0000,48.0000,0 -2018-04-26,97.8686,48.0000,0 -2018-04-27,168.0000,45.3267,0 -2018-04-28,168.0000,0,0 -2018-04-29,168.0000,0,0 -2018-04-30,161.0742,10.5772,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv deleted file mode 100644 index c2c3915975..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -2018-04-18,34.4147,17.7050,0 -2018-04-19,102.0311,31.5872,6.2383 -2018-04-20,49.0664,48.0000,0 -2018-04-21,72.0000,48.0000,0 -2018-04-22,72.0000,48.0000,0 -2018-04-23,72.0000,48.0000,0 -2018-04-24,72.0000,48.0000,0 -2018-04-25,72.0000,48.0000,0 -2018-04-26,97.8686,48.0000,0 -2018-04-27,168.0000,45.3267,0 -2018-04-28,168.0000,0,0 -2018-04-29,168.0000,0,0 -2018-04-30,161.0742,10.5772,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv deleted file mode 100644 index 05d3613317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv deleted file mode 100644 index 1b7772f7dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv deleted file mode 100644 index 91f2034ecb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -2018-04,1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv deleted file mode 100644 index 91f2034ecb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -2018-04,1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv deleted file mode 100644 index 17f1d2d384..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv deleted file mode 100644 index f028d5dd9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv deleted file mode 100644 index 42e4335b40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -"2018 Q2",1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv deleted file mode 100644 index 42e4335b40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -"2018 Q2",1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv deleted file mode 100644 index 7e3fa5bf24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv deleted file mode 100644 index 782faea2dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv deleted file mode 100644 index 674db6097f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -2018,1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv deleted file mode 100644 index 674db6097f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] CPU Hours: Total","[ylwwa] CPU Hours: Total","[setusca] CPU Hours: Total" -2018,1308.4550,441.1961,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv deleted file mode 100644 index 7df87b6fa4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv deleted file mode 100644 index 97830ebc60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_time/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv deleted file mode 100644 index cc97cde410..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,1.7922 -ylwwa,0.6043 -setusca,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv deleted file mode 100644 index cc97cde410..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,1.7922 -ylwwa,0.6043 -setusca,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv deleted file mode 100644 index b013fbbb5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv deleted file mode 100644 index a8822a48d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv deleted file mode 100644 index cc97cde410..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,1.7922 -ylwwa,0.6043 -setusca,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv deleted file mode 100644 index cc97cde410..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,1.7922 -ylwwa,0.6043 -setusca,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv deleted file mode 100644 index b013fbbb5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv deleted file mode 100644 index a8822a48d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv deleted file mode 100644 index c635fb5b18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,0.3148 -ylwwa,0.1062 -setusca,0.0015 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv deleted file mode 100644 index c635fb5b18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,0.3148 -ylwwa,0.1062 -setusca,0.0015 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv deleted file mode 100644 index b013fbbb5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv deleted file mode 100644 index a8822a48d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv deleted file mode 100644 index 8693083cef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,0.0903 -ylwwa,0.0304 -setusca,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv deleted file mode 100644 index 8693083cef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" -yerwa,0.0903 -ylwwa,0.0304 -setusca,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv deleted file mode 100644 index b013fbbb5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv deleted file mode 100644 index a8822a48d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Core Hour Utilization (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv deleted file mode 100644 index 22fdff6c26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -2018-04-18,0.6128,0.3153,0 -2018-04-19,1.8168,0.5625,0.1111 -2018-04-20,0.8737,0.8547,0 -2018-04-21,1.2821,0.8547,0 -2018-04-22,1.2821,0.8547,0 -2018-04-23,1.2821,0.8547,0 -2018-04-24,1.2821,0.8547,0 -2018-04-25,1.2821,0.8547,0 -2018-04-26,1.7427,0.8547,0 -2018-04-27,2.9915,0.8071,0 -2018-04-28,2.9915,0,0 -2018-04-29,2.9915,0,0 -2018-04-30,2.8681,0.1883,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv deleted file mode 100644 index 22fdff6c26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -2018-04-18,0.6128,0.3153,0 -2018-04-19,1.8168,0.5625,0.1111 -2018-04-20,0.8737,0.8547,0 -2018-04-21,1.2821,0.8547,0 -2018-04-22,1.2821,0.8547,0 -2018-04-23,1.2821,0.8547,0 -2018-04-24,1.2821,0.8547,0 -2018-04-25,1.2821,0.8547,0 -2018-04-26,1.7427,0.8547,0 -2018-04-27,2.9915,0.8071,0 -2018-04-28,2.9915,0,0 -2018-04-29,2.9915,0,0 -2018-04-30,2.8681,0.1883,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv deleted file mode 100644 index 3b4d32082c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv deleted file mode 100644 index 20298d78c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv deleted file mode 100644 index 50269fd330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -2018-04,1.7922,0.6043,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv deleted file mode 100644 index 50269fd330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -2018-04,1.7922,0.6043,0.0085 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv deleted file mode 100644 index 96ffee1437..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv deleted file mode 100644 index 5636f4e11d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv deleted file mode 100644 index ca18d69102..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -"2018 Q2",0.3148,0.1062,0.0015 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv deleted file mode 100644 index ca18d69102..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -"2018 Q2",0.3148,0.1062,0.0015 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv deleted file mode 100644 index 7c551d2efc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv deleted file mode 100644 index 6ee98d8769..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv deleted file mode 100644 index 77a489e028..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -2018,0.0903,0.0304,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv deleted file mode 100644 index 77a489e028..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Core Hour Utilization (%)","[ylwwa] Core Hour Utilization (%)","[setusca] Core Hour Utilization (%)" -2018,0.0903,0.0304,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv deleted file mode 100644 index 5b44339347..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv deleted file mode 100644 index 6696aceed6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_core_utilization/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv deleted file mode 100644 index 6bf3123556..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv deleted file mode 100644 index 23abff8c5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv deleted file mode 100644 index 6bf3123556..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv deleted file mode 100644 index 23abff8c5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv deleted file mode 100644 index 6bf3123556..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv deleted file mode 100644 index 23abff8c5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv deleted file mode 100644 index 596a5d1117..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv deleted file mode 100644 index 6bf3123556..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv deleted file mode 100644 index 23abff8c5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Ended" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv deleted file mode 100644 index a629245934..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -2018-04-18,13,0,2 -2018-04-19,11,11,1 -2018-04-20,7,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,1,0,0 -2018-04-27,0,0,2 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,4,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv deleted file mode 100644 index a629245934..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -2018-04-18,13,0,2 -2018-04-19,11,11,1 -2018-04-20,7,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,1,0,0 -2018-04-27,0,0,2 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,4,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv deleted file mode 100644 index 795dfbb894..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv deleted file mode 100644 index 6879c2b997..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv deleted file mode 100644 index 599d2863be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv deleted file mode 100644 index 599d2863be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv deleted file mode 100644 index 58976a2579..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv deleted file mode 100644 index c7c9ea6b02..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv deleted file mode 100644 index 2de6275770..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv deleted file mode 100644 index 2de6275770..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv deleted file mode 100644 index a1e1fb5dc6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv deleted file mode 100644 index 1c07dc9d36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv deleted file mode 100644 index 3bd73a4505..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv deleted file mode 100644 index 3bd73a4505..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Number of Sessions Ended","[setusca] Number of Sessions Ended","[ylwwa] Number of Sessions Ended" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv deleted file mode 100644 index 6c2e2b28a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv deleted file mode 100644 index e81cc6141a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_ended/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv deleted file mode 100644 index 6b10f5c6a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv deleted file mode 100644 index bee10c2453..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv deleted file mode 100644 index 6b10f5c6a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv deleted file mode 100644 index bee10c2453..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv deleted file mode 100644 index 6b10f5c6a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv deleted file mode 100644 index bee10c2453..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv deleted file mode 100644 index 79903646e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv deleted file mode 100644 index 6b10f5c6a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv deleted file mode 100644 index bee10c2453..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Active" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv deleted file mode 100644 index 18d6426e2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -2018-04-18,20,0,2 -2018-04-19,12,11,2 -2018-04-20,10,0,1 -2018-04-21,3,0,1 -2018-04-22,3,0,1 -2018-04-23,3,0,1 -2018-04-24,3,0,1 -2018-04-25,3,0,1 -2018-04-26,5,0,1 -2018-04-27,4,0,2 -2018-04-28,4,0,0 -2018-04-29,4,0,0 -2018-04-30,4,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv deleted file mode 100644 index 18d6426e2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -2018-04-18,20,0,2 -2018-04-19,12,11,2 -2018-04-20,10,0,1 -2018-04-21,3,0,1 -2018-04-22,3,0,1 -2018-04-23,3,0,1 -2018-04-24,3,0,1 -2018-04-25,3,0,1 -2018-04-26,5,0,1 -2018-04-27,4,0,2 -2018-04-28,4,0,0 -2018-04-29,4,0,0 -2018-04-30,4,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv deleted file mode 100644 index c4d973aa45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv deleted file mode 100644 index 91f81b1f12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv deleted file mode 100644 index d18768541b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv deleted file mode 100644 index d18768541b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv deleted file mode 100644 index dd641c00a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv deleted file mode 100644 index 0da08a03f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv deleted file mode 100644 index c487b5b806..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv deleted file mode 100644 index c487b5b806..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv deleted file mode 100644 index e0e07e69e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv deleted file mode 100644 index 77246b9365..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv deleted file mode 100644 index 80aaba1b22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv deleted file mode 100644 index 80aaba1b22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Number of Sessions Active","[setusca] Number of Sessions Active","[ylwwa] Number of Sessions Active" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv deleted file mode 100644 index fdcfafb4b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv deleted file mode 100644 index 80f55b838b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_running/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv deleted file mode 100644 index d531b4ddf4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv deleted file mode 100644 index a3083289ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv deleted file mode 100644 index d531b4ddf4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv deleted file mode 100644 index a3083289ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv deleted file mode 100644 index d531b4ddf4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv deleted file mode 100644 index a3083289ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv deleted file mode 100644 index c6fcb3fd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" -yerwa,36 -setusca,11 -ylwwa,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv deleted file mode 100644 index d531b4ddf4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv deleted file mode 100644 index a3083289ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Number of Sessions Started" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv deleted file mode 100644 index 85cba78eca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -2018-04-18,20,0,2 -2018-04-19,5,11,2 -2018-04-20,9,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,2,0,0 -2018-04-27,0,0,1 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv deleted file mode 100644 index 85cba78eca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -2018-04-18,20,0,2 -2018-04-19,5,11,2 -2018-04-20,9,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,2,0,0 -2018-04-27,0,0,1 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv deleted file mode 100644 index 6e5db3090b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv deleted file mode 100644 index 0aa3047c00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv deleted file mode 100644 index 976fc9937f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv deleted file mode 100644 index 976fc9937f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -2018-04,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv deleted file mode 100644 index 3287a1da18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv deleted file mode 100644 index 7930eb3a24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv deleted file mode 100644 index f2d7d32182..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv deleted file mode 100644 index f2d7d32182..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -"2018 Q2",36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv deleted file mode 100644 index 6d391ca8ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv deleted file mode 100644 index ea3973c861..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv deleted file mode 100644 index 287dc3b94d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv deleted file mode 100644 index 287dc3b94d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Number of Sessions Started","[setusca] Number of Sessions Started","[ylwwa] Number of Sessions Started" -2018,36,11,6 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv deleted file mode 100644 index 767e82b9d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv deleted file mode 100644 index 4a3badfafc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_num_sessions_started/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv deleted file mode 100644 index 453ca507df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv deleted file mode 100644 index 78201faabf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv deleted file mode 100644 index 453ca507df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv deleted file mode 100644 index 78201faabf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv deleted file mode 100644 index 453ca507df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv deleted file mode 100644 index 78201faabf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cd.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv deleted file mode 100644 index 0f12bacc91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-cs.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" -yerwa,1003.4092 -ylwwa,219.0072 -setusca,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv deleted file mode 100644 index 453ca507df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv deleted file mode 100644 index 78201faabf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -"System Username","Wall Hours: Total" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv deleted file mode 100644 index 7347ff3934..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cd.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -2018-04-18,33.4714,4.4264,0 -2018-04-19,102.0311,15.7936,6.2383 -2018-04-20,49.0664,24.0000,0 -2018-04-21,72.0000,24.0000,0 -2018-04-22,72.0000,24.0000,0 -2018-04-23,72.0000,24.0000,0 -2018-04-24,72.0000,24.0000,0 -2018-04-25,72.0000,24.0000,0 -2018-04-26,78.8111,24.0000,0 -2018-04-27,96.0000,25.4986,0 -2018-04-28,96.0000,0,0 -2018-04-29,96.0000,0,0 -2018-04-30,92.0292,5.2886,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv deleted file mode 100644 index 7347ff3934..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-cs.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -2018-04-18,33.4714,4.4264,0 -2018-04-19,102.0311,15.7936,6.2383 -2018-04-20,49.0664,24.0000,0 -2018-04-21,72.0000,24.0000,0 -2018-04-22,72.0000,24.0000,0 -2018-04-23,72.0000,24.0000,0 -2018-04-24,72.0000,24.0000,0 -2018-04-25,72.0000,24.0000,0 -2018-04-26,78.8111,24.0000,0 -2018-04-27,96.0000,25.4986,0 -2018-04-28,96.0000,0,0 -2018-04-29,96.0000,0,0 -2018-04-30,92.0292,5.2886,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv deleted file mode 100644 index 321216c1f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv deleted file mode 100644 index a52d6cb6fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv deleted file mode 100644 index e82bac711d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -2018-04,1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv deleted file mode 100644 index e82bac711d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -2018-04,1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv deleted file mode 100644 index e00c3a9ff8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv deleted file mode 100644 index 82c3b637bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv deleted file mode 100644 index 66fda2f71b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -"2018 Q2",1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv deleted file mode 100644 index 66fda2f71b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -"2018 Q2",1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv deleted file mode 100644 index 44ebe9baee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv deleted file mode 100644 index c4a13510ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv deleted file mode 100644 index 3910906740..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cd.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -2018,1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv deleted file mode 100644 index 3910906740..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-cs.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[yerwa] Wall Hours: Total","[ylwwa] Wall Hours: Total","[setusca] Wall Hours: Total" -2018,1003.4092,219.0072,6.2383 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv deleted file mode 100644 index 06545f9588..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-pi.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv deleted file mode 100644 index 6afe151aff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/username/cloud_wall_time/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-04-18,2018-04-30 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index f81d1205ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" -1,1.0000 -"2 - 3",2.0000 -"4 - 7",4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index f81d1205ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" -1,1.0000 -"2 - 3",2.0000 -"4 - 7",4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index f81d1205ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" -1,1.0000 -"2 - 3",2.0000 -"4 - 7",4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index f81d1205ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Cores Reserved Weighted By Wall Hours" -1,1.0000 -"2 - 3",2.0000 -"4 - 7",4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 4e7cfc99d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,1.0000,2.0000,4.0000 -2018-04-19,1.0000,2.0000,0 -2018-04-20,1.0000,2.0000,0 -2018-04-21,1.0000,2.0000,0 -2018-04-22,1.0000,2.0000,0 -2018-04-23,1.0000,2.0000,0 -2018-04-24,1.0000,2.0000,0 -2018-04-25,1.0000,2.0000,0 -2018-04-26,1.0000,2.0000,4.0000 -2018-04-27,1.0000,2.0000,4.0000 -2018-04-28,1.0000,0,4.0000 -2018-04-29,1.0000,0,4.0000 -2018-04-30,1.0000,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 1a65671e03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" -2018-04,1.0000,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 78875dc183..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",1.0000,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index d179f4f811..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Average Cores Reserved Weighted By Wall Hours","[2 - 3] Average Cores Reserved Weighted By Wall Hours","[4 - 7] Average Cores Reserved Weighted By Wall Hours" -2018,1.0000,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 785b13ee73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" -1,4276530145.1301 -"2 - 3",4299782600.4310 -"4 - 7",17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 785b13ee73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" -1,4276530145.1301 -"2 - 3",4299782600.4310 -"4 - 7",17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 785b13ee73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" -1,4276530145.1301 -"2 - 3",4299782600.4310 -"4 - 7",17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 785b13ee73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Memory Reserved Weighted By Wall Hours (Bytes)" -1,4276530145.1301 -"2 - 3",4299782600.4310 -"4 - 7",17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index abd6408fbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,4432985725.8390,5365864352.1413,17179869184.0000 -2018-04-19,4266736015.4696,4294967296.0000,0 -2018-04-20,4294967296.0000,4294967296.0000,0 -2018-04-21,4294967296.0000,4294967296.0000,0 -2018-04-22,4294967296.0000,4294967296.0000,0 -2018-04-23,4294967296.0000,4294967296.0000,0 -2018-04-24,4294967296.0000,4294967296.0000,0 -2018-04-25,4294967296.0000,4294967296.0000,0 -2018-04-26,4294967296.0000,4294967296.0000,17179869184.0000 -2018-04-27,4059792745.4217,4294967296.0000,17179869184.0000 -2018-04-28,4294967296.0000,0,17179869184.0000 -2018-04-29,4294967296.0000,0,17179869184.0000 -2018-04-30,4294967296.0000,4294967296.0000,17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index e6c0e2a378..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,4276530145.1301,4299782600.4310,17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 8f7fc25cef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",4276530145.1301,4299782600.4310,17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index d3768d7387..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,4276530145.1301,4299782600.4310,17179869184.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index c65bf7caea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -1,21474836480.0000 -"2 - 3",21474836480.0000 -"4 - 7",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index c65bf7caea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -1,21474836480.0000 -"2 - 3",21474836480.0000 -"4 - 7",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index c65bf7caea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -1,21474836480.0000 -"2 - 3",21474836480.0000 -"4 - 7",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index c65bf7caea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -1,21474836480.0000 -"2 - 3",21474836480.0000 -"4 - 7",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 6bc5f7caf4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000,0 -2018-04-20,21474836480.0000,21474836480.0000,0 -2018-04-21,21474836480.0000,21474836480.0000,0 -2018-04-22,21474836480.0000,21474836480.0000,0 -2018-04-23,21474836480.0000,21474836480.0000,0 -2018-04-24,21474836480.0000,21474836480.0000,0 -2018-04-25,21474836480.0000,21474836480.0000,0 -2018-04-26,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-27,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-28,21474836480.0000,0,21474836480.0000 -2018-04-29,21474836480.0000,0,21474836480.0000 -2018-04-30,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 229f7d1fa7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index eea864280d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 775f1a4e5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 3] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 7] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8f9f487352..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Per Session" -1,20.25029630 -"2 - 3",41.97055556 -"4 - 7",35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 8f9f487352..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Per Session" -1,20.25029630 -"2 - 3",41.97055556 -"4 - 7",35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 8f9f487352..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Per Session" -1,20.25029630 -"2 - 3",41.97055556 -"4 - 7",35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8f9f487352..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Per Session" -1,20.25029630 -"2 - 3",41.97055556 -"4 - 7",35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6a6529c870..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" -2018-04-18,1.80711420,0.47180556,2.21305556 -2018-04-19,4.70736715,7.89680556,0 -2018-04-20,4.90663889,24.00000000,0 -2018-04-21,24.00000000,24.00000000,0 -2018-04-22,24.00000000,24.00000000,0 -2018-04-23,24.00000000,24.00000000,0 -2018-04-24,24.00000000,24.00000000,0 -2018-04-25,24.00000000,24.00000000,0 -2018-04-26,18.11465278,24.00000000,6.35250000 -2018-04-27,19.41763889,19.82805556,24.00000000 -2018-04-28,24.00000000,0,24.00000000 -2018-04-29,24.00000000,0,24.00000000 -2018-04-30,23.00472222,5.28861111,23.01500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9cc55cfb12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" -2018-04,20.28904938,41.97077778,35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index db83f4db5f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" -"2018 Q2",20.28904938,41.97077778,35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index b16517f55b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Wall Hours: Per Session","[2 - 3] Wall Hours: Per Session","[4 - 7] Wall Hours: Per Session" -2018,20.28904938,41.97077778,35.26453704 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index 3b937683a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","CPU Hours: Total" -1,913.0072 -"2 - 3",419.7078 -"4 - 7",423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index 3b937683a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","CPU Hours: Total" -1,913.0072 -"2 - 3",419.7078 -"4 - 7",423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 3b937683a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","CPU Hours: Total" -1,913.0072 -"2 - 3",419.7078 -"4 - 7",423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index 3b937683a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","CPU Hours: Total" -1,913.0072 -"2 - 3",419.7078 -"4 - 7",423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 4ea99ffda3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" -2018-04-18,32.5281,1.8872,17.7044 -2018-04-19,108.2694,31.5872,0 -2018-04-20,49.0664,48.0000,0 -2018-04-21,72.0000,48.0000,0 -2018-04-22,72.0000,48.0000,0 -2018-04-23,72.0000,48.0000,0 -2018-04-24,72.0000,48.0000,0 -2018-04-25,72.0000,48.0000,0 -2018-04-26,72.4586,48.0000,25.4100 -2018-04-27,77.6706,39.6561,96.0000 -2018-04-28,72.0000,0,96.0000 -2018-04-29,72.0000,0,96.0000 -2018-04-30,69.0142,10.5772,92.0600 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index f76d64f3c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" -2018-04,913.0072,419.7078,423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 37c3e411da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" -"2018 Q2",913.0072,419.7078,423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index fe5bdcc844..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] CPU Hours: Total","[2 - 3] CPU Hours: Total","[4 - 7] CPU Hours: Total" -2018,913.0072,419.7078,423.1744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index f9f65cbdf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Core Hour Utilization (%)" -1,1.2506 -"2 - 3",0.5749 -"4 - 7",0.5796 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index f9f65cbdf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Core Hour Utilization (%)" -1,1.2506 -"2 - 3",0.5749 -"4 - 7",0.5796 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 13549ffd7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Core Hour Utilization (%)" -1,0.2197 -"2 - 3",0.1010 -"4 - 7",0.1018 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 8e91b2b535..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Core Hour Utilization (%)" -1,0.0630 -"2 - 3",0.0290 -"4 - 7",0.0292 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index ce5d569b92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" -2018-04-18,0.5792,0.0336,0.3153 -2018-04-19,1.9279,0.5625,0 -2018-04-20,0.8737,0.8547,0 -2018-04-21,1.2821,0.8547,0 -2018-04-22,1.2821,0.8547,0 -2018-04-23,1.2821,0.8547,0 -2018-04-24,1.2821,0.8547,0 -2018-04-25,1.2821,0.8547,0 -2018-04-26,1.2902,0.8547,0.4525 -2018-04-27,1.3830,0.7061,1.7094 -2018-04-28,1.2821,0,1.7094 -2018-04-29,1.2821,0,1.7094 -2018-04-30,1.2289,0.1883,1.6392 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 9b5d8d2077..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" -2018-04,1.2506,0.5749,0.5796 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 1c084c5c7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" -"2018 Q2",0.2197,0.1010,0.1018 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 3b456475ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Core Hour Utilization (%)","[2 - 3] Core Hour Utilization (%)","[4 - 7] Core Hour Utilization (%)" -2018,0.0630,0.0290,0.0292 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 5aaa59aa12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Ended" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 5aaa59aa12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Ended" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 5aaa59aa12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Ended" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 5aaa59aa12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Ended" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 7b647ed0e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" -2018-04-18,11,2,2 -2018-04-19,22,1,0 -2018-04-20,7,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,1,0,0 -2018-04-27,1,1,0 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index 1e51e74f67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" -2018-04,45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 1c1a09715f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" -"2018 Q2",45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 7d1c40c402..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Number of Sessions Ended","[2 - 3] Number of Sessions Ended","[4 - 7] Number of Sessions Ended" -2018,45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index 2d11e10963..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Active" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index 2d11e10963..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Active" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index 2d11e10963..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Active" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index 2d11e10963..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Active" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index d76108f34c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" -2018-04-18,18,2,2 -2018-04-19,23,2,0 -2018-04-20,10,1,0 -2018-04-21,3,1,0 -2018-04-22,3,1,0 -2018-04-23,3,1,0 -2018-04-24,3,1,0 -2018-04-25,3,1,0 -2018-04-26,4,1,1 -2018-04-27,4,1,1 -2018-04-28,3,0,1 -2018-04-29,3,0,1 -2018-04-30,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 20cc5cc394..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" -2018-04,45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 052ba481a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" -"2018 Q2",45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 392b050128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Number of Sessions Active","[2 - 3] Number of Sessions Active","[4 - 7] Number of Sessions Active" -2018,45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index be912a9ba6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Started" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index be912a9ba6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Started" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index be912a9ba6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Started" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index be912a9ba6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Number of Sessions Started" -1,45 -"2 - 3",5 -"4 - 7",3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index c33eb90fd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" -2018-04-18,18,2,2 -2018-04-19,16,2,0 -2018-04-20,9,0,0 -2018-04-21,0,0,0 -2018-04-22,0,0,0 -2018-04-23,0,0,0 -2018-04-24,0,0,0 -2018-04-25,0,0,0 -2018-04-26,1,0,1 -2018-04-27,1,0,0 -2018-04-28,0,0,0 -2018-04-29,0,0,0 -2018-04-30,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 087bb6e46b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" -2018-04,45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index 23464cb5c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" -"2018 Q2",45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 51a8204c3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Number of Sessions Started","[2 - 3] Number of Sessions Started","[4 - 7] Number of Sessions Started" -2018,45,5,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index 4c7894258c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Total" -1,913.0072 -"2 - 3",209.8539 -"4 - 7",105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index 4c7894258c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Total" -1,913.0072 -"2 - 3",209.8539 -"4 - 7",105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index 4c7894258c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Total" -1,913.0072 -"2 - 3",209.8539 -"4 - 7",105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index 4c7894258c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Cores","Wall Hours: Total" -1,913.0072 -"2 - 3",209.8539 -"4 - 7",105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index b96d30a6e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" -2018-04-18,32.5281,0.9436,4.4261 -2018-04-19,108.2694,15.7936,0 -2018-04-20,49.0664,24.0000,0 -2018-04-21,72.0000,24.0000,0 -2018-04-22,72.0000,24.0000,0 -2018-04-23,72.0000,24.0000,0 -2018-04-24,72.0000,24.0000,0 -2018-04-25,72.0000,24.0000,0 -2018-04-26,72.4586,24.0000,6.3525 -2018-04-27,77.6706,19.8281,24.0000 -2018-04-28,72.0000,0,24.0000 -2018-04-29,72.0000,0,24.0000 -2018-04-30,69.0142,5.2886,23.0150 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index fb93d5f327..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" -2018-04,913.0072,209.8539,105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index ff91195cff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" -"2018 Q2",913.0072,209.8539,105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index 963ecb7034..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Cores" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[1] Wall Hours: Total","[2 - 3] Wall Hours: Total","[4 - 7] Wall Hours: Total" -2018,913.0072,209.8539,105.7936 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 59e3704155..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" -"8 - 16 GB",4.0000 -"4 - 8 GB",2.0000 -"2 - 4 GB",1.1879 -"< 2 GB",1.0000 -"32 - 64 GB",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 59e3704155..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" -"8 - 16 GB",4.0000 -"4 - 8 GB",2.0000 -"2 - 4 GB",1.1879 -"< 2 GB",1.0000 -"32 - 64 GB",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 59e3704155..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" -"8 - 16 GB",4.0000 -"4 - 8 GB",2.0000 -"2 - 4 GB",1.1879 -"< 2 GB",1.0000 -"32 - 64 GB",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 59e3704155..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Cores Reserved Weighted By Wall Hours" -"8 - 16 GB",4.0000 -"4 - 8 GB",2.0000 -"2 - 4 GB",1.1879 -"< 2 GB",1.0000 -"32 - 64 GB",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv deleted file mode 100644 index cef182ba4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" -2018-04-18,4.0000,2.0000,1.0214,1.0000,1.0000 -2018-04-19,0,0,1.1283,1.0000,0 -2018-04-20,0,0,1.3285,0,0 -2018-04-21,0,0,1.2500,0,0 -2018-04-22,0,0,1.2500,0,0 -2018-04-23,0,0,1.2500,0,0 -2018-04-24,0,0,1.2500,0,0 -2018-04-25,0,0,1.2500,0,0 -2018-04-26,4.0000,0,1.2488,0,0 -2018-04-27,4.0000,0,1.2159,1.0000,0 -2018-04-28,4.0000,0,1.0000,0,0 -2018-04-29,4.0000,0,1.0000,0,0 -2018-04-30,4.0000,0,1.0712,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv deleted file mode 100644 index dce14bbff8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" -2018-04,4.0000,2.0000,1.1879,1.0000,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 8d9bf1d23f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" -"2018 Q2",4.0000,2.0000,1.1879,1.0000,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 7d0964903b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_cores_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Cores Reserved Weighted By Wall Hours: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[8 - 16 GB] Average Cores Reserved Weighted By Wall Hours","[4 - 8 GB] Average Cores Reserved Weighted By Wall Hours","[2 - 4 GB] Average Cores Reserved Weighted By Wall Hours","[< 2 GB] Average Cores Reserved Weighted By Wall Hours","[32 - 64 GB] Average Cores Reserved Weighted By Wall Hours" -2018,4.0000,2.0000,1.1879,1.0000,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv deleted file mode 100644 index 141f8d2af9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"32 - 64 GB",41943040000.0000 -"8 - 16 GB",17179869184.0000 -"4 - 8 GB",8589934592.0000 -"2 - 4 GB",4294967296.0000 -"< 2 GB",1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv deleted file mode 100644 index 141f8d2af9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"32 - 64 GB",41943040000.0000 -"8 - 16 GB",17179869184.0000 -"4 - 8 GB",8589934592.0000 -"2 - 4 GB",4294967296.0000 -"< 2 GB",1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index 141f8d2af9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"32 - 64 GB",41943040000.0000 -"8 - 16 GB",17179869184.0000 -"4 - 8 GB",8589934592.0000 -"2 - 4 GB",4294967296.0000 -"< 2 GB",1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv deleted file mode 100644 index 141f8d2af9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Memory Reserved Weighted By Wall Hours (Bytes)" -"32 - 64 GB",41943040000.0000 -"8 - 16 GB",17179869184.0000 -"4 - 8 GB",8589934592.0000 -"2 - 4 GB",4294967296.0000 -"< 2 GB",1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 31812dc6e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 -2018-04-19,0,0,0,4294967296.0000,1073741824.0000 -2018-04-20,0,0,0,4294967296.0000,0 -2018-04-21,0,0,0,4294967296.0000,0 -2018-04-22,0,0,0,4294967296.0000,0 -2018-04-23,0,0,0,4294967296.0000,0 -2018-04-24,0,0,0,4294967296.0000,0 -2018-04-25,0,0,0,4294967296.0000,0 -2018-04-26,0,17179869184.0000,0,4294967296.0000,0 -2018-04-27,0,17179869184.0000,0,4294967296.0000,1073741824.0000 -2018-04-28,0,17179869184.0000,0,4294967296.0000,0 -2018-04-29,0,17179869184.0000,0,4294967296.0000,0 -2018-04-30,0,17179869184.0000,0,4294967296.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 1f98adfd8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018-04,41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index f66d27ccd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv deleted file mode 100644 index 2957a18ea6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_memory_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Memory Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[32 - 64 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)","[< 2 GB] Average Memory Reserved Weighted By Wall Hours (Bytes)" -2018,41943040000.0000,17179869184.0000,8589934592.0000,4294967296.0000,1073741824.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv deleted file mode 100644 index dd05fdd013..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"< 2 GB",21474836480.0000 -"2 - 4 GB",21474836480.0000 -"4 - 8 GB",21474836480.0000 -"8 - 16 GB",21474836480.0000 -"32 - 64 GB",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv deleted file mode 100644 index dd05fdd013..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"< 2 GB",21474836480.0000 -"2 - 4 GB",21474836480.0000 -"4 - 8 GB",21474836480.0000 -"8 - 16 GB",21474836480.0000 -"32 - 64 GB",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv deleted file mode 100644 index dd05fdd013..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"< 2 GB",21474836480.0000 -"2 - 4 GB",21474836480.0000 -"4 - 8 GB",21474836480.0000 -"8 - 16 GB",21474836480.0000 -"32 - 64 GB",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv deleted file mode 100644 index dd05fdd013..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"< 2 GB",21474836480.0000 -"2 - 4 GB",21474836480.0000 -"4 - 8 GB",21474836480.0000 -"8 - 16 GB",21474836480.0000 -"32 - 64 GB",21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv deleted file mode 100644 index 9823e52e3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04-18,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 -2018-04-19,21474836480.0000,21474836480.0000,0,0,0 -2018-04-20,0,21474836480.0000,0,0,0 -2018-04-21,0,21474836480.0000,0,0,0 -2018-04-22,0,21474836480.0000,0,0,0 -2018-04-23,0,21474836480.0000,0,0,0 -2018-04-24,0,21474836480.0000,0,0,0 -2018-04-25,0,21474836480.0000,0,0,0 -2018-04-26,0,21474836480.0000,0,21474836480.0000,0 -2018-04-27,21474836480.0000,21474836480.0000,0,21474836480.0000,0 -2018-04-28,0,21474836480.0000,0,21474836480.0000,0 -2018-04-29,0,21474836480.0000,0,21474836480.0000,0 -2018-04-30,0,21474836480.0000,0,21474836480.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv deleted file mode 100644 index 79f283ae34..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018-04,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv deleted file mode 100644 index 53313ff082..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -"2018 Q2",21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv deleted file mode 100644 index d7dd1da4e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_rv_storage_reserved/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[< 2 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[2 - 4 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[4 - 8 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[8 - 16 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)","[32 - 64 GB] Average Root Volume Storage Reserved Weighted By Wall Hours (Bytes)" -2018,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000,21474836480.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 284542dbb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Per Session" -"8 - 16 GB",35.26453704 -"2 - 4 GB",26.52719577 -"< 2 GB",1.10305556 -"4 - 8 GB",0.23527778 -"32 - 64 GB",0.12027778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 284542dbb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Per Session" -"8 - 16 GB",35.26453704 -"2 - 4 GB",26.52719577 -"< 2 GB",1.10305556 -"4 - 8 GB",0.23527778 -"32 - 64 GB",0.12027778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 284542dbb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Per Session" -"8 - 16 GB",35.26453704 -"2 - 4 GB",26.52719577 -"< 2 GB",1.10305556 -"4 - 8 GB",0.23527778 -"32 - 64 GB",0.12027778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 284542dbb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Per Session" -"8 - 16 GB",35.26453704 -"2 - 4 GB",26.52719577 -"< 2 GB",1.10305556 -"4 - 8 GB",0.23527778 -"32 - 64 GB",0.12027778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8335fe62d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" -2018-04-18,2.21305556,1.94709150,0.01527778,0.23527778,0.12055556 -2018-04-19,0,5.86257937,0.23722222,0,0 -2018-04-20,0,6.64239899,0,0,0 -2018-04-21,0,24.00000000,0,0,0 -2018-04-22,0,24.00000000,0,0,0 -2018-04-23,0,24.00000000,0,0,0 -2018-04-24,0,24.00000000,0,0,0 -2018-04-25,0,24.00000000,0,0,0 -2018-04-26,6.35250000,19.29172222,0,0,0 -2018-04-27,24.00000000,22.95701389,5.67055556,0,0 -2018-04-28,24.00000000,24.00000000,0,0,0 -2018-04-29,24.00000000,24.00000000,0,0,0 -2018-04-30,23.01500000,18.57569444,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d71e355292..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" -2018-04,35.26453704,26.56834656,1.10578704,0.23527778,0.12055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 82b4dab074..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" -"2018 Q2",35.26453704,26.56834656,1.10578704,0.23527778,0.12055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1d35474ff1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Session: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[8 - 16 GB] Wall Hours: Per Session","[2 - 4 GB] Wall Hours: Per Session","[< 2 GB] Wall Hours: Per Session","[4 - 8 GB] Wall Hours: Per Session","[32 - 64 GB] Wall Hours: Per Session" -2018,35.26453704,26.56834656,1.10578704,0.23527778,0.12055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv deleted file mode 100644 index e93e763e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","CPU Hours: Total" -"2 - 4 GB",1325.4892 -"8 - 16 GB",423.1744 -"< 2 GB",6.6347 -"4 - 8 GB",0.4706 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv deleted file mode 100644 index e93e763e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","CPU Hours: Total" -"2 - 4 GB",1325.4892 -"8 - 16 GB",423.1744 -"< 2 GB",6.6347 -"4 - 8 GB",0.4706 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv deleted file mode 100644 index e93e763e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","CPU Hours: Total" -"2 - 4 GB",1325.4892 -"8 - 16 GB",423.1744 -"< 2 GB",6.6347 -"4 - 8 GB",0.4706 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv deleted file mode 100644 index e93e763e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","CPU Hours: Total" -"2 - 4 GB",1325.4892 -"8 - 16 GB",423.1744 -"< 2 GB",6.6347 -"4 - 8 GB",0.4706 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv deleted file mode 100644 index 286ea3da05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" -2018-04-18,33.8089,17.7044,0.0153,0.4706,0.1206 -2018-04-19,138.9078,0,0.9489,0,0 -2018-04-20,97.0664,0,0,0,0 -2018-04-21,120.0000,0,0,0,0 -2018-04-22,120.0000,0,0,0,0 -2018-04-23,120.0000,0,0,0,0 -2018-04-24,120.0000,0,0,0,0 -2018-04-25,120.0000,0,0,0,0 -2018-04-26,120.4586,25.4100,0,0,0 -2018-04-27,111.6561,96.0000,5.6706,0,0 -2018-04-28,72.0000,96.0000,0,0,0 -2018-04-29,72.0000,96.0000,0,0,0 -2018-04-30,79.5914,92.0600,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv deleted file mode 100644 index 889fc1a56f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" -2018-04,1325.4892,423.1744,6.6347,0.4706,0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv deleted file mode 100644 index e9fa77cb6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" -"2018 Q2",1325.4892,423.1744,6.6347,0.4706,0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv deleted file mode 100644 index 437ae44acc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[2 - 4 GB] CPU Hours: Total","[8 - 16 GB] CPU Hours: Total","[< 2 GB] CPU Hours: Total","[4 - 8 GB] CPU Hours: Total","[32 - 64 GB] CPU Hours: Total" -2018,1325.4892,423.1744,6.6347,0.4706,0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv deleted file mode 100644 index d763375bdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Core Hour Utilization (%)" -"2 - 4 GB",1.8155 -"8 - 16 GB",0.5796 -"< 2 GB",0.0091 -"4 - 8 GB",0.0006 -"32 - 64 GB",0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv deleted file mode 100644 index d763375bdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Core Hour Utilization (%)" -"2 - 4 GB",1.8155 -"8 - 16 GB",0.5796 -"< 2 GB",0.0091 -"4 - 8 GB",0.0006 -"32 - 64 GB",0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 4738410bbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Core Hour Utilization (%)" -"2 - 4 GB",0.3189 -"8 - 16 GB",0.1018 -"< 2 GB",0.0016 -"4 - 8 GB",0.0001 -"32 - 64 GB",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 64668edaf2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Core Hour Utilization (%)" -"2 - 4 GB",0.0915 -"8 - 16 GB",0.0292 -"< 2 GB",0.0005 -"4 - 8 GB",0.0000 -"32 - 64 GB",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 585f6c53b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" -2018-04-18,0.6020,0.3153,0.0003,0.0084,0.0021 -2018-04-19,2.4734,0,0.0169,0,0 -2018-04-20,1.7284,0,0,0,0 -2018-04-21,2.1368,0,0,0,0 -2018-04-22,2.1368,0,0,0,0 -2018-04-23,2.1368,0,0,0,0 -2018-04-24,2.1368,0,0,0,0 -2018-04-25,2.1368,0,0,0,0 -2018-04-26,2.1449,0.4525,0,0,0 -2018-04-27,1.9882,1.7094,0.1010,0,0 -2018-04-28,1.2821,1.7094,0,0,0 -2018-04-29,1.2821,1.7094,0,0,0 -2018-04-30,1.4172,1.6392,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv deleted file mode 100644 index e91b456c7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" -2018-04,1.8155,0.5796,0.0091,0.0006,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 86dec73164..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" -"2018 Q2",0.3189,0.1018,0.0016,0.0001,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 8982472fd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_core_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Core Hour Utilization (%): by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[2 - 4 GB] Core Hour Utilization (%)","[8 - 16 GB] Core Hour Utilization (%)","[< 2 GB] Core Hour Utilization (%)","[4 - 8 GB] Core Hour Utilization (%)","[32 - 64 GB] Core Hour Utilization (%)" -2018,0.0915,0.0292,0.0005,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv deleted file mode 100644 index 87624bcd51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Ended" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv deleted file mode 100644 index 87624bcd51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Ended" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv deleted file mode 100644 index 87624bcd51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Ended" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv deleted file mode 100644 index 87624bcd51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Ended" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv deleted file mode 100644 index 42c1241bea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" -2018-04-18,10,1,2,1,1 -2018-04-19,19,4,0,0,0 -2018-04-20,7,0,0,0,0 -2018-04-21,0,0,0,0,0 -2018-04-22,0,0,0,0,0 -2018-04-23,0,0,0,0,0 -2018-04-24,0,0,0,0,0 -2018-04-25,0,0,0,0,0 -2018-04-26,1,0,0,0,0 -2018-04-27,1,1,0,0,0 -2018-04-28,0,0,0,0,0 -2018-04-29,0,0,0,0,0 -2018-04-30,4,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv deleted file mode 100644 index b18ac3d1f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" -2018-04,42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv deleted file mode 100644 index 7d1aa29224..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" -"2018 Q2",42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv deleted file mode 100644 index 286eeafad8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_ended/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Ended: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[2 - 4 GB] Number of Sessions Ended","[< 2 GB] Number of Sessions Ended","[8 - 16 GB] Number of Sessions Ended","[4 - 8 GB] Number of Sessions Ended","[32 - 64 GB] Number of Sessions Ended" -2018,42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv deleted file mode 100644 index f2bcd14c57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Active" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv deleted file mode 100644 index f2bcd14c57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Active" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv deleted file mode 100644 index f2bcd14c57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Active" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv deleted file mode 100644 index f2bcd14c57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Active" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv deleted file mode 100644 index 3ff405caeb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" -2018-04-18,17,1,2,1,1 -2018-04-19,21,4,0,0,0 -2018-04-20,11,0,0,0,0 -2018-04-21,4,0,0,0,0 -2018-04-22,4,0,0,0,0 -2018-04-23,4,0,0,0,0 -2018-04-24,4,0,0,0,0 -2018-04-25,4,0,0,0,0 -2018-04-26,5,0,1,0,0 -2018-04-27,4,1,1,0,0 -2018-04-28,3,0,1,0,0 -2018-04-29,3,0,1,0,0 -2018-04-30,4,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv deleted file mode 100644 index 0963b410aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" -2018-04,42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv deleted file mode 100644 index 9940b6b13d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" -"2018 Q2",42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv deleted file mode 100644 index 9024b8f18f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_running/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Active: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[2 - 4 GB] Number of Sessions Active","[< 2 GB] Number of Sessions Active","[8 - 16 GB] Number of Sessions Active","[4 - 8 GB] Number of Sessions Active","[32 - 64 GB] Number of Sessions Active" -2018,42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv deleted file mode 100644 index 2c3d04972a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Started" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv deleted file mode 100644 index 2c3d04972a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Started" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv deleted file mode 100644 index 2c3d04972a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Started" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv deleted file mode 100644 index 2c3d04972a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Number of Sessions Started" -"2 - 4 GB",42 -"< 2 GB",6 -"8 - 16 GB",3 -"4 - 8 GB",1 -"32 - 64 GB",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv deleted file mode 100644 index 162b2559ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" -2018-04-18,17,1,2,1,1 -2018-04-19,14,4,0,0,0 -2018-04-20,9,0,0,0,0 -2018-04-21,0,0,0,0,0 -2018-04-22,0,0,0,0,0 -2018-04-23,0,0,0,0,0 -2018-04-24,0,0,0,0,0 -2018-04-25,0,0,0,0,0 -2018-04-26,1,0,1,0,0 -2018-04-27,0,1,0,0,0 -2018-04-28,0,0,0,0,0 -2018-04-29,0,0,0,0,0 -2018-04-30,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv deleted file mode 100644 index 8d231b8e4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" -2018-04,42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv deleted file mode 100644 index e6e80b88de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" -"2018 Q2",42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv deleted file mode 100644 index 45c9399fc3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_num_sessions_started/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Sessions Started: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[2 - 4 GB] Number of Sessions Started","[< 2 GB] Number of Sessions Started","[8 - 16 GB] Number of Sessions Started","[4 - 8 GB] Number of Sessions Started","[32 - 64 GB] Number of Sessions Started" -2018,42,6,3,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv deleted file mode 100644 index e64dd56b76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Total" -"2 - 4 GB",1115.8706 -"8 - 16 GB",105.7936 -"< 2 GB",6.6347 -"4 - 8 GB",0.2353 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv deleted file mode 100644 index e64dd56b76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Total" -"2 - 4 GB",1115.8706 -"8 - 16 GB",105.7936 -"< 2 GB",6.6347 -"4 - 8 GB",0.2353 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv deleted file mode 100644 index e64dd56b76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Total" -"2 - 4 GB",1115.8706 -"8 - 16 GB",105.7936 -"< 2 GB",6.6347 -"4 - 8 GB",0.2353 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv deleted file mode 100644 index e64dd56b76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -"VM Size: Memory","Wall Hours: Total" -"2 - 4 GB",1115.8706 -"8 - 16 GB",105.7936 -"< 2 GB",6.6347 -"4 - 8 GB",0.2353 -"32 - 64 GB",0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv deleted file mode 100644 index dd7a5174b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Day-reference.csv +++ /dev/null @@ -1,22 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Day,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" -2018-04-18,33.1006,4.4261,0.0153,0.2353,0.1206 -2018-04-19,123.1142,0,0.9489,0,0 -2018-04-20,73.0664,0,0,0,0 -2018-04-21,96.0000,0,0,0,0 -2018-04-22,96.0000,0,0,0,0 -2018-04-23,96.0000,0,0,0,0 -2018-04-24,96.0000,0,0,0,0 -2018-04-25,96.0000,0,0,0,0 -2018-04-26,96.4586,6.3525,0,0,0 -2018-04-27,91.8281,24.0000,5.6706,0,0 -2018-04-28,72.0000,24.0000,0,0,0 -2018-04-29,72.0000,24.0000,0,0,0 -2018-04-30,74.3028,23.0150,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv deleted file mode 100644 index 21cefa2e31..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Month,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" -2018-04,1115.8706,105.7936,6.6347,0.2353,0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv deleted file mode 100644 index 6ef56d7c74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Quarter,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" -"2018 Q2",1115.8706,105.7936,6.6347,0.2353,0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv deleted file mode 100644 index c3908dd9dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Cloud/vm_size_memory/cloud_wall_time/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by VM Size: Memory" -parameters - -start,end -2018-04-18,2018-04-30 ---------- -Year,"[2 - 4 GB] Wall Hours: Total","[8 - 16 GB] Wall Hours: Total","[< 2 GB] Wall Hours: Total","[4 - 8 GB] Wall Hours: Total","[32 - 64 GB] Wall Hours: Total" -2018,1115.8706,105.7936,6.6347,0.2353,0.1206 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index ad19853ff5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Users: Active" -"Galactic Astronomy",6 -"Physical Chemistry",4 -"Quantum Electronics, Waves, and Beams",4 -"Stellar Astronomy and Astrophysics",4 -Arts,3 -"Mechanics and Materials",3 -Biophysics,2 -"Cell Biology",2 -"Decision, Risk, and Management Science",2 -"Experimental Systems",2 -"Organic and Macromolecular Chemistry",2 -Sociology,2 -"Solid State Chemistry and Polymers",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -"Computer and Computation Theory",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -Seismology,1 -"Solid-State and Microstructures",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index ad19853ff5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Users: Active" -"Galactic Astronomy",6 -"Physical Chemistry",4 -"Quantum Electronics, Waves, and Beams",4 -"Stellar Astronomy and Astrophysics",4 -Arts,3 -"Mechanics and Materials",3 -Biophysics,2 -"Cell Biology",2 -"Decision, Risk, and Management Science",2 -"Experimental Systems",2 -"Organic and Macromolecular Chemistry",2 -Sociology,2 -"Solid State Chemistry and Polymers",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -"Computer and Computation Theory",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -Seismology,1 -"Solid-State and Microstructures",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index ad19853ff5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Users: Active" -"Galactic Astronomy",6 -"Physical Chemistry",4 -"Quantum Electronics, Waves, and Beams",4 -"Stellar Astronomy and Astrophysics",4 -Arts,3 -"Mechanics and Materials",3 -Biophysics,2 -"Cell Biology",2 -"Decision, Risk, and Management Science",2 -"Experimental Systems",2 -"Organic and Macromolecular Chemistry",2 -Sociology,2 -"Solid State Chemistry and Polymers",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -"Computer and Computation Theory",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -Seismology,1 -"Solid-State and Microstructures",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index ad19853ff5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Users: Active" -"Galactic Astronomy",6 -"Physical Chemistry",4 -"Quantum Electronics, Waves, and Beams",4 -"Stellar Astronomy and Astrophysics",4 -Arts,3 -"Mechanics and Materials",3 -Biophysics,2 -"Cell Biology",2 -"Decision, Risk, and Management Science",2 -"Experimental Systems",2 -"Organic and Macromolecular Chemistry",2 -Sociology,2 -"Solid State Chemistry and Polymers",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -"Computer and Computation Theory",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -Seismology,1 -"Solid-State and Microstructures",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index a9676a61fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" -2016-12-22,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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-24,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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-25,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,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-26,1,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,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-27,3,2,1,1,0,0,2,1,0,0,0,1,2,2,0,1,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-28,3,4,1,1,0,0,2,1,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1 -2016-12-29,4,4,2,3,2,0,2,2,1,2,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,1,0,1,1,1,0,0,1,1,1,0,1,0,1,1 -2016-12-30,6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1 -2016-12-31,5,4,4,4,3,3,2,1,1,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0 -2017-01-01,2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index ba1ee8da68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" -2016-12,6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 164eed44d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" -"2016 Q4",6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 122dbcd164..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Galactic Astronomy] Number of Users: Active","[Physical Chemistry] Number of Users: Active","[Quantum Electronics, Waves, and Beams] Number of Users: Active","[Stellar Astronomy and Astrophysics] Number of Users: Active","[Arts] Number of Users: Active","[Mechanics and Materials] Number of Users: Active","[Biophysics] Number of Users: Active","[Cell Biology] Number of Users: Active","[Decision, Risk, and Management Science] Number of Users: Active","[Experimental Systems] Number of Users: Active","[Organic and Macromolecular Chemistry] Number of Users: Active","[Sociology] Number of Users: Active","[Solid State Chemistry and Polymers] Number of Users: Active","[Statistics and Probability] Number of Users: Active","[Algebra and Number Theory] Number of Users: Active","[Biochemistry and Molecular Structure and Function] Number of Users: Active","[Computer and Computation Theory] Number of Users: Active","[Design and Computer-Integrated Engineering] Number of Users: Active","[Design, Tools, and Test] Number of Users: Active","[Economics] Number of Users: Active","[Emerging Technologies Initiation] Number of Users: Active","[Extragalactic Astronomy and Cosmology] Number of Users: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Users: Active","[Geology and Paleontology] Number of Users: Active","[Geophysics] Number of Users: Active","[Global Atmospheric Research] Number of Users: Active","[Law and Social Sciences] Number of Users: Active","[Metals, Ceramics, and Electronic Materials] Number of Users: Active","[Operations Research and Production Systems] Number of Users: Active","[Polar Aeronomy and Astrophysics] Number of Users: Active","[Polar Meteorology] Number of Users: Active","[Polar Ocean and Climate Systems] Number of Users: Active","[Seismology] Number of Users: Active","[Solid-State and Microstructures] Number of Users: Active","[Structures and Building Systems] Number of Users: Active","[Systematic and Population Biology] Number of Users: Active","[Systems Prototyping and Fabrication] Number of Users: Active","[Tectonics] Number of Users: Active","[Theoretical Physics] Number of Users: Active","[Volcanology and Mantle Geochemistry] Number of Users: Active" -2016,6,4,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,2,4,3,3,2,3,2,1,0,1,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 946556cc20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of PIs: Active" -"Statistics and Probability",2 -"Algebra and Number Theory",1 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Galactic Astronomy",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Organic and Macromolecular Chemistry",1 -"Physical Chemistry",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -"Quantum Electronics, Waves, and Beams",1 -Seismology,1 -Sociology,1 -"Solid State Chemistry and Polymers",1 -"Solid-State and Microstructures",1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 946556cc20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of PIs: Active" -"Statistics and Probability",2 -"Algebra and Number Theory",1 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Galactic Astronomy",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Organic and Macromolecular Chemistry",1 -"Physical Chemistry",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -"Quantum Electronics, Waves, and Beams",1 -Seismology,1 -Sociology,1 -"Solid State Chemistry and Polymers",1 -"Solid-State and Microstructures",1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 946556cc20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of PIs: Active" -"Statistics and Probability",2 -"Algebra and Number Theory",1 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Galactic Astronomy",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Organic and Macromolecular Chemistry",1 -"Physical Chemistry",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -"Quantum Electronics, Waves, and Beams",1 -Seismology,1 -Sociology,1 -"Solid State Chemistry and Polymers",1 -"Solid-State and Microstructures",1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 946556cc20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of PIs: Active" -"Statistics and Probability",2 -"Algebra and Number Theory",1 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Galactic Astronomy",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Organic and Macromolecular Chemistry",1 -"Physical Chemistry",1 -"Polar Aeronomy and Astrophysics",1 -"Polar Meteorology",1 -"Polar Ocean and Climate Systems",1 -"Quantum Electronics, Waves, and Beams",1 -Seismology,1 -Sociology,1 -"Solid State Chemistry and Polymers",1 -"Solid-State and Microstructures",1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 979190f5a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" -2016-12-22,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0 -2016-12-28,2,1,0,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,1 -2016-12-29,2,1,1,1,1,1,1,1,0,0,0,1,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,0,1,1 -2016-12-30,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0 -2017-01-01,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 4654d057e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" -2016-12,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 50adc200f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" -"2016 Q4",2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 05616b3a0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Statistics and Probability] Number of PIs: Active","[Algebra and Number Theory] Number of PIs: Active","[Arts] Number of PIs: Active","[Biochemistry and Molecular Structure and Function] Number of PIs: Active","[Biophysics] Number of PIs: Active","[Cell Biology] Number of PIs: Active","[Computer and Computation Theory] Number of PIs: Active","[Decision, Risk, and Management Science] Number of PIs: Active","[Design and Computer-Integrated Engineering] Number of PIs: Active","[Design, Tools, and Test] Number of PIs: Active","[Economics] Number of PIs: Active","[Emerging Technologies Initiation] Number of PIs: Active","[Experimental Systems] Number of PIs: Active","[Extragalactic Astronomy and Cosmology] Number of PIs: Active","[Fluid, Particulate, and Hydraulic Systems] Number of PIs: Active","[Galactic Astronomy] Number of PIs: Active","[Geology and Paleontology] Number of PIs: Active","[Geophysics] Number of PIs: Active","[Global Atmospheric Research] Number of PIs: Active","[Law and Social Sciences] Number of PIs: Active","[Mechanics and Materials] Number of PIs: Active","[Metals, Ceramics, and Electronic Materials] Number of PIs: Active","[Operations Research and Production Systems] Number of PIs: Active","[Organic and Macromolecular Chemistry] Number of PIs: Active","[Physical Chemistry] Number of PIs: Active","[Polar Aeronomy and Astrophysics] Number of PIs: Active","[Polar Meteorology] Number of PIs: Active","[Polar Ocean and Climate Systems] Number of PIs: Active","[Quantum Electronics, Waves, and Beams] Number of PIs: Active","[Seismology] Number of PIs: Active","[Sociology] Number of PIs: Active","[Solid State Chemistry and Polymers] Number of PIs: Active","[Solid-State and Microstructures] Number of PIs: Active","[Stellar Astronomy and Astrophysics] Number of PIs: Active","[Structures and Building Systems] Number of PIs: Active","[Systematic and Population Biology] Number of PIs: Active","[Systems Prototyping and Fabrication] Number of PIs: Active","[Tectonics] Number of PIs: Active","[Theoretical Physics] Number of PIs: Active","[Volcanology and Mantle Geochemistry] Number of PIs: Active" -2016,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 7c33f50061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Resources: Active" -Sociology,5 -"Galactic Astronomy",3 -"Physical Chemistry",3 -"Solid State Chemistry and Polymers",3 -Arts,2 -"Organic and Macromolecular Chemistry",2 -"Polar Aeronomy and Astrophysics",2 -"Polar Ocean and Climate Systems",2 -"Quantum Electronics, Waves, and Beams",2 -"Solid-State and Microstructures",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -Seismology,1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 7c33f50061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Resources: Active" -Sociology,5 -"Galactic Astronomy",3 -"Physical Chemistry",3 -"Solid State Chemistry and Polymers",3 -Arts,2 -"Organic and Macromolecular Chemistry",2 -"Polar Aeronomy and Astrophysics",2 -"Polar Ocean and Climate Systems",2 -"Quantum Electronics, Waves, and Beams",2 -"Solid-State and Microstructures",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -Seismology,1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 7c33f50061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Resources: Active" -Sociology,5 -"Galactic Astronomy",3 -"Physical Chemistry",3 -"Solid State Chemistry and Polymers",3 -Arts,2 -"Organic and Macromolecular Chemistry",2 -"Polar Aeronomy and Astrophysics",2 -"Polar Ocean and Climate Systems",2 -"Quantum Electronics, Waves, and Beams",2 -"Solid-State and Microstructures",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -Seismology,1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 7c33f50061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Resources: Active" -Sociology,5 -"Galactic Astronomy",3 -"Physical Chemistry",3 -"Solid State Chemistry and Polymers",3 -Arts,2 -"Organic and Macromolecular Chemistry",2 -"Polar Aeronomy and Astrophysics",2 -"Polar Ocean and Climate Systems",2 -"Quantum Electronics, Waves, and Beams",2 -"Solid-State and Microstructures",2 -"Statistics and Probability",2 -"Algebra and Number Theory",1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -"Design and Computer-Integrated Engineering",1 -"Design, Tools, and Test",1 -Economics,1 -"Emerging Technologies Initiation",1 -"Experimental Systems",1 -"Extragalactic Astronomy and Cosmology",1 -"Fluid, Particulate, and Hydraulic Systems",1 -"Geology and Paleontology",1 -Geophysics,1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Mechanics and Materials",1 -"Metals, Ceramics, and Electronic Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -Seismology,1 -"Stellar Astronomy and Astrophysics",1 -"Structures and Building Systems",1 -"Systematic and Population Biology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 -"Theoretical Physics",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index dc2c3078ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" -2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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-24,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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-25,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,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-26,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,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-27,1,2,2,1,0,0,0,0,1,0,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-28,1,2,2,2,0,1,0,0,1,0,2,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,1 -2016-12-29,4,3,3,3,2,1,1,0,1,1,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,1,0,0,1,1,0,1,1,1,0,1,0,1,1 -2016-12-30,5,3,3,3,2,2,2,0,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,5,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0 -2017-01-01,5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 6d6a4147a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" -2016-12,5,3,3,3,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 707d0df673..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" -"2016 Q4",5,3,3,3,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 26a3494fe6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Sociology] Number of Resources: Active","[Galactic Astronomy] Number of Resources: Active","[Physical Chemistry] Number of Resources: Active","[Solid State Chemistry and Polymers] Number of Resources: Active","[Arts] Number of Resources: Active","[Organic and Macromolecular Chemistry] Number of Resources: Active","[Polar Aeronomy and Astrophysics] Number of Resources: Active","[Polar Ocean and Climate Systems] Number of Resources: Active","[Quantum Electronics, Waves, and Beams] Number of Resources: Active","[Solid-State and Microstructures] Number of Resources: Active","[Statistics and Probability] Number of Resources: Active","[Algebra and Number Theory] Number of Resources: Active","[Biochemistry and Molecular Structure and Function] Number of Resources: Active","[Biophysics] Number of Resources: Active","[Cell Biology] Number of Resources: Active","[Computer and Computation Theory] Number of Resources: Active","[Decision, Risk, and Management Science] Number of Resources: Active","[Design and Computer-Integrated Engineering] Number of Resources: Active","[Design, Tools, and Test] Number of Resources: Active","[Economics] Number of Resources: Active","[Emerging Technologies Initiation] Number of Resources: Active","[Experimental Systems] Number of Resources: Active","[Extragalactic Astronomy and Cosmology] Number of Resources: Active","[Fluid, Particulate, and Hydraulic Systems] Number of Resources: Active","[Geology and Paleontology] Number of Resources: Active","[Geophysics] Number of Resources: Active","[Global Atmospheric Research] Number of Resources: Active","[Law and Social Sciences] Number of Resources: Active","[Mechanics and Materials] Number of Resources: Active","[Metals, Ceramics, and Electronic Materials] Number of Resources: Active","[Operations Research and Production Systems] Number of Resources: Active","[Polar Meteorology] Number of Resources: Active","[Seismology] Number of Resources: Active","[Stellar Astronomy and Astrophysics] Number of Resources: Active","[Structures and Building Systems] Number of Resources: Active","[Systematic and Population Biology] Number of Resources: Active","[Systems Prototyping and Fabrication] Number of Resources: Active","[Tectonics] Number of Resources: Active","[Theoretical Physics] Number of Resources: Active","[Volcanology and Mantle Geochemistry] Number of Resources: Active" -2016,5,3,3,3,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,5,1,3,0,2,1,0,2,2,1,1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 749997a0bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0e71cc91c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0e71cc91c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0e71cc91c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 268ff1d94c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a6971df01b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 08cf3cd832..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index db939918e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 482ea2de0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Per Job" -Biophysics,16.35202509 -"Algebra and Number Theory",0.00000000 -Arts,0.00000000 -"Biochemistry and Molecular Structure and Function",0.00000000 -"Cell Biology",0.00000000 -"Computer and Computation Theory",0.00000000 -"Decision, Risk, and Management Science",0.00000000 -"Design and Computer-Integrated Engineering",0.00000000 -"Design, Tools, and Test",0.00000000 -Economics,0.00000000 -"Emerging Technologies Initiation",0.00000000 -"Experimental Systems",0.00000000 -"Extragalactic Astronomy and Cosmology",0.00000000 -"Fluid, Particulate, and Hydraulic Systems",0.00000000 -"Galactic Astronomy",0.00000000 -"Geology and Paleontology",0.00000000 -Geophysics,0.00000000 -"Global Atmospheric Research",0.00000000 -"Law and Social Sciences",0.00000000 -"Mechanics and Materials",0.00000000 -"Metals, Ceramics, and Electronic Materials",0.00000000 -"Operations Research and Production Systems",0.00000000 -"Organic and Macromolecular Chemistry",0.00000000 -"Physical Chemistry",0.00000000 -"Polar Aeronomy and Astrophysics",0.00000000 -"Polar Meteorology",0.00000000 -"Polar Ocean and Climate Systems",0.00000000 -"Quantum Electronics, Waves, and Beams",0.00000000 -Seismology,0.00000000 -Sociology,0.00000000 -"Solid State Chemistry and Polymers",0.00000000 -"Solid-State and Microstructures",0.00000000 -"Statistics and Probability",0.00000000 -"Stellar Astronomy and Astrophysics",0.00000000 -"Structures and Building Systems",0.00000000 -"Systematic and Population Biology",0.00000000 -"Systems Prototyping and Fabrication",0.00000000 -Tectonics,0.00000000 -"Theoretical Physics",0.00000000 -"Volcanology and Mantle Geochemistry",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 482ea2de0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Per Job" -Biophysics,16.35202509 -"Algebra and Number Theory",0.00000000 -Arts,0.00000000 -"Biochemistry and Molecular Structure and Function",0.00000000 -"Cell Biology",0.00000000 -"Computer and Computation Theory",0.00000000 -"Decision, Risk, and Management Science",0.00000000 -"Design and Computer-Integrated Engineering",0.00000000 -"Design, Tools, and Test",0.00000000 -Economics,0.00000000 -"Emerging Technologies Initiation",0.00000000 -"Experimental Systems",0.00000000 -"Extragalactic Astronomy and Cosmology",0.00000000 -"Fluid, Particulate, and Hydraulic Systems",0.00000000 -"Galactic Astronomy",0.00000000 -"Geology and Paleontology",0.00000000 -Geophysics,0.00000000 -"Global Atmospheric Research",0.00000000 -"Law and Social Sciences",0.00000000 -"Mechanics and Materials",0.00000000 -"Metals, Ceramics, and Electronic Materials",0.00000000 -"Operations Research and Production Systems",0.00000000 -"Organic and Macromolecular Chemistry",0.00000000 -"Physical Chemistry",0.00000000 -"Polar Aeronomy and Astrophysics",0.00000000 -"Polar Meteorology",0.00000000 -"Polar Ocean and Climate Systems",0.00000000 -"Quantum Electronics, Waves, and Beams",0.00000000 -Seismology,0.00000000 -Sociology,0.00000000 -"Solid State Chemistry and Polymers",0.00000000 -"Solid-State and Microstructures",0.00000000 -"Statistics and Probability",0.00000000 -"Stellar Astronomy and Astrophysics",0.00000000 -"Structures and Building Systems",0.00000000 -"Systematic and Population Biology",0.00000000 -"Systems Prototyping and Fabrication",0.00000000 -Tectonics,0.00000000 -"Theoretical Physics",0.00000000 -"Volcanology and Mantle Geochemistry",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 482ea2de0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Per Job" -Biophysics,16.35202509 -"Algebra and Number Theory",0.00000000 -Arts,0.00000000 -"Biochemistry and Molecular Structure and Function",0.00000000 -"Cell Biology",0.00000000 -"Computer and Computation Theory",0.00000000 -"Decision, Risk, and Management Science",0.00000000 -"Design and Computer-Integrated Engineering",0.00000000 -"Design, Tools, and Test",0.00000000 -Economics,0.00000000 -"Emerging Technologies Initiation",0.00000000 -"Experimental Systems",0.00000000 -"Extragalactic Astronomy and Cosmology",0.00000000 -"Fluid, Particulate, and Hydraulic Systems",0.00000000 -"Galactic Astronomy",0.00000000 -"Geology and Paleontology",0.00000000 -Geophysics,0.00000000 -"Global Atmospheric Research",0.00000000 -"Law and Social Sciences",0.00000000 -"Mechanics and Materials",0.00000000 -"Metals, Ceramics, and Electronic Materials",0.00000000 -"Operations Research and Production Systems",0.00000000 -"Organic and Macromolecular Chemistry",0.00000000 -"Physical Chemistry",0.00000000 -"Polar Aeronomy and Astrophysics",0.00000000 -"Polar Meteorology",0.00000000 -"Polar Ocean and Climate Systems",0.00000000 -"Quantum Electronics, Waves, and Beams",0.00000000 -Seismology,0.00000000 -Sociology,0.00000000 -"Solid State Chemistry and Polymers",0.00000000 -"Solid-State and Microstructures",0.00000000 -"Statistics and Probability",0.00000000 -"Stellar Astronomy and Astrophysics",0.00000000 -"Structures and Building Systems",0.00000000 -"Systematic and Population Biology",0.00000000 -"Systems Prototyping and Fabrication",0.00000000 -Tectonics,0.00000000 -"Theoretical Physics",0.00000000 -"Volcanology and Mantle Geochemistry",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 482ea2de0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Per Job" -Biophysics,16.35202509 -"Algebra and Number Theory",0.00000000 -Arts,0.00000000 -"Biochemistry and Molecular Structure and Function",0.00000000 -"Cell Biology",0.00000000 -"Computer and Computation Theory",0.00000000 -"Decision, Risk, and Management Science",0.00000000 -"Design and Computer-Integrated Engineering",0.00000000 -"Design, Tools, and Test",0.00000000 -Economics,0.00000000 -"Emerging Technologies Initiation",0.00000000 -"Experimental Systems",0.00000000 -"Extragalactic Astronomy and Cosmology",0.00000000 -"Fluid, Particulate, and Hydraulic Systems",0.00000000 -"Galactic Astronomy",0.00000000 -"Geology and Paleontology",0.00000000 -Geophysics,0.00000000 -"Global Atmospheric Research",0.00000000 -"Law and Social Sciences",0.00000000 -"Mechanics and Materials",0.00000000 -"Metals, Ceramics, and Electronic Materials",0.00000000 -"Operations Research and Production Systems",0.00000000 -"Organic and Macromolecular Chemistry",0.00000000 -"Physical Chemistry",0.00000000 -"Polar Aeronomy and Astrophysics",0.00000000 -"Polar Meteorology",0.00000000 -"Polar Ocean and Climate Systems",0.00000000 -"Quantum Electronics, Waves, and Beams",0.00000000 -Seismology,0.00000000 -Sociology,0.00000000 -"Solid State Chemistry and Polymers",0.00000000 -"Solid-State and Microstructures",0.00000000 -"Statistics and Probability",0.00000000 -"Stellar Astronomy and Astrophysics",0.00000000 -"Structures and Building Systems",0.00000000 -"Systematic and Population Biology",0.00000000 -"Systems Prototyping and Fabrication",0.00000000 -Tectonics,0.00000000 -"Theoretical Physics",0.00000000 -"Volcanology and Mantle Geochemistry",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5dd69e62ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 -2016-12-27,24.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0,0 -2016-12-28,24.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000 -2016-12-29,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000 -2016-12-30,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,8.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0 -2017-01-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index dd8579d3ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" -2016-12,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e1e2c4626a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" -"2016 Q4",77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index c0b895abf2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" -2016,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index ab09d401d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Biophysics,0.1290,0.08824730508988667 -"Algebra and Number Theory",0.0000,0 -Arts,0.0000,0 -"Biochemistry and Molecular Structure and Function",0.0000,0 -"Cell Biology",0.0000,0 -"Computer and Computation Theory",0.0000,0 -"Decision, Risk, and Management Science",0.0000,0 -"Design and Computer-Integrated Engineering",0.0000,0 -"Design, Tools, and Test",0.0000,0 -Economics,0.0000,0 -"Emerging Technologies Initiation",0.0000,0 -"Experimental Systems",0.0000,0 -"Extragalactic Astronomy and Cosmology",0.0000,0 -"Fluid, Particulate, and Hydraulic Systems",0.0000,0 -"Galactic Astronomy",0.0000,0 -"Geology and Paleontology",0.0000,0 -Geophysics,0.0000,0 -"Global Atmospheric Research",0.0000,0 -"Law and Social Sciences",0.0000,0 -"Mechanics and Materials",0.0000,0 -"Metals, Ceramics, and Electronic Materials",0.0000,0 -"Operations Research and Production Systems",0.0000,0 -"Organic and Macromolecular Chemistry",0.0000,0 -"Physical Chemistry",0.0000,0 -"Polar Aeronomy and Astrophysics",0.0000,0 -"Polar Meteorology",0.0000,0 -"Polar Ocean and Climate Systems",0.0000,0 -"Quantum Electronics, Waves, and Beams",0.0000,0 -Seismology,0.0000,0 -Sociology,0.0000,0 -"Solid State Chemistry and Polymers",0.0000,0 -"Solid-State and Microstructures",0.0000,0 -"Statistics and Probability",0.0000,0 -"Stellar Astronomy and Astrophysics",0.0000,0 -"Structures and Building Systems",0.0000,0 -"Systematic and Population Biology",0.0000,0 -"Systems Prototyping and Fabrication",0.0000,0 -Tectonics,0.0000,0 -"Theoretical Physics",0.0000,0 -"Volcanology and Mantle Geochemistry",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index ab09d401d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Biophysics,0.1290,0.08824730508988667 -"Algebra and Number Theory",0.0000,0 -Arts,0.0000,0 -"Biochemistry and Molecular Structure and Function",0.0000,0 -"Cell Biology",0.0000,0 -"Computer and Computation Theory",0.0000,0 -"Decision, Risk, and Management Science",0.0000,0 -"Design and Computer-Integrated Engineering",0.0000,0 -"Design, Tools, and Test",0.0000,0 -Economics,0.0000,0 -"Emerging Technologies Initiation",0.0000,0 -"Experimental Systems",0.0000,0 -"Extragalactic Astronomy and Cosmology",0.0000,0 -"Fluid, Particulate, and Hydraulic Systems",0.0000,0 -"Galactic Astronomy",0.0000,0 -"Geology and Paleontology",0.0000,0 -Geophysics,0.0000,0 -"Global Atmospheric Research",0.0000,0 -"Law and Social Sciences",0.0000,0 -"Mechanics and Materials",0.0000,0 -"Metals, Ceramics, and Electronic Materials",0.0000,0 -"Operations Research and Production Systems",0.0000,0 -"Organic and Macromolecular Chemistry",0.0000,0 -"Physical Chemistry",0.0000,0 -"Polar Aeronomy and Astrophysics",0.0000,0 -"Polar Meteorology",0.0000,0 -"Polar Ocean and Climate Systems",0.0000,0 -"Quantum Electronics, Waves, and Beams",0.0000,0 -Seismology,0.0000,0 -Sociology,0.0000,0 -"Solid State Chemistry and Polymers",0.0000,0 -"Solid-State and Microstructures",0.0000,0 -"Statistics and Probability",0.0000,0 -"Stellar Astronomy and Astrophysics",0.0000,0 -"Structures and Building Systems",0.0000,0 -"Systematic and Population Biology",0.0000,0 -"Systems Prototyping and Fabrication",0.0000,0 -Tectonics,0.0000,0 -"Theoretical Physics",0.0000,0 -"Volcanology and Mantle Geochemistry",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index ab09d401d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Biophysics,0.1290,0.08824730508988667 -"Algebra and Number Theory",0.0000,0 -Arts,0.0000,0 -"Biochemistry and Molecular Structure and Function",0.0000,0 -"Cell Biology",0.0000,0 -"Computer and Computation Theory",0.0000,0 -"Decision, Risk, and Management Science",0.0000,0 -"Design and Computer-Integrated Engineering",0.0000,0 -"Design, Tools, and Test",0.0000,0 -Economics,0.0000,0 -"Emerging Technologies Initiation",0.0000,0 -"Experimental Systems",0.0000,0 -"Extragalactic Astronomy and Cosmology",0.0000,0 -"Fluid, Particulate, and Hydraulic Systems",0.0000,0 -"Galactic Astronomy",0.0000,0 -"Geology and Paleontology",0.0000,0 -Geophysics,0.0000,0 -"Global Atmospheric Research",0.0000,0 -"Law and Social Sciences",0.0000,0 -"Mechanics and Materials",0.0000,0 -"Metals, Ceramics, and Electronic Materials",0.0000,0 -"Operations Research and Production Systems",0.0000,0 -"Organic and Macromolecular Chemistry",0.0000,0 -"Physical Chemistry",0.0000,0 -"Polar Aeronomy and Astrophysics",0.0000,0 -"Polar Meteorology",0.0000,0 -"Polar Ocean and Climate Systems",0.0000,0 -"Quantum Electronics, Waves, and Beams",0.0000,0 -Seismology,0.0000,0 -Sociology,0.0000,0 -"Solid State Chemistry and Polymers",0.0000,0 -"Solid-State and Microstructures",0.0000,0 -"Statistics and Probability",0.0000,0 -"Stellar Astronomy and Astrophysics",0.0000,0 -"Structures and Building Systems",0.0000,0 -"Systematic and Population Biology",0.0000,0 -"Systems Prototyping and Fabrication",0.0000,0 -Tectonics,0.0000,0 -"Theoretical Physics",0.0000,0 -"Volcanology and Mantle Geochemistry",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index ab09d401d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Biophysics,0.1290,0.08824730508988667 -"Algebra and Number Theory",0.0000,0 -Arts,0.0000,0 -"Biochemistry and Molecular Structure and Function",0.0000,0 -"Cell Biology",0.0000,0 -"Computer and Computation Theory",0.0000,0 -"Decision, Risk, and Management Science",0.0000,0 -"Design and Computer-Integrated Engineering",0.0000,0 -"Design, Tools, and Test",0.0000,0 -Economics,0.0000,0 -"Emerging Technologies Initiation",0.0000,0 -"Experimental Systems",0.0000,0 -"Extragalactic Astronomy and Cosmology",0.0000,0 -"Fluid, Particulate, and Hydraulic Systems",0.0000,0 -"Galactic Astronomy",0.0000,0 -"Geology and Paleontology",0.0000,0 -Geophysics,0.0000,0 -"Global Atmospheric Research",0.0000,0 -"Law and Social Sciences",0.0000,0 -"Mechanics and Materials",0.0000,0 -"Metals, Ceramics, and Electronic Materials",0.0000,0 -"Operations Research and Production Systems",0.0000,0 -"Organic and Macromolecular Chemistry",0.0000,0 -"Physical Chemistry",0.0000,0 -"Polar Aeronomy and Astrophysics",0.0000,0 -"Polar Meteorology",0.0000,0 -"Polar Ocean and Climate Systems",0.0000,0 -"Quantum Electronics, Waves, and Beams",0.0000,0 -Seismology,0.0000,0 -Sociology,0.0000,0 -"Solid State Chemistry and Polymers",0.0000,0 -"Solid-State and Microstructures",0.0000,0 -"Statistics and Probability",0.0000,0 -"Stellar Astronomy and Astrophysics",0.0000,0 -"Structures and Building Systems",0.0000,0 -"Systematic and Population Biology",0.0000,0 -"Systems Prototyping and Fabrication",0.0000,0 -Tectonics,0.0000,0 -"Theoretical Physics",0.0000,0 -"Volcanology and Mantle Geochemistry",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index cba3d59030..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-27,1.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 -2016-12-28,1.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 -2016-12-29,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 -2016-12-30,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 -2017-01-01,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 2dca7385eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" -2016-12,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index d8f504e065..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" -"2016 Q4",0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 8fe58ca1bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" -2016,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index ebb6f12075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By CPU Hours (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",326.9898 -"Organic and Macromolecular Chemistry",185.9182 -"Global Atmospheric Research",160.0000 -"Structures and Building Systems",112.0000 -"Design, Tools, and Test",108.0000 -"Emerging Technologies Initiation",96.0000 -"Quantum Electronics, Waves, and Beams",95.4997 -"Metals, Ceramics, and Electronic Materials",72.0000 -"Solid State Chemistry and Polymers",62.2411 -"Stellar Astronomy and Astrophysics",61.4597 -"Systematic and Population Biology",57.7053 -"Geology and Paleontology",55.6816 -"Decision, Risk, and Management Science",53.4612 -Biophysics,48.6577 -"Polar Aeronomy and Astrophysics",39.9999 -Economics,29.2166 -"Physical Chemistry",28.9482 -"Galactic Astronomy",24.5939 -"Design and Computer-Integrated Engineering",23.2563 -Geophysics,20.0000 -"Volcanology and Mantle Geochemistry",20.0000 -"Law and Social Sciences",16.0000 -"Statistics and Probability",13.7795 -"Algebra and Number Theory",12.0000 -"Polar Ocean and Climate Systems",12.0000 -"Theoretical Physics",12.0000 -Arts,11.8252 -Sociology,10.3886 -"Biochemistry and Molecular Structure and Function",10.0459 -Seismology,9.9744 -"Experimental Systems",8.3168 -"Cell Biology",7.5996 -"Solid-State and Microstructures",4.5532 -"Computer and Computation Theory",1.0000 -"Extragalactic Astronomy and Cosmology",1.0000 -"Mechanics and Materials",1.0000 -"Operations Research and Production Systems",1.0000 -"Polar Meteorology",1.0000 -"Systems Prototyping and Fabrication",1.0000 -Tectonics,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index ebb6f12075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By CPU Hours (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",326.9898 -"Organic and Macromolecular Chemistry",185.9182 -"Global Atmospheric Research",160.0000 -"Structures and Building Systems",112.0000 -"Design, Tools, and Test",108.0000 -"Emerging Technologies Initiation",96.0000 -"Quantum Electronics, Waves, and Beams",95.4997 -"Metals, Ceramics, and Electronic Materials",72.0000 -"Solid State Chemistry and Polymers",62.2411 -"Stellar Astronomy and Astrophysics",61.4597 -"Systematic and Population Biology",57.7053 -"Geology and Paleontology",55.6816 -"Decision, Risk, and Management Science",53.4612 -Biophysics,48.6577 -"Polar Aeronomy and Astrophysics",39.9999 -Economics,29.2166 -"Physical Chemistry",28.9482 -"Galactic Astronomy",24.5939 -"Design and Computer-Integrated Engineering",23.2563 -Geophysics,20.0000 -"Volcanology and Mantle Geochemistry",20.0000 -"Law and Social Sciences",16.0000 -"Statistics and Probability",13.7795 -"Algebra and Number Theory",12.0000 -"Polar Ocean and Climate Systems",12.0000 -"Theoretical Physics",12.0000 -Arts,11.8252 -Sociology,10.3886 -"Biochemistry and Molecular Structure and Function",10.0459 -Seismology,9.9744 -"Experimental Systems",8.3168 -"Cell Biology",7.5996 -"Solid-State and Microstructures",4.5532 -"Computer and Computation Theory",1.0000 -"Extragalactic Astronomy and Cosmology",1.0000 -"Mechanics and Materials",1.0000 -"Operations Research and Production Systems",1.0000 -"Polar Meteorology",1.0000 -"Systems Prototyping and Fabrication",1.0000 -Tectonics,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ebb6f12075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By CPU Hours (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",326.9898 -"Organic and Macromolecular Chemistry",185.9182 -"Global Atmospheric Research",160.0000 -"Structures and Building Systems",112.0000 -"Design, Tools, and Test",108.0000 -"Emerging Technologies Initiation",96.0000 -"Quantum Electronics, Waves, and Beams",95.4997 -"Metals, Ceramics, and Electronic Materials",72.0000 -"Solid State Chemistry and Polymers",62.2411 -"Stellar Astronomy and Astrophysics",61.4597 -"Systematic and Population Biology",57.7053 -"Geology and Paleontology",55.6816 -"Decision, Risk, and Management Science",53.4612 -Biophysics,48.6577 -"Polar Aeronomy and Astrophysics",39.9999 -Economics,29.2166 -"Physical Chemistry",28.9482 -"Galactic Astronomy",24.5939 -"Design and Computer-Integrated Engineering",23.2563 -Geophysics,20.0000 -"Volcanology and Mantle Geochemistry",20.0000 -"Law and Social Sciences",16.0000 -"Statistics and Probability",13.7795 -"Algebra and Number Theory",12.0000 -"Polar Ocean and Climate Systems",12.0000 -"Theoretical Physics",12.0000 -Arts,11.8252 -Sociology,10.3886 -"Biochemistry and Molecular Structure and Function",10.0459 -Seismology,9.9744 -"Experimental Systems",8.3168 -"Cell Biology",7.5996 -"Solid-State and Microstructures",4.5532 -"Computer and Computation Theory",1.0000 -"Extragalactic Astronomy and Cosmology",1.0000 -"Mechanics and Materials",1.0000 -"Operations Research and Production Systems",1.0000 -"Polar Meteorology",1.0000 -"Systems Prototyping and Fabrication",1.0000 -Tectonics,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index ebb6f12075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By CPU Hours (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",326.9898 -"Organic and Macromolecular Chemistry",185.9182 -"Global Atmospheric Research",160.0000 -"Structures and Building Systems",112.0000 -"Design, Tools, and Test",108.0000 -"Emerging Technologies Initiation",96.0000 -"Quantum Electronics, Waves, and Beams",95.4997 -"Metals, Ceramics, and Electronic Materials",72.0000 -"Solid State Chemistry and Polymers",62.2411 -"Stellar Astronomy and Astrophysics",61.4597 -"Systematic and Population Biology",57.7053 -"Geology and Paleontology",55.6816 -"Decision, Risk, and Management Science",53.4612 -Biophysics,48.6577 -"Polar Aeronomy and Astrophysics",39.9999 -Economics,29.2166 -"Physical Chemistry",28.9482 -"Galactic Astronomy",24.5939 -"Design and Computer-Integrated Engineering",23.2563 -Geophysics,20.0000 -"Volcanology and Mantle Geochemistry",20.0000 -"Law and Social Sciences",16.0000 -"Statistics and Probability",13.7795 -"Algebra and Number Theory",12.0000 -"Polar Ocean and Climate Systems",12.0000 -"Theoretical Physics",12.0000 -Arts,11.8252 -Sociology,10.3886 -"Biochemistry and Molecular Structure and Function",10.0459 -Seismology,9.9744 -"Experimental Systems",8.3168 -"Cell Biology",7.5996 -"Solid-State and Microstructures",4.5532 -"Computer and Computation Theory",1.0000 -"Extragalactic Astronomy and Cosmology",1.0000 -"Mechanics and Materials",1.0000 -"Operations Research and Production Systems",1.0000 -"Polar Meteorology",1.0000 -"Systems Prototyping and Fabrication",1.0000 -Tectonics,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 42ed505342..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,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,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,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,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,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,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,12.0000,0,0,15.9210,1.0000,0,0,0,0,0,0,0,0,0,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,12.0000,0,0,20.0000,1.0000,0,0,0,0,16.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,96.0000,0,110.0862,72.0000,0,0,0,35.8063,0,0,22.5565,15.2449,0,0,0,0,15.9632,0,0,0,0,1.0000,12.0000,0,0,8.0000,0,0,0,0,0,0,0,0 -2016-12-28,0,186.6783,0,0,0,0,96.0000,0,87.9948,65.7129,0,0,0,55.7895,0,0,28.6309,15.8148,0,0,20.0000,0,15.8458,12.0000,0,12.0000,0,1.0000,12.0000,0,8.0000,8.0000,0,0,0,0,1.0000,0,1.0000,0 -2016-12-29,0,186.5631,160.0000,112.0000,0,96.0000,95.9574,72.0000,62.0528,61.5476,0,0,56.0000,55.7895,40.0000,0,29.2190,23.6626,0,0,20.0000,0,15.9531,12.0000,0,12.0000,11.5552,7.4478,12.0000,5.0000,8.0000,7.2600,2.0000,1.0000,0,0,1.0000,0,1.0000,0 -2016-12-30,320.0517,186.4757,160.0000,112.0000,108.0000,96.0000,95.8117,72.0000,30.0833,59.0825,65.8038,45.1553,53.8849,55.7895,39.9998,41.1565,27.0648,25.1498,0,20.0000,20.0000,16.0000,15.9524,12.0000,0,12.0000,11.8713,10.0119,2.3934,5.0000,8.2497,7.1202,11.1559,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,180.1552,0,112.0000,0,96.0000,95.0483,72.0000,16.5130,59.5816,95.7214,59.2199,1.0000,55.7250,40.0000,24.3207,41.0622,33.7236,23.4747,0,0,0,11.9114,12.0000,12.0000,0,11.8540,10.7516,1.0000,11.1429,8.8093,8.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 95bd1a8dd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3584,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9d49d04694..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3584,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index db5c33548a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By CPU Hours (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Global Atmospheric Research] Job Size: Weighted By CPU Hours (Core Count)","[Structures and Building Systems] Job Size: Weighted By CPU Hours (Core Count)","[Design, Tools, and Test] Job Size: Weighted By CPU Hours (Core Count)","[Emerging Technologies Initiation] Job Size: Weighted By CPU Hours (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By CPU Hours (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By CPU Hours (Core Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By CPU Hours (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Systematic and Population Biology] Job Size: Weighted By CPU Hours (Core Count)","[Geology and Paleontology] Job Size: Weighted By CPU Hours (Core Count)","[Decision, Risk, and Management Science] Job Size: Weighted By CPU Hours (Core Count)","[Biophysics] Job Size: Weighted By CPU Hours (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By CPU Hours (Core Count)","[Economics] Job Size: Weighted By CPU Hours (Core Count)","[Physical Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Galactic Astronomy] Job Size: Weighted By CPU Hours (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Geophysics] Job Size: Weighted By CPU Hours (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By CPU Hours (Core Count)","[Law and Social Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Statistics and Probability] Job Size: Weighted By CPU Hours (Core Count)","[Algebra and Number Theory] Job Size: Weighted By CPU Hours (Core Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By CPU Hours (Core Count)","[Theoretical Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Sociology] Job Size: Weighted By CPU Hours (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By CPU Hours (Core Count)","[Seismology] Job Size: Weighted By CPU Hours (Core Count)","[Experimental Systems] Job Size: Weighted By CPU Hours (Core Count)","[Cell Biology] Job Size: Weighted By CPU Hours (Core Count)","[Solid-State and Microstructures] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Theory] Job Size: Weighted By CPU Hours (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By CPU Hours (Core Count)","[Mechanics and Materials] Job Size: Weighted By CPU Hours (Core Count)","[Operations Research and Production Systems] Job Size: Weighted By CPU Hours (Core Count)","[Polar Meteorology] Job Size: Weighted By CPU Hours (Core Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By CPU Hours (Core Count)","[Tectonics] Job Size: Weighted By CPU Hours (Core Count)" -2016,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3584,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,1.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 70f595f776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" -Biophysics,12.0000 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 70f595f776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" -Biophysics,12.0000 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 70f595f776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" -Biophysics,12.0000 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 70f595f776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" -Biophysics,12.0000 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index e56e2d1127..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,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.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-27,12.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 -2016-12-28,12.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 -2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 -2017-01-01,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 519cd5695b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 0d7d181086..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index f88f026959..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1436d72d1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9dfae15f9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9dfae15f9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9dfae15f9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 81f31d2b8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3553c085c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9de203e4da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index a70b30110d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by PI Group" -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","[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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 0b7d8ef8fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 0b7d8ef8fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 0b7d8ef8fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 0b7d8ef8fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 7c354f6ea7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index c8c93c43c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 63d3f65d97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index b65a34c209..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index f6e1d34f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Galactic Astronomy",214.25581950,2.0529931333004057 -"Cell Biology",71.34538580,15.241596218036447 -"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 -"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 -"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 -"Global Atmospheric Research",31.02180556,3.7428536858056267 -"Solid-State and Microstructures",26.77900440,0.3093136712992847 -"Systematic and Population Biology",12.67979893,0.790292910753799 -"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 -"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 -"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 -"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 -Arts,4.87037458,0.44747381160758987 -"Algebra and Number Theory",4.41189394,0.6571458545780616 -Tectonics,3.92752472,0.08635320372070841 -"Theoretical Physics",3.72481481,0.0007211928415468717 -"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 -Sociology,2.05341236,0.02664920179778262 -"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 -"Emerging Technologies Initiation",1.88463542,0.5086144929601321 -"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 -"Statistics and Probability",0.67655350,0.18487368040866786 -"Computer and Computation Theory",0.32390278,0.2312398274998169 -Economics,0.29952899,0.12719098377944033 -"Experimental Systems",0.20924174,0.04281469020992288 -"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 -"Design, Tools, and Test",0.09777778,0 -"Polar Meteorology",0.08220238,0.011574714004551338 -"Physical Chemistry",0.06381908,0.014079147600380438 -"Operations Research and Production Systems",0.05740350,0.004593062258338075 -"Geology and Paleontology",0.04034722,0.034861577990454876 -Biophysics,0.03987455,0.015476567200768681 -Seismology,0.01747222,0.00747562396751627 -"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 -Geophysics,0.00105159,0.00005735857833479565 -"Structures and Building Systems",0.00059028,0.000142636082683637 -"Volcanology and Mantle Geochemistry",0.00027778,0 -"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 -"Mechanics and Materials",0.00012566,0.000016471282949086855 -"Law and Social Sciences",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index f6e1d34f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Galactic Astronomy",214.25581950,2.0529931333004057 -"Cell Biology",71.34538580,15.241596218036447 -"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 -"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 -"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 -"Global Atmospheric Research",31.02180556,3.7428536858056267 -"Solid-State and Microstructures",26.77900440,0.3093136712992847 -"Systematic and Population Biology",12.67979893,0.790292910753799 -"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 -"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 -"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 -"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 -Arts,4.87037458,0.44747381160758987 -"Algebra and Number Theory",4.41189394,0.6571458545780616 -Tectonics,3.92752472,0.08635320372070841 -"Theoretical Physics",3.72481481,0.0007211928415468717 -"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 -Sociology,2.05341236,0.02664920179778262 -"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 -"Emerging Technologies Initiation",1.88463542,0.5086144929601321 -"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 -"Statistics and Probability",0.67655350,0.18487368040866786 -"Computer and Computation Theory",0.32390278,0.2312398274998169 -Economics,0.29952899,0.12719098377944033 -"Experimental Systems",0.20924174,0.04281469020992288 -"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 -"Design, Tools, and Test",0.09777778,0 -"Polar Meteorology",0.08220238,0.011574714004551338 -"Physical Chemistry",0.06381908,0.014079147600380438 -"Operations Research and Production Systems",0.05740350,0.004593062258338075 -"Geology and Paleontology",0.04034722,0.034861577990454876 -Biophysics,0.03987455,0.015476567200768681 -Seismology,0.01747222,0.00747562396751627 -"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 -Geophysics,0.00105159,0.00005735857833479565 -"Structures and Building Systems",0.00059028,0.000142636082683637 -"Volcanology and Mantle Geochemistry",0.00027778,0 -"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 -"Mechanics and Materials",0.00012566,0.000016471282949086855 -"Law and Social Sciences",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f6e1d34f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Galactic Astronomy",214.25581950,2.0529931333004057 -"Cell Biology",71.34538580,15.241596218036447 -"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 -"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 -"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 -"Global Atmospheric Research",31.02180556,3.7428536858056267 -"Solid-State and Microstructures",26.77900440,0.3093136712992847 -"Systematic and Population Biology",12.67979893,0.790292910753799 -"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 -"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 -"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 -"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 -Arts,4.87037458,0.44747381160758987 -"Algebra and Number Theory",4.41189394,0.6571458545780616 -Tectonics,3.92752472,0.08635320372070841 -"Theoretical Physics",3.72481481,0.0007211928415468717 -"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 -Sociology,2.05341236,0.02664920179778262 -"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 -"Emerging Technologies Initiation",1.88463542,0.5086144929601321 -"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 -"Statistics and Probability",0.67655350,0.18487368040866786 -"Computer and Computation Theory",0.32390278,0.2312398274998169 -Economics,0.29952899,0.12719098377944033 -"Experimental Systems",0.20924174,0.04281469020992288 -"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 -"Design, Tools, and Test",0.09777778,0 -"Polar Meteorology",0.08220238,0.011574714004551338 -"Physical Chemistry",0.06381908,0.014079147600380438 -"Operations Research and Production Systems",0.05740350,0.004593062258338075 -"Geology and Paleontology",0.04034722,0.034861577990454876 -Biophysics,0.03987455,0.015476567200768681 -Seismology,0.01747222,0.00747562396751627 -"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 -Geophysics,0.00105159,0.00005735857833479565 -"Structures and Building Systems",0.00059028,0.000142636082683637 -"Volcanology and Mantle Geochemistry",0.00027778,0 -"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 -"Mechanics and Materials",0.00012566,0.000016471282949086855 -"Law and Social Sciences",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index f6e1d34f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Galactic Astronomy",214.25581950,2.0529931333004057 -"Cell Biology",71.34538580,15.241596218036447 -"Polar Aeronomy and Astrophysics",52.74111111,37.29241880267786 -"Quantum Electronics, Waves, and Beams",44.54427399,7.275316793106799 -"Solid State Chemistry and Polymers",35.12637367,1.715055012550036 -"Global Atmospheric Research",31.02180556,3.7428536858056267 -"Solid-State and Microstructures",26.77900440,0.3093136712992847 -"Systematic and Population Biology",12.67979893,0.790292910753799 -"Stellar Astronomy and Astrophysics",9.21498611,3.9691829026306045 -"Biochemistry and Molecular Structure and Function",8.19083333,2.9697909176657884 -"Fluid, Particulate, and Hydraulic Systems",6.67768519,0.98851049021015 -"Polar Ocean and Climate Systems",5.36508929,0.1678514684969954 -Arts,4.87037458,0.44747381160758987 -"Algebra and Number Theory",4.41189394,0.6571458545780616 -Tectonics,3.92752472,0.08635320372070841 -"Theoretical Physics",3.72481481,0.0007211928415468717 -"Design and Computer-Integrated Engineering",2.15222222,0.6988290975119311 -Sociology,2.05341236,0.02664920179778262 -"Metals, Ceramics, and Electronic Materials",1.98928571,0.9136179906052265 -"Emerging Technologies Initiation",1.88463542,0.5086144929601321 -"Decision, Risk, and Management Science",0.74204509,0.007451042072537693 -"Statistics and Probability",0.67655350,0.18487368040866786 -"Computer and Computation Theory",0.32390278,0.2312398274998169 -Economics,0.29952899,0.12719098377944033 -"Experimental Systems",0.20924174,0.04281469020992288 -"Systems Prototyping and Fabrication",0.20714974,0.015675479418422043 -"Design, Tools, and Test",0.09777778,0 -"Polar Meteorology",0.08220238,0.011574714004551338 -"Physical Chemistry",0.06381908,0.014079147600380438 -"Operations Research and Production Systems",0.05740350,0.004593062258338075 -"Geology and Paleontology",0.04034722,0.034861577990454876 -Biophysics,0.03987455,0.015476567200768681 -Seismology,0.01747222,0.00747562396751627 -"Extragalactic Astronomy and Cosmology",0.01408333,0.0026920235401535287 -Geophysics,0.00105159,0.00005735857833479565 -"Structures and Building Systems",0.00059028,0.000142636082683637 -"Volcanology and Mantle Geochemistry",0.00027778,0 -"Organic and Macromolecular Chemistry",0.00016667,0.00003513641844631532 -"Mechanics and Materials",0.00012566,0.000016471282949086855 -"Law and Social Sciences",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index e6c4cbc2e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait 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,9.33222222,0,0,0.00027778,0,0,0,0,0,0,0,0 -2016-12-23,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-24,0.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,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-25,0.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,36.96185185,0,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-26,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-27,0.00055556,273.48105556,0,103.71148148,57.59064815,0,0,0,76.08611111,50.82250000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0.00288889,0,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-28,0.00000000,280.72700000,0,108.01750000,80.35419753,0,0,0,36.87611111,0.00000000,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0,0,1.68000000,0,0,0.46633333,0.02977924,0,0,7.07458333,0.07195578,0,0.00000000,0,0,0,0,0.00027778,0.00018519,0,0 -2016-12-29,150.26646605,12.05893162,0.00166667,41.77958333,22.19675214,25.72861111,0.00444444,0,5.85819444,0.00000000,0,0,0.87133838,0.00000000,0,0.00000000,0,7.73980283,1.98928571,3.47907407,0.79222222,4.46097222,0.01788889,0,0.13063131,0.04237662,0,0,1.33660948,0.04464331,0,0.00000000,0.00000000,0,0,0.00062500,0.00000000,0.00000000,0,0 -2016-12-30,224.39559552,55.29648148,105.48055556,0.00222222,31.96192488,0.00000000,18.02518519,13.00438580,14.90583333,5.14571429,6.67768519,0,5.77518519,0.38944444,2.58369031,0.00000000,0,1.39468892,0.00000000,1.47605556,0.84532650,0.00000000,0.42590741,0.59636111,0.31423611,0.32754774,0.09777778,0.17850082,0.02575712,0.13344771,0.05370370,0.00000000,0.00000000,0.01437500,0.00105159,0.00055556,0.00000000,0.00020833,0.00009921,0.00000000 -2016-12-31,4.34280303,351.74604167,0.00000000,0.00076389,33.49272778,0,27.32576747,3.35838889,0.95052083,0.00000000,0.00000000,0.02019097,0.00000000,0.00000000,7.36601918,0,2.15222222,2.90176261,0.00000000,0.07819444,0.55391509,0.00626263,0.00000000,0.33598291,0.26094444,0.35169374,0,0.02144676,0.03724051,0.01543544,0.00000000,0.00027778,0.02496032,0.01388889,0,0.00000000,0,0.00013889,0.00010913,0 -2017-01-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index ff4c62a9d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait Hours: Per Job" -2016-12,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.67655350,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000 -2017-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 11db26b645..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait Hours: Per Job" -"2016 Q4",214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.67655350,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000 -"2017 Q1",0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6274353f6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Galactic Astronomy] Wait Hours: Per Job","[Cell Biology] Wait Hours: Per Job","[Polar Aeronomy and Astrophysics] Wait Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wait Hours: Per Job","[Solid State Chemistry and Polymers] Wait Hours: Per Job","[Global Atmospheric Research] Wait Hours: Per Job","[Solid-State and Microstructures] Wait Hours: Per Job","[Systematic and Population Biology] Wait Hours: Per Job","[Stellar Astronomy and Astrophysics] Wait Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wait Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Per Job","[Polar Ocean and Climate Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Algebra and Number Theory] Wait Hours: Per Job","[Tectonics] Wait Hours: Per Job","[Theoretical Physics] Wait Hours: Per Job","[Design and Computer-Integrated Engineering] Wait Hours: Per Job","[Sociology] Wait Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wait Hours: Per Job","[Emerging Technologies Initiation] Wait Hours: Per Job","[Decision, Risk, and Management Science] Wait Hours: Per Job","[Statistics and Probability] Wait Hours: Per Job","[Computer and Computation Theory] Wait Hours: Per Job","[Economics] Wait Hours: Per Job","[Experimental Systems] Wait Hours: Per Job","[Systems Prototyping and Fabrication] Wait Hours: Per Job","[Design, Tools, and Test] Wait Hours: Per Job","[Polar Meteorology] Wait Hours: Per Job","[Physical Chemistry] Wait Hours: Per Job","[Operations Research and Production Systems] Wait Hours: Per Job","[Geology and Paleontology] Wait Hours: Per Job","[Biophysics] Wait Hours: Per Job","[Seismology] Wait Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wait Hours: Per Job","[Geophysics] Wait Hours: Per Job","[Structures and Building Systems] Wait Hours: Per Job","[Volcanology and Mantle Geochemistry] Wait Hours: Per Job","[Organic and Macromolecular Chemistry] Wait Hours: Per Job","[Mechanics and Materials] Wait Hours: Per Job","[Law and Social Sciences] Wait Hours: Per Job" -2016,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.67655350,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000 -2017,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 487ea851c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Statistics and Probability",52.69561728, -"Operations Research and Production Systems",49.85089556, -"Volcanology and Mantle Geochemistry",48.00666667, -"Theoretical Physics",44.13648148, -"Algebra and Number Theory",39.37916667, -"Quantum Electronics, Waves, and Beams",37.79727273, -"Metals, Ceramics, and Electronic Materials",36.49007937, -"Organic and Macromolecular Chemistry",26.34404444, -"Design and Computer-Integrated Engineering",25.49490741, -"Systems Prototyping and Fabrication",25.48654262, -"Polar Aeronomy and Astrophysics",25.17486111, -"Experimental Systems",24.23206456, -"Cell Biology",21.20474151, -"Stellar Astronomy and Astrophysics",18.55493056, -Arts,17.27322391, -"Biochemistry and Molecular Structure and Function",16.76537037, -"Structures and Building Systems",15.78250000, -"Fluid, Particulate, and Hydraulic Systems",15.43750000,2.949516142225878 -Biophysics,12.69807348,1.9501880028878633 -"Emerging Technologies Initiation",12.67826389, -Tectonics,8.59051583, -"Solid-State and Microstructures",7.94699670,0.252707620848999 -"Solid State Chemistry and Polymers",7.84637557,0.6422820715080719 -Seismology,7.02769444,1.7557857088278381 -"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 -"Computer and Computation Theory",5.04208333,1.412736659063767 -"Geology and Paleontology",4.58416667,1.0571325984155044 -"Global Atmospheric Research",4.51402778,1.3866381241776238 -"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 -"Galactic Astronomy",1.61309706,0.16764615169441738 -"Mechanics and Materials",0.97173942,0.00025764463006399947 -"Polar Meteorology",0.88155664,0.09909785167735996 -Economics,0.81574879,0.33900408606509713 -"Physical Chemistry",0.55186616,0.029985935034615736 -Sociology,0.29997993,0.003221245083552797 -"Design, Tools, and Test",0.26055556,0 -"Systematic and Population Biology",0.18926081,0.027954377835160745 -Geophysics,0.08049603,0.022331879009996006 -"Law and Social Sciences",0.06500000,0 -"Decision, Risk, and Management Science",0.02840866,0.006969739306507408 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c2a4b06bb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Statistics and Probability",52.69561728, -"Operations Research and Production Systems",49.85089556,1.1100595034642202 -"Volcanology and Mantle Geochemistry",48.00666667,0 -"Theoretical Physics",44.13648148,3.8863777173028686 -"Algebra and Number Theory",39.37916667,3.5074678840012607 -"Quantum Electronics, Waves, and Beams",37.79727273,4.7120666811720895 -"Metals, Ceramics, and Electronic Materials",36.49007937,2.407916402194818 -"Organic and Macromolecular Chemistry",26.34404444,6.8507338965077675 -"Design and Computer-Integrated Engineering",25.49490741, -"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 -"Polar Aeronomy and Astrophysics",25.17486111,17.80092216999551 -"Experimental Systems",24.23206456,3.046402847031802 -"Cell Biology",21.20474151,2.519140001248213 -"Stellar Astronomy and Astrophysics",18.55493056,4.578065909633193 -Arts,17.27322391,1.2812633375632778 -"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 -"Structures and Building Systems",15.78250000,1.4182317241819407 -"Fluid, Particulate, and Hydraulic Systems",15.43750000,9.334819660458281 -Biophysics,12.69807348,7.9017703608261565 -"Emerging Technologies Initiation",12.67826389,0.43082354975761517 -Tectonics,8.59051583,0.027937647321332644 -"Solid-State and Microstructures",7.94699670,0.4591933087881705 -"Solid State Chemistry and Polymers",7.84637557,1.3319104362573686 -Seismology,7.02769444,2.431694700689441 -"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 -"Computer and Computation Theory",5.04208333,1.9381499596292342 -"Geology and Paleontology",4.58416667,1.606624250847252 -"Global Atmospheric Research",4.51402778,3.1765790052054 -"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 -"Galactic Astronomy",1.61309706,0.3572919275210631 -"Mechanics and Materials",0.97173942,0.00025764463006399947 -"Polar Meteorology",0.88155664,0.09909785167735996 -Economics,0.81574879,0.33900408606509713 -"Physical Chemistry",0.55186616,0.0548134687339129 -Sociology,0.29997993,0.00460726351698731 -"Design, Tools, and Test",0.26055556,0 -"Systematic and Population Biology",0.18926081,0.027954377835160745 -Geophysics,0.08049603,0.022331879009996006 -"Law and Social Sciences",0.06500000,0 -"Decision, Risk, and Management Science",0.02840866,0.007661173777721356 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c2a4b06bb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Statistics and Probability",52.69561728, -"Operations Research and Production Systems",49.85089556,1.1100595034642202 -"Volcanology and Mantle Geochemistry",48.00666667,0 -"Theoretical Physics",44.13648148,3.8863777173028686 -"Algebra and Number Theory",39.37916667,3.5074678840012607 -"Quantum Electronics, Waves, and Beams",37.79727273,4.7120666811720895 -"Metals, Ceramics, and Electronic Materials",36.49007937,2.407916402194818 -"Organic and Macromolecular Chemistry",26.34404444,6.8507338965077675 -"Design and Computer-Integrated Engineering",25.49490741, -"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 -"Polar Aeronomy and Astrophysics",25.17486111,17.80092216999551 -"Experimental Systems",24.23206456,3.046402847031802 -"Cell Biology",21.20474151,2.519140001248213 -"Stellar Astronomy and Astrophysics",18.55493056,4.578065909633193 -Arts,17.27322391,1.2812633375632778 -"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 -"Structures and Building Systems",15.78250000,1.4182317241819407 -"Fluid, Particulate, and Hydraulic Systems",15.43750000,9.334819660458281 -Biophysics,12.69807348,7.9017703608261565 -"Emerging Technologies Initiation",12.67826389,0.43082354975761517 -Tectonics,8.59051583,0.027937647321332644 -"Solid-State and Microstructures",7.94699670,0.4591933087881705 -"Solid State Chemistry and Polymers",7.84637557,1.3319104362573686 -Seismology,7.02769444,2.431694700689441 -"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 -"Computer and Computation Theory",5.04208333,1.9381499596292342 -"Geology and Paleontology",4.58416667,1.606624250847252 -"Global Atmospheric Research",4.51402778,3.1765790052054 -"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 -"Galactic Astronomy",1.61309706,0.3572919275210631 -"Mechanics and Materials",0.97173942,0.00025764463006399947 -"Polar Meteorology",0.88155664,0.09909785167735996 -Economics,0.81574879,0.33900408606509713 -"Physical Chemistry",0.55186616,0.0548134687339129 -Sociology,0.29997993,0.00460726351698731 -"Design, Tools, and Test",0.26055556,0 -"Systematic and Population Biology",0.18926081,0.027954377835160745 -Geophysics,0.08049603,0.022331879009996006 -"Law and Social Sciences",0.06500000,0 -"Decision, Risk, and Management Science",0.02840866,0.007661173777721356 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c2a4b06bb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Statistics and Probability",52.69561728, -"Operations Research and Production Systems",49.85089556,1.1100595034642202 -"Volcanology and Mantle Geochemistry",48.00666667,0 -"Theoretical Physics",44.13648148,3.8863777173028686 -"Algebra and Number Theory",39.37916667,3.5074678840012607 -"Quantum Electronics, Waves, and Beams",37.79727273,4.7120666811720895 -"Metals, Ceramics, and Electronic Materials",36.49007937,2.407916402194818 -"Organic and Macromolecular Chemistry",26.34404444,6.8507338965077675 -"Design and Computer-Integrated Engineering",25.49490741, -"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 -"Polar Aeronomy and Astrophysics",25.17486111,17.80092216999551 -"Experimental Systems",24.23206456,3.046402847031802 -"Cell Biology",21.20474151,2.519140001248213 -"Stellar Astronomy and Astrophysics",18.55493056,4.578065909633193 -Arts,17.27322391,1.2812633375632778 -"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 -"Structures and Building Systems",15.78250000,1.4182317241819407 -"Fluid, Particulate, and Hydraulic Systems",15.43750000,9.334819660458281 -Biophysics,12.69807348,7.9017703608261565 -"Emerging Technologies Initiation",12.67826389,0.43082354975761517 -Tectonics,8.59051583,0.027937647321332644 -"Solid-State and Microstructures",7.94699670,0.4591933087881705 -"Solid State Chemistry and Polymers",7.84637557,1.3319104362573686 -Seismology,7.02769444,2.431694700689441 -"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 -"Computer and Computation Theory",5.04208333,1.9381499596292342 -"Geology and Paleontology",4.58416667,1.606624250847252 -"Global Atmospheric Research",4.51402778,3.1765790052054 -"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 -"Galactic Astronomy",1.61309706,0.3572919275210631 -"Mechanics and Materials",0.97173942,0.00025764463006399947 -"Polar Meteorology",0.88155664,0.09909785167735996 -Economics,0.81574879,0.33900408606509713 -"Physical Chemistry",0.55186616,0.0548134687339129 -Sociology,0.29997993,0.00460726351698731 -"Design, Tools, and Test",0.26055556,0 -"Systematic and Population Biology",0.18926081,0.027954377835160745 -Geophysics,0.08049603,0.022331879009996006 -"Law and Social Sciences",0.06500000,0 -"Decision, Risk, and Management Science",0.02840866,0.007661173777721356 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 2678eba1ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" -2016-12-22,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,0,0,0,0,16.94166667,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,24.00000000,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,8.12694444,0,0,0,0,0,0 -2016-12-26,2.70416667,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,24.00000000,0,0,0,0,0,0 -2016-12-27,20.78689815,0,0,0,0,12.98407407,0,0,0,0,0,0,13.96533333,20.66416667,0,19.90555556,0,0,13.89986111,0,0,0,20.49703704,0,0,0,0,0,0,8.71606481,0,0,0,8.23638889,3.21666667,0,0,0,0,0 -2016-12-28,9.90712418,13.35268330,4.70055556,5.03972222,3.11533951,15.23050000,0,17.86320988,0,5.01598392,0,8.78983333,17.63833333,18.38902778,0,24.00000000,0,0,24.00000000,0,0,0,14.10152778,0,0,0,0,0,0,24.00000000,0,0,0,19.32140278,24.00000000,0,0,0,0,0 -2016-12-29,23.89310847,16.60273286,24.00000000,24.00000000,24.00000000,23.40096618,11.55011905,24.00000000,0,13.10756221,18.97472222,10.54645833,7.73178763,18.61000000,4.34454545,24.00000000,3.66944444,0,24.00000000,6.36972222,0,3.62000000,14.25424444,10.40083333,0,2.01966667,0,6.48888889,0,7.81509259,0,0,0,11.06298354,1.17898003,0,0,0,0,1.92694444 -2016-12-30,18.94011905,21.71949405,19.30611111,15.09675926,14.55335859,18.93428571,21.78416667,16.65664530,0,13.31263065,12.00027778,13.41648148,7.32452206,11.90376984,9.68358547,11.72422222,10.28048611,9.78120370,24.00000000,7.97656250,4.25015531,16.84687500,4.10732350,13.60638889,3.48631944,4.10559722,1.45518519,2.51750000,0,0.80124024,0.97252976,1.58977533,0.48461111,0.27513871,0.34371670,0.26055556,0.14245370,0.08049603,0.06500000,0.03474935 -2016-12-31,23.17923611,10.83064379,0,0,24.00000000,11.12489583,22.09055556,4.88585470,16.61129630,12.53390738,7.37444444,10.97790404,14.97629630,8.30273148,15.93161523,1.92791667,7.33458333,16.96888889,8.03958333,10.17785714,5.54019436,7.28581633,1.97834003,6.47384921,7.65398148,8.63138889,4.84500000,0,0.19661458,5.00544444,0.97299603,1.07971065,1.49565171,0.32450010,0.38194742,0,0.14844444,0,0,0.01479010 -2017-01-01,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 11a3fd075a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" -2016-12,42.94008230,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 -2017-01,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index aeb1a6f80e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" -"2016 Q4",42.94008230,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 -"2017 Q1",11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 519830b4c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Statistics and Probability] Wall Hours: Per Job","[Operations Research and Production Systems] Wall Hours: Per Job","[Volcanology and Mantle Geochemistry] Wall Hours: Per Job","[Theoretical Physics] Wall Hours: Per Job","[Algebra and Number Theory] Wall Hours: Per Job","[Quantum Electronics, Waves, and Beams] Wall Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Wall Hours: Per Job","[Organic and Macromolecular Chemistry] Wall Hours: Per Job","[Design and Computer-Integrated Engineering] Wall Hours: Per Job","[Systems Prototyping and Fabrication] Wall Hours: Per Job","[Polar Aeronomy and Astrophysics] Wall Hours: Per Job","[Experimental Systems] Wall Hours: Per Job","[Cell Biology] Wall Hours: Per Job","[Stellar Astronomy and Astrophysics] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Biochemistry and Molecular Structure and Function] Wall Hours: Per Job","[Structures and Building Systems] Wall Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Per Job","[Biophysics] Wall Hours: Per Job","[Emerging Technologies Initiation] Wall Hours: Per Job","[Tectonics] Wall Hours: Per Job","[Solid-State and Microstructures] Wall Hours: Per Job","[Solid State Chemistry and Polymers] Wall Hours: Per Job","[Seismology] Wall Hours: Per Job","[Extragalactic Astronomy and Cosmology] Wall Hours: Per Job","[Computer and Computation Theory] Wall Hours: Per Job","[Geology and Paleontology] Wall Hours: Per Job","[Global Atmospheric Research] Wall Hours: Per Job","[Polar Ocean and Climate Systems] Wall Hours: Per Job","[Galactic Astronomy] Wall Hours: Per Job","[Mechanics and Materials] Wall Hours: Per Job","[Polar Meteorology] Wall Hours: Per Job","[Economics] Wall Hours: Per Job","[Physical Chemistry] Wall Hours: Per Job","[Sociology] Wall Hours: Per Job","[Design, Tools, and Test] Wall Hours: Per Job","[Systematic and Population Biology] Wall Hours: Per Job","[Geophysics] Wall Hours: Per Job","[Law and Social Sciences] Wall Hours: Per Job","[Decision, Risk, and Management Science] Wall Hours: Per Job" -2016,42.94008230,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 -2017,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 8b3fda3098..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","User Expansion Factor" -"Galactic Astronomy",119.8923 -"Systematic and Population Biology",69.2703 -"Global Atmospheric Research",7.8723 -Sociology,7.6469 -"Decision, Risk, and Management Science",6.8756 -"Solid-State and Microstructures",4.3697 -"Cell Biology",4.3693 -"Solid State Chemistry and Polymers",3.8702 -"Polar Ocean and Climate Systems",3.5459 -"Quantum Electronics, Waves, and Beams",2.2702 -"Polar Aeronomy and Astrophysics",2.0475 -"Stellar Astronomy and Astrophysics",1.5228 -"Biochemistry and Molecular Structure and Function",1.4886 -Tectonics,1.4572 -Economics,1.4161 -"Design, Tools, and Test",1.3753 -"Fluid, Particulate, and Hydraulic Systems",1.3348 -Arts,1.2820 -"Emerging Technologies Initiation",1.1487 -"Algebra and Number Theory",1.1120 -"Physical Chemistry",1.1103 -"Polar Meteorology",1.0932 -"Design and Computer-Integrated Engineering",1.0844 -"Theoretical Physics",1.0844 -"Computer and Computation Theory",1.0642 -"Metals, Ceramics, and Electronic Materials",1.0545 -"Geology and Paleontology",1.0148 -Geophysics,1.0131 -"Statistics and Probability",1.0128 -"Experimental Systems",1.0086 -"Systems Prototyping and Fabrication",1.0081 -Seismology,1.0025 -"Extragalactic Astronomy and Cosmology",1.0024 -"Operations Research and Production Systems",1.0012 -Biophysics,1.0010 -"Mechanics and Materials",1.0001 -"Law and Social Sciences",1.0000 -"Organic and Macromolecular Chemistry",1.0000 -"Structures and Building Systems",1.0000 -"Volcanology and Mantle Geochemistry",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 8b3fda3098..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","User Expansion Factor" -"Galactic Astronomy",119.8923 -"Systematic and Population Biology",69.2703 -"Global Atmospheric Research",7.8723 -Sociology,7.6469 -"Decision, Risk, and Management Science",6.8756 -"Solid-State and Microstructures",4.3697 -"Cell Biology",4.3693 -"Solid State Chemistry and Polymers",3.8702 -"Polar Ocean and Climate Systems",3.5459 -"Quantum Electronics, Waves, and Beams",2.2702 -"Polar Aeronomy and Astrophysics",2.0475 -"Stellar Astronomy and Astrophysics",1.5228 -"Biochemistry and Molecular Structure and Function",1.4886 -Tectonics,1.4572 -Economics,1.4161 -"Design, Tools, and Test",1.3753 -"Fluid, Particulate, and Hydraulic Systems",1.3348 -Arts,1.2820 -"Emerging Technologies Initiation",1.1487 -"Algebra and Number Theory",1.1120 -"Physical Chemistry",1.1103 -"Polar Meteorology",1.0932 -"Design and Computer-Integrated Engineering",1.0844 -"Theoretical Physics",1.0844 -"Computer and Computation Theory",1.0642 -"Metals, Ceramics, and Electronic Materials",1.0545 -"Geology and Paleontology",1.0148 -Geophysics,1.0131 -"Statistics and Probability",1.0128 -"Experimental Systems",1.0086 -"Systems Prototyping and Fabrication",1.0081 -Seismology,1.0025 -"Extragalactic Astronomy and Cosmology",1.0024 -"Operations Research and Production Systems",1.0012 -Biophysics,1.0010 -"Mechanics and Materials",1.0001 -"Law and Social Sciences",1.0000 -"Organic and Macromolecular Chemistry",1.0000 -"Structures and Building Systems",1.0000 -"Volcanology and Mantle Geochemistry",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 8b3fda3098..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","User Expansion Factor" -"Galactic Astronomy",119.8923 -"Systematic and Population Biology",69.2703 -"Global Atmospheric Research",7.8723 -Sociology,7.6469 -"Decision, Risk, and Management Science",6.8756 -"Solid-State and Microstructures",4.3697 -"Cell Biology",4.3693 -"Solid State Chemistry and Polymers",3.8702 -"Polar Ocean and Climate Systems",3.5459 -"Quantum Electronics, Waves, and Beams",2.2702 -"Polar Aeronomy and Astrophysics",2.0475 -"Stellar Astronomy and Astrophysics",1.5228 -"Biochemistry and Molecular Structure and Function",1.4886 -Tectonics,1.4572 -Economics,1.4161 -"Design, Tools, and Test",1.3753 -"Fluid, Particulate, and Hydraulic Systems",1.3348 -Arts,1.2820 -"Emerging Technologies Initiation",1.1487 -"Algebra and Number Theory",1.1120 -"Physical Chemistry",1.1103 -"Polar Meteorology",1.0932 -"Design and Computer-Integrated Engineering",1.0844 -"Theoretical Physics",1.0844 -"Computer and Computation Theory",1.0642 -"Metals, Ceramics, and Electronic Materials",1.0545 -"Geology and Paleontology",1.0148 -Geophysics,1.0131 -"Statistics and Probability",1.0128 -"Experimental Systems",1.0086 -"Systems Prototyping and Fabrication",1.0081 -Seismology,1.0025 -"Extragalactic Astronomy and Cosmology",1.0024 -"Operations Research and Production Systems",1.0012 -Biophysics,1.0010 -"Mechanics and Materials",1.0001 -"Law and Social Sciences",1.0000 -"Organic and Macromolecular Chemistry",1.0000 -"Structures and Building Systems",1.0000 -"Volcanology and Mantle Geochemistry",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 8b3fda3098..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","User Expansion Factor" -"Galactic Astronomy",119.8923 -"Systematic and Population Biology",69.2703 -"Global Atmospheric Research",7.8723 -Sociology,7.6469 -"Decision, Risk, and Management Science",6.8756 -"Solid-State and Microstructures",4.3697 -"Cell Biology",4.3693 -"Solid State Chemistry and Polymers",3.8702 -"Polar Ocean and Climate Systems",3.5459 -"Quantum Electronics, Waves, and Beams",2.2702 -"Polar Aeronomy and Astrophysics",2.0475 -"Stellar Astronomy and Astrophysics",1.5228 -"Biochemistry and Molecular Structure and Function",1.4886 -Tectonics,1.4572 -Economics,1.4161 -"Design, Tools, and Test",1.3753 -"Fluid, Particulate, and Hydraulic Systems",1.3348 -Arts,1.2820 -"Emerging Technologies Initiation",1.1487 -"Algebra and Number Theory",1.1120 -"Physical Chemistry",1.1103 -"Polar Meteorology",1.0932 -"Design and Computer-Integrated Engineering",1.0844 -"Theoretical Physics",1.0844 -"Computer and Computation Theory",1.0642 -"Metals, Ceramics, and Electronic Materials",1.0545 -"Geology and Paleontology",1.0148 -Geophysics,1.0131 -"Statistics and Probability",1.0128 -"Experimental Systems",1.0086 -"Systems Prototyping and Fabrication",1.0081 -Seismology,1.0025 -"Extragalactic Astronomy and Cosmology",1.0024 -"Operations Research and Production Systems",1.0012 -Biophysics,1.0010 -"Mechanics and Materials",1.0001 -"Law and Social Sciences",1.0000 -"Organic and Macromolecular Chemistry",1.0000 -"Structures and Building Systems",1.0000 -"Volcanology and Mantle Geochemistry",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index b2c303c331..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-23,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-24,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-25,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-26,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2735,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-27,1.0280,0,0,1.0000,0,0,4.9152,1.9856,0,2.5533,0,2.0864,1.7260,0,0,0,0,0,0,0,1.2277,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-28,1.0102,0,0,1.0000,0,0,4.8768,2.1159,0,2.5716,0,1.8919,1.7260,0,0,0,0,0,0,1.1095,1.0845,0,0,1.0866,0,0,0,0,1.0021,1.0107,1.0010,0,0,1.0013,1.0000,0,0,1.0000,0,1.0000 -2016-12-29,7.2405,0,3.8567,3.7347,1.0394,1.0001,3.0140,2.7029,0,2.3072,1.0000,1.6613,1.7260,0,0,0,0,1.0436,1.2430,1.1207,1.1039,0,0,1.0866,1.0011,1.0379,0,0,1.0217,1.0095,1.0011,1.0000,0,1.0011,1.0000,0,0,1.0000,1.0000,1.0000 -2016-12-30,244.8450,82.2879,3.8567,5.1450,5.9358,1.8025,2.9767,5.5485,0,2.2649,3.1975,1.5996,1.4078,1.1806,2.1933,1.3753,1.4992,1.4225,1.1539,1.1173,1.0974,1.1123,0,1.0801,1.0787,1.0500,1.0094,1.0131,1.0277,1.0076,1.0022,1.0000,1.0041,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.4459,30.3841,0,8.2387,38.4517,4.7123,7.3737,13.7412,1.0162,1.9038,1.0000,1.2381,1.2386,1.6099,1.2202,0,1.1213,1.1163,1.0513,1.0205,1.1361,1.0199,1.0760,0,1.0006,1.1462,1.0172,0,1.0100,1.0119,1.0187,1.0039,1.0018,1.0012,1.0000,1.0001,0,1.0000,1.0000,0 -2017-01-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index eecc5f8709..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" -2016-12,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0131,1.0144,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 -2017-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 7a2f5ec2c0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" -"2016 Q4",121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0131,1.0144,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 69f3edaf63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Galactic Astronomy] User Expansion Factor","[Systematic and Population Biology] User Expansion Factor","[Global Atmospheric Research] User Expansion Factor","[Sociology] User Expansion Factor","[Decision, Risk, and Management Science] User Expansion Factor","[Solid-State and Microstructures] User Expansion Factor","[Cell Biology] User Expansion Factor","[Solid State Chemistry and Polymers] User Expansion Factor","[Polar Ocean and Climate Systems] User Expansion Factor","[Quantum Electronics, Waves, and Beams] User Expansion Factor","[Polar Aeronomy and Astrophysics] User Expansion Factor","[Stellar Astronomy and Astrophysics] User Expansion Factor","[Biochemistry and Molecular Structure and Function] User Expansion Factor","[Tectonics] User Expansion Factor","[Economics] User Expansion Factor","[Design, Tools, and Test] User Expansion Factor","[Fluid, Particulate, and Hydraulic Systems] User Expansion Factor","[Arts] User Expansion Factor","[Emerging Technologies Initiation] User Expansion Factor","[Algebra and Number Theory] User Expansion Factor","[Physical Chemistry] User Expansion Factor","[Polar Meteorology] User Expansion Factor","[Design and Computer-Integrated Engineering] User Expansion Factor","[Theoretical Physics] User Expansion Factor","[Computer and Computation Theory] User Expansion Factor","[Metals, Ceramics, and Electronic Materials] User Expansion Factor","[Geology and Paleontology] User Expansion Factor","[Geophysics] User Expansion Factor","[Statistics and Probability] User Expansion Factor","[Experimental Systems] User Expansion Factor","[Systems Prototyping and Fabrication] User Expansion Factor","[Seismology] User Expansion Factor","[Extragalactic Astronomy and Cosmology] User Expansion Factor","[Operations Research and Production Systems] User Expansion Factor","[Biophysics] User Expansion Factor","[Mechanics and Materials] User Expansion Factor","[Law and Social Sciences] User Expansion Factor","[Organic and Macromolecular Chemistry] User Expansion Factor","[Structures and Building Systems] User Expansion Factor","[Volcanology and Mantle Geochemistry] User Expansion Factor" -2016,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0131,1.0144,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000 -2017,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,0,1.0058,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 59464b9877..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Ended" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 59464b9877..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Ended" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 59464b9877..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Ended" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 59464b9877..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Ended" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 0382aae0fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" -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 -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,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,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,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,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19044,3823,1700,788,1,732,0,34,90,68,63,3,28,60,20,39,6,8,7,0,4,19,3,5,11,14,10,4,1,0,4,6,1,2,3,1,1,1,1,1 -2016-12-31,22026,2719,933,869,999,29,4,180,10,24,83,97,28,5,24,22,1,16,16,4,13,1,8,4,4,0,0,6,7,0,4,1,2,1,0,0,1,0,0,0 -2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv deleted file mode 100644 index b916df7881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" -2016-12,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,7,24,23,4,17,20,11,9,15,14,10,10,8,0,8,7,3,3,3,1,2,1,1,1 -2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index ae53ebaa4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" -"2016 Q4",41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,7,24,23,4,17,20,11,9,15,14,10,10,8,0,8,7,3,3,3,1,2,1,1,1 -"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv deleted file mode 100644 index cd4df7eea6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Sociology] Number of Jobs Ended","[Physical Chemistry] Number of Jobs Ended","[Decision, Risk, and Management Science] Number of Jobs Ended","[Systems Prototyping and Fabrication] Number of Jobs Ended","[Tectonics] Number of Jobs Ended","[Galactic Astronomy] Number of Jobs Ended","[Polar Ocean and Climate Systems] Number of Jobs Ended","[Operations Research and Production Systems] Number of Jobs Ended","[Systematic and Population Biology] Number of Jobs Ended","[Polar Meteorology] Number of Jobs Ended","[Solid State Chemistry and Polymers] Number of Jobs Ended","[Solid-State and Microstructures] Number of Jobs Ended","[Mechanics and Materials] Number of Jobs Ended","[Cell Biology] Number of Jobs Ended","[Economics] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Statistics and Probability] Number of Jobs Ended","[Quantum Electronics, Waves, and Beams] Number of Jobs Ended","[Experimental Systems] Number of Jobs Ended","[Biophysics] Number of Jobs Ended","[Organic and Macromolecular Chemistry] Number of Jobs Ended","[Computer and Computation Theory] Number of Jobs Ended","[Stellar Astronomy and Astrophysics] Number of Jobs Ended","[Emerging Technologies Initiation] Number of Jobs Ended","[Biochemistry and Molecular Structure and Function] Number of Jobs Ended","[Geophysics] Number of Jobs Ended","[Algebra and Number Theory] Number of Jobs Ended","[Extragalactic Astronomy and Cosmology] Number of Jobs Ended","[Seismology] Number of Jobs Ended","[Design and Computer-Integrated Engineering] Number of Jobs Ended","[Structures and Building Systems] Number of Jobs Ended","[Metals, Ceramics, and Electronic Materials] Number of Jobs Ended","[Geology and Paleontology] Number of Jobs Ended","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Ended","[Theoretical Physics] Number of Jobs Ended","[Global Atmospheric Research] Number of Jobs Ended","[Polar Aeronomy and Astrophysics] Number of Jobs Ended","[Design, Tools, and Test] Number of Jobs Ended","[Law and Social Sciences] Number of Jobs Ended","[Volcanology and Mantle Geochemistry] Number of Jobs Ended" -2016,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,7,24,23,4,17,20,11,9,15,14,10,10,8,0,8,7,3,3,3,1,2,1,1,1 -2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 4e254f1104..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Max (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",336 -"Organic and Macromolecular Chemistry",192 -"Systematic and Population Biology",192 -"Global Atmospheric Research",160 -"Solid State Chemistry and Polymers",144 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Physical Chemistry",96 -"Quantum Electronics, Waves, and Beams",96 -"Metals, Ceramics, and Electronic Materials",72 -"Stellar Astronomy and Astrophysics",72 -Biophysics,64 -"Galactic Astronomy",64 -"Geology and Paleontology",60 -"Decision, Risk, and Management Science",56 -Economics,48 -"Polar Aeronomy and Astrophysics",40 -"Cell Biology",32 -"Design and Computer-Integrated Engineering",24 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Law and Social Sciences",16 -"Statistics and Probability",16 -"Algebra and Number Theory",12 -Arts,12 -"Biochemistry and Molecular Structure and Function",12 -"Experimental Systems",12 -"Polar Ocean and Climate Systems",12 -Seismology,12 -Sociology,12 -"Solid-State and Microstructures",12 -"Theoretical Physics",12 -"Computer and Computation Theory",1 -"Extragalactic Astronomy and Cosmology",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 4e254f1104..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Max (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",336 -"Organic and Macromolecular Chemistry",192 -"Systematic and Population Biology",192 -"Global Atmospheric Research",160 -"Solid State Chemistry and Polymers",144 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Physical Chemistry",96 -"Quantum Electronics, Waves, and Beams",96 -"Metals, Ceramics, and Electronic Materials",72 -"Stellar Astronomy and Astrophysics",72 -Biophysics,64 -"Galactic Astronomy",64 -"Geology and Paleontology",60 -"Decision, Risk, and Management Science",56 -Economics,48 -"Polar Aeronomy and Astrophysics",40 -"Cell Biology",32 -"Design and Computer-Integrated Engineering",24 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Law and Social Sciences",16 -"Statistics and Probability",16 -"Algebra and Number Theory",12 -Arts,12 -"Biochemistry and Molecular Structure and Function",12 -"Experimental Systems",12 -"Polar Ocean and Climate Systems",12 -Seismology,12 -Sociology,12 -"Solid-State and Microstructures",12 -"Theoretical Physics",12 -"Computer and Computation Theory",1 -"Extragalactic Astronomy and Cosmology",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 4e254f1104..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Max (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",336 -"Organic and Macromolecular Chemistry",192 -"Systematic and Population Biology",192 -"Global Atmospheric Research",160 -"Solid State Chemistry and Polymers",144 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Physical Chemistry",96 -"Quantum Electronics, Waves, and Beams",96 -"Metals, Ceramics, and Electronic Materials",72 -"Stellar Astronomy and Astrophysics",72 -Biophysics,64 -"Galactic Astronomy",64 -"Geology and Paleontology",60 -"Decision, Risk, and Management Science",56 -Economics,48 -"Polar Aeronomy and Astrophysics",40 -"Cell Biology",32 -"Design and Computer-Integrated Engineering",24 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Law and Social Sciences",16 -"Statistics and Probability",16 -"Algebra and Number Theory",12 -Arts,12 -"Biochemistry and Molecular Structure and Function",12 -"Experimental Systems",12 -"Polar Ocean and Climate Systems",12 -Seismology,12 -Sociology,12 -"Solid-State and Microstructures",12 -"Theoretical Physics",12 -"Computer and Computation Theory",1 -"Extragalactic Astronomy and Cosmology",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 4e254f1104..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Max (Core Count)" -"Fluid, Particulate, and Hydraulic Systems",336 -"Organic and Macromolecular Chemistry",192 -"Systematic and Population Biology",192 -"Global Atmospheric Research",160 -"Solid State Chemistry and Polymers",144 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Physical Chemistry",96 -"Quantum Electronics, Waves, and Beams",96 -"Metals, Ceramics, and Electronic Materials",72 -"Stellar Astronomy and Astrophysics",72 -Biophysics,64 -"Galactic Astronomy",64 -"Geology and Paleontology",60 -"Decision, Risk, and Management Science",56 -Economics,48 -"Polar Aeronomy and Astrophysics",40 -"Cell Biology",32 -"Design and Computer-Integrated Engineering",24 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Law and Social Sciences",16 -"Statistics and Probability",16 -"Algebra and Number Theory",12 -Arts,12 -"Biochemistry and Molecular Structure and Function",12 -"Experimental Systems",12 -"Polar Ocean and Climate Systems",12 -Seismology,12 -Sociology,12 -"Solid-State and Microstructures",12 -"Theoretical Physics",12 -"Computer and Computation Theory",1 -"Extragalactic Astronomy and Cosmology",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 57d5dfe7ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,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,12,0,0,0,12,1,0,0,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-24,0,0,0,0,0,0,0,0,12,0,0,0,12,1,0,0,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-25,0,0,0,0,0,0,0,0,24,0,0,0,12,1,0,0,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-26,0,0,0,0,0,0,0,0,24,0,0,0,12,1,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,144,0,0,0,32,96,0,72,64,16,0,0,0,0,8,0,0,0,0,16,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0 -2016-12-28,0,192,0,0,144,0,0,0,32,96,0,72,64,16,0,0,0,0,8,0,0,20,0,16,12,0,12,8,0,0,1,0,12,0,0,0,1,0,1,0 -2016-12-29,0,192,0,160,144,112,0,96,32,96,72,72,64,64,0,56,0,40,8,0,0,20,0,16,12,12,12,8,0,5,12,2,12,1,0,0,1,0,1,0 -2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,0,20,20,16,16,12,12,12,12,0,5,12,12,12,1,1,1,1,1,1,1 -2016-12-31,336,192,192,0,20,112,0,96,96,96,72,72,64,64,60,1,48,40,8,24,0,0,0,16,12,12,1,12,12,12,12,2,0,1,1,1,1,1,1,1 -2017-01-01,0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index db2acd75f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" -2016-12,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1 -2017-01,0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 77c072a4f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1 -"2017 Q1",0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 24284d7dc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Max (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Max (Core Count)","[Systematic and Population Biology] Job Size: Max (Core Count)","[Global Atmospheric Research] Job Size: Max (Core Count)","[Solid State Chemistry and Polymers] Job Size: Max (Core Count)","[Structures and Building Systems] Job Size: Max (Core Count)","[Design, Tools, and Test] Job Size: Max (Core Count)","[Emerging Technologies Initiation] Job Size: Max (Core Count)","[Physical Chemistry] Job Size: Max (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Max (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Max (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Max (Core Count)","[Biophysics] Job Size: Max (Core Count)","[Galactic Astronomy] Job Size: Max (Core Count)","[Geology and Paleontology] Job Size: Max (Core Count)","[Decision, Risk, and Management Science] Job Size: Max (Core Count)","[Economics] Job Size: Max (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Max (Core Count)","[Cell Biology] Job Size: Max (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Max (Core Count)","[Geophysics] Job Size: Max (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Max (Core Count)","[Law and Social Sciences] Job Size: Max (Core Count)","[Statistics and Probability] Job Size: Max (Core Count)","[Algebra and Number Theory] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Max (Core Count)","[Experimental Systems] Job Size: Max (Core Count)","[Polar Ocean and Climate Systems] Job Size: Max (Core Count)","[Seismology] Job Size: Max (Core Count)","[Sociology] Job Size: Max (Core Count)","[Solid-State and Microstructures] Job Size: Max (Core Count)","[Theoretical Physics] Job Size: Max (Core Count)","[Computer and Computation Theory] Job Size: Max (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Max (Core Count)","[Mechanics and Materials] Job Size: Max (Core Count)","[Operations Research and Production Systems] Job Size: Max (Core Count)","[Polar Meteorology] Job Size: Max (Core Count)","[Systems Prototyping and Fabrication] Job Size: Max (Core Count)","[Tectonics] Job Size: Max (Core Count)" -2016,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1 -2017,0,32,192,160,0,0,0,96,48,96,0,72,64,16,5,0,48,0,8,24,0,0,0,16,12,12,0,8,12,12,12,2,0,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index a8651adb87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Min (Core Count)" -"Global Atmospheric Research",160 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Metals, Ceramics, and Electronic Materials",72 -"Fluid, Particulate, and Hydraulic Systems",48 -"Stellar Astronomy and Astrophysics",36 -"Organic and Macromolecular Chemistry",32 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Design and Computer-Integrated Engineering",16 -"Law and Social Sciences",16 -"Polar Aeronomy and Astrophysics",16 -"Algebra and Number Theory",12 -"Polar Ocean and Climate Systems",12 -"Solid State Chemistry and Polymers",12 -"Theoretical Physics",12 -"Experimental Systems",8 -"Physical Chemistry",8 -"Systematic and Population Biology",8 -"Geology and Paleontology",5 -Seismology,5 -"Solid-State and Microstructures",2 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -Economics,1 -"Extragalactic Astronomy and Cosmology",1 -"Galactic Astronomy",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Quantum Electronics, Waves, and Beams",1 -Sociology,1 -"Statistics and Probability",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index a8651adb87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Min (Core Count)" -"Global Atmospheric Research",160 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Metals, Ceramics, and Electronic Materials",72 -"Fluid, Particulate, and Hydraulic Systems",48 -"Stellar Astronomy and Astrophysics",36 -"Organic and Macromolecular Chemistry",32 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Design and Computer-Integrated Engineering",16 -"Law and Social Sciences",16 -"Polar Aeronomy and Astrophysics",16 -"Algebra and Number Theory",12 -"Polar Ocean and Climate Systems",12 -"Solid State Chemistry and Polymers",12 -"Theoretical Physics",12 -"Experimental Systems",8 -"Physical Chemistry",8 -"Systematic and Population Biology",8 -"Geology and Paleontology",5 -Seismology,5 -"Solid-State and Microstructures",2 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -Economics,1 -"Extragalactic Astronomy and Cosmology",1 -"Galactic Astronomy",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Quantum Electronics, Waves, and Beams",1 -Sociology,1 -"Statistics and Probability",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index a8651adb87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Min (Core Count)" -"Global Atmospheric Research",160 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Metals, Ceramics, and Electronic Materials",72 -"Fluid, Particulate, and Hydraulic Systems",48 -"Stellar Astronomy and Astrophysics",36 -"Organic and Macromolecular Chemistry",32 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Design and Computer-Integrated Engineering",16 -"Law and Social Sciences",16 -"Polar Aeronomy and Astrophysics",16 -"Algebra and Number Theory",12 -"Polar Ocean and Climate Systems",12 -"Solid State Chemistry and Polymers",12 -"Theoretical Physics",12 -"Experimental Systems",8 -"Physical Chemistry",8 -"Systematic and Population Biology",8 -"Geology and Paleontology",5 -Seismology,5 -"Solid-State and Microstructures",2 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -Economics,1 -"Extragalactic Astronomy and Cosmology",1 -"Galactic Astronomy",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Quantum Electronics, Waves, and Beams",1 -Sociology,1 -"Statistics and Probability",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index a8651adb87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Job Size: Min (Core Count)" -"Global Atmospheric Research",160 -"Structures and Building Systems",112 -"Design, Tools, and Test",108 -"Emerging Technologies Initiation",96 -"Metals, Ceramics, and Electronic Materials",72 -"Fluid, Particulate, and Hydraulic Systems",48 -"Stellar Astronomy and Astrophysics",36 -"Organic and Macromolecular Chemistry",32 -Geophysics,20 -"Volcanology and Mantle Geochemistry",20 -"Design and Computer-Integrated Engineering",16 -"Law and Social Sciences",16 -"Polar Aeronomy and Astrophysics",16 -"Algebra and Number Theory",12 -"Polar Ocean and Climate Systems",12 -"Solid State Chemistry and Polymers",12 -"Theoretical Physics",12 -"Experimental Systems",8 -"Physical Chemistry",8 -"Systematic and Population Biology",8 -"Geology and Paleontology",5 -Seismology,5 -"Solid-State and Microstructures",2 -Arts,1 -"Biochemistry and Molecular Structure and Function",1 -Biophysics,1 -"Cell Biology",1 -"Computer and Computation Theory",1 -"Decision, Risk, and Management Science",1 -Economics,1 -"Extragalactic Astronomy and Cosmology",1 -"Galactic Astronomy",1 -"Mechanics and Materials",1 -"Operations Research and Production Systems",1 -"Polar Meteorology",1 -"Quantum Electronics, Waves, and Beams",1 -Sociology,1 -"Statistics and Probability",1 -"Systems Prototyping and Fabrication",1 -Tectonics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 3ab754cb2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,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,12,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,16,0,0 -2016-12-27,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,32,0,0,8,0,0,0,0,0,12,12,8,0,0,0,0,1,0,0,0,96,1,1,0,0 -2016-12-28,0,0,0,0,0,0,48,112,0,20,0,0,0,12,0,12,12,8,8,0,0,0,0,0,12,12,8,0,0,0,0,1,0,1,0,96,1,1,1,0 -2016-12-29,160,112,0,96,72,0,48,112,0,20,0,0,40,12,0,12,12,8,8,0,0,5,2,4,12,12,1,1,56,0,0,1,0,1,0,1,1,1,1,0 -2016-12-30,160,112,108,96,72,48,48,32,20,20,0,16,16,12,0,12,12,8,8,8,5,5,2,1,1,12,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,0,112,0,96,72,336,36,64,0,0,16,0,40,12,12,12,0,8,8,12,5,8,2,1,1,8,8,1,1,12,1,1,1,1,1,1,1,1,1,1 -2017-01-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index cec71756a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" -2016-12,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 03768010e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" -"2016 Q4",160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index b7267b1fd9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Global Atmospheric Research] Job Size: Min (Core Count)","[Structures and Building Systems] Job Size: Min (Core Count)","[Design, Tools, and Test] Job Size: Min (Core Count)","[Emerging Technologies Initiation] Job Size: Min (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Min (Core Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Min (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Min (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Min (Core Count)","[Geophysics] Job Size: Min (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Min (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Min (Core Count)","[Law and Social Sciences] Job Size: Min (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Min (Core Count)","[Algebra and Number Theory] Job Size: Min (Core Count)","[Polar Ocean and Climate Systems] Job Size: Min (Core Count)","[Solid State Chemistry and Polymers] Job Size: Min (Core Count)","[Theoretical Physics] Job Size: Min (Core Count)","[Experimental Systems] Job Size: Min (Core Count)","[Physical Chemistry] Job Size: Min (Core Count)","[Systematic and Population Biology] Job Size: Min (Core Count)","[Geology and Paleontology] Job Size: Min (Core Count)","[Seismology] Job Size: Min (Core Count)","[Solid-State and Microstructures] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Min (Core Count)","[Biophysics] Job Size: Min (Core Count)","[Cell Biology] Job Size: Min (Core Count)","[Computer and Computation Theory] Job Size: Min (Core Count)","[Decision, Risk, and Management Science] Job Size: Min (Core Count)","[Economics] Job Size: Min (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Min (Core Count)","[Galactic Astronomy] Job Size: Min (Core Count)","[Mechanics and Materials] Job Size: Min (Core Count)","[Operations Research and Production Systems] Job Size: Min (Core Count)","[Polar Meteorology] Job Size: Min (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Min (Core Count)","[Sociology] Job Size: Min (Core Count)","[Statistics and Probability] Job Size: Min (Core Count)","[Systems Prototyping and Fabrication] Job Size: Min (Core Count)","[Tectonics] Job Size: Min (Core Count)" -2016,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,5,12,2,4,0,1,8,0,0,12,0,1,1,1,1,8,1,8,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 72f7c36935..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 72f7c36935..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 72f7c36935..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 72f7c36935..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -parameters - -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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 208e666633..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 68de651767..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 167ebb42c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 93b968fe7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI Group" -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)","[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/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 54e1885868..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Running" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 54e1885868..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Running" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 54e1885868..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Running" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 54e1885868..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Running" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 11223eff77..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" -2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1,14,0,0,0,6,0,0,0,0,3,0,0,5,0,0,6,3,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,1,20,0,190,0,6,0,147,0,0,12,0,0,10,0,0,17,15,5,2,9,0,2,0,1,0,9,0,0,0,0,0,0,0,3,0,0,0,0,1 -2016-12-29,256,54,1,960,0,24,0,235,0,0,25,1,0,62,0,11,21,23,16,2,9,5,4,3,1,0,9,0,1,0,4,7,0,0,3,1,1,0,0,1 -2016-12-30,19313,3859,1700,1635,719,740,0,252,90,68,96,4,28,68,20,65,21,28,24,2,13,20,7,8,15,14,11,4,1,0,8,7,3,3,3,1,2,1,1,1 -2016-12-31,22516,2740,933,1637,999,30,16,255,10,24,83,98,28,12,26,27,48,24,22,6,13,1,12,7,4,0,1,6,7,9,4,1,2,1,0,0,1,0,0,0 -2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 66e065ba38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" -2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 -2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 25be773686..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" -"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 -"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 7c07a41a14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Sociology] Number of Jobs Running","[Physical Chemistry] Number of Jobs Running","[Decision, Risk, and Management Science] Number of Jobs Running","[Systems Prototyping and Fabrication] Number of Jobs Running","[Tectonics] Number of Jobs Running","[Galactic Astronomy] Number of Jobs Running","[Polar Ocean and Climate Systems] Number of Jobs Running","[Operations Research and Production Systems] Number of Jobs Running","[Systematic and Population Biology] Number of Jobs Running","[Polar Meteorology] Number of Jobs Running","[Solid State Chemistry and Polymers] Number of Jobs Running","[Solid-State and Microstructures] Number of Jobs Running","[Mechanics and Materials] Number of Jobs Running","[Cell Biology] Number of Jobs Running","[Economics] Number of Jobs Running","[Arts] Number of Jobs Running","[Statistics and Probability] Number of Jobs Running","[Quantum Electronics, Waves, and Beams] Number of Jobs Running","[Experimental Systems] Number of Jobs Running","[Biophysics] Number of Jobs Running","[Organic and Macromolecular Chemistry] Number of Jobs Running","[Computer and Computation Theory] Number of Jobs Running","[Stellar Astronomy and Astrophysics] Number of Jobs Running","[Emerging Technologies Initiation] Number of Jobs Running","[Biochemistry and Molecular Structure and Function] Number of Jobs Running","[Geophysics] Number of Jobs Running","[Algebra and Number Theory] Number of Jobs Running","[Extragalactic Astronomy and Cosmology] Number of Jobs Running","[Seismology] Number of Jobs Running","[Design and Computer-Integrated Engineering] Number of Jobs Running","[Structures and Building Systems] Number of Jobs Running","[Metals, Ceramics, and Electronic Materials] Number of Jobs Running","[Geology and Paleontology] Number of Jobs Running","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Running","[Theoretical Physics] Number of Jobs Running","[Global Atmospheric Research] Number of Jobs Running","[Polar Aeronomy and Astrophysics] Number of Jobs Running","[Design, Tools, and Test] Number of Jobs Running","[Law and Social Sciences] Number of Jobs Running","[Volcanology and Mantle Geochemistry] Number of Jobs Running" -2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 -2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,0,2,9,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index f9365463fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Started" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index f9365463fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Started" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index f9365463fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Started" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index f9365463fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Started" -Sociology,55001 -"Physical Chemistry",6944 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",756 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",239 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Global Atmospheric Research",2 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 5811ad30c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" -2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,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-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,0 -2016-12-25,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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-27,1,10,0,0,0,5,0,0,0,0,3,0,0,5,0,0,1,3,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,6,0,190,0,0,0,147,0,0,9,0,0,5,0,0,11,12,5,0,9,0,1,0,0,0,9,0,0,0,0,0,0,0,3,0,0,0,0,1 -2016-12-29,255,34,1,770,0,18,0,88,0,0,13,1,0,52,0,11,4,8,11,0,0,5,2,3,0,0,0,0,1,0,4,7,0,0,0,1,1,0,0,0 -2016-12-30,19057,3805,1699,675,719,716,0,17,90,68,71,3,28,6,20,54,0,5,8,0,4,15,3,5,14,14,2,4,0,0,4,0,3,3,0,0,1,1,1,0 -2016-12-31,22247,2704,933,790,281,22,16,37,10,24,50,97,28,4,26,1,33,4,5,4,4,0,8,4,0,0,0,6,7,9,0,0,0,0,0,0,0,0,0,0 -2017-01-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index b3ab25f7f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" -2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 -2017-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 4ddd161523..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" -"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 -"2017 Q1",13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 6814a45bab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Sociology] Number of Jobs Started","[Physical Chemistry] Number of Jobs Started","[Decision, Risk, and Management Science] Number of Jobs Started","[Systems Prototyping and Fabrication] Number of Jobs Started","[Tectonics] Number of Jobs Started","[Galactic Astronomy] Number of Jobs Started","[Polar Ocean and Climate Systems] Number of Jobs Started","[Operations Research and Production Systems] Number of Jobs Started","[Systematic and Population Biology] Number of Jobs Started","[Polar Meteorology] Number of Jobs Started","[Solid State Chemistry and Polymers] Number of Jobs Started","[Solid-State and Microstructures] Number of Jobs Started","[Mechanics and Materials] Number of Jobs Started","[Cell Biology] Number of Jobs Started","[Economics] Number of Jobs Started","[Arts] Number of Jobs Started","[Statistics and Probability] Number of Jobs Started","[Quantum Electronics, Waves, and Beams] Number of Jobs Started","[Experimental Systems] Number of Jobs Started","[Biophysics] Number of Jobs Started","[Organic and Macromolecular Chemistry] Number of Jobs Started","[Computer and Computation Theory] Number of Jobs Started","[Stellar Astronomy and Astrophysics] Number of Jobs Started","[Emerging Technologies Initiation] Number of Jobs Started","[Biochemistry and Molecular Structure and Function] Number of Jobs Started","[Geophysics] Number of Jobs Started","[Algebra and Number Theory] Number of Jobs Started","[Extragalactic Astronomy and Cosmology] Number of Jobs Started","[Seismology] Number of Jobs Started","[Design and Computer-Integrated Engineering] Number of Jobs Started","[Structures and Building Systems] Number of Jobs Started","[Metals, Ceramics, and Electronic Materials] Number of Jobs Started","[Geology and Paleontology] Number of Jobs Started","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Started","[Theoretical Physics] Number of Jobs Started","[Global Atmospheric Research] Number of Jobs Started","[Polar Aeronomy and Astrophysics] Number of Jobs Started","[Design, Tools, and Test] Number of Jobs Started","[Law and Social Sciences] Number of Jobs Started","[Volcanology and Mantle Geochemistry] Number of Jobs Started" -2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,1,2,1,1,1 -2017,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 5cad7fe104..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Submitted" -Sociology,49664 -"Physical Chemistry",6927 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2586 -Tectonics,719 -"Polar Ocean and Climate Systems",693 -"Operations Research and Production Systems",308 -"Polar Meteorology",154 -"Systematic and Population Biology",123 -"Mechanics and Materials",84 -Economics,69 -"Cell Biology",55 -"Statistics and Probability",50 -"Galactic Astronomy",47 -"Experimental Systems",37 -Arts,31 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Quantum Electronics, Waves, and Beams",22 -"Computer and Computation Theory",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",14 -Geophysics,14 -"Stellar Astronomy and Astrophysics",14 -"Solid State Chemistry and Polymers",13 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Theoretical Physics",3 -"Design, Tools, and Test",1 -"Law and Social Sciences",1 -"Polar Aeronomy and Astrophysics",1 -"Solid-State and Microstructures",1 -"Volcanology and Mantle Geochemistry",1 -"Fluid, Particulate, and Hydraulic Systems",0 -"Global Atmospheric Research",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index fb2d491b59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Submitted" -Sociology,53071 -"Physical Chemistry",6943 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",693 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",164 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index fb2d491b59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Submitted" -Sociology,53071 -"Physical Chemistry",6943 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",693 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",164 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index fb2d491b59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Number of Jobs Submitted" -Sociology,53071 -"Physical Chemistry",6943 -"Decision, Risk, and Management Science",2633 -"Systems Prototyping and Fabrication",2629 -Tectonics,1000 -"Galactic Astronomy",763 -"Polar Ocean and Climate Systems",693 -"Operations Research and Production Systems",308 -"Systematic and Population Biology",164 -"Polar Meteorology",154 -"Solid State Chemistry and Polymers",146 -"Solid-State and Microstructures",101 -"Mechanics and Materials",84 -"Cell Biology",72 -Economics,69 -Arts,66 -"Statistics and Probability",54 -"Quantum Electronics, Waves, and Beams",44 -"Experimental Systems",37 -Biophysics,31 -"Organic and Macromolecular Chemistry",25 -"Computer and Computation Theory",20 -"Stellar Astronomy and Astrophysics",20 -"Emerging Technologies Initiation",16 -"Biochemistry and Molecular Structure and Function",15 -Geophysics,14 -"Algebra and Number Theory",11 -"Extragalactic Astronomy and Cosmology",10 -Seismology,10 -"Design and Computer-Integrated Engineering",9 -"Structures and Building Systems",8 -"Metals, Ceramics, and Electronic Materials",7 -"Geology and Paleontology",4 -"Fluid, Particulate, and Hydraulic Systems",3 -"Theoretical Physics",3 -"Polar Aeronomy and Astrophysics",2 -"Design, Tools, and Test",1 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 5f48ded37f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,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-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,0 -2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,1,5,0,0,1,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-28,0,4,0,190,0,0,147,0,0,0,0,0,11,0,5,0,0,9,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,1,0,0 -2016-12-29,205,32,1,770,0,0,88,0,0,0,0,50,0,4,11,11,0,0,1,5,3,0,0,1,10,0,0,1,0,4,7,0,0,0,0,1,1,0,0,0 -2016-12-30,18462,3801,1699,675,719,0,17,68,50,28,20,5,0,15,8,19,0,4,5,15,5,14,14,1,1,2,4,0,0,4,0,3,0,1,1,0,0,0,0,0 -2016-12-31,19485,2699,933,747,0,16,37,24,9,28,26,0,33,21,5,1,4,4,4,0,4,0,0,7,2,0,6,7,9,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,11511,380,0,204,0,677,19,62,64,28,23,0,0,1,8,0,25,8,12,0,4,0,0,5,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index ff3a785a64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted" -2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,2,1,1,1,1 -2017-01,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 0f9fd295a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted" -"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,2,1,1,1,1 -"2017 Q1",11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 027c098e45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Sociology] Number of Jobs Submitted","[Physical Chemistry] Number of Jobs Submitted","[Decision, Risk, and Management Science] Number of Jobs Submitted","[Systems Prototyping and Fabrication] Number of Jobs Submitted","[Tectonics] Number of Jobs Submitted","[Galactic Astronomy] Number of Jobs Submitted","[Polar Ocean and Climate Systems] Number of Jobs Submitted","[Operations Research and Production Systems] Number of Jobs Submitted","[Systematic and Population Biology] Number of Jobs Submitted","[Polar Meteorology] Number of Jobs Submitted","[Solid State Chemistry and Polymers] Number of Jobs Submitted","[Solid-State and Microstructures] Number of Jobs Submitted","[Mechanics and Materials] Number of Jobs Submitted","[Cell Biology] Number of Jobs Submitted","[Economics] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Statistics and Probability] Number of Jobs Submitted","[Quantum Electronics, Waves, and Beams] Number of Jobs Submitted","[Experimental Systems] Number of Jobs Submitted","[Biophysics] Number of Jobs Submitted","[Organic and Macromolecular Chemistry] Number of Jobs Submitted","[Computer and Computation Theory] Number of Jobs Submitted","[Stellar Astronomy and Astrophysics] Number of Jobs Submitted","[Emerging Technologies Initiation] Number of Jobs Submitted","[Biochemistry and Molecular Structure and Function] Number of Jobs Submitted","[Geophysics] Number of Jobs Submitted","[Algebra and Number Theory] Number of Jobs Submitted","[Extragalactic Astronomy and Cosmology] Number of Jobs Submitted","[Seismology] Number of Jobs Submitted","[Design and Computer-Integrated Engineering] Number of Jobs Submitted","[Structures and Building Systems] Number of Jobs Submitted","[Metals, Ceramics, and Electronic Materials] Number of Jobs Submitted","[Geology and Paleontology] Number of Jobs Submitted","[Fluid, Particulate, and Hydraulic Systems] Number of Jobs Submitted","[Theoretical Physics] Number of Jobs Submitted","[Polar Aeronomy and Astrophysics] Number of Jobs Submitted","[Design, Tools, and Test] Number of Jobs Submitted","[Global Atmospheric Research] Number of Jobs Submitted","[Law and Social Sciences] Number of Jobs Submitted","[Volcanology and Mantle Geochemistry] Number of Jobs Submitted" -2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,54,32,29,6,17,20,15,12,15,14,11,10,8,9,8,7,3,3,3,2,1,1,1,1 -2017,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 57e99001f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","CPU Hours: Total" -Sociology,160661.1219 -"Quantum Electronics, Waves, and Beams",147374.4353 -"Organic and Macromolecular Chemistry",119274.1289 -"Physical Chemistry",69231.4289 -"Systems Prototyping and Fabrication",67004.1206 -"Statistics and Probability",34897.7289 -"Solid State Chemistry and Polymers",33446.5633 -"Stellar Astronomy and Astrophysics",21995.7300 -"Emerging Technologies Initiation",19473.8133 -"Polar Ocean and Climate Systems",19117.7667 -"Metals, Ceramics, and Electronic Materials",18391.0000 -"Operations Research and Production Systems",15354.0758 -"Structures and Building Systems",14141.1200 -"Galactic Astronomy",13804.8528 -"Fluid, Particulate, and Hydraulic Systems",13105.9733 -Arts,12416.7611 -Biophysics,10880.2728 -"Cell Biology",8707.0903 -Tectonics,8590.5158 -"Experimental Systems",7367.1656 -"Design and Computer-Integrated Engineering",5262.3156 -"Algebra and Number Theory",5198.0500 -"Solid-State and Microstructures",2039.1683 -"Polar Aeronomy and Astrophysics",2013.9756 -"Theoretical Physics",1588.9133 -"Systematic and Population Biology",1518.1478 -Economics,1446.9428 -"Global Atmospheric Research",1444.4889 -"Decision, Risk, and Management Science",1183.6917 -"Biochemistry and Molecular Structure and Function",1021.5447 -"Volcanology and Mantle Geochemistry",960.1333 -Seismology,622.6494 -"Geology and Paleontology",590.3347 -"Polar Meteorology",135.7597 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Extragalactic Astronomy and Cosmology",59.8692 -"Design, Tools, and Test",28.1400 -Geophysics,22.5389 -"Law and Social Sciences",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 57e99001f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","CPU Hours: Total" -Sociology,160661.1219 -"Quantum Electronics, Waves, and Beams",147374.4353 -"Organic and Macromolecular Chemistry",119274.1289 -"Physical Chemistry",69231.4289 -"Systems Prototyping and Fabrication",67004.1206 -"Statistics and Probability",34897.7289 -"Solid State Chemistry and Polymers",33446.5633 -"Stellar Astronomy and Astrophysics",21995.7300 -"Emerging Technologies Initiation",19473.8133 -"Polar Ocean and Climate Systems",19117.7667 -"Metals, Ceramics, and Electronic Materials",18391.0000 -"Operations Research and Production Systems",15354.0758 -"Structures and Building Systems",14141.1200 -"Galactic Astronomy",13804.8528 -"Fluid, Particulate, and Hydraulic Systems",13105.9733 -Arts,12416.7611 -Biophysics,10880.2728 -"Cell Biology",8707.0903 -Tectonics,8590.5158 -"Experimental Systems",7367.1656 -"Design and Computer-Integrated Engineering",5262.3156 -"Algebra and Number Theory",5198.0500 -"Solid-State and Microstructures",2039.1683 -"Polar Aeronomy and Astrophysics",2013.9756 -"Theoretical Physics",1588.9133 -"Systematic and Population Biology",1518.1478 -Economics,1446.9428 -"Global Atmospheric Research",1444.4889 -"Decision, Risk, and Management Science",1183.6917 -"Biochemistry and Molecular Structure and Function",1021.5447 -"Volcanology and Mantle Geochemistry",960.1333 -Seismology,622.6494 -"Geology and Paleontology",590.3347 -"Polar Meteorology",135.7597 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Extragalactic Astronomy and Cosmology",59.8692 -"Design, Tools, and Test",28.1400 -Geophysics,22.5389 -"Law and Social Sciences",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 57e99001f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","CPU Hours: Total" -Sociology,160661.1219 -"Quantum Electronics, Waves, and Beams",147374.4353 -"Organic and Macromolecular Chemistry",119274.1289 -"Physical Chemistry",69231.4289 -"Systems Prototyping and Fabrication",67004.1206 -"Statistics and Probability",34897.7289 -"Solid State Chemistry and Polymers",33446.5633 -"Stellar Astronomy and Astrophysics",21995.7300 -"Emerging Technologies Initiation",19473.8133 -"Polar Ocean and Climate Systems",19117.7667 -"Metals, Ceramics, and Electronic Materials",18391.0000 -"Operations Research and Production Systems",15354.0758 -"Structures and Building Systems",14141.1200 -"Galactic Astronomy",13804.8528 -"Fluid, Particulate, and Hydraulic Systems",13105.9733 -Arts,12416.7611 -Biophysics,10880.2728 -"Cell Biology",8707.0903 -Tectonics,8590.5158 -"Experimental Systems",7367.1656 -"Design and Computer-Integrated Engineering",5262.3156 -"Algebra and Number Theory",5198.0500 -"Solid-State and Microstructures",2039.1683 -"Polar Aeronomy and Astrophysics",2013.9756 -"Theoretical Physics",1588.9133 -"Systematic and Population Biology",1518.1478 -Economics,1446.9428 -"Global Atmospheric Research",1444.4889 -"Decision, Risk, and Management Science",1183.6917 -"Biochemistry and Molecular Structure and Function",1021.5447 -"Volcanology and Mantle Geochemistry",960.1333 -Seismology,622.6494 -"Geology and Paleontology",590.3347 -"Polar Meteorology",135.7597 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Extragalactic Astronomy and Cosmology",59.8692 -"Design, Tools, and Test",28.1400 -Geophysics,22.5389 -"Law and Social Sciences",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 57e99001f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","CPU Hours: Total" -Sociology,160661.1219 -"Quantum Electronics, Waves, and Beams",147374.4353 -"Organic and Macromolecular Chemistry",119274.1289 -"Physical Chemistry",69231.4289 -"Systems Prototyping and Fabrication",67004.1206 -"Statistics and Probability",34897.7289 -"Solid State Chemistry and Polymers",33446.5633 -"Stellar Astronomy and Astrophysics",21995.7300 -"Emerging Technologies Initiation",19473.8133 -"Polar Ocean and Climate Systems",19117.7667 -"Metals, Ceramics, and Electronic Materials",18391.0000 -"Operations Research and Production Systems",15354.0758 -"Structures and Building Systems",14141.1200 -"Galactic Astronomy",13804.8528 -"Fluid, Particulate, and Hydraulic Systems",13105.9733 -Arts,12416.7611 -Biophysics,10880.2728 -"Cell Biology",8707.0903 -Tectonics,8590.5158 -"Experimental Systems",7367.1656 -"Design and Computer-Integrated Engineering",5262.3156 -"Algebra and Number Theory",5198.0500 -"Solid-State and Microstructures",2039.1683 -"Polar Aeronomy and Astrophysics",2013.9756 -"Theoretical Physics",1588.9133 -"Systematic and Population Biology",1518.1478 -Economics,1446.9428 -"Global Atmospheric Research",1444.4889 -"Decision, Risk, and Management Science",1183.6917 -"Biochemistry and Molecular Structure and Function",1021.5447 -"Volcanology and Mantle Geochemistry",960.1333 -Seismology,622.6494 -"Geology and Paleontology",590.3347 -"Polar Meteorology",135.7597 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Extragalactic Astronomy and Cosmology",59.8692 -"Design, Tools, and Test",28.1400 -Geophysics,22.5389 -"Law and Social Sciences",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index c0ca4f1d48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" -2016-12-22,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,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,288.0000,0,0,0,0,0,0,0,0,0,8.6036,0,0,288.0000,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-24,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.0000,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-25,0,0,0,466.2700,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.0000,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-26,0,0,0,1728.0000,0,216.3333,0,0,0,0,0,0,0,24.0000,0,0,288.0000,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-27,3.2167,3739.4133,0,2293.7600,0,1924.7214,4298.8089,1487.8200,0,0,0,0,0,476.7422,0,0,531.1822,558.6133,0,0,0,0,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,0,0,0 -2016-12-28,24.0000,21931.9200,29467.4711,9954.8311,953.0369,2334.7378,6587.9644,2341.3467,0,0,0,1962.8444,0,1944.0000,0,0,1824.0000,1411.0667,0,351.5933,0,336.4567,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,0,0,0 -2016-12-29,1793.4019,49556.3222,39552.0000,15738.2700,12583.2597,7668.0844,12041.5822,4466.4000,1834.4800,0,5821.2600,3901.6422,1643.9111,2568.7161,0,516.0911,1824.0000,2203.9531,0,1349.9467,0,2592.0000,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,10.0983,0,0,0,0,0 -2016-12-30,62498.5789,46993.5803,39578.0711,16799.6656,21766.1511,6074.5967,7951.5333,4841.8833,6126.0000,0,10979.2200,5473.3125,9211.3156,5521.6442,7404.4267,6971.0514,1824.0000,2108.7128,3055.8617,2630.7078,0,1921.0433,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1061.9836,198.9664,386.1222,68.0319,65.9958,108.1047,82.1119,27.2308,13.9453,28.1400,22.5389,1.0400 -2016-12-31,87876.5508,22254.2050,10619.6356,14731.3744,20518.0064,11780.8131,2566.6744,5674.2567,6839.5200,37.7500,1590.5200,2761.8142,3285.8933,2841.5344,5701.5467,4629.6697,1827.6067,1437.7244,5534.6542,2071.8422,3473.9867,288.0000,1428.0200,294.9778,0,125.4733,914.2433,0,13.7992,7.7117,0,491.1800,502.9333,25.9131,8.6314,27.2439,45.9239,0,0,0 -2017-01-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0bdd6daa86..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" -2016-12,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29999.2867,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,59.8692,28.1400,22.5389,1.0400 -2017-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 58b7d75d4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" -"2016 Q4",152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29999.2867,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,59.8692,28.1400,22.5389,1.0400 -"2017 Q1",8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 89136c4c16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Sociology] CPU Hours: Total","[Quantum Electronics, Waves, and Beams] CPU Hours: Total","[Organic and Macromolecular Chemistry] CPU Hours: Total","[Physical Chemistry] CPU Hours: Total","[Systems Prototyping and Fabrication] CPU Hours: Total","[Statistics and Probability] CPU Hours: Total","[Solid State Chemistry and Polymers] CPU Hours: Total","[Stellar Astronomy and Astrophysics] CPU Hours: Total","[Emerging Technologies Initiation] CPU Hours: Total","[Polar Ocean and Climate Systems] CPU Hours: Total","[Metals, Ceramics, and Electronic Materials] CPU Hours: Total","[Operations Research and Production Systems] CPU Hours: Total","[Structures and Building Systems] CPU Hours: Total","[Galactic Astronomy] CPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Biophysics] CPU Hours: Total","[Cell Biology] CPU Hours: Total","[Tectonics] CPU Hours: Total","[Experimental Systems] CPU Hours: Total","[Design and Computer-Integrated Engineering] CPU Hours: Total","[Algebra and Number Theory] CPU Hours: Total","[Solid-State and Microstructures] CPU Hours: Total","[Polar Aeronomy and Astrophysics] CPU Hours: Total","[Theoretical Physics] CPU Hours: Total","[Systematic and Population Biology] CPU Hours: Total","[Economics] CPU Hours: Total","[Global Atmospheric Research] CPU Hours: Total","[Decision, Risk, and Management Science] CPU Hours: Total","[Biochemistry and Molecular Structure and Function] CPU Hours: Total","[Volcanology and Mantle Geochemistry] CPU Hours: Total","[Seismology] CPU Hours: Total","[Geology and Paleontology] CPU Hours: Total","[Polar Meteorology] CPU Hours: Total","[Computer and Computation Theory] CPU Hours: Total","[Mechanics and Materials] CPU Hours: Total","[Extragalactic Astronomy and Cosmology] CPU Hours: Total","[Design, Tools, and Test] CPU Hours: Total","[Geophysics] CPU Hours: Total","[Law and Social Sciences] CPU Hours: Total" -2016,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29999.2867,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,59.8692,28.1400,22.5389,1.0400 -2017,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7daadb4f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Total" -Biophysics,506.9128 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 7daadb4f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Total" -Biophysics,506.9128 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7daadb4f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Total" -Biophysics,506.9128 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7daadb4f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","GPU Hours: Total" -Biophysics,506.9128 -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Cell Biology",0.0000 -"Computer and Computation Theory",0.0000 -"Decision, Risk, and Management Science",0.0000 -"Design and Computer-Integrated Engineering",0.0000 -"Design, Tools, and Test",0.0000 -Economics,0.0000 -"Emerging Technologies Initiation",0.0000 -"Experimental Systems",0.0000 -"Extragalactic Astronomy and Cosmology",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Operations Research and Production Systems",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Polar Ocean and Climate Systems",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Stellar Astronomy and Astrophysics",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -"Systems Prototyping and Fabrication",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 4e70e283a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-27,48.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 -2016-12-28,48.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 -2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 -2017-01-01,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 99fdb962b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 8c9e41491d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index dfd98f33e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 91e7ee4e0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Node Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -"Quantum Electronics, Waves, and Beams",12343.6392 -Tectonics,8590.5158 -"Organic and Macromolecular Chemistry",7492.8064 -"Physical Chemistry",5412.7517 -"Statistics and Probability",2845.5633 -"Solid State Chemistry and Polymers",2367.6417 -"Stellar Astronomy and Astrophysics",1973.0481 -"Emerging Technologies Initiation",1622.8178 -"Polar Ocean and Climate Systems",1593.1472 -"Metals, Ceramics, and Electronic Materials",1532.5833 -"Cell Biology",1526.7692 -"Galactic Astronomy",1376.1239 -Biophysics,1233.9042 -Arts,1140.0328 -"Fluid, Particulate, and Hydraulic Systems",1092.1644 -"Experimental Systems",896.5864 -"Structures and Building Systems",883.8200 -"Solid-State and Microstructures",802.6467 -"Design and Computer-Integrated Engineering",458.9083 -"Algebra and Number Theory",433.1708 -"Decision, Risk, and Management Science",336.9017 -"Biochemistry and Molecular Structure and Function",251.4806 -"Global Atmospheric Research",180.5611 -"Systematic and Population Biology",150.5339 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -Economics,120.6086 -"Computer and Computation Theory",100.8417 -"Polar Aeronomy and Astrophysics",100.6989 -"Mechanics and Materials",81.6261 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -"Geology and Paleontology",54.6022 -"Volcanology and Mantle Geochemistry",48.0067 -"Design, Tools, and Test",2.3450 -Geophysics,1.1269 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 91e7ee4e0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Node Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -"Quantum Electronics, Waves, and Beams",12343.6392 -Tectonics,8590.5158 -"Organic and Macromolecular Chemistry",7492.8064 -"Physical Chemistry",5412.7517 -"Statistics and Probability",2845.5633 -"Solid State Chemistry and Polymers",2367.6417 -"Stellar Astronomy and Astrophysics",1973.0481 -"Emerging Technologies Initiation",1622.8178 -"Polar Ocean and Climate Systems",1593.1472 -"Metals, Ceramics, and Electronic Materials",1532.5833 -"Cell Biology",1526.7692 -"Galactic Astronomy",1376.1239 -Biophysics,1233.9042 -Arts,1140.0328 -"Fluid, Particulate, and Hydraulic Systems",1092.1644 -"Experimental Systems",896.5864 -"Structures and Building Systems",883.8200 -"Solid-State and Microstructures",802.6467 -"Design and Computer-Integrated Engineering",458.9083 -"Algebra and Number Theory",433.1708 -"Decision, Risk, and Management Science",336.9017 -"Biochemistry and Molecular Structure and Function",251.4806 -"Global Atmospheric Research",180.5611 -"Systematic and Population Biology",150.5339 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -Economics,120.6086 -"Computer and Computation Theory",100.8417 -"Polar Aeronomy and Astrophysics",100.6989 -"Mechanics and Materials",81.6261 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -"Geology and Paleontology",54.6022 -"Volcanology and Mantle Geochemistry",48.0067 -"Design, Tools, and Test",2.3450 -Geophysics,1.1269 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 91e7ee4e0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Node Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -"Quantum Electronics, Waves, and Beams",12343.6392 -Tectonics,8590.5158 -"Organic and Macromolecular Chemistry",7492.8064 -"Physical Chemistry",5412.7517 -"Statistics and Probability",2845.5633 -"Solid State Chemistry and Polymers",2367.6417 -"Stellar Astronomy and Astrophysics",1973.0481 -"Emerging Technologies Initiation",1622.8178 -"Polar Ocean and Climate Systems",1593.1472 -"Metals, Ceramics, and Electronic Materials",1532.5833 -"Cell Biology",1526.7692 -"Galactic Astronomy",1376.1239 -Biophysics,1233.9042 -Arts,1140.0328 -"Fluid, Particulate, and Hydraulic Systems",1092.1644 -"Experimental Systems",896.5864 -"Structures and Building Systems",883.8200 -"Solid-State and Microstructures",802.6467 -"Design and Computer-Integrated Engineering",458.9083 -"Algebra and Number Theory",433.1708 -"Decision, Risk, and Management Science",336.9017 -"Biochemistry and Molecular Structure and Function",251.4806 -"Global Atmospheric Research",180.5611 -"Systematic and Population Biology",150.5339 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -Economics,120.6086 -"Computer and Computation Theory",100.8417 -"Polar Aeronomy and Astrophysics",100.6989 -"Mechanics and Materials",81.6261 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -"Geology and Paleontology",54.6022 -"Volcanology and Mantle Geochemistry",48.0067 -"Design, Tools, and Test",2.3450 -Geophysics,1.1269 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 91e7ee4e0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Node Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -"Quantum Electronics, Waves, and Beams",12343.6392 -Tectonics,8590.5158 -"Organic and Macromolecular Chemistry",7492.8064 -"Physical Chemistry",5412.7517 -"Statistics and Probability",2845.5633 -"Solid State Chemistry and Polymers",2367.6417 -"Stellar Astronomy and Astrophysics",1973.0481 -"Emerging Technologies Initiation",1622.8178 -"Polar Ocean and Climate Systems",1593.1472 -"Metals, Ceramics, and Electronic Materials",1532.5833 -"Cell Biology",1526.7692 -"Galactic Astronomy",1376.1239 -Biophysics,1233.9042 -Arts,1140.0328 -"Fluid, Particulate, and Hydraulic Systems",1092.1644 -"Experimental Systems",896.5864 -"Structures and Building Systems",883.8200 -"Solid-State and Microstructures",802.6467 -"Design and Computer-Integrated Engineering",458.9083 -"Algebra and Number Theory",433.1708 -"Decision, Risk, and Management Science",336.9017 -"Biochemistry and Molecular Structure and Function",251.4806 -"Global Atmospheric Research",180.5611 -"Systematic and Population Biology",150.5339 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -Economics,120.6086 -"Computer and Computation Theory",100.8417 -"Polar Aeronomy and Astrophysics",100.6989 -"Mechanics and Materials",81.6261 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -"Geology and Paleontology",54.6022 -"Volcanology and Mantle Geochemistry",48.0067 -"Design, Tools, and Test",2.3450 -Geophysics,1.1269 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 384962b9cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" -2016-12-22,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,16.7464,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,24.0000,0,0,0,0,0,0,0,8.6036,24.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-24,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,24.0000,24.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-25,0,0,0,0,0,0,32.5078,0,0,0,0,0,0,0,24.0000,24.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-26,0,0,0,0,0,0,96.0000,13.5208,0,0,0,0,0,0,24.0000,24.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-27,0,3.2167,0,311.6178,0,0,115.3094,124.7214,331.1156,123.9850,0,0,0,69.8267,52.2964,54.3978,0,0,0,0,0,0,0,0,19.9056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,461.3931,168.4211,502.6856,220.6683,0,0,0,176.3833,144.0000,216.0000,0,0,43.9492,0,0,0,28.0381,0,24.0000,0,0,0,15.1192,0,0,0,0,0,0,0,4.7006,0,0,0 -2016-12-29,12583.2597,301.8189,3901.6422,4150.0822,0,2472.0000,933.4136,501.7553,848.2247,420.2000,152.8733,0,485.1050,479.3708,208.6497,216.0000,47.7900,0,168.7433,102.7444,3.6200,0,216.0000,26.9772,24.0000,129.7778,0,0,72.0000,0,10.0983,37.9494,0,10.4008,0,0,24.0000,0,0,0 -2016-12-30,21766.1511,6638.2006,5473.3125,3949.6347,3055.8617,2475.2589,1433.8564,397.7425,521.4136,451.4903,510.5000,0,914.9350,498.0953,664.9178,216.0000,629.4331,617.0356,321.9956,575.7072,67.3875,0,160.0869,296.1253,175.8633,50.3500,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,27.2308,13.6064,13.9453,7.5778,19.3061,2.3450,1.1269,0.0650 -2016-12-31,20518.0064,8599.9281,2761.8142,1871.4597,5534.6542,696.7117,1625.9722,1112.6033,164.2022,491.3692,569.9600,3.1458,132.5433,179.7156,202.4067,216.4508,430.1536,475.1289,241.5139,205.3683,714.0100,299.0033,24.0000,13.7992,7.7117,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,27.2439,45.3169,45.9239,42.7433,0,0,0,0 -2017-01-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5bf98609d8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" -2016-12,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2318.7644,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 -2017-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 97c0c150f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" -"2016 Q4",55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2318.7644,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 -"2017 Q1",11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7892e91bd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Systems Prototyping and Fabrication] Node Hours: Total","[Sociology] Node Hours: Total","[Operations Research and Production Systems] Node Hours: Total","[Quantum Electronics, Waves, and Beams] Node Hours: Total","[Tectonics] Node Hours: Total","[Organic and Macromolecular Chemistry] Node Hours: Total","[Physical Chemistry] Node Hours: Total","[Statistics and Probability] Node Hours: Total","[Solid State Chemistry and Polymers] Node Hours: Total","[Stellar Astronomy and Astrophysics] Node Hours: Total","[Emerging Technologies Initiation] Node Hours: Total","[Polar Ocean and Climate Systems] Node Hours: Total","[Metals, Ceramics, and Electronic Materials] Node Hours: Total","[Cell Biology] Node Hours: Total","[Galactic Astronomy] Node Hours: Total","[Biophysics] Node Hours: Total","[Arts] Node Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Node Hours: Total","[Experimental Systems] Node Hours: Total","[Structures and Building Systems] Node Hours: Total","[Solid-State and Microstructures] Node Hours: Total","[Design and Computer-Integrated Engineering] Node Hours: Total","[Algebra and Number Theory] Node Hours: Total","[Decision, Risk, and Management Science] Node Hours: Total","[Biochemistry and Molecular Structure and Function] Node Hours: Total","[Global Atmospheric Research] Node Hours: Total","[Systematic and Population Biology] Node Hours: Total","[Polar Meteorology] Node Hours: Total","[Theoretical Physics] Node Hours: Total","[Economics] Node Hours: Total","[Computer and Computation Theory] Node Hours: Total","[Polar Aeronomy and Astrophysics] Node Hours: Total","[Mechanics and Materials] Node Hours: Total","[Seismology] Node Hours: Total","[Extragalactic Astronomy and Cosmology] Node Hours: Total","[Geology and Paleontology] Node Hours: Total","[Volcanology and Mantle Geochemistry] Node Hours: Total","[Design, Tools, and Test] Node Hours: Total","[Geophysics] Node Hours: Total","[Law and Social Sciences] Node Hours: Total" -2016,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2318.7644,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 -2017,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7dda11cfa6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Total" -"Galactic Astronomy",163477.1903 -Sociology,112939.7331 -"Cell Biology",5136.8678 -"Solid State Chemistry and Polymers",5128.4506 -"Polar Ocean and Climate Systems",4056.0075 -Tectonics,3927.5247 -"Systematic and Population Biology",3030.4719 -"Solid-State and Microstructures",2704.6794 -"Quantum Electronics, Waves, and Beams",1959.9481 -"Decision, Risk, and Management Science",1953.8047 -"Systems Prototyping and Fabrication",544.5967 -"Physical Chemistry",443.1597 -Arts,321.4447 -"Stellar Astronomy and Astrophysics",184.2997 -"Biochemistry and Molecular Structure and Function",122.8625 -"Polar Aeronomy and Astrophysics",105.4822 -"Global Atmospheric Research",62.0436 -"Algebra and Number Theory",48.5308 -"Statistics and Probability",36.5339 -"Emerging Technologies Initiation",30.1542 -Economics,20.6675 -"Fluid, Particulate, and Hydraulic Systems",20.0331 -"Design and Computer-Integrated Engineering",19.3700 -"Operations Research and Production Systems",17.6803 -"Metals, Ceramics, and Electronic Materials",13.9250 -"Polar Meteorology",12.6592 -"Theoretical Physics",11.1744 -"Experimental Systems",7.7419 -"Computer and Computation Theory",6.4781 -Biophysics,1.2361 -Seismology,0.1747 -"Geology and Paleontology",0.1614 -"Extragalactic Astronomy and Cosmology",0.1408 -"Design, Tools, and Test",0.0978 -Geophysics,0.0147 -"Mechanics and Materials",0.0106 -"Structures and Building Systems",0.0047 -"Organic and Macromolecular Chemistry",0.0042 -"Volcanology and Mantle Geochemistry",0.0003 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 7dda11cfa6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Total" -"Galactic Astronomy",163477.1903 -Sociology,112939.7331 -"Cell Biology",5136.8678 -"Solid State Chemistry and Polymers",5128.4506 -"Polar Ocean and Climate Systems",4056.0075 -Tectonics,3927.5247 -"Systematic and Population Biology",3030.4719 -"Solid-State and Microstructures",2704.6794 -"Quantum Electronics, Waves, and Beams",1959.9481 -"Decision, Risk, and Management Science",1953.8047 -"Systems Prototyping and Fabrication",544.5967 -"Physical Chemistry",443.1597 -Arts,321.4447 -"Stellar Astronomy and Astrophysics",184.2997 -"Biochemistry and Molecular Structure and Function",122.8625 -"Polar Aeronomy and Astrophysics",105.4822 -"Global Atmospheric Research",62.0436 -"Algebra and Number Theory",48.5308 -"Statistics and Probability",36.5339 -"Emerging Technologies Initiation",30.1542 -Economics,20.6675 -"Fluid, Particulate, and Hydraulic Systems",20.0331 -"Design and Computer-Integrated Engineering",19.3700 -"Operations Research and Production Systems",17.6803 -"Metals, Ceramics, and Electronic Materials",13.9250 -"Polar Meteorology",12.6592 -"Theoretical Physics",11.1744 -"Experimental Systems",7.7419 -"Computer and Computation Theory",6.4781 -Biophysics,1.2361 -Seismology,0.1747 -"Geology and Paleontology",0.1614 -"Extragalactic Astronomy and Cosmology",0.1408 -"Design, Tools, and Test",0.0978 -Geophysics,0.0147 -"Mechanics and Materials",0.0106 -"Structures and Building Systems",0.0047 -"Organic and Macromolecular Chemistry",0.0042 -"Volcanology and Mantle Geochemistry",0.0003 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7dda11cfa6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Total" -"Galactic Astronomy",163477.1903 -Sociology,112939.7331 -"Cell Biology",5136.8678 -"Solid State Chemistry and Polymers",5128.4506 -"Polar Ocean and Climate Systems",4056.0075 -Tectonics,3927.5247 -"Systematic and Population Biology",3030.4719 -"Solid-State and Microstructures",2704.6794 -"Quantum Electronics, Waves, and Beams",1959.9481 -"Decision, Risk, and Management Science",1953.8047 -"Systems Prototyping and Fabrication",544.5967 -"Physical Chemistry",443.1597 -Arts,321.4447 -"Stellar Astronomy and Astrophysics",184.2997 -"Biochemistry and Molecular Structure and Function",122.8625 -"Polar Aeronomy and Astrophysics",105.4822 -"Global Atmospheric Research",62.0436 -"Algebra and Number Theory",48.5308 -"Statistics and Probability",36.5339 -"Emerging Technologies Initiation",30.1542 -Economics,20.6675 -"Fluid, Particulate, and Hydraulic Systems",20.0331 -"Design and Computer-Integrated Engineering",19.3700 -"Operations Research and Production Systems",17.6803 -"Metals, Ceramics, and Electronic Materials",13.9250 -"Polar Meteorology",12.6592 -"Theoretical Physics",11.1744 -"Experimental Systems",7.7419 -"Computer and Computation Theory",6.4781 -Biophysics,1.2361 -Seismology,0.1747 -"Geology and Paleontology",0.1614 -"Extragalactic Astronomy and Cosmology",0.1408 -"Design, Tools, and Test",0.0978 -Geophysics,0.0147 -"Mechanics and Materials",0.0106 -"Structures and Building Systems",0.0047 -"Organic and Macromolecular Chemistry",0.0042 -"Volcanology and Mantle Geochemistry",0.0003 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7dda11cfa6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wait Hours: Total" -"Galactic Astronomy",163477.1903 -Sociology,112939.7331 -"Cell Biology",5136.8678 -"Solid State Chemistry and Polymers",5128.4506 -"Polar Ocean and Climate Systems",4056.0075 -Tectonics,3927.5247 -"Systematic and Population Biology",3030.4719 -"Solid-State and Microstructures",2704.6794 -"Quantum Electronics, Waves, and Beams",1959.9481 -"Decision, Risk, and Management Science",1953.8047 -"Systems Prototyping and Fabrication",544.5967 -"Physical Chemistry",443.1597 -Arts,321.4447 -"Stellar Astronomy and Astrophysics",184.2997 -"Biochemistry and Molecular Structure and Function",122.8625 -"Polar Aeronomy and Astrophysics",105.4822 -"Global Atmospheric Research",62.0436 -"Algebra and Number Theory",48.5308 -"Statistics and Probability",36.5339 -"Emerging Technologies Initiation",30.1542 -Economics,20.6675 -"Fluid, Particulate, and Hydraulic Systems",20.0331 -"Design and Computer-Integrated Engineering",19.3700 -"Operations Research and Production Systems",17.6803 -"Metals, Ceramics, and Electronic Materials",13.9250 -"Polar Meteorology",12.6592 -"Theoretical Physics",11.1744 -"Experimental Systems",7.7419 -"Computer and Computation Theory",6.4781 -Biophysics,1.2361 -Seismology,0.1747 -"Geology and Paleontology",0.1614 -"Extragalactic Astronomy and Cosmology",0.1408 -"Design, Tools, and Test",0.0978 -Geophysics,0.0147 -"Mechanics and Materials",0.0106 -"Structures and Building Systems",0.0047 -"Organic and Macromolecular Chemistry",0.0042 -"Volcanology and Mantle Geochemistry",0.0003 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index f83f085322..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0,0,0,0 -2016-12-23,9.5964,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0.0000,0,0,0,0,0,0,0,0,0,0,110.8856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0033,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0.0028,0.0000,1367.4053,172.7719,0,0,0,0,311.1344,0,0,0.0289,0,76.0861,50.8225,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0.0000,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,42.4475,0,36.8761,0.0000,0,0,47.7519,18.4800,0,0,0,0,10.5775,0,0,11.1744,2.3317,0,0.0000,0,0,0,0,0,0,0,0.0017,0.0003,0 -2016-12-29,2704.7964,1973.6497,627.0644,288.5578,0,0,0,0.0044,334.2367,0.7922,32.6300,45.4447,9.5847,11.7164,0.0000,0.0017,25.7286,0.0000,17.8439,10.4372,0,0,0,3.9286,13.9250,0,0.0000,1.4369,0.0894,0.0000,0.0000,0,0,0,0,0,0.0025,0.0000,0.0000,0 -2016-12-30,160667.2464,26578.5867,331.7789,2269.2967,0,1857.6733,1170.3947,54.0756,0.0111,1436.2097,221.0947,98.0058,311.8600,44.7175,72.0400,105.4806,0.0000,0.7789,0.0000,7.3803,11.9272,20.0331,0,2.2686,0.0000,12.1381,0.0000,2.5139,6.3886,0.0000,0.0000,0.1611,0.0575,0.0978,0.0147,0.0028,0.0022,0.0008,0.0000,0.0000 -2016-12-31,95.5417,64555.5128,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0031,516.8028,277.8381,100.6983,0.0000,7.6042,0.0000,0.0000,0,0.0000,0.2067,0.3128,8.7356,0.0000,19.3700,0.5711,0.0000,0.5147,0,1.3047,0.0000,0.0011,0.1747,0.0000,0.0833,0,0,0.0031,0.0000,0.0006,0,0 -2017-01-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6582e95fbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" -2016-12,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000 -2017-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 711e2f8ec9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" -"2016 Q4",163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000 -"2017 Q1",0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5ac7b9cf91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Galactic Astronomy] Wait Hours: Total","[Sociology] Wait Hours: Total","[Cell Biology] Wait Hours: Total","[Solid State Chemistry and Polymers] Wait Hours: Total","[Polar Ocean and Climate Systems] Wait Hours: Total","[Tectonics] Wait Hours: Total","[Systematic and Population Biology] Wait Hours: Total","[Solid-State and Microstructures] Wait Hours: Total","[Quantum Electronics, Waves, and Beams] Wait Hours: Total","[Decision, Risk, and Management Science] Wait Hours: Total","[Systems Prototyping and Fabrication] Wait Hours: Total","[Physical Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Stellar Astronomy and Astrophysics] Wait Hours: Total","[Biochemistry and Molecular Structure and Function] Wait Hours: Total","[Polar Aeronomy and Astrophysics] Wait Hours: Total","[Global Atmospheric Research] Wait Hours: Total","[Algebra and Number Theory] Wait Hours: Total","[Statistics and Probability] Wait Hours: Total","[Emerging Technologies Initiation] Wait Hours: Total","[Economics] Wait Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wait Hours: Total","[Design and Computer-Integrated Engineering] Wait Hours: Total","[Operations Research and Production Systems] Wait Hours: Total","[Metals, Ceramics, and Electronic Materials] Wait Hours: Total","[Polar Meteorology] Wait Hours: Total","[Theoretical Physics] Wait Hours: Total","[Experimental Systems] Wait Hours: Total","[Computer and Computation Theory] Wait Hours: Total","[Biophysics] Wait Hours: Total","[Seismology] Wait Hours: Total","[Geology and Paleontology] Wait Hours: Total","[Extragalactic Astronomy and Cosmology] Wait Hours: Total","[Design, Tools, and Test] Wait Hours: Total","[Geophysics] Wait Hours: Total","[Mechanics and Materials] Wait Hours: Total","[Structures and Building Systems] Wait Hours: Total","[Organic and Macromolecular Chemistry] Wait Hours: Total","[Volcanology and Mantle Geochemistry] Wait Hours: Total","[Law and Social Sciences] Wait Hours: Total" -2016,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000 -2017,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index f4da77210d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -Tectonics,8590.5158 -"Physical Chemistry",3832.1586 -"Statistics and Probability",2845.5633 -"Quantum Electronics, Waves, and Beams",1663.0800 -"Polar Ocean and Climate Systems",1593.1472 -"Cell Biology",1526.7414 -"Galactic Astronomy",1230.7931 -"Solid State Chemistry and Polymers",1145.5708 -Arts,1140.0328 -"Experimental Systems",896.5864 -"Solid-State and Microstructures",802.6467 -"Organic and Macromolecular Chemistry",658.6011 -"Algebra and Number Theory",433.1708 -Biophysics,393.6403 -"Stellar Astronomy and Astrophysics",371.0986 -"Metals, Ceramics, and Electronic Materials",255.4306 -"Biochemistry and Molecular Structure and Function",251.4806 -"Design and Computer-Integrated Engineering",229.4542 -"Emerging Technologies Initiation",202.8522 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -"Structures and Building Systems",126.2600 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Decision, Risk, and Management Science",74.8000 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -Economics,56.2867 -"Polar Aeronomy and Astrophysics",50.3497 -"Volcanology and Mantle Geochemistry",48.0067 -"Fluid, Particulate, and Hydraulic Systems",46.3125 -"Systematic and Population Biology",45.2333 -"Geology and Paleontology",18.3367 -"Global Atmospheric Research",9.0281 -Geophysics,1.1269 -"Design, Tools, and Test",0.2606 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index f4da77210d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -Tectonics,8590.5158 -"Physical Chemistry",3832.1586 -"Statistics and Probability",2845.5633 -"Quantum Electronics, Waves, and Beams",1663.0800 -"Polar Ocean and Climate Systems",1593.1472 -"Cell Biology",1526.7414 -"Galactic Astronomy",1230.7931 -"Solid State Chemistry and Polymers",1145.5708 -Arts,1140.0328 -"Experimental Systems",896.5864 -"Solid-State and Microstructures",802.6467 -"Organic and Macromolecular Chemistry",658.6011 -"Algebra and Number Theory",433.1708 -Biophysics,393.6403 -"Stellar Astronomy and Astrophysics",371.0986 -"Metals, Ceramics, and Electronic Materials",255.4306 -"Biochemistry and Molecular Structure and Function",251.4806 -"Design and Computer-Integrated Engineering",229.4542 -"Emerging Technologies Initiation",202.8522 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -"Structures and Building Systems",126.2600 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Decision, Risk, and Management Science",74.8000 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -Economics,56.2867 -"Polar Aeronomy and Astrophysics",50.3497 -"Volcanology and Mantle Geochemistry",48.0067 -"Fluid, Particulate, and Hydraulic Systems",46.3125 -"Systematic and Population Biology",45.2333 -"Geology and Paleontology",18.3367 -"Global Atmospheric Research",9.0281 -Geophysics,1.1269 -"Design, Tools, and Test",0.2606 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f4da77210d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -Tectonics,8590.5158 -"Physical Chemistry",3832.1586 -"Statistics and Probability",2845.5633 -"Quantum Electronics, Waves, and Beams",1663.0800 -"Polar Ocean and Climate Systems",1593.1472 -"Cell Biology",1526.7414 -"Galactic Astronomy",1230.7931 -"Solid State Chemistry and Polymers",1145.5708 -Arts,1140.0328 -"Experimental Systems",896.5864 -"Solid-State and Microstructures",802.6467 -"Organic and Macromolecular Chemistry",658.6011 -"Algebra and Number Theory",433.1708 -Biophysics,393.6403 -"Stellar Astronomy and Astrophysics",371.0986 -"Metals, Ceramics, and Electronic Materials",255.4306 -"Biochemistry and Molecular Structure and Function",251.4806 -"Design and Computer-Integrated Engineering",229.4542 -"Emerging Technologies Initiation",202.8522 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -"Structures and Building Systems",126.2600 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Decision, Risk, and Management Science",74.8000 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -Economics,56.2867 -"Polar Aeronomy and Astrophysics",50.3497 -"Volcanology and Mantle Geochemistry",48.0067 -"Fluid, Particulate, and Hydraulic Systems",46.3125 -"Systematic and Population Biology",45.2333 -"Geology and Paleontology",18.3367 -"Global Atmospheric Research",9.0281 -Geophysics,1.1269 -"Design, Tools, and Test",0.2606 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index f4da77210d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Wall Hours: Total" -"Systems Prototyping and Fabrication",67004.1206 -Sociology,16499.1964 -"Operations Research and Production Systems",15354.0758 -Tectonics,8590.5158 -"Physical Chemistry",3832.1586 -"Statistics and Probability",2845.5633 -"Quantum Electronics, Waves, and Beams",1663.0800 -"Polar Ocean and Climate Systems",1593.1472 -"Cell Biology",1526.7414 -"Galactic Astronomy",1230.7931 -"Solid State Chemistry and Polymers",1145.5708 -Arts,1140.0328 -"Experimental Systems",896.5864 -"Solid-State and Microstructures",802.6467 -"Organic and Macromolecular Chemistry",658.6011 -"Algebra and Number Theory",433.1708 -Biophysics,393.6403 -"Stellar Astronomy and Astrophysics",371.0986 -"Metals, Ceramics, and Electronic Materials",255.4306 -"Biochemistry and Molecular Structure and Function",251.4806 -"Design and Computer-Integrated Engineering",229.4542 -"Emerging Technologies Initiation",202.8522 -"Polar Meteorology",135.7597 -"Theoretical Physics",132.4094 -"Structures and Building Systems",126.2600 -"Computer and Computation Theory",100.8417 -"Mechanics and Materials",81.6261 -"Decision, Risk, and Management Science",74.8000 -Seismology,70.2769 -"Extragalactic Astronomy and Cosmology",59.8692 -Economics,56.2867 -"Polar Aeronomy and Astrophysics",50.3497 -"Volcanology and Mantle Geochemistry",48.0067 -"Fluid, Particulate, and Hydraulic Systems",46.3125 -"Systematic and Population Biology",45.2333 -"Geology and Paleontology",18.3367 -"Global Atmospheric Research",9.0281 -Geophysics,1.1269 -"Design, Tools, and Test",0.2606 -"Law and Social Sciences",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 35d72cdbed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" -2016-12-22,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,16.7464,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,24.0000,0,0,0,0,8.6036,0,0,0,0,0,0,24.0000,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-24,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,24.0000,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-25,0,0,0,0,32.5078,0,0,0,0,24.0000,0,0,0,0,0,0,24.0000,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-26,0,0,0,0,96.0000,13.5208,0,0,0,24.0000,0,0,0,0,0,0,24.0000,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-27,0,3.2167,0,0,115.3094,124.7214,38.9522,0,69.8267,52.2964,61.4911,0,0,0,0,0,27.7997,20.6642,0,19.9056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,0,386.4281,168.4211,228.4575,0,176.3833,144.0000,169.2183,0,43.9492,0,160.7689,28.0381,48.0000,36.7781,0,24.0000,0,0,0,15.1192,0,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0 -2016-12-29,12583.2597,301.8189,3901.6422,0,597.4011,501.7553,538.2222,0,479.3708,187.5622,356.3561,47.7900,168.7433,3.6200,216.0000,216.0000,48.0000,74.4400,80.8508,24.0000,0,19.1092,0,72.0000,14.6778,10.0983,0,1.9269,10.4008,0,0,18.9747,24.0000,0,0,0,6.4889,0,0,0 -2016-12-30,21766.1511,6638.2006,5473.3125,3055.8617,1061.7603,397.7425,530.1600,0,498.0675,592.9178,394.3031,629.4331,321.9956,67.3875,216.5364,160.0869,48.0000,83.3264,152.4892,175.8633,0,63.8125,108.1047,45.2903,82.2439,82.1119,27.2308,59.0739,13.6064,13.9453,9.6922,24.0006,19.3061,29.3436,12.8208,4.3656,2.5175,1.1269,0.2606,0.0650 -2016-12-31,20518.0064,8599.9281,2761.8142,5534.6542,889.1303,1112.6033,266.9975,3.1458,179.7156,150.1633,164.2022,430.1536,241.5139,714.0100,63.5161,24.0000,48.2375,99.6328,22.0906,7.7117,149.5017,71.2450,25.9131,0,29.3383,8.6314,27.2439,13.7992,45.3169,45.9239,38.8869,7.3744,0,16.9689,1.4844,9.6900,0,0,0,0 -2017-01-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6cbbbc2ea9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" -2016-12,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2318.7644,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 -2017-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 90d483a75d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" -"2016 Q4",55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2318.7644,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 -"2017 Q1",11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6a542b5dee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Systems Prototyping and Fabrication] Wall Hours: Total","[Sociology] Wall Hours: Total","[Operations Research and Production Systems] Wall Hours: Total","[Tectonics] Wall Hours: Total","[Physical Chemistry] Wall Hours: Total","[Statistics and Probability] Wall Hours: Total","[Quantum Electronics, Waves, and Beams] Wall Hours: Total","[Polar Ocean and Climate Systems] Wall Hours: Total","[Cell Biology] Wall Hours: Total","[Galactic Astronomy] Wall Hours: Total","[Solid State Chemistry and Polymers] Wall Hours: Total","[Arts] Wall Hours: Total","[Experimental Systems] Wall Hours: Total","[Solid-State and Microstructures] Wall Hours: Total","[Organic and Macromolecular Chemistry] Wall Hours: Total","[Algebra and Number Theory] Wall Hours: Total","[Biophysics] Wall Hours: Total","[Stellar Astronomy and Astrophysics] Wall Hours: Total","[Metals, Ceramics, and Electronic Materials] Wall Hours: Total","[Biochemistry and Molecular Structure and Function] Wall Hours: Total","[Design and Computer-Integrated Engineering] Wall Hours: Total","[Emerging Technologies Initiation] Wall Hours: Total","[Polar Meteorology] Wall Hours: Total","[Theoretical Physics] Wall Hours: Total","[Structures and Building Systems] Wall Hours: Total","[Computer and Computation Theory] Wall Hours: Total","[Mechanics and Materials] Wall Hours: Total","[Decision, Risk, and Management Science] Wall Hours: Total","[Seismology] Wall Hours: Total","[Extragalactic Astronomy and Cosmology] Wall Hours: Total","[Economics] Wall Hours: Total","[Polar Aeronomy and Astrophysics] Wall Hours: Total","[Volcanology and Mantle Geochemistry] Wall Hours: Total","[Fluid, Particulate, and Hydraulic Systems] Wall Hours: Total","[Systematic and Population Biology] Wall Hours: Total","[Geology and Paleontology] Wall Hours: Total","[Global Atmospheric Research] Wall Hours: Total","[Geophysics] Wall Hours: Total","[Design, Tools, and Test] Wall Hours: Total","[Law and Social Sciences] Wall Hours: Total" -2016,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2318.7644,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 -2017,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 7bf0ce3c93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Screwdriver CPU Utilization (%)" -"Organic and Macromolecular Chemistry",7.3085 -"Quantum Electronics, Waves, and Beams",6.9780 -"Systems Prototyping and Fabrication",6.3451 -Sociology,3.6382 -"Physical Chemistry",2.5756 -"Structures and Building Systems",2.4551 -"Stellar Astronomy and Astrophysics",2.0829 -"Statistics and Probability",2.0195 -"Emerging Technologies Initiation",1.8441 -"Metals, Ceramics, and Electronic Materials",1.7416 -"Operations Research and Production Systems",1.4540 -"Solid State Chemistry and Polymers",1.2443 -"Fluid, Particulate, and Hydraulic Systems",1.2411 -"Polar Ocean and Climate Systems",1.1064 -Biophysics,1.0303 -"Cell Biology",0.8245 -Tectonics,0.8135 -Arts,0.7186 -"Experimental Systems",0.6976 -"Galactic Astronomy",0.5136 -"Design and Computer-Integrated Engineering",0.4983 -"Algebra and Number Theory",0.4922 -"Theoretical Physics",0.1505 -"Systematic and Population Biology",0.1438 -"Volcanology and Mantle Geochemistry",0.1429 -Economics,0.1370 -"Global Atmospheric Research",0.1368 -"Decision, Risk, and Management Science",0.1121 -"Biochemistry and Molecular Structure and Function",0.0967 -"Solid-State and Microstructures",0.0966 -"Polar Aeronomy and Astrophysics",0.0954 -Seismology,0.0590 -"Geology and Paleontology",0.0559 -"Mechanics and Materials",0.0142 -"Polar Meteorology",0.0129 -"Computer and Computation Theory",0.0095 -"Extragalactic Astronomy and Cosmology",0.0057 -Geophysics,0.0034 -"Design, Tools, and Test",0.0027 -"Law and Social Sciences",0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 7f77f89415..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Screwdriver CPU Utilization (%)" -"Quantum Electronics, Waves, and Beams",1.6507 -"Organic and Macromolecular Chemistry",1.6136 -"Systems Prototyping and Fabrication",1.3685 -Sociology,0.8085 -"Physical Chemistry",0.5590 -"Stellar Astronomy and Astrophysics",0.4493 -"Statistics and Probability",0.4131 -"Structures and Building Systems",0.4092 -"Emerging Technologies Initiation",0.3977 -"Metals, Ceramics, and Electronic Materials",0.3756 -"Operations Research and Production Systems",0.3136 -Biophysics,0.2764 -"Solid State Chemistry and Polymers",0.2701 -"Fluid, Particulate, and Hydraulic Systems",0.2677 -"Polar Ocean and Climate Systems",0.2263 -"Cell Biology",0.1778 -Tectonics,0.1755 -"Experimental Systems",0.1505 -Arts,0.1470 -"Galactic Astronomy",0.1115 -"Design and Computer-Integrated Engineering",0.1075 -"Algebra and Number Theory",0.1062 -"Theoretical Physics",0.0325 -"Systematic and Population Biology",0.0310 -Economics,0.0296 -"Global Atmospheric Research",0.0295 -"Volcanology and Mantle Geochemistry",0.0270 -"Decision, Risk, and Management Science",0.0242 -"Solid-State and Microstructures",0.0228 -"Polar Aeronomy and Astrophysics",0.0226 -"Biochemistry and Molecular Structure and Function",0.0209 -Seismology,0.0127 -"Geology and Paleontology",0.0121 -"Polar Meteorology",0.0028 -"Mechanics and Materials",0.0024 -"Computer and Computation Theory",0.0021 -"Extragalactic Astronomy and Cosmology",0.0012 -"Design, Tools, and Test",0.0006 -Geophysics,0.0006 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index e64fb49381..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Screwdriver CPU Utilization (%)" -"Quantum Electronics, Waves, and Beams",0.7276 -"Organic and Macromolecular Chemistry",0.6371 -"Systems Prototyping and Fabrication",0.6345 -Sociology,0.3334 -"Physical Chemistry",0.2357 -"Stellar Astronomy and Astrophysics",0.2083 -"Emerging Technologies Initiation",0.1844 -"Statistics and Probability",0.1765 -"Metals, Ceramics, and Electronic Materials",0.1742 -"Structures and Building Systems",0.1551 -"Operations Research and Production Systems",0.1454 -"Fluid, Particulate, and Hydraulic Systems",0.1241 -"Solid State Chemistry and Polymers",0.1139 -Biophysics,0.1133 -"Polar Ocean and Climate Systems",0.0967 -"Cell Biology",0.0825 -Tectonics,0.0813 -"Experimental Systems",0.0698 -Arts,0.0628 -"Design and Computer-Integrated Engineering",0.0498 -"Algebra and Number Theory",0.0492 -"Galactic Astronomy",0.0470 -"Theoretical Physics",0.0150 -"Systematic and Population Biology",0.0144 -Economics,0.0137 -"Global Atmospheric Research",0.0137 -"Decision, Risk, and Management Science",0.0112 -"Volcanology and Mantle Geochemistry",0.0104 -"Solid-State and Microstructures",0.0101 -"Polar Aeronomy and Astrophysics",0.0099 -"Biochemistry and Molecular Structure and Function",0.0097 -Seismology,0.0059 -"Geology and Paleontology",0.0056 -"Polar Meteorology",0.0013 -"Computer and Computation Theory",0.0010 -"Mechanics and Materials",0.0009 -"Extragalactic Astronomy and Cosmology",0.0006 -"Design, Tools, and Test",0.0003 -Geophysics,0.0002 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 072ab16e08..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,49 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"PI Group","Screwdriver CPU Utilization (%)" -"Quantum Electronics, Waves, and Beams",0.2017 -"Systems Prototyping and Fabrication",0.1813 -"Organic and Macromolecular Chemistry",0.1668 -Sociology,0.0892 -"Physical Chemistry",0.0638 -"Stellar Astronomy and Astrophysics",0.0595 -"Emerging Technologies Initiation",0.0527 -"Metals, Ceramics, and Electronic Materials",0.0498 -"Statistics and Probability",0.0481 -"Operations Research and Production Systems",0.0415 -"Structures and Building Systems",0.0398 -"Fluid, Particulate, and Hydraulic Systems",0.0355 -"Solid State Chemistry and Polymers",0.0308 -Biophysics,0.0302 -"Polar Ocean and Climate Systems",0.0263 -"Cell Biology",0.0236 -Tectonics,0.0232 -"Experimental Systems",0.0199 -Arts,0.0171 -"Design and Computer-Integrated Engineering",0.0142 -"Algebra and Number Theory",0.0141 -"Galactic Astronomy",0.0127 -"Theoretical Physics",0.0043 -"Systematic and Population Biology",0.0041 -Economics,0.0039 -"Global Atmospheric Research",0.0039 -"Decision, Risk, and Management Science",0.0032 -"Biochemistry and Molecular Structure and Function",0.0028 -"Polar Aeronomy and Astrophysics",0.0028 -"Solid-State and Microstructures",0.0028 -"Volcanology and Mantle Geochemistry",0.0027 -Seismology,0.0017 -"Geology and Paleontology",0.0016 -"Polar Meteorology",0.0004 -"Computer and Computation Theory",0.0003 -"Extragalactic Astronomy and Cosmology",0.0002 -"Mechanics and Materials",0.0002 -"Design, Tools, and Test",0.0001 -Geophysics,0.0001 -"Law and Social Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 3389b2c151..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0.2093,0,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.3000,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0090,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,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.4857,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,1.8000,0,0,0.2253,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.8952,0,0.0034,1.1947,0,1.5498,1.0025,0,0,0,4.4779,0,0,0.5533,0.5819,0,0,0,0.2483,0,0,0,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,30.6953,22.8458,0.9927,0.0250,5.1848,0,2.4389,1.2160,0,0,2.0446,3.4312,0,0,1.9000,1.4699,0,0,0.3662,1.0125,0,0.3505,0.1890,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,41.2000,51.6212,13.1076,0.4670,5.4647,1.7124,4.6525,3.9938,1.9109,6.0638,4.0642,4.1811,0,0,1.9000,2.2958,0,0.2688,1.4062,0.8919,0,2.7000,0.9000,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0,0.0105,0,0,0,0 -2016-12-30,20.6136,24.4758,22.6731,13.0205,5.8332,9.5951,5.0436,3.1639,6.3813,11.4367,5.7014,2.7609,7.7129,0,1.9000,2.1966,3.1832,3.6308,2.7403,1.9172,0,2.0011,0.5661,0.5439,0.4022,0.3402,0.4196,1.1062,0.2073,0.2962,0.5000,0.0709,0.0687,0.0284,0.1126,0.0855,0.0145,0.0235,0.0293,0.0011 -2016-12-31,5.5311,11.5907,21.3729,18.3076,5.1151,3.4228,5.9107,12.2717,7.1245,1.6568,2.8769,1.3368,5.9391,0.0393,1.9038,1.4976,5.7653,2.4113,2.1582,2.9599,3.6187,0.3000,0,0.1307,0,0.9523,0,0.0144,0.0080,0.7438,0.3073,0.5116,0.5239,0.0284,0.0270,0.0090,0.0478,0,0,0 -2017-01-01,0.0593,1.5099,11.6497,1.7636,2.3403,0,3.3167,5.1025,4.8686,0,1.3067,0,0,9.9375,1.7672,1.0281,0,0.1562,1.0032,0.3871,1.8628,0.0631,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0223,0.0283,0.0018,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 88d6c3f5be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" -2016-12,4.8547,8.2790,2.9073,3.0488,1.8082,0.9798,1.2019,2.9461,0.7708,0.9579,0.7344,0.9566,0.9678,0.6826,0.0066,0.4021,0.4474,0.3335,0.4854,0.3887,0.1809,0.2676,0.0828,0.0337,0.0646,0.0751,0.1667,0.0617,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0113,0.0053,0.0031,0.0015,0.0039,0.0001 -2017-01,0.0487,0.0019,0.3758,0.0569,0.0755,0.1070,0.1646,0,0.1571,0,0.0422,0.0570,0,0,0.3206,0.0332,0,0.0324,0.0050,0.0125,0.0601,0.0020,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0004,0.0007,0.0001,0.0009,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 17f5ff791e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" -"2016 Q4",4.8547,8.2790,2.9073,3.0488,1.8082,0.9798,0.7708,1.2019,0.9579,2.9461,0.7344,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.1667,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0053,0.0113,0.0031,0.0015,0.0039,0.0001 -"2017 Q1",0.0168,0.0007,0.1294,0.0196,0.0260,0.0369,0.0541,0.0567,0,0,0.0145,0,0,0.0196,0.1104,0.0114,0,0.0111,0.0017,0.0207,0.0007,0.0043,0,0.0101,0.0024,0.0000,0,0,0.0004,0,0,0.0001,0.0002,0.0000,0,0.0003,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 05628aeaee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/fieldofscience/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI Group" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Quantum Electronics, Waves, and Beams] Screwdriver CPU Utilization (%)","[Systems Prototyping and Fabrication] Screwdriver CPU Utilization (%)","[Organic and Macromolecular Chemistry] Screwdriver CPU Utilization (%)","[Sociology] Screwdriver CPU Utilization (%)","[Physical Chemistry] Screwdriver CPU Utilization (%)","[Stellar Astronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Emerging Technologies Initiation] Screwdriver CPU Utilization (%)","[Metals, Ceramics, and Electronic Materials] Screwdriver CPU Utilization (%)","[Statistics and Probability] Screwdriver CPU Utilization (%)","[Operations Research and Production Systems] Screwdriver CPU Utilization (%)","[Structures and Building Systems] Screwdriver CPU Utilization (%)","[Fluid, Particulate, and Hydraulic Systems] Screwdriver CPU Utilization (%)","[Solid State Chemistry and Polymers] Screwdriver CPU Utilization (%)","[Biophysics] Screwdriver CPU Utilization (%)","[Polar Ocean and Climate Systems] Screwdriver CPU Utilization (%)","[Cell Biology] Screwdriver CPU Utilization (%)","[Tectonics] Screwdriver CPU Utilization (%)","[Experimental Systems] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Design and Computer-Integrated Engineering] Screwdriver CPU Utilization (%)","[Algebra and Number Theory] Screwdriver CPU Utilization (%)","[Galactic Astronomy] Screwdriver CPU Utilization (%)","[Theoretical Physics] Screwdriver CPU Utilization (%)","[Systematic and Population Biology] Screwdriver CPU Utilization (%)","[Economics] Screwdriver CPU Utilization (%)","[Global Atmospheric Research] Screwdriver CPU Utilization (%)","[Decision, Risk, and Management Science] Screwdriver CPU Utilization (%)","[Biochemistry and Molecular Structure and Function] Screwdriver CPU Utilization (%)","[Polar Aeronomy and Astrophysics] Screwdriver CPU Utilization (%)","[Solid-State and Microstructures] Screwdriver CPU Utilization (%)","[Volcanology and Mantle Geochemistry] Screwdriver CPU Utilization (%)","[Seismology] Screwdriver CPU Utilization (%)","[Geology and Paleontology] Screwdriver CPU Utilization (%)","[Polar Meteorology] Screwdriver CPU Utilization (%)","[Computer and Computation Theory] Screwdriver CPU Utilization (%)","[Extragalactic Astronomy and Cosmology] Screwdriver CPU Utilization (%)","[Mechanics and Materials] Screwdriver CPU Utilization (%)","[Design, Tools, and Test] Screwdriver CPU Utilization (%)","[Geophysics] Screwdriver CPU Utilization (%)","[Law and Social Sciences] Screwdriver CPU Utilization (%)" -2016,4.8547,2.9073,8.2790,3.0488,1.8082,0.9798,0.7708,0.9579,1.2019,0.7344,2.9461,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.0532,0.0677,0.0673,0.1667,0.0318,0.0296,0.0070,0.0053,0.0031,0.0113,0.0015,0.0039,0.0001 -2017,0.0041,0.0319,0.0002,0.0048,0.0064,0.0091,0.0133,0,0.0140,0.0036,0,0,0,0.0048,0.0272,0.0028,0,0.0027,0.0004,0.0051,0.0002,0.0011,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0.0000,0.0001,0.0000,0,0,0.0001,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index a22a557fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Users: Active" -0,66 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index a22a557fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Users: Active" -0,66 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index a22a557fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Users: Active" -0,66 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index a22a557fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Users: Active" -0,66 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 67b648fec7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of Users: Active","[2] Number of Users: Active" -2016-12-22,1,1 -2016-12-23,2,1 -2016-12-24,2,1 -2016-12-25,3,1 -2016-12-26,4,1 -2016-12-27,15,1 -2016-12-28,24,1 -2016-12-29,42,1 -2016-12-30,63,1 -2016-12-31,55,1 -2017-01-01,38,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 7c356cf4fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of Users: Active","[2] Number of Users: Active" -2016-12,66,1 -2017-01,38,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 81e3ad710a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of Users: Active","[2] Number of Users: Active" -"2016 Q4",66,1 -"2017 Q1",38,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index f6ef6018f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of Users: Active","[2] Number of Users: Active" -2016,66,1 -2017,38,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 54ecf07f47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of PIs: Active" -0,41 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 54ecf07f47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of PIs: Active" -0,41 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 54ecf07f47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of PIs: Active" -0,41 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 54ecf07f47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of PIs: Active" -0,41 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 570ddb0602..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of PIs: Active","[2] Number of PIs: Active" -2016-12-22,1,1 -2016-12-23,2,1 -2016-12-24,2,1 -2016-12-25,2,1 -2016-12-26,3,1 -2016-12-27,11,1 -2016-12-28,18,1 -2016-12-29,28,1 -2016-12-30,39,1 -2016-12-31,34,1 -2017-01-01,25,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 714c93a3a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of PIs: Active","[2] Number of PIs: Active" -2016-12,41,1 -2017-01,25,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 076c5de42f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of PIs: Active","[2] Number of PIs: Active" -"2016 Q4",41,1 -"2017 Q1",25,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 36d2751cda..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of PIs: Active","[2] Number of PIs: Active" -2016,41,1 -2017,25,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 1968d05fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Resources: Active" -0,5 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 1968d05fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Resources: Active" -0,5 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 1968d05fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Resources: Active" -0,5 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 1968d05fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Resources: Active" -0,5 -2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 19cd976fad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of Resources: Active","[2] Number of Resources: Active" -2016-12-22,1,1 -2016-12-23,1,1 -2016-12-24,1,1 -2016-12-25,1,1 -2016-12-26,2,1 -2016-12-27,5,1 -2016-12-28,5,1 -2016-12-29,5,1 -2016-12-30,5,1 -2016-12-31,5,1 -2017-01-01,5,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 18769cd6a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of Resources: Active","[2] Number of Resources: Active" -2016-12,5,1 -2017-01,5,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 6a69bc2006..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of Resources: Active","[2] Number of Resources: Active" -"2016 Q4",5,1 -"2017 Q1",5,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index d473fe4b65..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of Resources: Active","[2] Number of Resources: Active" -2016,5,1 -2017,5,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index d46fefda96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -0,11.74453254,0.45334655825879255 -2,1520.73833333, ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 09525e7d53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -0,11.74453254,0.7927749973468059 -2,1520.73833333,899.5902978802504 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 09525e7d53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -0,11.74453254,0.7927749973468059 -2,1520.73833333,899.5902978802504 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 09525e7d53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -0,11.74453254,0.7927749973468059 -2,1520.73833333,899.5902978802504 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 126480d848..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" -2016-12-22,203.30000000,200.95666667 -2016-12-23,148.30180556,288.00000000 -2016-12-24,156.00000000,288.00000000 -2016-12-25,98.05400000,288.00000000 -2016-12-26,196.83333333,288.00000000 -2016-12-27,372.32060298,288.00000000 -2016-12-28,181.96149282,288.00000000 -2016-12-29,98.31729921,288.00000000 -2016-12-30,9.52489316,288.00000000 -2016-12-31,7.49752144,288.00000000 -2017-01-01,4.19773714,124.26000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 442f1eb1ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" -2016-12,13.66323374,2792.95666667 -2017-01,4.19773714,124.26000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 963ab4bd11..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" -"2016 Q4",13.66323374,2792.95666667 -"2017 Q1",4.19773714,124.26000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 31025c39ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" -2016,13.66323374,2792.95666667 -2017,4.19773714,124.26000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index d645fb38f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Per Job" -0,0.00000000 -2,253.45638889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index d645fb38f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Per Job" -0,0.00000000 -2,253.45638889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index d645fb38f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Per Job" -0,0.00000000 -2,253.45638889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index d645fb38f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Per Job" -0,0.00000000 -2,253.45638889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index f1b8733132..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" -2016-12-22,0.00000000,33.49277778 -2016-12-23,0.00000000,48.00000000 -2016-12-24,0.00000000,48.00000000 -2016-12-25,0.00000000,48.00000000 -2016-12-26,0.00000000,48.00000000 -2016-12-27,0.00000000,48.00000000 -2016-12-28,0.00000000,48.00000000 -2016-12-29,0.00000000,48.00000000 -2016-12-30,0.00000000,48.00000000 -2016-12-31,0.00000000,48.00000000 -2017-01-01,0.00000000,20.71000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index acf895c1f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" -2016-12,0.00000000,465.49277778 -2017-01,0.00000000,20.71000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 8ebf038ad5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" -"2016 Q4",0.00000000,465.49277778 -"2017 Q1",0.00000000,20.71000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8868cea75d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" -2016,0.00000000,465.49277778 -2017,0.00000000,20.71000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index b62ac608af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -0,0.0000,0 -2,2.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index b62ac608af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -0,0.0000,0 -2,2.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index b62ac608af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -0,0.0000,0 -2,2.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index b62ac608af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -0,0.0000,0 -2,2.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 58fae4864f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" -2016-12-22,0.0000,2.0000 -2016-12-23,0.0000,2.0000 -2016-12-24,0.0000,2.0000 -2016-12-25,0.0000,2.0000 -2016-12-26,0.0000,2.0000 -2016-12-27,0.0000,2.0000 -2016-12-28,0.0000,2.0000 -2016-12-29,0.0000,2.0000 -2016-12-30,0.0000,2.0000 -2016-12-31,0.0000,2.0000 -2017-01-01,0.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 700cfccf84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" -2016-12,0.0000,2.0000 -2017-01,0.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 327af0ee6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" -"2016 Q4",0.0000,2.0000 -"2017 Q1",0.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 14afc1faba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" -2016,0.0000,2.0000 -2017,0.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 979be49cee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" -0,65.8108 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 979be49cee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" -0,65.8108 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 979be49cee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" -0,65.8108 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 979be49cee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" -0,65.8108 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 04fbc57539..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,12.0000,12.0000 -2016-12-23,11.6809,12.0000 -2016-12-24,11.1538,12.0000 -2016-12-25,15.1906,12.0000 -2016-12-26,19.3287,12.0000 -2016-12-27,68.9139,12.0000 -2016-12-28,107.9503,12.0000 -2016-12-29,87.7147,12.0000 -2016-12-30,69.1753,12.0000 -2016-12-31,43.3951,12.0000 -2017-01-01,22.3122,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index d76545b6a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,69.7491,12.0000 -2017-01,22.3122,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1526735c14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",69.7491,12.0000 -"2017 Q1",22.3122,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index bba2269bb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" -2016,69.7491,12.0000 -2017,22.3122,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 25b889eebc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" -0,0.0000 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 25b889eebc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" -0,0.0000 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 25b889eebc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" -0,0.0000 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 25b889eebc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" -0,0.0000 -2,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index b28dcfb2a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,0.0000,12.0000 -2016-12-23,0.0000,12.0000 -2016-12-24,0.0000,12.0000 -2016-12-25,0.0000,12.0000 -2016-12-26,0.0000,12.0000 -2016-12-27,0.0000,12.0000 -2016-12-28,0.0000,12.0000 -2016-12-29,0.0000,12.0000 -2016-12-30,0.0000,12.0000 -2016-12-31,0.0000,12.0000 -2017-01-01,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index be71e5eda7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,0.0000,12.0000 -2017-01,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 84f5c0133a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",0.0000,12.0000 -"2017 Q1",0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1a679a7d3f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" -2016,0.0000,12.0000 -2017,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4b5feb22a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -0,2.18830603,0.03779688988122659 -2,126.72819444, ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5eb9296993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -0,2.18830603,0.06286554569018009 -2,126.72819444,74.96585815668755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5eb9296993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -0,2.18830603,0.06286554569018009 -2,126.72819444,74.96585815668755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5eb9296993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -0,2.18830603,0.06286554569018009 -2,126.72819444,74.96585815668755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 58a4fb7b49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" -2016-12-22,16.94166667,16.74638889 -2016-12-23,16.30180556,24.00000000 -2016-12-24,24.00000000,24.00000000 -2016-12-25,11.30155556,24.00000000 -2016-12-26,13.35208333,24.00000000 -2016-12-27,28.83883469,24.00000000 -2016-12-28,19.13277654,24.00000000 -2016-12-29,16.39131509,24.00000000 -2016-12-30,1.81203854,24.00000000 -2016-12-31,1.60005394,24.00000000 -2017-01-01,1.07678427,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index f82a236d40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" -2016-12,2.45898158,232.74638889 -2017-01,1.07678427,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d10656e711..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" -"2016 Q4",2.45898158,232.74638889 -"2017 Q1",1.07678427,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index ee7542e7ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" -2016,2.45898158,232.74638889 -2017,1.07678427,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 3354bd7a26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -0,8.7345,0.02156363253599851 -2,12.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 3354bd7a26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -0,8.7345,0.02156363253599851 -2,12.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 3354bd7a26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -0,8.7345,0.02156363253599851 -2,12.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 3354bd7a26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -0,8.7345,0.02156363253599851 -2,12.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index da2605354c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" -2016-12-22,12.0000,12.0000 -2016-12-23,6.5000,12.0000 -2016-12-24,6.5000,12.0000 -2016-12-25,14.6000,12.0000 -2016-12-26,15.3000,12.0000 -2016-12-27,29.4390,12.0000 -2016-12-28,11.5635,12.0000 -2016-12-29,6.8608,12.0000 -2016-12-30,8.0162,12.0000 -2016-12-31,8.7856,12.0000 -2017-01-01,9.1323,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 53100fb9d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" -2016-12,8.5389,12.0000 -2017-01,9.1323,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 84c2a0866a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" -"2016 Q4",8.5389,12.0000 -"2017 Q1",9.1323,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 710206be53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" -2016,8.5389,12.0000 -2017,9.1323,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 22b5bee66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -0,4.29590611,0.08956818240268102 -2,0.00013889,0.00009820927516479828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 22b5bee66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -0,4.29590611,0.08956818240268102 -2,0.00013889,0.00009820927516479828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 22b5bee66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -0,4.29590611,0.08956818240268102 -2,0.00013889,0.00009820927516479828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 22b5bee66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -0,4.29590611,0.08956818240268102 -2,0.00013889,0.00009820927516479828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 1f58befd7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" -2016-12-22,9.33222222,0.00027778 -2016-12-23,9.59638889,0.00000000 -2016-12-24,0.00000000,0.00000000 -2016-12-25,36.96185185,0.00000000 -2016-12-26,0.00066667,0.00000000 -2016-12-27,63.81457885,0.00000000 -2016-12-28,8.81944104,0.00000000 -2016-12-29,4.73013286,0.00000000 -2016-12-30,7.20200027,0.00000000 -2016-12-31,2.68411411,0.00000000 -2017-01-01,1.71049414,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index f457b3c9e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" -2016-12,4.99060218,0.00027778 -2017-01,1.71049414,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index dab5871365..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" -"2016 Q4",4.99060218,0.00027778 -"2017 Q1",1.71049414,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index d5af09d763..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" -2016,4.99060218,0.00027778 -2017,1.71049414,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index e6b746013c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -0,1.79107501,0.017902725699608067 -2,126.72819444, ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index ebe5b92de3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -0,1.79107501,0.02569893349474275 -2,126.72819444,74.96585815668755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ebe5b92de3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -0,1.79107501,0.02569893349474275 -2,126.72819444,74.96585815668755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index ebe5b92de3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -0,1.79107501,0.02569893349474275 -2,126.72819444,74.96585815668755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 05c8e94e7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" -2016-12-22,16.94166667,16.74638889 -2016-12-23,16.30180556,24.00000000 -2016-12-24,24.00000000,24.00000000 -2016-12-25,11.30155556,24.00000000 -2016-12-26,13.35208333,24.00000000 -2016-12-27,12.44349593,24.00000000 -2016-12-28,10.13395014,24.00000000 -2016-12-29,11.77717622,24.00000000 -2016-12-30,1.48466465,24.00000000 -2016-12-31,1.42890835,24.00000000 -2017-01-01,1.01170495,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index b9f9515bd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" -2016-12,1.97419352,232.74638889 -2017-01,1.01170495,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f4d79f4748..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" -"2016 Q4",1.97419352,232.74638889 -"2017 Q1",1.01170495,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index e8e1ccfcf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" -2016,1.97419352,232.74638889 -2017,1.01170495,10.35500000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 552287dd19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","User Expansion Factor" -0,3.1066 -2,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 552287dd19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","User Expansion Factor" -0,3.1066 -2,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 552287dd19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","User Expansion Factor" -0,3.1066 -2,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 552287dd19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","User Expansion Factor" -0,3.1066 -2,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 5f1743f4da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] User Expansion Factor","[2] User Expansion Factor" -2016-12-22,1.0495,1.0000 -2016-12-23,1.0525,1.0000 -2016-12-24,1.0552,1.0000 -2016-12-25,1.1158,1.0000 -2016-12-26,1.2076,1.0000 -2016-12-27,2.0662,1.0000 -2016-12-28,1.5099,1.0000 -2016-12-29,1.3805,1.0000 -2016-12-30,4.9363,1.0000 -2016-12-31,2.5847,1.0000 -2017-01-01,2.7567,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index c425337161..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] User Expansion Factor","[2] User Expansion Factor" -2016-12,3.1517,1.0000 -2017-01,2.7567,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 180ab029e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] User Expansion Factor","[2] User Expansion Factor" -"2016 Q4",3.1517,1.0000 -"2017 Q1",2.7567,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 1cfc62ea70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] User Expansion Factor","[2] User Expansion Factor" -2016,3.1517,1.0000 -2017,2.7567,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv deleted file mode 100644 index ad07d3a637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Ended" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv deleted file mode 100644 index ad07d3a637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Ended" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index ad07d3a637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Ended" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv deleted file mode 100644 index ad07d3a637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Ended" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv deleted file mode 100644 index a5999dc9fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" -2016-12-22,0,0 -2016-12-23,0,0 -2016-12-24,0,0 -2016-12-25,0,0 -2016-12-26,0,0 -2016-12-27,0,0 -2016-12-28,0,0 -2016-12-29,0,0 -2016-12-30,26606,0 -2016-12-31,28141,0 -2017-01-01,16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv deleted file mode 100644 index fb49506c37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" -2016-12,54747,0 -2017-01,16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index f64923a86e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" -"2016 Q4",54747,0 -"2017 Q1",16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 8b5f88efef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" -2016,54747,0 -2017,16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 7e9b13a2a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Max (Core Count)" -0,336 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 7e9b13a2a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Max (Core Count)" -0,336 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 7e9b13a2a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Max (Core Count)" -0,336 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 7e9b13a2a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Max (Core Count)" -0,336 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index c755d3eac3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" -2016-12-22,12,12 -2016-12-23,12,12 -2016-12-24,12,12 -2016-12-25,24,12 -2016-12-26,24,12 -2016-12-27,144,12 -2016-12-28,192,12 -2016-12-29,192,12 -2016-12-30,336,12 -2016-12-31,336,12 -2017-01-01,192,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index ad5ba0c0b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" -2016-12,336,12 -2017-01,192,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index cf4842f488..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" -"2016 Q4",336,12 -"2017 Q1",192,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 98c5dcf2c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" -2016,336,12 -2017,192,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 341abc8acf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Min (Core Count)" -0,1 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 341abc8acf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Min (Core Count)" -0,1 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 341abc8acf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Min (Core Count)" -0,1 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 341abc8acf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Min (Core Count)" -0,1 -2,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 1ee81515da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" -2016-12-22,12,12 -2016-12-23,1,12 -2016-12-24,1,12 -2016-12-25,1,12 -2016-12-26,1,12 -2016-12-27,1,12 -2016-12-28,1,12 -2016-12-29,1,12 -2016-12-30,1,12 -2016-12-31,1,12 -2017-01-01,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 54b4a05d49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" -2016-12,1,12 -2017-01,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index a186c24576..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" -"2016 Q4",1,12 -"2017 Q1",1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 185ecc2553..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" -2016,1,12 -2017,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index ae8f0d5ee4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Normalized (% of Total Cores)" -0,0.043672295 -2,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index ae8f0d5ee4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Normalized (% of Total Cores)" -0,0.043672295 -2,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index ae8f0d5ee4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Normalized (% of Total Cores)" -0,0.043672295 -2,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index ae8f0d5ee4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Job Size: Normalized (% of Total Cores)" -0,0.043672295 -2,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 31fbde2297..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" -2016-12-22,0.300000000,0.300000000 -2016-12-23,0.162500000,0.300000000 -2016-12-24,0.162500000,0.300000000 -2016-12-25,0.365000000,0.300000000 -2016-12-26,0.191250000,0.300000000 -2016-12-27,0.147195122,0.300000000 -2016-12-28,0.057817372,0.300000000 -2016-12-29,0.034304198,0.300000000 -2016-12-30,0.040080751,0.300000000 -2016-12-31,0.043928113,0.300000000 -2017-01-01,0.045661374,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index efe48119fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" -2016-12,0.042694456,0.300000000 -2017-01,0.045661374,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 5736198e2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.042694456,0.300000000 -"2017 Q1",0.045661374,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 3e3daf710e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" -2016,0.042694456,0.300000000 -2017,0.045661374,0.300000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 444f15ae2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Running" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 444f15ae2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Running" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 444f15ae2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Running" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 444f15ae2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Running" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index cd3c48a6d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of Jobs Running","[2] Number of Jobs Running" -2016-12-22,1,1 -2016-12-23,2,1 -2016-12-24,2,1 -2016-12-25,5,1 -2016-12-26,10,1 -2016-12-27,41,1 -2016-12-28,449,1 -2016-12-29,1739,1 -2016-12-30,28854,1 -2016-12-31,29602,1 -2017-01-01,16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 925b7dc776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of Jobs Running","[2] Number of Jobs Running" -2016-12,56208,1 -2017-01,16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 5657e279e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of Jobs Running","[2] Number of Jobs Running" -"2016 Q4",56208,1 -"2017 Q1",16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index cfc70429a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of Jobs Running","[2] Number of Jobs Running" -2016,56208,1 -2017,16564,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index a8c929476e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Started" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index a8c929476e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Started" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index a8c929476e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Started" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index a8c929476e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Started" -0,71311 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index d688831a35..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of Jobs Started","[2] Number of Jobs Started" -2016-12-22,1,1 -2016-12-23,1,0 -2016-12-24,0,0 -2016-12-25,3,0 -2016-12-26,5,0 -2016-12-27,31,0 -2016-12-28,408,0 -2016-12-29,1290,0 -2016-12-30,27115,0 -2016-12-31,27354,0 -2017-01-01,15103,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index f1a7bbb780..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of Jobs Started","[2] Number of Jobs Started" -2016-12,56208,1 -2017-01,15103,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 54cd0b22c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of Jobs Started","[2] Number of Jobs Started" -"2016 Q4",56208,1 -"2017 Q1",15103,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index e52504a543..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of Jobs Started","[2] Number of Jobs Started" -2016,56208,1 -2017,15103,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 3047699123..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Submitted" -0,64414 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 404763a5ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Submitted" -0,69241 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 404763a5ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Submitted" -0,69241 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 404763a5ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Number of Jobs Submitted" -0,69241 -2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index c70274fdc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" -2016-12-22,0,1 -2016-12-23,1,0 -2016-12-24,0,0 -2016-12-25,1,0 -2016-12-26,5,0 -2016-12-27,18,0 -2016-12-28,379,0 -2016-12-29,1206,0 -2016-12-30,25660,0 -2016-12-31,24111,0 -2017-01-01,13033,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index e319a4de5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" -2016-12,56208,1 -2017-01,13033,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index a31e74a134..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" -"2016 Q4",56208,1 -"2017 Q1",13033,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 3f6c8e29a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" -2016,56208,1 -2017,13033,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index fa6cc0e585..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Total" -0,837514.3603 -2,3041.4767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index fa6cc0e585..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Total" -0,837514.3603 -2,3041.4767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fa6cc0e585..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Total" -0,837514.3603 -2,3041.4767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index fa6cc0e585..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","CPU Hours: Total" -0,837514.3603 -2,3041.4767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 98fa24dee6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] CPU Hours: Total","[2] CPU Hours: Total" -2016-12-22,203.3000,200.9567 -2016-12-23,296.6036,288.0000 -2016-12-24,312.0000,288.0000 -2016-12-25,490.2700,288.0000 -2016-12-26,1968.3333,288.0000 -2016-12-27,15265.1447,288.0000 -2016-12-28,81700.7103,288.0000 -2016-12-29,170973.7833,288.0000 -2016-12-30,274831.2672,288.0000 -2016-12-31,221941.6297,288.0000 -2017-01-01,69531.3181,248.5200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 96f9ce8626..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] CPU Hours: Total","[2] CPU Hours: Total" -2016-12,767983.0422,2792.9567 -2017-01,69531.3181,248.5200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b3957f1fb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] CPU Hours: Total","[2] CPU Hours: Total" -"2016 Q4",767983.0422,2792.9567 -"2017 Q1",69531.3181,248.5200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index c01e050aa7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] CPU Hours: Total","[2] CPU Hours: Total" -2016,767983.0422,2792.9567 -2017,69531.3181,248.5200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5392c1e3f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Total" -0,0.0000 -2,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5392c1e3f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Total" -0,0.0000 -2,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5392c1e3f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Total" -0,0.0000 -2,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5392c1e3f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","GPU Hours: Total" -0,0.0000 -2,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 42d62245f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] GPU Hours: Total","[2] GPU Hours: Total" -2016-12-22,0.0000,33.4928 -2016-12-23,0.0000,48.0000 -2016-12-24,0.0000,48.0000 -2016-12-25,0.0000,48.0000 -2016-12-26,0.0000,48.0000 -2016-12-27,0.0000,48.0000 -2016-12-28,0.0000,48.0000 -2016-12-29,0.0000,48.0000 -2016-12-30,0.0000,48.0000 -2016-12-31,0.0000,48.0000 -2017-01-01,0.0000,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 65124723ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] GPU Hours: Total","[2] GPU Hours: Total" -2016-12,0.0000,465.4928 -2017-01,0.0000,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f9c635a790..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] GPU Hours: Total","[2] GPU Hours: Total" -"2016 Q4",0.0000,465.4928 -"2017 Q1",0.0000,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 97b3347dcb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] GPU Hours: Total","[2] GPU Hours: Total" -2016,0.0000,465.4928 -2017,0.0000,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 604aadbb8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Total" -0,156050.2911 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 604aadbb8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Total" -0,156050.2911 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 604aadbb8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Total" -0,156050.2911 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 604aadbb8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Node Hours: Total" -0,156050.2911 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index c2b4e3c126..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Node Hours: Total","[2] Node Hours: Total" -2016-12-22,16.9417,16.7464 -2016-12-23,32.6036,24.0000 -2016-12-24,48.0000,24.0000 -2016-12-25,56.5078,24.0000 -2016-12-26,133.5208,24.0000 -2016-12-27,1182.3922,24.0000 -2016-12-28,8590.6167,24.0000 -2016-12-29,28504.4969,24.0000 -2016-12-30,52284.5600,24.0000 -2016-12-31,47364.7967,24.0000 -2017-01-01,17835.8547,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 06e6680993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Node Hours: Total","[2] Node Hours: Total" -2016-12,138214.4364,232.7464 -2017-01,17835.8547,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5d295d2641..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Node Hours: Total","[2] Node Hours: Total" -"2016 Q4",138214.4364,232.7464 -"2017 Q1",17835.8547,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index ac5c5c4cbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Node Hours: Total","[2] Node Hours: Total" -2016,138214.4364,232.7464 -2017,17835.8547,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c1476f714b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Total" -0,306345.3606 -2,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c1476f714b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Total" -0,306345.3606 -2,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c1476f714b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Total" -0,306345.3606 -2,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c1476f714b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wait Hours: Total" -0,306345.3606 -2,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index ca74d4f661..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Wait Hours: Total","[2] Wait Hours: Total" -2016-12-22,9.3322,0.0003 -2016-12-23,9.5964,0.0000 -2016-12-24,0.0000,0.0000 -2016-12-25,110.8856,0.0000 -2016-12-26,0.0033,0.0000 -2016-12-27,1978.2519,0.0000 -2016-12-28,3598.3319,0.0000 -2016-12-29,6101.8714,0.0000 -2016-12-30,195282.2372,0.0000 -2016-12-31,73421.2575,0.0000 -2017-01-01,25833.5931,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 1ea871b452..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Wait Hours: Total","[2] Wait Hours: Total" -2016-12,280511.7675,0.0003 -2017-01,25833.5931,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1009503fdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Wait Hours: Total","[2] Wait Hours: Total" -"2016 Q4",280511.7675,0.0003 -"2017 Q1",25833.5931,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 588cdc538e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Wait Hours: Total","[2] Wait Hours: Total" -2016,280511.7675,0.0003 -2017,25833.5931,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index a58b33dce1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Total" -0,127723.3500 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index a58b33dce1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Total" -0,127723.3500 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index a58b33dce1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Total" -0,127723.3500 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index a58b33dce1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Wall Hours: Total" -0,127723.3500 -2,253.4564 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8f2ddc6856..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Wall Hours: Total","[2] Wall Hours: Total" -2016-12-22,16.9417,16.7464 -2016-12-23,32.6036,24.0000 -2016-12-24,48.0000,24.0000 -2016-12-25,56.5078,24.0000 -2016-12-26,133.5208,24.0000 -2016-12-27,510.1833,24.0000 -2016-12-28,4550.1436,24.0000 -2016-12-29,20480.5094,24.0000 -2016-12-30,42838.5139,24.0000 -2016-12-31,42298.5450,24.0000 -2017-01-01,16757.8808,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index f213c66690..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Wall Hours: Total","[2] Wall Hours: Total" -2016-12,110965.4692,232.7464 -2017-01,16757.8808,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 88a1ee5614..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Wall Hours: Total","[2] Wall Hours: Total" -"2016 Q4",110965.4692,232.7464 -"2017 Q1",16757.8808,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 26e40e79b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Wall Hours: Total","[2] Wall Hours: Total" -2016,110965.4692,232.7464 -2017,16757.8808,20.7100 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 4d898636a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Screwdriver CPU Utilization (%)" -0,18.9655 -2,0.2880 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 16797753d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Screwdriver CPU Utilization (%)" -0,4.2145 -2,0.0773 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index cfbbfe8c0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Screwdriver CPU Utilization (%)" -0,1.7379 -2,0.0317 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv deleted file mode 100644 index a711acc12f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"GPU Count","Screwdriver CPU Utilization (%)" -0,0.4648 -2,0.0084 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 4b13cf72df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" -2016-12-22,0.2118,0.2093 -2016-12-23,0.3090,0.3000 -2016-12-24,0.3250,0.3000 -2016-12-25,0.5107,0.3000 -2016-12-26,1.0252,0.3000 -2016-12-27,3.1802,0.3000 -2016-12-28,17.0210,0.3000 -2016-12-29,35.6195,0.3000 -2016-12-30,57.2565,0.3000 -2016-12-31,46.2378,0.3000 -2017-01-01,14.4857,0.2589 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv deleted file mode 100644 index b0a3c19def..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" -2016-12,15.3843,0.2909 -2017-01,0.4673,0.0084 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 9bd99b74de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" -"2016 Q4",15.3843,0.2909 -"2017 Q1",0.1610,0.0029 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv deleted file mode 100644 index dcc72982a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/gpucount/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by GPU Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)" -2016,15.3843,0.2909 -2017,0.0397,0.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 50435a20ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Users: Active" -1,23 -2,1 -"3 - 4",3 -"5 - 8",13 -"9 - 16",24 -"17 - 32",13 -"33 - 64",14 -"65 - 128",11 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 50435a20ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Users: Active" -1,23 -2,1 -"3 - 4",3 -"5 - 8",13 -"9 - 16",24 -"17 - 32",13 -"33 - 64",14 -"65 - 128",11 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 50435a20ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Users: Active" -1,23 -2,1 -"3 - 4",3 -"5 - 8",13 -"9 - 16",24 -"17 - 32",13 -"33 - 64",14 -"65 - 128",11 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 50435a20ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Users: Active" -1,23 -2,1 -"3 - 4",3 -"5 - 8",13 -"9 - 16",24 -"17 - 32",13 -"33 - 64",14 -"65 - 128",11 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 612353e95e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" -2016-12-22,0,0,0,0,2,0,0,0,0,0 -2016-12-23,1,0,0,0,2,0,0,0,0,0 -2016-12-24,1,0,0,0,2,0,0,0,0,0 -2016-12-25,1,0,0,0,2,1,0,0,0,0 -2016-12-26,1,0,0,0,3,1,0,0,0,0 -2016-12-27,3,0,0,2,6,2,1,2,1,0 -2016-12-28,5,0,0,3,10,5,2,3,2,0 -2016-12-29,8,1,3,8,13,5,7,6,3,0 -2016-12-30,21,1,3,11,21,11,12,11,4,1 -2016-12-31,17,1,2,12,17,7,11,8,2,1 -2017-01-01,9,1,2,10,13,8,7,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index b573711cfe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" -2016-12,22,1,3,13,24,13,13,11,4,1 -2017-01,9,1,2,10,13,8,7,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 29b4e7e086..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" -"2016 Q4",22,1,3,13,24,13,13,11,4,1 -"2017 Q1",9,1,2,10,13,8,7,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 9de30b03e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Users: Active","[2] Number of Users: Active","[3 - 4] Number of Users: Active","[5 - 8] Number of Users: Active","[9 - 16] Number of Users: Active","[17 - 32] Number of Users: Active","[33 - 64] Number of Users: Active","[65 - 128] Number of Users: Active","[129 - 256] Number of Users: Active","[257 - 512] Number of Users: Active" -2016,22,1,3,13,24,13,13,11,4,1 -2017,9,1,2,10,13,8,7,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 9ffb8bf80f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of PIs: Active" -1,18 -2,1 -"3 - 4",3 -"5 - 8",11 -"9 - 16",19 -"17 - 32",11 -"33 - 64",11 -"65 - 128",10 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 9ffb8bf80f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of PIs: Active" -1,18 -2,1 -"3 - 4",3 -"5 - 8",11 -"9 - 16",19 -"17 - 32",11 -"33 - 64",11 -"65 - 128",10 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 9ffb8bf80f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of PIs: Active" -1,18 -2,1 -"3 - 4",3 -"5 - 8",11 -"9 - 16",19 -"17 - 32",11 -"33 - 64",11 -"65 - 128",10 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 9ffb8bf80f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of PIs: Active" -1,18 -2,1 -"3 - 4",3 -"5 - 8",11 -"9 - 16",19 -"17 - 32",11 -"33 - 64",11 -"65 - 128",10 -"129 - 256",4 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index b4323ac35f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" -2016-12-22,0,0,0,0,2,0,0,0,0,0 -2016-12-23,1,0,0,0,2,0,0,0,0,0 -2016-12-24,1,0,0,0,2,0,0,0,0,0 -2016-12-25,1,0,0,0,2,1,0,0,0,0 -2016-12-26,1,0,0,0,3,1,0,0,0,0 -2016-12-27,3,0,0,2,5,2,1,2,1,0 -2016-12-28,5,0,0,3,8,3,2,3,2,0 -2016-12-29,8,1,3,6,10,3,5,6,3,0 -2016-12-30,16,1,3,9,16,9,10,10,4,1 -2016-12-31,14,1,2,10,14,6,8,8,2,1 -2017-01-01,7,1,2,9,12,6,5,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 76fc0fd135..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" -2016-12,17,1,3,11,19,11,10,10,4,1 -2017-01,7,1,2,9,12,6,5,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 86b1dff11b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" -"2016 Q4",17,1,3,11,19,11,10,10,4,1 -"2017 Q1",7,1,2,9,12,6,5,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index f27fbf07c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of PIs: Active","[2] Number of PIs: Active","[3 - 4] Number of PIs: Active","[5 - 8] Number of PIs: Active","[9 - 16] Number of PIs: Active","[17 - 32] Number of PIs: Active","[33 - 64] Number of PIs: Active","[65 - 128] Number of PIs: Active","[129 - 256] Number of PIs: Active","[257 - 512] Number of PIs: Active" -2016,17,1,3,11,19,11,10,10,4,1 -2017,7,1,2,9,12,6,5,4,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 9dd85d2285..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Resources: Active" -1,5 -2,2 -"3 - 4",3 -"5 - 8",4 -"9 - 16",5 -"17 - 32",4 -"33 - 64",3 -"65 - 128",3 -"129 - 256",2 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 9dd85d2285..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Resources: Active" -1,5 -2,2 -"3 - 4",3 -"5 - 8",4 -"9 - 16",5 -"17 - 32",4 -"33 - 64",3 -"65 - 128",3 -"129 - 256",2 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 9dd85d2285..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Resources: Active" -1,5 -2,2 -"3 - 4",3 -"5 - 8",4 -"9 - 16",5 -"17 - 32",4 -"33 - 64",3 -"65 - 128",3 -"129 - 256",2 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 9dd85d2285..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Resources: Active" -1,5 -2,2 -"3 - 4",3 -"5 - 8",4 -"9 - 16",5 -"17 - 32",4 -"33 - 64",3 -"65 - 128",3 -"129 - 256",2 -"257 - 512",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index fcfb2150c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" -2016-12-22,0,0,0,0,2,0,0,0,0,0 -2016-12-23,1,0,0,0,2,0,0,0,0,0 -2016-12-24,1,0,0,0,2,0,0,0,0,0 -2016-12-25,1,0,0,0,2,1,0,0,0,0 -2016-12-26,1,0,0,0,3,1,0,0,0,0 -2016-12-27,2,0,0,2,5,2,1,1,1,0 -2016-12-28,2,0,0,2,5,3,2,2,2,0 -2016-12-29,2,1,3,3,5,3,3,2,2,0 -2016-12-30,4,1,3,4,5,4,3,3,2,1 -2016-12-31,4,2,2,4,5,3,3,2,2,1 -2017-01-01,4,1,2,4,5,3,2,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 9b104a7743..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" -2016-12,4,2,3,4,5,4,3,3,2,1 -2017-01,4,1,2,4,5,3,2,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 64da8a4ae0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" -"2016 Q4",4,2,3,4,5,4,3,3,2,1 -"2017 Q1",4,1,2,4,5,3,2,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index ba43043ecf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Resources: Active","[2] Number of Resources: Active","[3 - 4] Number of Resources: Active","[5 - 8] Number of Resources: Active","[9 - 16] Number of Resources: Active","[17 - 32] Number of Resources: Active","[33 - 64] Number of Resources: Active","[65 - 128] Number of Resources: Active","[129 - 256] Number of Resources: Active","[257 - 512] Number of Resources: Active" -2016,4,2,3,4,5,4,3,3,2,1 -2017,4,1,2,4,5,3,2,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8936ed96d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index c0e6d67029..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c0e6d67029..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index c0e6d67029..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 761462d4e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" -2016-12-22,0,0,0,0,202.12833333,0,0,0,0,0 -2016-12-23,8.60361111,0,0,0,288.00000000,0,0,0,0,0 -2016-12-24,24.00000000,0,0,0,288.00000000,0,0,0,0,0 -2016-12-25,24.00000000,0,0,0,200.63888889,76.17666667,0,0,0,0 -2016-12-26,24.00000000,0,0,0,135.04166667,576.00000000,0,0,0,0 -2016-12-27,10.64601852,0,0,94.23481481,248.25777778,231.74256410,243.18222222,1306.80833333,2997.12000000,0 -2016-12-28,8.78788644,0,0,122.16625000,166.40375661,471.85305556,1074.67333333,1507.06692810,3440.36148148,0 -2016-12-29,13.40730206,7.24000000,29.80072222,22.73914396,101.22594378,649.60562092,798.73777778,1664.46660819,4135.82222222,0 -2016-12-30,6.90473878,48.00000000,3.61978632,2.18327092,10.24904606,107.32861811,228.24631313,1185.01319865,3432.16606061,3497.71333333 -2016-12-31,7.42391623,14.57163265,73.27320988,2.68285810,7.26953416,130.50399356,382.53380952,903.59550617,1041.07851852,5701.54666667 -2017-01-01,10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index bc86265e40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" -2016-12,12.08505760,15.13530612,6.21603370,2.64634175,10.27666632,334.29748439,449.30588123,2662.12213889,10203.51074074,6348.48666667 -2017-01,10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 8dd76e0de8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" -"2016 Q4",12.08505760,15.13530612,6.21603370,2.64634175,10.27666632,334.29748439,449.30588123,2662.12213889,10203.51074074,6348.48666667 -"2017 Q1",10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 79d70f4940..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3 - 4] CPU Hours: Per Job","[5 - 8] CPU Hours: Per Job","[9 - 16] CPU Hours: Per Job","[17 - 32] CPU Hours: Per Job","[33 - 64] CPU Hours: Per Job","[65 - 128] CPU Hours: Per Job","[129 - 256] CPU Hours: Per Job","[257 - 512] CPU Hours: Per Job" -2016,12.08505760,15.13530612,6.21603370,2.64634175,10.27666632,334.29748439,449.30588123,2662.12213889,10203.51074074,6348.48666667 -2017,10.68335498,35.25833333,50.94990741,1.14431436,6.09780770,32.28830346,75.95636574,250.02254902,4.50666667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index eaa66eb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Per Job" -1,0.00000000 -2,0.00000000 -"3 - 4",0.00000000 -"5 - 8",0.00000000 -"9 - 16",0.02453833 -"17 - 32",0.00000000 -"33 - 64",0.00000000 -"65 - 128",0.00000000 -"129 - 256",0.00000000 -"257 - 512",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index eaa66eb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Per Job" -1,0.00000000 -2,0.00000000 -"3 - 4",0.00000000 -"5 - 8",0.00000000 -"9 - 16",0.02453833 -"17 - 32",0.00000000 -"33 - 64",0.00000000 -"65 - 128",0.00000000 -"129 - 256",0.00000000 -"257 - 512",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index eaa66eb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Per Job" -1,0.00000000 -2,0.00000000 -"3 - 4",0.00000000 -"5 - 8",0.00000000 -"9 - 16",0.02453833 -"17 - 32",0.00000000 -"33 - 64",0.00000000 -"65 - 128",0.00000000 -"129 - 256",0.00000000 -"257 - 512",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index eaa66eb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Per Job" -1,0.00000000 -2,0.00000000 -"3 - 4",0.00000000 -"5 - 8",0.00000000 -"9 - 16",0.02453833 -"17 - 32",0.00000000 -"33 - 64",0.00000000 -"65 - 128",0.00000000 -"129 - 256",0.00000000 -"257 - 512",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7bf796e22c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" -2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0 -2016-12-23,0.00000000,0,0,0,24.00000000,0,0,0,0,0 -2016-12-24,0.00000000,0,0,0,24.00000000,0,0,0,0,0 -2016-12-25,0.00000000,0,0,0,16.00000000,0.00000000,0,0,0,0 -2016-12-26,0.00000000,0,0,0,6.00000000,0.00000000,0,0,0,0 -2016-12-27,0.00000000,0,0,0.00000000,3.42857143,0.00000000,0.00000000,0.00000000,0.00000000,0 -2016-12-28,0.00000000,0,0,0.00000000,1.14285714,0.00000000,0.00000000,0.00000000,0.00000000,0 -2016-12-29,0.00000000,0.00000000,0.00000000,0.00000000,0.28915663,0.00000000,0.00000000,0.00000000,0.00000000,0 -2016-12-30,0.00000000,0.00000000,0.00000000,0.00000000,0.00870511,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,0.00000000,0.00000000,0.00000000,0.00000000,0.00445228,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01-01,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index bef8b75874..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" -2016-12,0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1faea3cceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" -"2016 Q4",0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index ad0fd6b630..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" -2016,0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index a359bebe60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0000,0 -2,0.0000,0 -"3 - 4",0.0000,0 -"5 - 8",0.0000,0 -"9 - 16",0.0002,0.00013691016581798967 -"17 - 32",0.0000,0 -"33 - 64",0.0000,0 -"65 - 128",0.0000,0 -"129 - 256",0.0000,0 -"257 - 512",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index a359bebe60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0000,0 -2,0.0000,0 -"3 - 4",0.0000,0 -"5 - 8",0.0000,0 -"9 - 16",0.0002,0.00013691016581798967 -"17 - 32",0.0000,0 -"33 - 64",0.0000,0 -"65 - 128",0.0000,0 -"129 - 256",0.0000,0 -"257 - 512",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index a359bebe60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0000,0 -2,0.0000,0 -"3 - 4",0.0000,0 -"5 - 8",0.0000,0 -"9 - 16",0.0002,0.00013691016581798967 -"17 - 32",0.0000,0 -"33 - 64",0.0000,0 -"65 - 128",0.0000,0 -"129 - 256",0.0000,0 -"257 - 512",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index a359bebe60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0000,0 -2,0.0000,0 -"3 - 4",0.0000,0 -"5 - 8",0.0000,0 -"9 - 16",0.0002,0.00013691016581798967 -"17 - 32",0.0000,0 -"33 - 64",0.0000,0 -"65 - 128",0.0000,0 -"129 - 256",0.0000,0 -"257 - 512",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index b8e72d2c03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" -2016-12-22,0,0,0,0,1.0000,0,0,0,0,0 -2016-12-23,0.0000,0,0,0,1.0000,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,1.0000,0,0,0,0,0 -2016-12-25,0.0000,0,0,0,0.6667,0.0000,0,0,0,0 -2016-12-26,0.0000,0,0,0,0.2500,0.0000,0,0,0,0 -2016-12-27,0.0000,0,0,0.0000,0.1429,0.0000,0.0000,0.0000,0.0000,0 -2016-12-28,0.0000,0,0,0.0000,0.0476,0.0000,0.0000,0.0000,0.0000,0 -2016-12-29,0.0000,0.0000,0.0000,0.0000,0.0120,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0000,0.0000,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 4a160c013a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" -2016-12,0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 3c9a2b6a6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 012c23a4fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" -2016,0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index e2bbbe38a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By CPU Hours (Core Count)" -1,1.0000 -2,2.0000 -"3 - 4",4.0000 -"5 - 8",7.9949 -"9 - 16",12.8641 -"17 - 32",29.6605 -"33 - 64",57.1742 -"65 - 128",94.6628 -"129 - 256",187.5579 -"257 - 512",335.9767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index e2bbbe38a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By CPU Hours (Core Count)" -1,1.0000 -2,2.0000 -"3 - 4",4.0000 -"5 - 8",7.9949 -"9 - 16",12.8641 -"17 - 32",29.6605 -"33 - 64",57.1742 -"65 - 128",94.6628 -"129 - 256",187.5579 -"257 - 512",335.9767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e2bbbe38a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By CPU Hours (Core Count)" -1,1.0000 -2,2.0000 -"3 - 4",4.0000 -"5 - 8",7.9949 -"9 - 16",12.8641 -"17 - 32",29.6605 -"33 - 64",57.1742 -"65 - 128",94.6628 -"129 - 256",187.5579 -"257 - 512",335.9767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index e2bbbe38a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By CPU Hours (Core Count)" -1,1.0000 -2,2.0000 -"3 - 4",4.0000 -"5 - 8",7.9949 -"9 - 16",12.8641 -"17 - 32",29.6605 -"33 - 64",57.1742 -"65 - 128",94.6628 -"129 - 256",187.5579 -"257 - 512",335.9767 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6e2b243d53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 -2016-12-23,1.0000,0,0,0,12.0000,0,0,0,0,0 -2016-12-24,1.0000,0,0,0,12.0000,0,0,0,0,0 -2016-12-25,1.0000,0,0,0,12.0000,24.0000,0,0,0,0 -2016-12-26,1.0000,0,0,0,12.8010,24.0000,0,0,0,0 -2016-12-27,1.0000,0,0,8.0000,14.7307,28.6879,64.0000,89.1689,144.0000,0 -2016-12-28,1.0000,0,0,8.0000,14.4214,30.6797,59.4342,95.6054,186.6424,0 -2016-12-29,1.0000,2.0000,4.0000,7.9670,14.3348,31.0970,56.1561,94.2313,187.1857,0 -2016-12-30,1.0000,2.0000,4.0000,7.9934,12.7911,30.6708,56.6778,94.7927,191.0737,335.9577 -2016-12-31,1.0000,2.0000,4.0000,7.9995,12.4744,26.0424,58.0319,95.6675,192.0000,336.0000 -2017-01-01,1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7b8f518bf0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,1.0000,2.0000,4.0000,7.9949,12.8973,29.8837,57.2790,94.7527,187.5585,335.9767 -2017-01,1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d31faa3599..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",1.0000,2.0000,4.0000,7.9949,12.8973,29.8837,57.2790,94.7527,187.5585,335.9767 -"2017 Q1",1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index aa74f7866c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[3 - 4] Job Size: Weighted By CPU Hours (Core Count)","[5 - 8] Job Size: Weighted By CPU Hours (Core Count)","[9 - 16] Job Size: Weighted By CPU Hours (Core Count)","[17 - 32] Job Size: Weighted By CPU Hours (Core Count)","[33 - 64] Job Size: Weighted By CPU Hours (Core Count)","[65 - 128] Job Size: Weighted By CPU Hours (Core Count)","[129 - 256] Job Size: Weighted By CPU Hours (Core Count)","[257 - 512] Job Size: Weighted By CPU Hours (Core Count)" -2016,1.0000,2.0000,4.0000,7.9949,12.8973,29.8837,57.2790,94.7527,187.5585,335.9767 -2017,1.0000,2.0000,4.0000,7.9946,12.6792,25.2388,56.4252,92.4113,179.6923,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5160216b64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",12.0000 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5160216b64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",12.0000 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5160216b64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",12.0000 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5160216b64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",12.0000 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6c3098c996..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 -2016-12-23,0.0000,0,0,0,12.0000,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,12.0000,0,0,0,0,0 -2016-12-25,0.0000,0,0,0,12.0000,0.0000,0,0,0,0 -2016-12-26,0.0000,0,0,0,12.0000,0.0000,0,0,0,0 -2016-12-27,0.0000,0,0,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-28,0.0000,0,0,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-29,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 429299c1eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b1b221900b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index eec96d8299..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" -2016,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8e30061803..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 2eba5956e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 2eba5956e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 2eba5956e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8390eb3ae8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" -2016-12-22,0,0,0,0,16.84402778,0,0,0,0,0 -2016-12-23,8.60361111,0,0,0,24.00000000,0,0,0,0,0 -2016-12-24,24.00000000,0,0,0,24.00000000,0,0,0,0,0 -2016-12-25,24.00000000,0,0,0,16.71990741,3.17402778,0,0,0,0 -2016-12-26,24.00000000,0,0,0,10.69010417,24.00000000,0,0,0,0 -2016-12-27,10.64601852,0,0,11.77935185,17.15728175,11.37042735,30.39777778,108.90069444,249.76000000,0 -2016-12-28,8.78788644,0,0,15.27078125,11.76839947,21.58686343,134.33416667,123.18668301,223.02259259,0 -2016-12-29,13.40730206,3.62000000,7.45018056,2.86114450,7.20452811,37.69553922,80.17761905,136.33059942,272.17777778,0 -2016-12-30,6.90473878,24.00000000,0.90494658,0.27326942,0.81252131,6.33885621,24.09976010,95.63723064,217.72141414,291.47611111 -2016-12-31,7.42391623,7.28581633,18.31830247,0.33539378,0.58915499,10.90767311,35.28030423,77.56779012,65.08074074,475.12888889 -2017-01-01,10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 2c5715be45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" -2016-12,12.08505760,7.56765306,1.55400842,0.33112911,0.80947667,19.71264045,45.88940134,218.91183681,663.28361111,529.04055556 -2017-01,10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c25b5a6550..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" -"2016 Q4",12.08505760,7.56765306,1.55400842,0.33112911,0.80947667,19.71264045,45.88940134,218.91183681,663.28361111,529.04055556 -"2017 Q1",10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7b58133e1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Node Hours: Per Job","[2] Node Hours: Per Job","[3 - 4] Node Hours: Per Job","[5 - 8] Node Hours: Per Job","[9 - 16] Node Hours: Per Job","[17 - 32] Node Hours: Per Job","[33 - 64] Node Hours: Per Job","[65 - 128] Node Hours: Per Job","[129 - 256] Node Hours: Per Job","[257 - 512] Node Hours: Per Job" -2016,12.08505760,7.56765306,1.55400842,0.33112911,0.80947667,19.71264045,45.88940134,218.91183681,663.28361111,529.04055556 -2017,10.68335498,17.62916667,12.73747685,0.14319450,0.49146776,2.78607527,7.65814236,20.84214052,0.44777778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 88b53ed8c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 88b53ed8c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 88b53ed8c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 88b53ed8c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -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/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 771b0729a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 -2016-12-23,1.0000,0,0,0,12.0000,0,0,0,0,0 -2016-12-24,1.0000,0,0,0,12.0000,0,0,0,0,0 -2016-12-25,1.0000,0,0,0,12.0000,24.0000,0,0,0,0 -2016-12-26,1.0000,0,0,0,14.5000,24.0000,0,0,0,0 -2016-12-27,1.0000,0,0,8.0000,14.8571,30.1538,64.0000,90.0000,144.0000,0 -2016-12-28,1.0000,0,0,8.0000,14.0000,30.5000,56.0000,95.5294,186.6667,0 -2016-12-29,1.0000,2.0000,4.0000,7.9856,12.8675,30.5882,56.0000,93.0526,184.0000,0 -2016-12-30,1.0000,2.0000,4.0000,7.9995,12.0747,25.9496,55.0000,95.3333,184.7273,312.0000 -2016-12-31,1.0000,2.0000,4.0000,7.9998,12.0312,22.9565,51.0476,95.1111,192.0000,336.0000 -2017-01-01,1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 86072b7bf2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" -2016-12,1.0000,2.0000,4.0000,7.9997,12.0355,24.8315,53.3793,94.5500,185.3333,312.0000 -2017-01,1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 902ed2b119..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" -"2016 Q4",1.0000,2.0000,4.0000,7.9997,12.0355,24.8315,53.3793,94.5500,185.3333,312.0000 -"2017 Q1",1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index f5f2be89f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[3 - 4] Job Size: Per Job (Core Count)","[5 - 8] Job Size: Per Job (Core Count)","[9 - 16] Job Size: Per Job (Core Count)","[17 - 32] Job Size: Per Job (Core Count)","[33 - 64] Job Size: Per Job (Core Count)","[65 - 128] Job Size: Per Job (Core Count)","[129 - 256] Job Size: Per Job (Core Count)","[257 - 512] Job Size: Per Job (Core Count)" -2016,1.0000,2.0000,4.0000,7.9997,12.0355,24.8315,53.3793,94.5500,185.3333,312.0000 -2017,1.0000,2.0000,4.0000,7.9997,12.0979,25.8495,51.5833,95.5294,176.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7b310d09ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -1,0.94761662,0.021277245449250474 -2,27.04697846,0.2774036771007414 -"3 - 4",223.20642001,1.3670657449209522 -"5 - 8",2.38386221,0.04482950539481939 -"9 - 16",1.24761007,0.025114172332948253 -"17 - 32",14.34069231,1.304127513906302 -"33 - 64",7.00926843,0.8845416369380606 -"65 - 128",22.27161812,3.7233393634709016 -"129 - 256",10.57740079,5.825320513630149 -"257 - 512",6.67972222,1.4827636364381243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 7b310d09ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -1,0.94761662,0.021277245449250474 -2,27.04697846,0.2774036771007414 -"3 - 4",223.20642001,1.3670657449209522 -"5 - 8",2.38386221,0.04482950539481939 -"9 - 16",1.24761007,0.025114172332948253 -"17 - 32",14.34069231,1.304127513906302 -"33 - 64",7.00926843,0.8845416369380606 -"65 - 128",22.27161812,3.7233393634709016 -"129 - 256",10.57740079,5.825320513630149 -"257 - 512",6.67972222,1.4827636364381243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7b310d09ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -1,0.94761662,0.021277245449250474 -2,27.04697846,0.2774036771007414 -"3 - 4",223.20642001,1.3670657449209522 -"5 - 8",2.38386221,0.04482950539481939 -"9 - 16",1.24761007,0.025114172332948253 -"17 - 32",14.34069231,1.304127513906302 -"33 - 64",7.00926843,0.8845416369380606 -"65 - 128",22.27161812,3.7233393634709016 -"129 - 256",10.57740079,5.825320513630149 -"257 - 512",6.67972222,1.4827636364381243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7b310d09ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -1,0.94761662,0.021277245449250474 -2,27.04697846,0.2774036771007414 -"3 - 4",223.20642001,1.3670657449209522 -"5 - 8",2.38386221,0.04482950539481939 -"9 - 16",1.24761007,0.025114172332948253 -"17 - 32",14.34069231,1.304127513906302 -"33 - 64",7.00926843,0.8845416369380606 -"65 - 128",22.27161812,3.7233393634709016 -"129 - 256",10.57740079,5.825320513630149 -"257 - 512",6.67972222,1.4827636364381243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index c6b75987e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" -2016-12-22,0,0,0,0,4.66625000,0,0,0,0,0 -2016-12-23,9.59638889,0,0,0,0.00000000,0,0,0,0,0 -2016-12-24,0.00000000,0,0,0,0.00000000,0,0,0,0,0 -2016-12-25,0.00000000,0,0,0,0.06333333,55.41111111,0,0,0,0 -2016-12-26,0.00000000,0,0,0,0.00066667,0.00000000,0,0,0,0 -2016-12-27,0.00000000,0,0,227.90537037,8.47087963,8.54411616,0.00000000,96.80513889,78.78861111,0 -2016-12-28,0.04817672,0,0,140.59666667,13.48954365,42.30315657,36.87611111,99.70848291,0.00017361,0 -2016-12-29,0.06132672,0.00444444,131.82598611,13.37330150,0.53786514,33.35175000,11.39555556,17.07518519,25.72861111,0 -2016-12-30,1.10740738,0.00000000,226.93986503,1.39299409,0.94008446,11.52861111,8.42826577,2.98377976,0.77944444,6.67972222 -2016-12-31,1.35311510,27.32576747,19.28881944,3.95346547,0.89391908,19.21645951,0.49553571,2.09069444,5.17777778,0.00000000 -2017-01-01,0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index f3b02448dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" -2016-12,0.98849809,27.04697846,223.20642001,2.69523606,0.93139446,17.51327403,7.11443487,26.93531597,9.20631944,6.67972222 -2017-01,0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5b8efadac8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" -"2016 Q4",0.98849809,27.04697846,223.20642001,2.69523606,0.93139446,17.51327403,7.11443487,26.93531597,9.20631944,6.67972222 -"2017 Q1",0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index c37f8171d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Wait Hours: Per Job","[2] Wait Hours: Per Job","[3 - 4] Wait Hours: Per Job","[5 - 8] Wait Hours: Per Job","[9 - 16] Wait Hours: Per Job","[17 - 32] Wait Hours: Per Job","[33 - 64] Wait Hours: Per Job","[65 - 128] Wait Hours: Per Job","[129 - 256] Wait Hours: Per Job","[257 - 512] Wait Hours: Per Job" -2016,0.98849809,27.04697846,223.20642001,2.69523606,0.93139446,17.51327403,7.11443487,26.93531597,9.20631944,6.67972222 -2017,0.11093450,0.00000000,0.00000000,1.38397662,2.36267888,7.45386856,6.86741602,6.05006039,18.80388889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index a11fa8558f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.015228120582305632 -"17 - 32",8.28519444,0.5577161576430426 -"33 - 64",5.29163641,0.817315922487462 -"65 - 128",22.99202805, -"129 - 256",46.94807540, -"257 - 512",18.89583333,1.2783184846305509 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 81a067564c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.028202744752572246 -"17 - 32",8.28519444,1.1171022585583983 -"33 - 64",5.29163641,1.4989071580899005 -"65 - 128",22.99202805,2.657295484972631 -"129 - 256",46.94807540,9.002831841794622 -"257 - 512",18.89583333,13.346247657795425 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 81a067564c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.028202744752572246 -"17 - 32",8.28519444,1.1171022585583983 -"33 - 64",5.29163641,1.4989071580899005 -"65 - 128",22.99202805,2.657295484972631 -"129 - 256",46.94807540,9.002831841794622 -"257 - 512",18.89583333,13.346247657795425 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 81a067564c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Per Job","Std Dev: Wall 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.74433715,0.028202744752572246 -"17 - 32",8.28519444,1.1171022585583983 -"33 - 64",5.29163641,1.4989071580899005 -"65 - 128",22.99202805,2.657295484972631 -"129 - 256",46.94807540,9.002831841794622 -"257 - 512",18.89583333,13.346247657795425 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index af73e7e718..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" -2016-12-22,0,0,0,0,16.84402778,0,0,0,0,0 -2016-12-23,8.60361111,0,0,0,24.00000000,0,0,0,0,0 -2016-12-24,24.00000000,0,0,0,24.00000000,0,0,0,0,0 -2016-12-25,24.00000000,0,0,0,16.71990741,3.17402778,0,0,0,0 -2016-12-26,24.00000000,0,0,0,10.69010417,24.00000000,0,0,0,0 -2016-12-27,10.64601852,0,0,11.77935185,17.15728175,8.24136752,3.79972222,14.90409722,20.81333333,0 -2016-12-28,8.78788644,0,0,15.27078125,11.76839947,15.56885417,18.38902778,15.87996732,18.58521605,0 -2016-12-29,13.40730206,3.62000000,7.45018056,2.86114450,7.20452811,21.11080065,14.62440476,17.85836257,22.24888889,0 -2016-12-30,6.90473878,24.00000000,0.90494658,0.27326942,0.81185654,3.56487162,4.11833965,12.69962963,17.98661616,10.41138889 -2016-12-31,7.42391623,7.28581633,18.31830247,0.33539378,0.58783261,5.15196055,6.80177249,9.52966667,5.42228395,16.96888889 -2017-01-01,10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index b1317ab531..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" -2016-12,12.08505760,7.56765306,1.55400842,0.33112911,0.80836307,11.41916042,8.05159962,28.44005208,54.76854167,18.89583333 -2017-01,10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1d078444f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" -"2016 Q4",12.08505760,7.56765306,1.55400842,0.33112911,0.80836307,11.41916042,8.05159962,28.44005208,54.76854167,18.89583333 -"2017 Q1",10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5435c41c2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Wall Hours: Per Job","[2] Wall Hours: Per Job","[3 - 4] Wall Hours: Per Job","[5 - 8] Wall Hours: Per Job","[9 - 16] Wall Hours: Per Job","[17 - 32] Wall Hours: Per Job","[33 - 64] Wall Hours: Per Job","[65 - 128] Wall Hours: Per Job","[129 - 256] Wall Hours: Per Job","[257 - 512] Wall Hours: Per Job" -2016,12.08505760,7.56765306,1.55400842,0.33112911,0.80836307,11.41916042,8.05159962,28.44005208,54.76854167,18.89583333 -2017,10.68335498,17.62916667,12.73747685,0.14319450,0.48657929,1.30688172,1.40546875,2.73455065,0.02527778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index c31588a295..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","User Expansion Factor" -1,1.0712 -2,4.4910 -"3 - 4",127.6190 -"5 - 8",9.2691 -"9 - 16",2.5196 -"17 - 32",2.7553 -"33 - 64",2.3863 -"65 - 128",2.0131 -"129 - 256",1.2892 -"257 - 512",1.3204 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index c31588a295..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","User Expansion Factor" -1,1.0712 -2,4.4910 -"3 - 4",127.6190 -"5 - 8",9.2691 -"9 - 16",2.5196 -"17 - 32",2.7553 -"33 - 64",2.3863 -"65 - 128",2.0131 -"129 - 256",1.2892 -"257 - 512",1.3204 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index c31588a295..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","User Expansion Factor" -1,1.0712 -2,4.4910 -"3 - 4",127.6190 -"5 - 8",9.2691 -"9 - 16",2.5196 -"17 - 32",2.7553 -"33 - 64",2.3863 -"65 - 128",2.0131 -"129 - 256",1.2892 -"257 - 512",1.3204 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index c31588a295..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","User Expansion Factor" -1,1.0712 -2,4.4910 -"3 - 4",127.6190 -"5 - 8",9.2691 -"9 - 16",2.5196 -"17 - 32",2.7553 -"33 - 64",2.3863 -"65 - 128",2.0131 -"129 - 256",1.2892 -"257 - 512",1.3204 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 468f01ed0d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" -2016-12-22,0,0,0,0,1.0249,0,0,0,0,0 -2016-12-23,1.0610,0,0,0,1.0247,0,0,0,0,0 -2016-12-24,1.0610,0,0,0,1.0247,0,0,0,0,0 -2016-12-25,1.0610,0,0,0,1.0237,1.6127,0,0,0,0 -2016-12-26,1.0610,0,0,0,1.0141,1.5220,0,0,0,0 -2016-12-27,1.0459,0,0,4.8681,1.0652,1.5286,1.0000,2.4204,2.0942,0 -2016-12-28,1.0017,0,0,3.8006,1.2217,1.3810,1.1503,2.4463,1.1570,0 -2016-12-29,1.0021,1.0001,9.4448,3.9818,1.1607,1.8698,1.2642,2.0881,1.2520,0 -2016-12-30,1.0685,1.0001,246.9648,6.3712,2.1290,3.6189,3.0067,1.9162,1.0828,1.4826 -2016-12-31,1.1475,4.7123,1.2556,12.1702,2.4884,2.7548,1.2306,1.5938,1.1414,1.1213 -2017-01-01,1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index abb617eb18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" -2016-12,1.0806,4.5740,144.6304,8.8318,2.1387,2.3439,1.9346,1.9787,1.1954,1.3204 -2017-01,1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 73e21ed0b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" -"2016 Q4",1.0806,4.5740,144.6304,8.8318,2.1387,2.3439,1.9346,1.9787,1.1954,1.3204 -"2017 Q1",1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index df0eca0bca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] User Expansion Factor","[2] User Expansion Factor","[3 - 4] User Expansion Factor","[5 - 8] User Expansion Factor","[9 - 16] User Expansion Factor","[17 - 32] User Expansion Factor","[33 - 64] User Expansion Factor","[65 - 128] User Expansion Factor","[129 - 256] User Expansion Factor","[257 - 512] User Expansion Factor" -2016,1.0806,4.5740,144.6304,8.8318,2.1387,2.3439,1.9346,1.9787,1.1954,1.3204 -2017,1.0103,1.0001,1.0172,12.4291,4.5952,8.3274,5.6576,2.8626,835.1017,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 185ac84045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Ended" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 185ac84045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Ended" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 185ac84045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Ended" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 185ac84045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Ended" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 62b61297ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" -2016-12-22,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0,0,0 -2016-12-30,2720,0,714,17674,5313,109,37,35,3,1 -2016-12-31,3067,97,6,14372,10481,58,16,34,9,1 -2017-01-01,1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 65f7760445..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" -2016-12,5787,97,720,32046,15794,167,53,69,12,2 -2017-01,1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 2f70550df9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" -"2016 Q4",5787,97,720,32046,15794,167,53,69,12,2 -"2017 Q1",1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 7ea131f551..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[3 - 4] Number of Jobs Ended","[5 - 8] Number of Jobs Ended","[9 - 16] Number of Jobs Ended","[17 - 32] Number of Jobs Ended","[33 - 64] Number of Jobs Ended","[65 - 128] Number of Jobs Ended","[129 - 256] Number of Jobs Ended","[257 - 512] Number of Jobs Ended" -2016,5787,97,720,32046,15794,167,53,69,12,2 -2017,1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 19d5b98a2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Max (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",8 -"9 - 16",16 -"17 - 32",32 -"33 - 64",64 -"65 - 128",128 -"129 - 256",192 -"257 - 512",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 19d5b98a2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Max (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",8 -"9 - 16",16 -"17 - 32",32 -"33 - 64",64 -"65 - 128",128 -"129 - 256",192 -"257 - 512",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 19d5b98a2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Max (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",8 -"9 - 16",16 -"17 - 32",32 -"33 - 64",64 -"65 - 128",128 -"129 - 256",192 -"257 - 512",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 19d5b98a2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Max (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",8 -"9 - 16",16 -"17 - 32",32 -"33 - 64",64 -"65 - 128",128 -"129 - 256",192 -"257 - 512",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index b49772402d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,12,0,0,0,0,0 -2016-12-23,1,0,0,0,12,0,0,0,0,0 -2016-12-24,1,0,0,0,12,0,0,0,0,0 -2016-12-25,1,0,0,0,12,24,0,0,0,0 -2016-12-26,1,0,0,0,16,24,0,0,0,0 -2016-12-27,1,0,0,8,16,32,64,96,144,0 -2016-12-28,1,0,0,8,16,32,64,112,192,0 -2016-12-29,1,2,4,8,16,32,64,112,192,0 -2016-12-30,1,2,4,8,16,32,64,128,192,336 -2016-12-31,1,2,4,8,16,32,64,112,192,336 -2017-01-01,1,2,4,8,16,32,64,128,192,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 723811aa3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" -2016-12,1,2,4,8,16,32,64,128,192,336 -2017-01,1,2,4,8,16,32,64,128,192,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 63cab2c860..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" -"2016 Q4",1,2,4,8,16,32,64,128,192,336 -"2017 Q1",1,2,4,8,16,32,64,128,192,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 563eb5ac92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3 - 4] Job Size: Max (Core Count)","[5 - 8] Job Size: Max (Core Count)","[9 - 16] Job Size: Max (Core Count)","[17 - 32] Job Size: Max (Core Count)","[33 - 64] Job Size: Max (Core Count)","[65 - 128] Job Size: Max (Core Count)","[129 - 256] Job Size: Max (Core Count)","[257 - 512] Job Size: Max (Core Count)" -2016,1,2,4,8,16,32,64,128,192,336 -2017,1,2,4,8,16,32,64,128,192,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 60da25f374..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Min (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",5 -"9 - 16",12 -"17 - 32",20 -"33 - 64",36 -"65 - 128",72 -"129 - 256",144 -"257 - 512",288 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 60da25f374..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Min (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",5 -"9 - 16",12 -"17 - 32",20 -"33 - 64",36 -"65 - 128",72 -"129 - 256",144 -"257 - 512",288 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 60da25f374..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Min (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",5 -"9 - 16",12 -"17 - 32",20 -"33 - 64",36 -"65 - 128",72 -"129 - 256",144 -"257 - 512",288 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 60da25f374..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Job Size: Min (Core Count)" -1,1 -2,2 -"3 - 4",4 -"5 - 8",5 -"9 - 16",12 -"17 - 32",20 -"33 - 64",36 -"65 - 128",72 -"129 - 256",144 -"257 - 512",288 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 9d3bbf33c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,12,0,0,0,0,0 -2016-12-23,1,0,0,0,12,0,0,0,0,0 -2016-12-24,1,0,0,0,12,0,0,0,0,0 -2016-12-25,1,0,0,0,12,24,0,0,0,0 -2016-12-26,1,0,0,0,12,24,0,0,0,0 -2016-12-27,1,0,0,8,12,24,64,72,144,0 -2016-12-28,1,0,0,8,12,20,48,72,144,0 -2016-12-29,1,2,4,5,12,20,40,72,144,0 -2016-12-30,1,2,4,5,12,20,40,72,144,288 -2016-12-31,1,2,4,5,12,20,36,72,192,336 -2017-01-01,1,2,4,5,12,20,36,72,160,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 80867be114..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" -2016-12,1,2,4,5,12,20,36,72,144,288 -2017-01,1,2,4,5,12,20,36,72,160,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index cacdfdb4df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" -"2016 Q4",1,2,4,5,12,20,36,72,144,288 -"2017 Q1",1,2,4,5,12,20,36,72,160,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index a5af11a242..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[3 - 4] Job Size: Min (Core Count)","[5 - 8] Job Size: Min (Core Count)","[9 - 16] Job Size: Min (Core Count)","[17 - 32] Job Size: Min (Core Count)","[33 - 64] Job Size: Min (Core Count)","[65 - 128] Job Size: Min (Core Count)","[129 - 256] Job Size: Min (Core Count)","[257 - 512] Job Size: Min (Core Count)" -2016,1,2,4,5,12,20,36,72,144,288 -2017,1,2,4,5,12,20,36,72,160,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv deleted file mode 100644 index 6497b1e019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -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.210000000 -"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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv deleted file mode 100644 index 6497b1e019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -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.210000000 -"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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index a78f3ada1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index a78f3ada1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index a78f3ada1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -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/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index a78f3ada1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -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/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index fc38e65138..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0.150000000,0,0,0,0,0 -2016-12-23,0.025000000,0,0,0,0.150000000,0,0,0,0,0 -2016-12-24,0.025000000,0,0,0,0.150000000,0,0,0,0,0 -2016-12-25,0.025000000,0,0,0,0.150000000,0.600000000,0,0,0,0 -2016-12-26,0.025000000,0,0,0,0.120833333,0.600000000,0,0,0,0 -2016-12-27,0.012500000,0,0,0.100000000,0.074285714,0.376923077,1.600000000,2.250000000,3.600000000,0 -2016-12-28,0.012500000,0,0,0.100000000,0.070000000,0.254166667,0.700000000,1.194117647,2.333333333,0 -2016-12-29,0.012500000,0.050000000,0.033333333,0.066546474,0.064337349,0.254901961,0.466666667,1.163157895,2.300000000,0 -2016-12-30,0.006250000,0.050000000,0.033333333,0.049996850,0.060373594,0.162184874,0.458333333,0.794444444,2.309090909,7.800000000 -2016-12-31,0.006250000,0.025000000,0.050000000,0.049998720,0.060155830,0.191304348,0.425396825,1.188888889,2.400000000,8.400000000 -2017-01-01,0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 7cbc1e713c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" -2016-12,0.006250000,0.025000000,0.033333333,0.049998260,0.060177706,0.155196629,0.444827586,0.787916667,2.316666667,7.800000000 -2017-01,0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index ed0c4c50bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.006250000,0.025000000,0.033333333,0.049998260,0.060177706,0.155196629,0.444827586,0.787916667,2.316666667,7.800000000 -"2017 Q1",0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 875bf6e99d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[3 - 4] Job Size: Normalized (% of Total Cores)","[5 - 8] Job Size: Normalized (% of Total Cores)","[9 - 16] Job Size: Normalized (% of Total Cores)","[17 - 32] Job Size: Normalized (% of Total Cores)","[33 - 64] Job Size: Normalized (% of Total Cores)","[65 - 128] Job Size: Normalized (% of Total Cores)","[129 - 256] Job Size: Normalized (% of Total Cores)","[257 - 512] Job Size: Normalized (% of Total Cores)" -2016,0.006250000,0.025000000,0.033333333,0.049998260,0.060177706,0.155196629,0.444827586,0.787916667,2.316666667,7.800000000 -2017,0.006250000,0.050000000,0.050000000,0.049998187,0.060489309,0.215412186,0.644791667,2.388235294,4.400000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 62dda5ff16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Running" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 62dda5ff16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Running" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 62dda5ff16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Running" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 62dda5ff16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Running" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 23c3e1b026..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" -2016-12-22,0,0,0,0,2,0,0,0,0,0 -2016-12-23,1,0,0,0,2,0,0,0,0,0 -2016-12-24,1,0,0,0,2,0,0,0,0,0 -2016-12-25,1,0,0,0,3,2,0,0,0,0 -2016-12-26,1,0,0,0,8,2,0,0,0,0 -2016-12-27,3,0,0,6,14,13,1,4,1,0 -2016-12-28,340,0,0,16,42,24,2,17,9,0 -2016-12-29,1256,1,20,208,166,34,7,38,10,0 -2016-12-30,4513,1,728,17857,5514,119,44,66,11,2 -2016-12-31,3911,98,18,14650,10781,69,21,45,9,1 -2017-01-01,1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 011ac10997..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" -2016-12,6631,98,732,32324,16094,178,58,80,12,2 -2017-01,1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 0e0580d46f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" -"2016 Q4",6631,98,732,32324,16094,178,58,80,12,2 -"2017 Q1",1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 0ff03b718d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Running","[2] Number of Jobs Running","[3 - 4] Number of Jobs Running","[5 - 8] Number of Jobs Running","[9 - 16] Number of Jobs Running","[17 - 32] Number of Jobs Running","[33 - 64] Number of Jobs Running","[65 - 128] Number of Jobs Running","[129 - 256] Number of Jobs Running","[257 - 512] Number of Jobs Running" -2016,6631,98,732,32324,16094,178,58,80,12,2 -2017,1168,1,12,10344,4864,93,48,34,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 9349eaf47d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Started" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 9349eaf47d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Started" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 9349eaf47d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Started" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 9349eaf47d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Started" -1,6955 -2,98 -"3 - 4",732 -"5 - 8",42390 -"9 - 16",20658 -"17 - 32",260 -"33 - 64",101 -"65 - 128",103 -"129 - 256",14 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index d9e7f0a35c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" -2016-12-22,0,0,0,0,2,0,0,0,0,0 -2016-12-23,1,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,1,2,0,0,0,0 -2016-12-26,0,0,0,0,5,0,0,0,0,0 -2016-12-27,2,0,0,6,6,11,1,4,1,0 -2016-12-28,337,0,0,10,28,11,1,13,8,0 -2016-12-29,916,1,20,192,124,10,5,21,1,0 -2016-12-30,3257,0,708,17649,5348,85,37,28,1,2 -2016-12-31,2118,97,4,14467,10580,59,14,14,1,0 -2017-01-01,324,0,0,10066,4564,82,43,23,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 205f65f078..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" -2016-12,6631,98,732,32324,16094,178,58,80,12,2 -2017-01,324,0,0,10066,4564,82,43,23,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index c573070f0c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" -"2016 Q4",6631,98,732,32324,16094,178,58,80,12,2 -"2017 Q1",324,0,0,10066,4564,82,43,23,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 6a7cf7dc2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Started","[2] Number of Jobs Started","[3 - 4] Number of Jobs Started","[5 - 8] Number of Jobs Started","[9 - 16] Number of Jobs Started","[17 - 32] Number of Jobs Started","[33 - 64] Number of Jobs Started","[65 - 128] Number of Jobs Started","[129 - 256] Number of Jobs Started","[257 - 512] Number of Jobs Started" -2016,6631,98,732,32324,16094,178,58,80,12,2 -2017,324,0,0,10066,4564,82,43,23,2,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 9a7c6b79d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Submitted" -1,6629 -2,1 -"3 - 4",17 -"5 - 8",38249 -"9 - 16",19207 -"17 - 32",162 -"33 - 64",71 -"65 - 128",69 -"129 - 256",11 -"257 - 512",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 7ce8c7785e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Submitted" -1,6954 -2,98 -"3 - 4",732 -"5 - 8",41398 -"9 - 16",19628 -"17 - 32",235 -"33 - 64",86 -"65 - 128",97 -"129 - 256",13 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 7ce8c7785e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Submitted" -1,6954 -2,98 -"3 - 4",732 -"5 - 8",41398 -"9 - 16",19628 -"17 - 32",235 -"33 - 64",86 -"65 - 128",97 -"129 - 256",13 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 7ce8c7785e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Number of Jobs Submitted" -1,6954 -2,98 -"3 - 4",732 -"5 - 8",41398 -"9 - 16",19628 -"17 - 32",235 -"33 - 64",86 -"65 - 128",97 -"129 - 256",13 -"257 - 512",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index a46ef7e9a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" -2016-12-22,0,0,0,0,1,0,0,0,0,0 -2016-12-23,1,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,1,0,0,0,0,0 -2016-12-26,0,0,0,0,5,0,0,0,0,0 -2016-12-27,2,0,0,1,5,9,1,0,0,0 -2016-12-28,337,0,0,5,23,5,0,1,8,0 -2016-12-29,915,1,8,140,120,5,3,14,0,0 -2016-12-30,3257,0,8,17147,5142,55,27,23,1,0 -2016-12-31,1794,0,1,11882,10376,31,12,14,1,0 -2017-01-01,323,0,0,9074,3534,57,28,17,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index ebee0bbd23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" -2016-12,6631,98,732,32324,16094,178,58,80,12,2 -2017-01,323,0,0,9074,3534,57,28,17,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 0344c0fd74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" -"2016 Q4",6631,98,732,32324,16094,178,58,80,12,2 -"2017 Q1",323,0,0,9074,3534,57,28,17,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index e578a36bc3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[3 - 4] Number of Jobs Submitted","[5 - 8] Number of Jobs Submitted","[9 - 16] Number of Jobs Submitted","[17 - 32] Number of Jobs Submitted","[33 - 64] Number of Jobs Submitted","[65 - 128] Number of Jobs Submitted","[129 - 256] Number of Jobs Submitted","[257 - 512] Number of Jobs Submitted" -2016,6631,98,732,32324,16094,178,58,80,12,2 -2017,323,0,0,9074,3534,57,28,17,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0f38004aac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","CPU Hours: Total" -1,92614.1756 -2,1518.5183 -"3 - 4",5161.5356 -"5 - 8",97377.1386 -"9 - 16",195052.4044 -"17 - 32",62507.7644 -"33 - 64",29705.6467 -"65 - 128",221470.5378 -"129 - 256",122451.1422 -"257 - 512",12696.9733 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0f38004aac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","CPU Hours: Total" -1,92614.1756 -2,1518.5183 -"3 - 4",5161.5356 -"5 - 8",97377.1386 -"9 - 16",195052.4044 -"17 - 32",62507.7644 -"33 - 64",29705.6467 -"65 - 128",221470.5378 -"129 - 256",122451.1422 -"257 - 512",12696.9733 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0f38004aac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","CPU Hours: Total" -1,92614.1756 -2,1518.5183 -"3 - 4",5161.5356 -"5 - 8",97377.1386 -"9 - 16",195052.4044 -"17 - 32",62507.7644 -"33 - 64",29705.6467 -"65 - 128",221470.5378 -"129 - 256",122451.1422 -"257 - 512",12696.9733 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0f38004aac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","CPU Hours: Total" -1,92614.1756 -2,1518.5183 -"3 - 4",5161.5356 -"5 - 8",97377.1386 -"9 - 16",195052.4044 -"17 - 32",62507.7644 -"33 - 64",29705.6467 -"65 - 128",221470.5378 -"129 - 256",122451.1422 -"257 - 512",12696.9733 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index b1856e7d3f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" -2016-12-22,0,0,0,0,404.2567,0,0,0,0,0 -2016-12-23,8.6036,0,0,0,576.0000,0,0,0,0,0 -2016-12-24,24.0000,0,0,0,576.0000,0,0,0,0,0 -2016-12-25,24.0000,0,0,0,601.9167,152.3533,0,0,0,0 -2016-12-26,24.0000,0,0,0,1080.3333,1152.0000,0,0,0,0 -2016-12-27,31.9381,0,0,565.4089,3475.6089,3012.6533,243.1822,5227.2333,2997.1200,0 -2016-12-28,2987.8814,0,0,1954.6600,6988.9578,11324.4733,2149.3467,25620.1378,30963.2533,0 -2016-12-29,16839.5714,7.2400,596.0144,4729.7419,16803.5067,22086.5911,5591.1644,63249.7311,41358.2222,0 -2016-12-30,31161.0861,48.0000,2635.2044,38986.6689,56513.2400,12772.1056,10042.8378,78210.8711,37753.8267,6995.4267 -2016-12-31,29034.9364,1428.0200,1318.9178,39303.8711,78372.8478,9004.7756,8033.2100,40661.7978,9369.7067,5701.5467 -2017-01-01,12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 29dad9836d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" -2016-12,80136.0169,1483.2600,4550.1367,85540.3508,165392.6678,59504.9522,26059.7411,212969.7711,122442.1289,12696.9733 -2017-01,12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 26ed539adc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" -"2016 Q4",80136.0169,1483.2600,4550.1367,85540.3508,165392.6678,59504.9522,26059.7411,212969.7711,122442.1289,12696.9733 -"2017 Q1",12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 01489ca867..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] CPU Hours: Total","[2] CPU Hours: Total","[3 - 4] CPU Hours: Total","[5 - 8] CPU Hours: Total","[9 - 16] CPU Hours: Total","[17 - 32] CPU Hours: Total","[33 - 64] CPU Hours: Total","[65 - 128] CPU Hours: Total","[129 - 256] CPU Hours: Total","[257 - 512] CPU Hours: Total" -2016,80136.0169,1483.2600,4550.1367,85540.3508,165392.6678,59504.9522,26059.7411,212969.7711,122442.1289,12696.9733 -2017,12478.1586,35.2583,611.3989,11836.7878,29659.7367,3002.8122,3645.9056,8500.7667,9.0133,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 759b1dc128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Total" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",506.9128 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 759b1dc128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Total" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",506.9128 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 759b1dc128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Total" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",506.9128 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 759b1dc128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","GPU Hours: Total" -1,0.0000 -2,0.0000 -"3 - 4",0.0000 -"5 - 8",0.0000 -"9 - 16",506.9128 -"17 - 32",0.0000 -"33 - 64",0.0000 -"65 - 128",0.0000 -"129 - 256",0.0000 -"257 - 512",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index d7a76fc540..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" -2016-12-22,0,0,0,0,33.4928,0,0,0,0,0 -2016-12-23,0.0000,0,0,0,48.0000,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,48.0000,0,0,0,0,0 -2016-12-25,0.0000,0,0,0,48.0000,0.0000,0,0,0,0 -2016-12-26,0.0000,0,0,0,48.0000,0.0000,0,0,0,0 -2016-12-27,0.0000,0,0,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-28,0.0000,0,0,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-29,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index ff3f088546..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" -2016-12,0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 080036c11f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 0889e82815..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" -2016,0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 543c682e60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Node Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15418.2167 -"17 - 32",3767.9550 -"33 - 64",3029.1761 -"65 - 128",18221.5797 -"129 - 256",7960.2989 -"257 - 512",1058.0811 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 543c682e60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Node Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15418.2167 -"17 - 32",3767.9550 -"33 - 64",3029.1761 -"65 - 128",18221.5797 -"129 - 256",7960.2989 -"257 - 512",1058.0811 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 543c682e60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Node Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15418.2167 -"17 - 32",3767.9550 -"33 - 64",3029.1761 -"65 - 128",18221.5797 -"129 - 256",7960.2989 -"257 - 512",1058.0811 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 543c682e60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Node Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15418.2167 -"17 - 32",3767.9550 -"33 - 64",3029.1761 -"65 - 128",18221.5797 -"129 - 256",7960.2989 -"257 - 512",1058.0811 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6388c3d5b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" -2016-12-22,0,0,0,0,33.6881,0,0,0,0,0 -2016-12-23,8.6036,0,0,0,48.0000,0,0,0,0,0 -2016-12-24,24.0000,0,0,0,48.0000,0,0,0,0,0 -2016-12-25,24.0000,0,0,0,50.1597,6.3481,0,0,0,0 -2016-12-26,24.0000,0,0,0,85.5208,48.0000,0,0,0,0 -2016-12-27,31.9381,0,0,70.6761,240.2019,147.8156,30.3978,435.6028,249.7600,0 -2016-12-28,2987.8814,0,0,244.3325,494.2728,518.0847,268.6683,2094.1736,2007.2033,0 -2016-12-29,16839.5714,3.6200,149.0036,595.1181,1195.9517,1281.6483,561.2433,5180.5628,2721.7778,0 -2016-12-30,31161.0861,24.0000,658.8011,4879.7719,4480.2425,754.3239,1060.3894,6312.0572,2394.9356,582.9522 -2016-12-31,29034.9364,714.0100,329.7294,4913.5189,6351.6800,752.6294,740.8864,3490.5506,585.7267,475.1289 -2017-01-01,12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 68c301557a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" -2016-12,80136.0169,741.6300,1137.5342,10703.4175,13027.7175,3508.8500,2661.5853,17512.9469,7959.4033,1058.0811 -2017-01,12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index eb21fd250b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" -"2016 Q4",80136.0169,741.6300,1137.5342,10703.4175,13027.7175,3508.8500,2661.5853,17512.9469,7959.4033,1058.0811 -"2017 Q1",12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 78a60321db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Node Hours: Total","[2] Node Hours: Total","[3 - 4] Node Hours: Total","[5 - 8] Node Hours: Total","[9 - 16] Node Hours: Total","[17 - 32] Node Hours: Total","[33 - 64] Node Hours: Total","[65 - 128] Node Hours: Total","[129 - 256] Node Hours: Total","[257 - 512] Node Hours: Total" -2016,80136.0169,741.6300,1137.5342,10703.4175,13027.7175,3508.8500,2661.5853,17512.9469,7959.4033,1058.0811 -2017,12478.1586,17.6292,152.8497,1481.2039,2390.4992,259.1050,367.5908,708.6328,0.8956,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 40e800fca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Total" -1,6590.6736 -2,2650.6039 -"3 - 4",163387.0994 -"5 - 8",101051.9192 -"9 - 16",25773.1289 -"17 - 32",3728.5800 -"33 - 64",707.9361 -"65 - 128",2293.9767 -"129 - 256",148.0836 -"257 - 512",13.3594 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 40e800fca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Total" -1,6590.6736 -2,2650.6039 -"3 - 4",163387.0994 -"5 - 8",101051.9192 -"9 - 16",25773.1289 -"17 - 32",3728.5800 -"33 - 64",707.9361 -"65 - 128",2293.9767 -"129 - 256",148.0836 -"257 - 512",13.3594 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 40e800fca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Total" -1,6590.6736 -2,2650.6039 -"3 - 4",163387.0994 -"5 - 8",101051.9192 -"9 - 16",25773.1289 -"17 - 32",3728.5800 -"33 - 64",707.9361 -"65 - 128",2293.9767 -"129 - 256",148.0836 -"257 - 512",13.3594 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 40e800fca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wait Hours: Total" -1,6590.6736 -2,2650.6039 -"3 - 4",163387.0994 -"5 - 8",101051.9192 -"9 - 16",25773.1289 -"17 - 32",3728.5800 -"33 - 64",707.9361 -"65 - 128",2293.9767 -"129 - 256",148.0836 -"257 - 512",13.3594 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7c1214556f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" -2016-12-22,0,0,0,0,9.3325,0,0,0,0,0 -2016-12-23,9.5964,0,0,0,0.0000,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,0.0000,0,0,0,0,0 -2016-12-25,0.0000,0,0,0,0.0633,110.8222,0,0,0,0 -2016-12-26,0.0000,0,0,0,0.0033,0.0000,0,0,0,0 -2016-12-27,0.0000,0,0,1367.4322,50.8253,93.9853,0.0000,387.2206,78.7886,0 -2016-12-28,16.2356,0,0,1405.9667,377.7072,465.3347,36.8761,1296.2103,0.0014,0 -2016-12-29,56.1753,0.0044,2636.5197,2567.6739,66.6953,333.5175,56.9778,358.5789,25.7286,0 -2016-12-30,3606.8258,0.0000,160673.4244,24584.9528,5027.5717,979.9319,311.8458,83.5458,0.7794,13.3594 -2016-12-31,2865.8978,2650.5994,77.1553,57194.7850,9457.6639,1133.7711,6.9375,29.2697,5.1778,0.0000 -2017-01-01,35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index f6afb14b5e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" -2016-12,6554.7308,2650.6039,163387.0994,87120.8106,14989.8625,3117.3628,412.6372,2154.8253,110.4758,13.3594 -2017-01,35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7c562f3375..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" -"2016 Q4",6554.7308,2650.6039,163387.0994,87120.8106,14989.8625,3117.3628,412.6372,2154.8253,110.4758,13.3594 -"2017 Q1",35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index a103e3277b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Wait Hours: Total","[2] Wait Hours: Total","[3 - 4] Wait Hours: Total","[5 - 8] Wait Hours: Total","[9 - 16] Wait Hours: Total","[17 - 32] Wait Hours: Total","[33 - 64] Wait Hours: Total","[65 - 128] Wait Hours: Total","[129 - 256] Wait Hours: Total","[257 - 512] Wait Hours: Total" -2016,6554.7308,2650.6039,163387.0994,87120.8106,14989.8625,3117.3628,412.6372,2154.8253,110.4758,13.3594 -2017,35.9428,0.0000,0.0000,13931.1086,10783.2664,611.2172,295.2989,139.1514,37.6078,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 23ca6a3d85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15376.5169 -"17 - 32",2154.1506 -"33 - 64",534.4553 -"65 - 128",2368.1789 -"129 - 256",657.2731 -"257 - 512",37.7917 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 23ca6a3d85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15376.5169 -"17 - 32",2154.1506 -"33 - 64",534.4553 -"65 - 128",2368.1789 -"129 - 256",657.2731 -"257 - 512",37.7917 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 23ca6a3d85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15376.5169 -"17 - 32",2154.1506 -"33 - 64",534.4553 -"65 - 128",2368.1789 -"129 - 256",657.2731 -"257 - 512",37.7917 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 23ca6a3d85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Wall Hours: Total" -1,92614.1756 -2,759.2592 -"3 - 4",1290.3839 -"5 - 8",12184.6214 -"9 - 16",15376.5169 -"17 - 32",2154.1506 -"33 - 64",534.4553 -"65 - 128",2368.1789 -"129 - 256",657.2731 -"257 - 512",37.7917 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 2adb01b33c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" -2016-12-22,0,0,0,0,33.6881,0,0,0,0,0 -2016-12-23,8.6036,0,0,0,48.0000,0,0,0,0,0 -2016-12-24,24.0000,0,0,0,48.0000,0,0,0,0,0 -2016-12-25,24.0000,0,0,0,50.1597,6.3481,0,0,0,0 -2016-12-26,24.0000,0,0,0,85.5208,48.0000,0,0,0,0 -2016-12-27,31.9381,0,0,70.6761,240.2019,107.1378,3.7997,59.6164,20.8133,0 -2016-12-28,2987.8814,0,0,244.3325,494.2728,373.6525,36.7781,269.9594,167.2669,0 -2016-12-29,16839.5714,3.6200,149.0036,595.1181,1195.9517,717.7672,102.3708,678.6178,222.4889,0 -2016-12-30,31161.0861,24.0000,658.8011,4879.7719,4476.5769,424.2197,181.2069,838.1756,197.8528,20.8228 -2016-12-31,29034.9364,714.0100,329.7294,4913.5189,6337.4233,355.4853,142.8372,428.8350,48.8006,16.9689 -2017-01-01,12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0605ee7c2c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" -2016-12,80136.0169,741.6300,1137.5342,10703.4175,13009.7953,2032.6106,466.9928,2275.2042,657.2225,37.7917 -2017-01,12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 03384431af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" -"2016 Q4",80136.0169,741.6300,1137.5342,10703.4175,13009.7953,2032.6106,466.9928,2275.2042,657.2225,37.7917 -"2017 Q1",12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 0af6dbe6aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Wall Hours: Total","[2] Wall Hours: Total","[3 - 4] Wall Hours: Total","[5 - 8] Wall Hours: Total","[9 - 16] Wall Hours: Total","[17 - 32] Wall Hours: Total","[33 - 64] Wall Hours: Total","[65 - 128] Wall Hours: Total","[129 - 256] Wall Hours: Total","[257 - 512] Wall Hours: Total" -2016,80136.0169,741.6300,1137.5342,10703.4175,13009.7953,2032.6106,466.9928,2275.2042,657.2225,37.7917 -2017,12478.1586,17.6292,152.8497,1481.2039,2366.7217,121.5400,67.4625,92.9747,0.0506,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 4eac3811df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Screwdriver CPU Utilization (%)" -1,2.0972 -2,0.0719 -"3 - 4",0.1854 -"5 - 8",2.5359 -"9 - 16",4.4169 -"17 - 32",1.6278 -"33 - 64",0.9377 -"65 - 128",8.2392 -"129 - 256",7.5031 -"257 - 512",1.2024 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv deleted file mode 100644 index eb743b3e19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Screwdriver CPU Utilization (%)" -1,0.4661 -2,0.0170 -"3 - 4",0.0414 -"5 - 8",0.5932 -"9 - 16",0.9815 -"17 - 32",0.3808 -"33 - 64",0.2309 -"65 - 128",1.7884 -"129 - 256",1.4661 -"257 - 512",0.2593 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index cafd329e43..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Screwdriver CPU Utilization (%)" -1,0.1922 -2,0.0075 -"3 - 4",0.0175 -"5 - 8",0.2492 -"9 - 16",0.4047 -"17 - 32",0.1600 -"33 - 64",0.0995 -"65 - 128",0.7539 -"129 - 256",0.6222 -"257 - 512",0.1202 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv deleted file mode 100644 index a5b6b7b819..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Size","Screwdriver CPU Utilization (%)" -1,0.0514 -2,0.0021 -"3 - 4",0.0047 -"5 - 8",0.0673 -"9 - 16",0.1082 -"17 - 32",0.0432 -"33 - 64",0.0272 -"65 - 128",0.2040 -"129 - 256",0.1689 -"257 - 512",0.0344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 2ba394759c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0.2106,0,0,0,0,0 -2016-12-23,0.0090,0,0,0,0.3000,0,0,0,0,0 -2016-12-24,0.0250,0,0,0,0.3000,0,0,0,0,0 -2016-12-25,0.0250,0,0,0,0.3135,0.1587,0,0,0,0 -2016-12-26,0.0250,0,0,0,0.3751,1.2000,0,0,0,0 -2016-12-27,0.0166,0,0,0.2945,0.7241,1.5691,0.2533,5.4450,3.1220,0 -2016-12-28,1.5562,0,0,1.0181,1.4560,3.9321,1.1195,13.3438,16.1267,0 -2016-12-29,8.7706,0.0075,0.2069,1.6423,3.5007,7.6690,1.9414,32.9426,21.5407,0 -2016-12-30,8.1149,0.0500,0.9150,10.1528,11.7736,3.3261,3.4871,27.1566,19.6635,7.2869 -2016-12-31,7.5612,0.7438,0.6869,10.2354,16.3277,3.1267,2.7893,21.1780,4.8801,5.9391 -2017-01-01,3.2495,0.0367,0.3184,3.0825,6.1791,1.0426,1.8989,8.8550,0.0094,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 2cee5b0415..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" -2016-12,1.9875,0.0498,0.1281,1.8958,3.3132,1.3188,0.6621,6.1623,5.1018,0.6613 -2017-01,0.1048,0.0012,0.0103,0.0994,0.1993,0.0336,0.0613,0.2856,0.0003,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 0a7b6c674b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" -"2016 Q4",1.9875,0.0498,0.1281,1.8958,3.3132,1.3188,0.6621,6.1623,5.1018,0.6613 -"2017 Q1",0.0361,0.0004,0.0035,0.0342,0.0687,0.0116,0.0211,0.0984,0.0001,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 7ba6df848d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobsize/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Size" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[3 - 4] Screwdriver CPU Utilization (%)","[5 - 8] Screwdriver CPU Utilization (%)","[9 - 16] Screwdriver CPU Utilization (%)","[17 - 32] Screwdriver CPU Utilization (%)","[33 - 64] Screwdriver CPU Utilization (%)","[65 - 128] Screwdriver CPU Utilization (%)","[129 - 256] Screwdriver CPU Utilization (%)","[257 - 512] Screwdriver CPU Utilization (%)" -2016,1.9875,0.0498,0.1281,1.8958,3.3132,1.3188,0.6621,6.1623,5.1018,0.6613 -2017,0.0089,0.0001,0.0009,0.0084,0.0169,0.0029,0.0052,0.0243,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 026f4a8e55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Users: Active" -"0 - 1s",31 -"1 - 30s",45 -"30s - 30min",34 -"30 - 60min",14 -"1 - 5hr",24 -"5 - 10hr",22 -"10 - 18hr",10 -18+hr,17 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 026f4a8e55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Users: Active" -"0 - 1s",31 -"1 - 30s",45 -"30s - 30min",34 -"30 - 60min",14 -"1 - 5hr",24 -"5 - 10hr",22 -"10 - 18hr",10 -18+hr,17 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 026f4a8e55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Users: Active" -"0 - 1s",31 -"1 - 30s",45 -"30s - 30min",34 -"30 - 60min",14 -"1 - 5hr",24 -"5 - 10hr",22 -"10 - 18hr",10 -18+hr,17 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 026f4a8e55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Users: Active" -"0 - 1s",31 -"1 - 30s",45 -"30s - 30min",34 -"30 - 60min",14 -"1 - 5hr",24 -"5 - 10hr",22 -"10 - 18hr",10 -18+hr,17 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index bd37511944..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -2016-12-22,0,1,0,0,0,1,0,0 -2016-12-23,0,1,0,0,0,2,0,0 -2016-12-24,0,1,0,0,0,2,0,0 -2016-12-25,0,1,1,0,0,2,0,1 -2016-12-26,0,2,1,0,0,2,0,1 -2016-12-27,4,5,2,0,0,2,0,7 -2016-12-28,5,9,5,1,6,3,1,7 -2016-12-29,11,20,14,3,11,5,4,11 -2016-12-30,24,40,27,12,21,15,8,14 -2016-12-31,20,32,27,10,16,13,7,9 -2017-01-01,17,25,16,5,10,10,4,9 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index d0347258ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -2016-12,28,43,33,13,23,19,9,16 -2017-01,17,25,16,5,10,10,4,9 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 24c8350cba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -"2016 Q4",28,43,33,13,23,19,9,16 -"2017 Q1",17,25,16,5,10,10,4,9 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 41d1556ded..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -2016,28,43,33,13,23,19,9,16 -2017,17,25,16,5,10,10,4,9 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index b1a1be05f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of PIs: Active" -"0 - 1s",21 -"1 - 30s",30 -"30s - 30min",27 -"30 - 60min",13 -"1 - 5hr",22 -"5 - 10hr",19 -"10 - 18hr",7 -18+hr,13 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index b1a1be05f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of PIs: Active" -"0 - 1s",21 -"1 - 30s",30 -"30s - 30min",27 -"30 - 60min",13 -"1 - 5hr",22 -"5 - 10hr",19 -"10 - 18hr",7 -18+hr,13 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b1a1be05f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of PIs: Active" -"0 - 1s",21 -"1 - 30s",30 -"30s - 30min",27 -"30 - 60min",13 -"1 - 5hr",22 -"5 - 10hr",19 -"10 - 18hr",7 -18+hr,13 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index b1a1be05f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of PIs: Active" -"0 - 1s",21 -"1 - 30s",30 -"30s - 30min",27 -"30 - 60min",13 -"1 - 5hr",22 -"5 - 10hr",19 -"10 - 18hr",7 -18+hr,13 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 4dfc386a3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -2016-12-22,0,1,0,0,0,1,0,0 -2016-12-23,0,1,0,0,0,2,0,0 -2016-12-24,0,1,0,0,0,2,0,0 -2016-12-25,0,1,1,0,0,2,0,1 -2016-12-26,0,2,1,0,0,2,0,1 -2016-12-27,4,4,1,0,0,2,0,6 -2016-12-28,5,8,4,1,5,3,1,6 -2016-12-29,10,15,11,3,10,5,3,9 -2016-12-30,18,25,21,11,19,12,6,12 -2016-12-31,13,22,21,10,15,13,5,7 -2017-01-01,11,18,13,5,10,10,4,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index dae74a3024..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -2016-12,19,28,26,12,21,16,6,12 -2017-01,11,18,13,5,10,10,4,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index cf071a9ce6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -"2016 Q4",19,28,26,12,21,16,6,12 -"2017 Q1",11,18,13,5,10,10,4,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 9ea7998c52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -2016,19,28,26,12,21,16,6,12 -2017,11,18,13,5,10,10,4,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index eeda5c10d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",4 -"1 - 5hr",4 -"5 - 10hr",4 -"10 - 18hr",4 -18+hr,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index eeda5c10d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",4 -"1 - 5hr",4 -"5 - 10hr",4 -"10 - 18hr",4 -18+hr,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index eeda5c10d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",4 -"1 - 5hr",4 -"5 - 10hr",4 -"10 - 18hr",4 -18+hr,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index eeda5c10d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",4 -"1 - 5hr",4 -"5 - 10hr",4 -"10 - 18hr",4 -18+hr,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 88a43db551..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -2016-12-22,0,1,0,0,0,1,0,0 -2016-12-23,0,1,0,0,0,1,0,0 -2016-12-24,0,1,0,0,0,1,0,0 -2016-12-25,0,1,1,0,0,1,0,1 -2016-12-26,0,2,1,0,0,1,0,1 -2016-12-27,3,5,1,0,0,1,0,2 -2016-12-28,4,5,2,1,2,2,1,2 -2016-12-29,5,5,2,1,3,3,2,2 -2016-12-30,5,5,4,3,4,4,2,2 -2016-12-31,5,5,5,3,3,4,3,2 -2017-01-01,5,5,4,4,3,3,3,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 9ec7211354..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -2016-12,5,5,5,4,4,4,3,2 -2017-01,5,5,4,4,3,3,3,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 2ce29974a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -"2016 Q4",5,5,5,4,4,4,3,2 -"2017 Q1",5,5,4,4,3,3,3,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 017422f326..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -2016,5,5,5,4,4,4,3,2 -2017,5,5,4,4,3,3,3,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 219450bfe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index da5f4d6f4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index da5f4d6f4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index da5f4d6f4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index ff1ed7d4a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -2016-12-22,0,200.95666667,0,0,0,203.30000000,0,0 -2016-12-23,0,288.00000000,0,0,0,148.30180556,0,0 -2016-12-24,0,288.00000000,0,0,0,156.00000000,0,0 -2016-12-25,0,288.00000000,25.91666667,0,0,156.00000000,0,76.17666667 -2016-12-26,0,84.05555556,288.00000000,0,0,156.00000000,0,576.00000000 -2016-12-27,70.64052469,202.50444444,147.39777778,0,0,156.00000000,0,765.03481481 -2016-12-28,1366.84000000,391.50280724,11.68403753,66.06888889,82.33015873,62.62095238,179.32000000,787.00578811 -2016-12-29,185.29667641,130.44889074,17.90702218,88.31777778,226.61909402,282.36419753,541.60527778,587.04204316 -2016-12-30,6.80199544,8.05667462,7.79642350,2.47524156,6.69865088,15.83233559,119.50737127,49.37357045 -2016-12-31,7.25347461,9.56893971,5.09801928,2.19488043,6.05379937,5.62853088,14.21899818,41.76741222 -2017-01-01,2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a32495f3de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -2016-12,10.85719114,13.93211963,8.58144650,2.57788241,8.09504805,8.83596718,45.17256881,99.45469827 -2017-01,2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 98b4b4f961..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -"2016 Q4",10.85719114,13.93211963,8.58144650,2.57788241,8.09504805,8.83596718,45.17256881,99.45469827 -"2017 Q1",2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 79dc05bb5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -2016,10.85719114,13.93211963,8.58144650,2.57788241,8.09504805,8.83596718,45.17256881,99.45469827 -2017,2.46825586,2.05478279,3.51056014,3.34142435,14.13310754,7.73041149,5.47672131,10.04850978 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index b09f07d063..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Per Job" -"0 - 1s",0.00000077 -"1 - 30s",0.02789475 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index b09f07d063..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Per Job" -"0 - 1s",0.00000077 -"1 - 30s",0.02789475 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b09f07d063..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Per Job" -"0 - 1s",0.00000077 -"1 - 30s",0.02789475 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index b09f07d063..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Per Job" -"0 - 1s",0.00000077 -"1 - 30s",0.02789475 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 19cfa667eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -2016-12-22,0,33.49277778,0,0,0,0.00000000,0,0 -2016-12-23,0,48.00000000,0,0,0,0.00000000,0,0 -2016-12-24,0,48.00000000,0,0,0,0.00000000,0,0 -2016-12-25,0,48.00000000,0.00000000,0,0,0.00000000,0,0.00000000 -2016-12-26,0,8.00000000,0.00000000,0,0,0.00000000,0,0.00000000 -2016-12-27,0.00000000,3.42857143,0.00000000,0,0,0.00000000,0,0.00000000 -2016-12-28,0.00000000,0.72727273,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-29,0.00000000,0.16000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-30,0.00000000,0.00570071,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,0.00000000,0.00947306,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01-01,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6e134e68c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -2016-12,0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 329b34e730..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -"2016 Q4",0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 699c8acc85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -2016,0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 9e1d391998..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0002,0.0001626611358456056 -"1 - 30s",0.0001,0.00011005640380579844 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 9e1d391998..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0002,0.0001626611358456056 -"1 - 30s",0.0001,0.00011005640380579844 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 9e1d391998..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0002,0.0001626611358456056 -"1 - 30s",0.0001,0.00011005640380579844 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 9e1d391998..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0002,0.0001626611358456056 -"1 - 30s",0.0001,0.00011005640380579844 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 973e0266e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -2016-12-22,0,2.0000,0,0,0,0.0000,0,0 -2016-12-23,0,2.0000,0,0,0,0.0000,0,0 -2016-12-24,0,2.0000,0,0,0,0.0000,0,0 -2016-12-25,0,2.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-26,0,0.3333,0.0000,0,0,0.0000,0,0.0000 -2016-12-27,0.0000,0.1429,0.0000,0,0,0.0000,0,0.0000 -2016-12-28,0.0000,0.0303,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-29,0.0000,0.0067,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 2d4427a38b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -2016-12,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 7df676cd12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -"2016 Q4",0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index e45fc43625..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -2016,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 85fca5d8a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",84.5716 -"1 - 30s",86.2606 -"30s - 30min",16.6203 -"30 - 60min",22.0405 -"1 - 5hr",64.1043 -"5 - 10hr",29.9680 -"10 - 18hr",36.1523 -18+hr,75.4702 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 85fca5d8a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",84.5716 -"1 - 30s",86.2606 -"30s - 30min",16.6203 -"30 - 60min",22.0405 -"1 - 5hr",64.1043 -"5 - 10hr",29.9680 -"10 - 18hr",36.1523 -18+hr,75.4702 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 85fca5d8a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",84.5716 -"1 - 30s",86.2606 -"30s - 30min",16.6203 -"30 - 60min",22.0405 -"1 - 5hr",64.1043 -"5 - 10hr",29.9680 -"10 - 18hr",36.1523 -18+hr,75.4702 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 85fca5d8a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",84.5716 -"1 - 30s",86.2606 -"30s - 30min",16.6203 -"30 - 60min",22.0405 -"1 - 5hr",64.1043 -"5 - 10hr",29.9680 -"10 - 18hr",36.1523 -18+hr,75.4702 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9bf466d3d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,12.0000,0,0,0,12.0000,0,0 -2016-12-23,0,12.0000,0,0,0,11.6809,0,0 -2016-12-24,0,12.0000,0,0,0,11.1538,0,0 -2016-12-25,0,12.0000,12.0000,0,0,11.1538,0,24.0000 -2016-12-26,0,13.7158,12.0000,0,0,11.1538,0,24.0000 -2016-12-27,42.6543,16.5775,11.9078,0,0,11.1538,0,84.9050 -2016-12-28,136.0959,141.1175,2.7336,8.0000,24.1089,11.3977,12.0000,85.2671 -2016-12-29,139.3929,129.7100,13.6754,21.0129,38.3508,22.5289,47.3510,84.0594 -2016-12-30,82.7447,89.1986,18.2789,29.9474,83.7293,30.8991,38.5735,72.4955 -2016-12-31,36.5422,40.6049,18.4091,15.5002,71.5730,28.5121,39.5256,60.5814 -2017-01-01,23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index d392963fac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,87.9399,90.5162,16.9717,22.4209,70.8622,27.1335,40.2722,76.3571 -2017-01,23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 0e7d5ff712..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",87.9399,90.5162,16.9717,22.4209,70.8622,27.1335,40.2722,76.3571 -"2017 Q1",23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7e1305f847..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -2016,87.9399,90.5162,16.9717,22.4209,70.8622,27.1335,40.2722,76.3571 -2017,23.2187,10.2392,14.7117,16.7924,27.9707,40.1235,18.8036,32.6534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 53f3f9fc6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",12.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 53f3f9fc6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",12.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 53f3f9fc6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",12.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 53f3f9fc6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",12.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5a8a1bfa2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,0,12.0000,0,0,0,0.0000,0,0 -2016-12-23,0,12.0000,0,0,0,0.0000,0,0 -2016-12-24,0,12.0000,0,0,0,0.0000,0,0 -2016-12-25,0,12.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-26,0,12.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-27,0.0000,12.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-28,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-29,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index b71dd15988..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4843dc281b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index e9f256417c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -2016,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index cb9a3aa100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4f9045cc7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4f9045cc7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4f9045cc7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 576f7be815..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -2016-12-22,0,16.74638889,0,0,0,16.94166667,0,0 -2016-12-23,0,24.00000000,0,0,0,16.30180556,0,0 -2016-12-24,0,24.00000000,0,0,0,24.00000000,0,0 -2016-12-25,0,24.00000000,2.15972222,0,0,24.00000000,0,3.17402778 -2016-12-26,0,6.25347222,24.00000000,0,0,24.00000000,0,24.00000000 -2016-12-27,5.70537037,12.69599206,12.42472222,0,0,24.00000000,0,60.29670370 -2016-12-28,86.17750000,25.19816498,9.59354236,8.25861111,7.79908730,8.36126984,14.94333333,65.19597545 -2016-12-29,13.26773148,15.28286944,13.33380967,12.55677778,18.27062393,25.13419753,39.12645833,48.24373737 -2016-12-30,0.60351603,0.90650139,5.01868454,0.64634436,0.83483158,1.76957969,9.21621951,4.47096711 -2016-12-31,0.63794775,1.10700941,2.60785284,0.29318726,1.08572255,1.82485009,1.20263813,4.56646314 -2017-01-01,0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index d711504d92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -2016-12,0.88196999,1.48502582,5.25889908,0.49634703,1.12768541,2.06694215,3.52934378,8.86101066 -2017-01,0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 06546fc30a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -"2016 Q4",0.88196999,1.48502582,5.25889908,0.49634703,1.12768541,2.06694215,3.52934378,8.86101066 -"2017 Q1",0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index dea85731af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -2016,0.88196999,1.48502582,5.25889908,0.49634703,1.12768541,2.06694215,3.52934378,8.86101066 -2017,0.26296139,0.44423602,1.99694015,0.29973995,1.38454668,0.88951576,0.46190997,1.05495887 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 6ce39c2097..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 6ce39c2097..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 6ce39c2097..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 6ce39c2097..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 861846c4a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -2016-12-22,0,12.0000,0,0,0,12.0000,0,0 -2016-12-23,0,12.0000,0,0,0,6.5000,0,0 -2016-12-24,0,12.0000,0,0,0,6.5000,0,0 -2016-12-25,0,12.0000,12.0000,0,0,6.5000,0,24.0000 -2016-12-26,0,15.3333,12.0000,0,0,6.5000,0,24.0000 -2016-12-27,27.7778,19.1429,10.0000,0,0,6.5000,0,44.5333 -2016-12-28,68.8333,21.7424,1.1304,8.0000,17.3333,10.4286,12.0000,49.9535 -2016-12-29,15.4035,10.1933,1.5642,20.0000,20.8000,17.8889,31.0000,30.0579 -2016-12-30,9.5403,9.0758,5.4186,3.8214,7.9386,9.0167,32.0000,8.7843 -2016-12-31,12.0906,11.6100,6.3090,6.1814,8.1523,8.0848,11.9126,9.9848 -2017-01-01,10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index cd0abde098..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -2016-12,10.5960,9.9692,6.3631,5.1467,8.2329,8.3970,15.2294,8.3990 -2017-01,10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8089963766..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -"2016 Q4",10.5960,9.9692,6.3631,5.1467,8.2329,8.3970,15.2294,8.3990 -"2017 Q1",10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 1d8b0a9940..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -2016,10.5960,9.9692,6.3631,5.1467,8.2329,8.3970,15.2294,8.3990 -2017,10.3887,9.1105,7.1757,11.2128,11.9969,11.0870,11.9532,12.1824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4f3ab75a71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00067233,0.000009532698389553274 -"30s - 30min",0.14412436,0.0009030872510103734 -"30 - 60min",0.71076431,0.002779916456475484 -"1 - 5hr",2.08196102,0.007078085718233825 -"5 - 10hr",7.96579571,0.023416472717942394 -"10 - 18hr",12.06009729,0.10212331707534603 -18+hr,90.85559814,1.7341253070391138 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4f3ab75a71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00067233,0.000009532698389553274 -"30s - 30min",0.14412436,0.0009030872510103734 -"30 - 60min",0.71076431,0.002779916456475484 -"1 - 5hr",2.08196102,0.007078085718233825 -"5 - 10hr",7.96579571,0.023416472717942394 -"10 - 18hr",12.06009729,0.10212331707534603 -18+hr,90.85559814,1.7341253070391138 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4f3ab75a71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00067233,0.000009532698389553274 -"30s - 30min",0.14412436,0.0009030872510103734 -"30 - 60min",0.71076431,0.002779916456475484 -"1 - 5hr",2.08196102,0.007078085718233825 -"5 - 10hr",7.96579571,0.023416472717942394 -"10 - 18hr",12.06009729,0.10212331707534603 -18+hr,90.85559814,1.7341253070391138 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4f3ab75a71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00067233,0.000009532698389553274 -"30s - 30min",0.14412436,0.0009030872510103734 -"30 - 60min",0.71076431,0.002779916456475484 -"1 - 5hr",2.08196102,0.007078085718233825 -"5 - 10hr",7.96579571,0.023416472717942394 -"10 - 18hr",12.06009729,0.10212331707534603 -18+hr,90.85559814,1.7341253070391138 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9787f8603e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -2016-12-22,0,0.00027778,0,0,0,9.33222222,0,0 -2016-12-23,0,0.00000000,0,0,0,9.59638889,0,0 -2016-12-24,0,0.00000000,0,0,0,0.00000000,0,0 -2016-12-25,0,0.00000000,0.06333333,0,0,0.00000000,0,55.41111111 -2016-12-26,0,0.00066667,0.00000000,0,0,0.00000000,0,0.00000000 -2016-12-27,0.00000000,0.00059028,0.02694444,0,0,0.00000000,0,152.17079060 -2016-12-28,0.00000000,0.00519231,0.05457725,0.97472222,2.69326720,6.31216667,12.27500000,124.30297619 -2016-12-29,0.00000000,0.00229820,0.04908431,0.94562500,1.80866793,6.40305556,15.21722222,75.88609687 -2016-12-30,0.00000000,0.00072534,0.07010813,0.74716129,1.85504492,6.13281911,11.85139640,139.04254383 -2016-12-31,0.00000000,0.00068140,0.16068062,0.67907857,2.13118952,8.49370108,10.43064187,40.84676303 -2017-01-01,0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 37a06a6a35..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -2016-12,0.00000000,0.00075406,0.12001539,0.71198619,1.98945386,8.16968874,10.74610984,99.58557853 -2017-01,0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index a87b0a0243..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -"2016 Q4",0.00000000,0.00075406,0.12001539,0.71198619,1.98945386,8.16968874,10.74610984,99.58557853 -"2017 Q1",0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 207bcf7c5f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -2016,0.00000000,0.00075406,0.12001539,0.71198619,1.98945386,8.16968874,10.74610984,99.58557853 -2017,0.00000000,0.00044738,0.20672632,0.68843398,2.98810554,7.30122294,12.82805779,29.42140179 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 35c3f909e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.49315691,0.014517223815777877 -"1 - 30s",0.92592179,0.025066795402547932 -"30s - 30min",4.34074564,0.055443976670460395 -"30 - 60min",0.35002350,0.030900746638049585 -"1 - 5hr",0.89276088,0.023255030658770073 -"5 - 10hr",1.60253047,0.06328182590453404 -"10 - 18hr",1.00758695,0.12804935676644585 -18+hr,2.99461843,0.10227044779661995 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9c04672eee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.49315691,0.02457273421536707 -"1 - 30s",0.92592179,0.038190782831705315 -"30s - 30min",4.34074564,0.0809366938495074 -"30 - 60min",0.35002350,0.039243281108874206 -"1 - 5hr",0.89276088,0.03193159152610175 -"5 - 10hr",1.60253047,0.0913270168146558 -"10 - 18hr",1.00758695,0.1816748208929652 -18+hr,2.99461843,0.18843366518542579 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9c04672eee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.49315691,0.02457273421536707 -"1 - 30s",0.92592179,0.038190782831705315 -"30s - 30min",4.34074564,0.0809366938495074 -"30 - 60min",0.35002350,0.039243281108874206 -"1 - 5hr",0.89276088,0.03193159152610175 -"5 - 10hr",1.60253047,0.0913270168146558 -"10 - 18hr",1.00758695,0.1816748208929652 -18+hr,2.99461843,0.18843366518542579 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9c04672eee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.49315691,0.02457273421536707 -"1 - 30s",0.92592179,0.038190782831705315 -"30s - 30min",4.34074564,0.0809366938495074 -"30 - 60min",0.35002350,0.039243281108874206 -"1 - 5hr",0.89276088,0.03193159152610175 -"5 - 10hr",1.60253047,0.0913270168146558 -"10 - 18hr",1.00758695,0.1816748208929652 -18+hr,2.99461843,0.18843366518542579 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index b25f048317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -2016-12-22,0,16.74638889,0,0,0,16.94166667,0,0 -2016-12-23,0,24.00000000,0,0,0,16.30180556,0,0 -2016-12-24,0,24.00000000,0,0,0,24.00000000,0,0 -2016-12-25,0,24.00000000,2.15972222,0,0,24.00000000,0,3.17402778 -2016-12-26,0,6.25347222,24.00000000,0,0,24.00000000,0,24.00000000 -2016-12-27,2.75003086,12.69599206,12.42472222,0,0,24.00000000,0,17.25598148 -2016-12-28,22.51479167,8.75883838,9.59354236,8.25861111,4.22932540,8.36126984,14.94333333,15.97364987 -2016-12-29,4.63944201,9.99022315,13.07476976,7.54672222,10.18715812,21.84608025,15.68840278,11.15196051 -2016-12-30,0.42073731,0.67200894,4.89549072,0.41773994,0.61206820,1.40062914,5.39272358,1.78568953 -2016-12-31,0.53892192,0.99729426,2.53510859,0.25151938,0.89879489,1.67857150,0.66289921,2.72339857 -2017-01-01,0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 19df2576ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -2016-12,0.55774411,1.09466327,5.13553286,0.35459446,0.86174841,1.87399127,1.92710627,3.25157379 -2017-01,0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f049975b01..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -"2016 Q4",0.55774411,1.09466327,5.13553286,0.35459446,0.86174841,1.87399127,1.92710627,3.25157379 -"2017 Q1",0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index b3b3ea1cef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -2016,0.55774411,1.09466327,5.13553286,0.35459446,0.86174841,1.87399127,1.92710627,3.25157379 -2017,0.20322627,0.44180355,1.94856665,0.26081757,1.14032085,0.69023551,0.41071364,0.82232237 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index a88b0c32d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","User Expansion Factor" -"0 - 1s",1.0000 -"1 - 30s",1.0005 -"30s - 30min",1.0322 -"30 - 60min",2.4872 -"1 - 5hr",2.8146 -"5 - 10hr",5.2710 -"10 - 18hr",10.0667 -18+hr,13.4785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index a88b0c32d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","User Expansion Factor" -"0 - 1s",1.0000 -"1 - 30s",1.0005 -"30s - 30min",1.0322 -"30 - 60min",2.4872 -"1 - 5hr",2.8146 -"5 - 10hr",5.2710 -"10 - 18hr",10.0667 -18+hr,13.4785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index a88b0c32d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","User Expansion Factor" -"0 - 1s",1.0000 -"1 - 30s",1.0005 -"30s - 30min",1.0322 -"30 - 60min",2.4872 -"1 - 5hr",2.8146 -"5 - 10hr",5.2710 -"10 - 18hr",10.0667 -18+hr,13.4785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index a88b0c32d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","User Expansion Factor" -"0 - 1s",1.0000 -"1 - 30s",1.0005 -"30s - 30min",1.0322 -"30 - 60min",2.4872 -"1 - 5hr",2.8146 -"5 - 10hr",5.2710 -"10 - 18hr",10.0667 -18+hr,13.4785 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index b5f86f21ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -2016-12-22,0,1.0000,0,0,0,1.0495,0,0 -2016-12-23,0,1.0000,0,0,0,1.0525,0,0 -2016-12-24,0,1.0000,0,0,0,1.0552,0,0 -2016-12-25,0,1.0000,1.0006,0,0,1.0552,0,1.6127 -2016-12-26,0,1.0000,1.0006,0,0,1.0552,0,1.5220 -2016-12-27,1.0000,1.0000,1.0006,0,0,1.0552,0,2.3909 -2016-12-28,1.0000,1.0000,1.0012,1.0228,1.0688,1.0714,1.1649,2.5548 -2016-12-29,1.0000,1.0001,1.0014,1.0359,1.0996,1.1188,1.4455,2.8173 -2016-12-30,1.0000,1.0008,1.0117,2.1893,3.0491,4.3677,4.6225,31.0736 -2016-12-31,1.0000,1.0006,1.0534,3.2562,2.9536,5.6091,8.3411,9.2461 -2017-01-01,1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index da137c447d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -2016-12,1.0000,1.0005,1.0226,2.4668,2.8034,5.0815,4.9728,12.9741 -2017-01,1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index e008240fd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -"2016 Q4",1.0000,1.0005,1.0226,2.4668,2.8034,5.0815,4.9728,12.9741 -"2017 Q1",1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 9eccf9dd74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -2016,1.0000,1.0005,1.0226,2.4668,2.8034,5.0815,4.9728,12.9741 -2017,1.0000,1.0010,1.0882,3.0903,2.8997,6.6512,29.9375,34.1449 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv deleted file mode 100644 index ac2732a994..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Ended" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv deleted file mode 100644 index ac2732a994..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Ended" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index ac2732a994..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Ended" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv deleted file mode 100644 index ac2732a994..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Ended" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv deleted file mode 100644 index b91a364e7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -2016-12-22,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0 -2016-12-30,5568,8262,4418,1149,5532,293,35,1349 -2016-12-31,4314,4851,7669,1370,6329,2698,129,781 -2017-01-01,2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 541b0aea0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -2016-12,9882,13113,12087,2519,11861,2991,164,2130 -2017-01,2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 5854baba87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -"2016 Q4",9882,13113,12087,2519,11861,2991,164,2130 -"2017 Q1",2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 81f9e9be24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -2016,9882,13113,12087,2519,11861,2991,164,2130 -2017,2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 22395f3546..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Max (Core Count)" -"0 - 1s",192 -"1 - 30s",192 -"30s - 30min",108 -"30 - 60min",192 -"1 - 5hr",336 -"5 - 10hr",288 -"10 - 18hr",96 -18+hr,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 22395f3546..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Max (Core Count)" -"0 - 1s",192 -"1 - 30s",192 -"30s - 30min",108 -"30 - 60min",192 -"1 - 5hr",336 -"5 - 10hr",288 -"10 - 18hr",96 -18+hr,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 22395f3546..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Max (Core Count)" -"0 - 1s",192 -"1 - 30s",192 -"30s - 30min",108 -"30 - 60min",192 -"1 - 5hr",336 -"5 - 10hr",288 -"10 - 18hr",96 -18+hr,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 22395f3546..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Max (Core Count)" -"0 - 1s",192 -"1 - 30s",192 -"30s - 30min",108 -"30 - 60min",192 -"1 - 5hr",336 -"5 - 10hr",288 -"10 - 18hr",96 -18+hr,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index a07d41e731..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -2016-12-22,0,12,0,0,0,12,0,0 -2016-12-23,0,12,0,0,0,12,0,0 -2016-12-24,0,12,0,0,0,12,0,0 -2016-12-25,0,12,12,0,0,12,0,24 -2016-12-26,0,16,12,0,0,12,0,24 -2016-12-27,64,32,12,0,0,12,0,144 -2016-12-28,192,192,12,8,32,12,12,144 -2016-12-29,192,192,72,56,96,72,60,160 -2016-12-30,192,192,108,192,336,288,72,160 -2016-12-31,192,192,96,32,336,192,72,96 -2017-01-01,64,48,96,96,192,96,96,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 76d60f5746..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -2016-12,192,192,108,192,336,288,72,160 -2017-01,64,48,96,96,192,96,96,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index e319d8ab2c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -"2016 Q4",192,192,108,192,336,288,72,160 -"2017 Q1",64,48,96,96,192,96,96,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index a6e815086a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -2016,192,192,108,192,336,288,72,160 -2017,64,48,96,96,192,96,96,160 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 52be40ed9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Min (Core Count)" -"0 - 1s",1 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",4 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 52be40ed9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Min (Core Count)" -"0 - 1s",1 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",4 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 52be40ed9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Min (Core Count)" -"0 - 1s",1 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",4 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 52be40ed9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Job Size: Min (Core Count)" -"0 - 1s",1 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",4 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 6b3d33a694..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -2016-12-22,0,12,0,0,0,12,0,0 -2016-12-23,0,12,0,0,0,1,0,0 -2016-12-24,0,12,0,0,0,1,0,0 -2016-12-25,0,12,12,0,0,1,0,24 -2016-12-26,0,12,12,0,0,1,0,24 -2016-12-27,1,12,8,0,0,1,0,8 -2016-12-28,1,1,1,8,8,1,12,8 -2016-12-29,1,1,1,8,8,1,12,1 -2016-12-30,1,1,1,1,1,1,4,1 -2016-12-31,1,1,1,1,1,1,4,2 -2017-01-01,1,1,1,1,1,1,8,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 2fd22a88fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -2016-12,1,1,1,1,1,1,4,1 -2017-01,1,1,1,1,1,1,8,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index f9262f2dd9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -"2016 Q4",1,1,1,1,1,1,4,1 -"2017 Q1",1,1,1,1,1,1,8,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 83fc91acfb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -2016,1,1,1,1,1,1,4,1 -2017,1,1,1,1,1,1,8,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 5244ebc993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 5244ebc993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 5244ebc993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 5244ebc993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -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/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 6be9e3c60e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0.300000000,0,0,0,0.300000000,0,0 -2016-12-23,0,0.300000000,0,0,0,0.162500000,0,0 -2016-12-24,0,0.300000000,0,0,0,0.162500000,0,0 -2016-12-25,0,0.300000000,0.300000000,0,0,0.162500000,0,0.600000000 -2016-12-26,0,0.191666667,0.300000000,0,0,0.162500000,0,0.600000000 -2016-12-27,0.231481481,0.095714286,0.250000000,0,0,0.162500000,0,0.556666667 -2016-12-28,0.430208333,0.108712121,0.014130435,0.200000000,0.216666667,0.130357143,0.300000000,0.624418605 -2016-12-29,0.077017544,0.050966667,0.019552139,0.500000000,0.173333333,0.149074074,0.387500000,0.375723140 -2016-12-30,0.047701477,0.045378860,0.033866436,0.031845238,0.049616397,0.056354415,0.400000000,0.109803748 -2016-12-31,0.060453210,0.058050128,0.031545016,0.051511289,0.067935775,0.050530165,0.099271403,0.124810606 -2017-01-01,0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 1fa3f3297f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -2016-12,0.052979884,0.049846200,0.031815720,0.032166931,0.051455415,0.052481011,0.126911315,0.104987901 -2017-01,0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 0f0426dcb2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.052979884,0.049846200,0.031815720,0.032166931,0.051455415,0.052481011,0.126911315,0.104987901 -"2017 Q1",0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index c9fd663af6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -2016,0.052979884,0.049846200,0.031815720,0.032166931,0.051455415,0.052481011,0.126911315,0.104987901 -2017,0.051943639,0.045552481,0.044848075,0.070079787,0.099973897,0.092391304,0.099609680,0.101520029 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 86cb723bd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Running" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 86cb723bd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Running" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 86cb723bd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Running" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 86cb723bd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Running" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index fdcd4dd14a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -2016-12-22,0,1,0,0,0,1,0,0 -2016-12-23,0,1,0,0,0,2,0,0 -2016-12-24,0,1,0,0,0,2,0,0 -2016-12-25,0,1,1,0,0,2,0,2 -2016-12-26,0,6,1,0,0,2,0,2 -2016-12-27,9,14,2,0,0,2,0,15 -2016-12-28,12,66,299,1,21,7,1,43 -2016-12-29,114,300,1122,5,65,9,4,121 -2016-12-30,5621,8420,5561,1204,6175,419,41,1414 -2016-12-31,4424,5067,8508,1373,6389,2735,183,924 -2017-01-01,2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 2b7720a18b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -2016-12,9992,13329,12926,2522,11921,3028,218,2273 -2017-01,2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d8c6b1cd38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -"2016 Q4",9992,13329,12926,2522,11921,3028,218,2273 -"2017 Q1",2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 516afb7c59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -2016,9992,13329,12926,2522,11921,3028,218,2273 -2017,2413,5059,5817,141,1277,966,427,466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 892ec0e4c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Started" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 892ec0e4c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Started" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 892ec0e4c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Started" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 892ec0e4c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Started" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17904 -"30 - 60min",2660 -"1 - 5hr",13138 -"5 - 10hr",3957 -"10 - 18hr",591 -18+hr,2596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index f683986ef0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -2016-12-22,0,1,0,0,0,1,0,0 -2016-12-23,0,0,0,0,0,1,0,0 -2016-12-24,0,0,0,0,0,0,0,0 -2016-12-25,0,0,1,0,0,0,0,2 -2016-12-26,0,5,0,0,0,0,0,0 -2016-12-27,9,8,1,0,0,0,0,13 -2016-12-28,3,52,297,1,21,5,1,28 -2016-12-29,102,234,823,4,44,2,3,78 -2016-12-30,5507,8120,4439,1199,6110,410,37,1293 -2016-12-31,4371,4909,7365,1318,5746,2609,177,859 -2017-01-01,2303,4843,4978,138,1217,929,373,323 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 9d39990f35..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -2016-12,9992,13329,12926,2522,11921,3028,218,2273 -2017-01,2303,4843,4978,138,1217,929,373,323 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 75288b766d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -"2016 Q4",9992,13329,12926,2522,11921,3028,218,2273 -"2017 Q1",2303,4843,4978,138,1217,929,373,323 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 51895e12e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -2016,9992,13329,12926,2522,11921,3028,218,2273 -2017,2303,4843,4978,138,1217,929,373,323 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index d79350cd67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Submitted" -"0 - 1s",12295 -"1 - 30s",18171 -"30s - 30min",17734 -"30 - 60min",2604 -"1 - 5hr",11469 -"5 - 10hr",1836 -"10 - 18hr",282 -18+hr,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 7f0920aab9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Submitted" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17742 -"30 - 60min",2604 -"1 - 5hr",12635 -"5 - 10hr",3196 -"10 - 18hr",301 -18+hr,2298 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 7f0920aab9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Submitted" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17742 -"30 - 60min",2604 -"1 - 5hr",12635 -"5 - 10hr",3196 -"10 - 18hr",301 -18+hr,2298 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 7f0920aab9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Number of Jobs Submitted" -"0 - 1s",12295 -"1 - 30s",18172 -"30s - 30min",17742 -"30 - 60min",2604 -"1 - 5hr",12635 -"5 - 10hr",3196 -"10 - 18hr",301 -18+hr,2298 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index ad6175b130..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -2016-12-22,0,1,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,1,0,0 -2016-12-24,0,0,0,0,0,0,0,0 -2016-12-25,0,0,1,0,0,0,0,0 -2016-12-26,0,5,0,0,0,0,0,0 -2016-12-27,9,8,1,0,0,0,0,0 -2016-12-28,3,52,297,1,21,5,0,0 -2016-12-29,102,234,823,4,41,1,1,0 -2016-12-30,5507,8119,4436,1199,6007,367,25,0 -2016-12-31,4371,4909,7360,1318,4686,1294,173,0 -2017-01-01,2303,4843,4816,82,714,168,83,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 6d4e03d411..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -2016-12,9992,13329,12926,2522,11921,3028,218,2273 -2017-01,2303,4843,4816,82,714,168,83,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 8c32c435fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -"2016 Q4",9992,13329,12926,2522,11921,3028,218,2273 -"2017 Q1",2303,4843,4816,82,714,168,83,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index a9b8b77af9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -2016,9992,13329,12926,2522,11921,3028,218,2273 -2017,2303,4843,4816,82,714,168,83,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 19496727d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","CPU Hours: Total" -"0 - 1s",114440.9553 -"1 - 30s",196096.3686 -"30s - 30min",131344.7058 -"30 - 60min",6972.5603 -"1 - 5hr",114549.0461 -"5 - 10hr",34222.8861 -"10 - 18hr",12186.1800 -18+hr,230743.1347 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 19496727d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","CPU Hours: Total" -"0 - 1s",114440.9553 -"1 - 30s",196096.3686 -"30s - 30min",131344.7058 -"30 - 60min",6972.5603 -"1 - 5hr",114549.0461 -"5 - 10hr",34222.8861 -"10 - 18hr",12186.1800 -18+hr,230743.1347 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 19496727d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","CPU Hours: Total" -"0 - 1s",114440.9553 -"1 - 30s",196096.3686 -"30s - 30min",131344.7058 -"30 - 60min",6972.5603 -"1 - 5hr",114549.0461 -"5 - 10hr",34222.8861 -"10 - 18hr",12186.1800 -18+hr,230743.1347 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 19496727d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","CPU Hours: Total" -"0 - 1s",114440.9553 -"1 - 30s",196096.3686 -"30s - 30min",131344.7058 -"30 - 60min",6972.5603 -"1 - 5hr",114549.0461 -"5 - 10hr",34222.8861 -"10 - 18hr",12186.1800 -18+hr,230743.1347 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 64a9174b24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -2016-12-22,0,200.9567,0,0,0,203.3000,0,0 -2016-12-23,0,288.0000,0,0,0,296.6036,0,0 -2016-12-24,0,288.0000,0,0,0,312.0000,0,0 -2016-12-25,0,288.0000,25.9167,0,0,312.0000,0,152.3533 -2016-12-26,0,504.3333,288.0000,0,0,312.0000,0,1152.0000 -2016-12-27,635.7647,2835.0622,294.7956,0,0,312.0000,0,11475.5222 -2016-12-28,16402.0800,25839.1853,3493.5272,66.0689,1728.9333,438.3467,179.3200,33841.2489 -2016-12-29,21123.8211,39134.6672,20091.6789,441.5889,14730.2411,2541.2778,2166.4211,71032.0872 -2016-12-30,38234.0164,67837.2003,43355.9111,2980.1908,41364.1692,6633.7486,4899.8022,69814.2286 -2016-12-31,32089.3717,48485.8175,43373.9481,3013.5708,38677.7242,15394.0319,2602.0767,38593.0889 -2017-01-01,5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a042c47cd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -2016-12,108485.0539,185701.2225,110923.7775,6501.4194,96501.0678,26755.3086,9847.6200,226060.5292 -2017-01,5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 31915c2b36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -"2016 Q4",108485.0539,185701.2225,110923.7775,6501.4194,96501.0678,26755.3086,9847.6200,226060.5292 -"2017 Q1",5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7347e0e693..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -2016,108485.0539,185701.2225,110923.7775,6501.4194,96501.0678,26755.3086,9847.6200,226060.5292 -2017,5955.9014,10395.1461,20420.9283,471.1408,18047.9783,7467.5775,2338.5600,4682.6056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4d04658b5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Total" -"0 - 1s",0.0094 -"1 - 30s",506.9033 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4d04658b5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Total" -"0 - 1s",0.0094 -"1 - 30s",506.9033 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4d04658b5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Total" -"0 - 1s",0.0094 -"1 - 30s",506.9033 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4d04658b5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","GPU Hours: Total" -"0 - 1s",0.0094 -"1 - 30s",506.9033 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index ad28903a75..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -2016-12-22,0,33.4928,0,0,0,0.0000,0,0 -2016-12-23,0,48.0000,0,0,0,0.0000,0,0 -2016-12-24,0,48.0000,0,0,0,0.0000,0,0 -2016-12-25,0,48.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-26,0,48.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-27,0.0000,48.0000,0.0000,0,0,0.0000,0,0.0000 -2016-12-28,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-29,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index b472b5364a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -2016-12,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 98567bae16..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -"2016 Q4",0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index ac4773dab0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -2016,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index f3f8c22cc0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Node Hours: Total" -"0 - 1s",9447.1700 -"1 - 30s",22041.2992 -"30s - 30min",79592.7303 -"30 - 60min",1294.0506 -"1 - 5hr",15211.2039 -"5 - 10hr",7117.9731 -"10 - 18hr",966.6325 -18+hr,20632.6881 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index f3f8c22cc0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Node Hours: Total" -"0 - 1s",9447.1700 -"1 - 30s",22041.2992 -"30s - 30min",79592.7303 -"30 - 60min",1294.0506 -"1 - 5hr",15211.2039 -"5 - 10hr",7117.9731 -"10 - 18hr",966.6325 -18+hr,20632.6881 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f3f8c22cc0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Node Hours: Total" -"0 - 1s",9447.1700 -"1 - 30s",22041.2992 -"30s - 30min",79592.7303 -"30 - 60min",1294.0506 -"1 - 5hr",15211.2039 -"5 - 10hr",7117.9731 -"10 - 18hr",966.6325 -18+hr,20632.6881 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index f3f8c22cc0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Node Hours: Total" -"0 - 1s",9447.1700 -"1 - 30s",22041.2992 -"30s - 30min",79592.7303 -"30 - 60min",1294.0506 -"1 - 5hr",15211.2039 -"5 - 10hr",7117.9731 -"10 - 18hr",966.6325 -18+hr,20632.6881 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 74134e0f03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -2016-12-22,0,16.7464,0,0,0,16.9417,0,0 -2016-12-23,0,24.0000,0,0,0,32.6036,0,0 -2016-12-24,0,24.0000,0,0,0,48.0000,0,0 -2016-12-25,0,24.0000,2.1597,0,0,48.0000,0,6.3481 -2016-12-26,0,37.5208,24.0000,0,0,48.0000,0,48.0000 -2016-12-27,51.3483,177.7439,24.8494,0,0,48.0000,0,904.4506 -2016-12-28,1034.1300,1663.0789,2868.4692,8.2586,163.7808,58.5289,14.9433,2803.4269 -2016-12-29,1512.5214,4584.8608,14960.5344,62.7839,1187.5906,226.2078,156.5058,5837.4922 -2016-12-30,3392.3636,7632.7417,27908.9047,778.1986,5155.0850,741.4539,377.8650,6321.9475 -2016-12-31,2822.2808,5609.2167,22187.6119,402.5461,6936.6814,4990.9650,220.0828,4219.4119 -2017-01-01,634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9d813ee1cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -2016-12,8812.6442,19793.9092,67976.5294,1251.7872,13443.1378,6258.7008,769.3969,20141.0772 -2017-01,634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ab24ff4bd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -"2016 Q4",8812.6442,19793.9092,67976.5294,1251.7872,13443.1378,6258.7008,769.3969,20141.0772 -"2017 Q1",634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3d6c37034a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -2016,8812.6442,19793.9092,67976.5294,1251.7872,13443.1378,6258.7008,769.3969,20141.0772 -2017,634.5258,2247.3900,11616.2008,42.2633,1768.0661,859.2722,197.2356,491.6108 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 68b4683741..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",12.2175 -"30s - 30min",2580.4025 -"30 - 60min",1890.6331 -"1 - 5hr",27352.8039 -"5 - 10hr",31520.6536 -"10 - 18hr",7127.5175 -18+hr,235861.1328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 68b4683741..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",12.2175 -"30s - 30min",2580.4025 -"30 - 60min",1890.6331 -"1 - 5hr",27352.8039 -"5 - 10hr",31520.6536 -"10 - 18hr",7127.5175 -18+hr,235861.1328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 68b4683741..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",12.2175 -"30s - 30min",2580.4025 -"30 - 60min",1890.6331 -"1 - 5hr",27352.8039 -"5 - 10hr",31520.6536 -"10 - 18hr",7127.5175 -18+hr,235861.1328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 68b4683741..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wait Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",12.2175 -"30s - 30min",2580.4025 -"30 - 60min",1890.6331 -"1 - 5hr",27352.8039 -"5 - 10hr",31520.6536 -"10 - 18hr",7127.5175 -18+hr,235861.1328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 560f9aa359..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -2016-12-22,0,0.0003,0,0,0,9.3322,0,0 -2016-12-23,0,0.0000,0,0,0,9.5964,0,0 -2016-12-24,0,0.0000,0,0,0,0.0000,0,0 -2016-12-25,0,0.0000,0.0633,0,0,0.0000,0,110.8222 -2016-12-26,0,0.0033,0.0000,0,0,0.0000,0,0.0000 -2016-12-27,0.0000,0.0047,0.0269,0,0,0.0000,0,1978.2203 -2016-12-28,0.0000,0.2700,16.2094,0.9747,56.5586,31.5608,12.2750,3480.4833 -2016-12-29,0.0000,0.5378,40.3964,3.7825,79.5814,12.8061,45.6517,5919.1156 -2016-12-30,0.0000,5.8897,311.2100,895.8464,11334.3244,2514.4558,438.5017,179782.0092 -2016-12-31,0.0000,3.3450,1183.4128,895.0256,12245.8150,22160.0661,1846.2236,35087.3694 -2017-01-01,0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index ee88826ea3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -2016-12,0.0000,10.0508,1551.3189,1795.6292,23716.2794,24737.8175,2342.6519,226358.0200 -2017-01,0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c94aa7685d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -"2016 Q4",0.0000,10.0508,1551.3189,1795.6292,23716.2794,24737.8175,2342.6519,226358.0200 -"2017 Q1",0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 22bc33b0eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -2016,0.0000,10.0508,1551.3189,1795.6292,23716.2794,24737.8175,2342.6519,226358.0200 -2017,0.0000,2.1667,1029.0836,95.0039,3636.5244,6782.8361,4784.8656,9503.1128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 51178042c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Total" -"0 - 1s",6063.3642 -"1 - 30s",16825.8508 -"30s - 30min",77716.7100 -"30 - 60min",931.0625 -"1 - 5hr",11729.0925 -"5 - 10hr",6341.2131 -"10 - 18hr",595.4839 -18+hr,7774.0294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 51178042c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Total" -"0 - 1s",6063.3642 -"1 - 30s",16825.8508 -"30s - 30min",77716.7100 -"30 - 60min",931.0625 -"1 - 5hr",11729.0925 -"5 - 10hr",6341.2131 -"10 - 18hr",595.4839 -18+hr,7774.0294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 51178042c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Total" -"0 - 1s",6063.3642 -"1 - 30s",16825.8508 -"30s - 30min",77716.7100 -"30 - 60min",931.0625 -"1 - 5hr",11729.0925 -"5 - 10hr",6341.2131 -"10 - 18hr",595.4839 -18+hr,7774.0294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 51178042c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Wall Hours: Total" -"0 - 1s",6063.3642 -"1 - 30s",16825.8508 -"30s - 30min",77716.7100 -"30 - 60min",931.0625 -"1 - 5hr",11729.0925 -"5 - 10hr",6341.2131 -"10 - 18hr",595.4839 -18+hr,7774.0294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5cf19e266f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -2016-12-22,0,16.7464,0,0,0,16.9417,0,0 -2016-12-23,0,24.0000,0,0,0,32.6036,0,0 -2016-12-24,0,24.0000,0,0,0,48.0000,0,0 -2016-12-25,0,24.0000,2.1597,0,0,48.0000,0,6.3481 -2016-12-26,0,37.5208,24.0000,0,0,48.0000,0,48.0000 -2016-12-27,24.7503,177.7439,24.8494,0,0,48.0000,0,258.8397 -2016-12-28,270.1775,578.0833,2868.4692,8.2586,88.8158,58.5289,14.9433,686.8669 -2016-12-29,528.8964,2997.0669,14669.8917,37.7336,662.1653,196.6147,62.7536,1349.3872 -2016-12-30,2364.9644,5658.3153,27223.8239,502.9589,3779.5211,586.8636,221.1017,2524.9650 -2016-12-31,2384.1906,5053.2900,21568.7039,345.3361,5742.4006,4590.8931,121.3106,2516.4203 -2017-01-01,490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 2958cefd45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -2016-12,5572.9792,14590.7667,66381.8978,894.2872,10272.9028,5674.4456,420.1092,7390.8272 -2017-01,490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 8215585894..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -"2016 Q4",5572.9792,14590.7667,66381.8978,894.2872,10272.9028,5674.4456,420.1092,7390.8272 -"2017 Q1",490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 938ae74900..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -2016,5572.9792,14590.7667,66381.8978,894.2872,10272.9028,5674.4456,420.1092,7390.8272 -2017,490.3850,2235.0842,11334.8122,36.7753,1456.1897,666.7675,175.3747,383.2022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 82c7b7af00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Screwdriver CPU Utilization (%)" -"0 - 1s",2.5915 -"1 - 30s",4.4406 -"30s - 30min",2.9743 -"30 - 60min",0.1816 -"1 - 5hr",2.9830 -"5 - 10hr",0.8912 -"10 - 18hr",0.3173 -18+hr,8.2882 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 54da11e73c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.5759 -"1 - 30s",0.9868 -"30s - 30min",0.6610 -"30 - 60min",0.0425 -"1 - 5hr",0.6978 -"5 - 10hr",0.2085 -"10 - 18hr",0.0742 -18+hr,1.8489 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index e30607f6f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.2375 -"1 - 30s",0.4069 -"30s - 30min",0.2725 -"30 - 60min",0.0178 -"1 - 5hr",0.2932 -"5 - 10hr",0.0876 -"10 - 18hr",0.0312 -18+hr,0.7829 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 26e7e91e55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wait Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.0635 -"1 - 30s",0.1088 -"30s - 30min",0.0729 -"30 - 60min",0.0048 -"1 - 5hr",0.0792 -"5 - 10hr",0.0237 -"10 - 18hr",0.0084 -18+hr,0.2123 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv deleted file mode 100644 index fb41a42c47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -2016-12-22,0,0.2093,0,0,0,0.2118,0,0 -2016-12-23,0,0.3000,0,0,0,0.3090,0,0 -2016-12-24,0,0.3000,0,0,0,0.3250,0,0 -2016-12-25,0,0.3000,0.0270,0,0,0.3250,0,0.1587 -2016-12-26,0,0.2627,0.3000,0,0,0.3250,0,1.2000 -2016-12-27,0.2208,0.5906,0.3071,0,0,0.3250,0,5.9768 -2016-12-28,4.2714,5.3832,1.8195,0.0688,0.9005,0.2283,0.1868,17.6257 -2016-12-29,4.4008,8.1531,10.4644,0.4600,5.1147,0.8824,1.1283,36.9959 -2016-12-30,7.9654,14.1328,11.2906,1.0348,10.7719,1.7275,2.5520,36.3616 -2016-12-31,6.6853,10.1012,9.0362,1.0464,13.4298,4.0089,0.9035,20.1006 -2017-01-01,1.2408,2.1657,5.3180,0.1227,6.2667,2.5929,0.8120,1.6259 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 0cb55b2f20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -2016-12,2.1732,3.7200,2.2220,0.1441,2.1388,0.5930,0.2502,7.5961 -2017-01,0.0400,0.0699,0.1715,0.0040,0.2022,0.0836,0.0262,0.0524 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index cc453e1b04..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -"2016 Q4",2.1732,3.7200,2.2220,0.1441,2.1388,0.5930,0.2502,7.5961 -"2017 Q1",0.0138,0.0241,0.0591,0.0014,0.0696,0.0288,0.0090,0.0181 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 150e4f4405..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwaittime/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wait Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -2016,2.1732,3.7200,2.2220,0.1441,2.1388,0.5930,0.2502,7.5961 -2017,0.0034,0.0059,0.0146,0.0003,0.0172,0.0071,0.0022,0.0045 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 3c91c58c3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Users: Active" -"0 - 1s",1 -"1 - 30s",20 -"30s - 30min",32 -"30 - 60min",20 -"1 - 5hr",25 -"5 - 10hr",21 -"10 - 18hr",26 -18+hr,45 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 3c91c58c3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Users: Active" -"0 - 1s",1 -"1 - 30s",20 -"30s - 30min",32 -"30 - 60min",20 -"1 - 5hr",25 -"5 - 10hr",21 -"10 - 18hr",26 -18+hr,45 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 3c91c58c3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Users: Active" -"0 - 1s",1 -"1 - 30s",20 -"30s - 30min",32 -"30 - 60min",20 -"1 - 5hr",25 -"5 - 10hr",21 -"10 - 18hr",26 -18+hr,45 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 3c91c58c3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Users: Active" -"0 - 1s",1 -"1 - 30s",20 -"30s - 30min",32 -"30 - 60min",20 -"1 - 5hr",25 -"5 - 10hr",21 -"10 - 18hr",26 -18+hr,45 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 6b13b2da24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -2016-12-22,0,0,0,0,0,0,0,2 -2016-12-23,0,0,0,0,0,0,0,3 -2016-12-24,0,0,0,0,0,0,0,3 -2016-12-25,0,0,0,0,0,0,0,4 -2016-12-26,0,0,0,0,0,0,0,5 -2016-12-27,0,0,0,0,0,0,0,16 -2016-12-28,0,0,0,0,0,0,0,25 -2016-12-29,0,1,4,4,5,6,11,40 -2016-12-30,0,13,25,14,19,15,19,43 -2016-12-31,0,12,15,13,17,12,14,35 -2017-01-01,1,9,15,16,12,6,11,22 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 1c9d0261ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -2016-12,0,18,28,16,24,18,23,45 -2017-01,1,9,15,16,12,6,11,22 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9889657fcd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -"2016 Q4",0,18,28,16,24,18,23,45 -"2017 Q1",1,9,15,16,12,6,11,22 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index f3e7b3444e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Users: Active","[1 - 30s] Number of Users: Active","[30s - 30min] Number of Users: Active","[30 - 60min] Number of Users: Active","[1 - 5hr] Number of Users: Active","[5 - 10hr] Number of Users: Active","[10 - 18hr] Number of Users: Active","[18+hr] Number of Users: Active" -2016,0,18,28,16,24,18,23,45 -2017,1,9,15,16,12,6,11,22 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 796ad2c25f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of PIs: Active" -"0 - 1s",1 -"1 - 30s",18 -"30s - 30min",26 -"30 - 60min",15 -"1 - 5hr",22 -"5 - 10hr",16 -"10 - 18hr",21 -18+hr,28 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 796ad2c25f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of PIs: Active" -"0 - 1s",1 -"1 - 30s",18 -"30s - 30min",26 -"30 - 60min",15 -"1 - 5hr",22 -"5 - 10hr",16 -"10 - 18hr",21 -18+hr,28 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 796ad2c25f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of PIs: Active" -"0 - 1s",1 -"1 - 30s",18 -"30s - 30min",26 -"30 - 60min",15 -"1 - 5hr",22 -"5 - 10hr",16 -"10 - 18hr",21 -18+hr,28 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 796ad2c25f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of PIs: Active" -"0 - 1s",1 -"1 - 30s",18 -"30s - 30min",26 -"30 - 60min",15 -"1 - 5hr",22 -"5 - 10hr",16 -"10 - 18hr",21 -18+hr,28 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index d2f41dfddd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -2016-12-22,0,0,0,0,0,0,0,2 -2016-12-23,0,0,0,0,0,0,0,3 -2016-12-24,0,0,0,0,0,0,0,3 -2016-12-25,0,0,0,0,0,0,0,3 -2016-12-26,0,0,0,0,0,0,0,4 -2016-12-27,0,0,0,0,0,0,0,11 -2016-12-28,0,0,0,0,0,0,0,18 -2016-12-29,0,1,3,3,4,5,10,26 -2016-12-30,0,11,19,9,16,13,16,27 -2016-12-31,0,11,13,10,15,9,13,22 -2017-01-01,1,8,13,12,11,4,10,15 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 4e2255deaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -2016-12,0,16,22,11,21,15,19,28 -2017-01,1,8,13,12,11,4,10,15 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1074b94812..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -"2016 Q4",0,16,22,11,21,15,19,28 -"2017 Q1",1,8,13,12,11,4,10,15 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index f59c182c57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of PIs: Active","[1 - 30s] Number of PIs: Active","[30s - 30min] Number of PIs: Active","[30 - 60min] Number of PIs: Active","[1 - 5hr] Number of PIs: Active","[5 - 10hr] Number of PIs: Active","[10 - 18hr] Number of PIs: Active","[18+hr] Number of PIs: Active" -2016,0,16,22,11,21,15,19,28 -2017,1,8,13,12,11,4,10,15 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 11925a01a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",5 -"1 - 5hr",5 -"5 - 10hr",3 -"10 - 18hr",4 -18+hr,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 11925a01a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",5 -"1 - 5hr",5 -"5 - 10hr",3 -"10 - 18hr",4 -18+hr,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 11925a01a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",5 -"1 - 5hr",5 -"5 - 10hr",3 -"10 - 18hr",4 -18+hr,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 11925a01a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Resources: Active" -"0 - 1s",5 -"1 - 30s",5 -"30s - 30min",5 -"30 - 60min",5 -"1 - 5hr",5 -"5 - 10hr",3 -"10 - 18hr",4 -18+hr,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index ccc2cc45c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -2016-12-22,0,0,0,0,0,0,0,2 -2016-12-23,0,0,0,0,0,0,0,2 -2016-12-24,0,0,0,0,0,0,0,2 -2016-12-25,0,0,0,0,0,0,0,2 -2016-12-26,0,0,0,0,0,0,0,3 -2016-12-27,0,0,0,0,0,0,0,5 -2016-12-28,0,0,0,0,0,0,0,5 -2016-12-29,0,1,4,4,4,3,2,5 -2016-12-30,0,5,5,4,4,3,3,5 -2016-12-31,0,5,5,4,5,3,4,5 -2017-01-01,5,5,5,5,5,3,4,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index e6e8fd4491..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -2016-12,0,5,5,4,5,3,4,5 -2017-01,5,5,5,5,5,3,4,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9c0aebbb51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -"2016 Q4",0,5,5,4,5,3,4,5 -"2017 Q1",5,5,5,5,5,3,4,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 373ba6763d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Resources: Active","[1 - 30s] Number of Resources: Active","[30s - 30min] Number of Resources: Active","[30 - 60min] Number of Resources: Active","[1 - 5hr] Number of Resources: Active","[5 - 10hr] Number of Resources: Active","[10 - 18hr] Number of Resources: Active","[18+hr] Number of Resources: Active" -2016,0,5,5,4,5,3,4,5 -2017,5,5,5,5,5,3,4,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1b78156c88..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index dc9d1b8bb1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index dc9d1b8bb1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index dc9d1b8bb1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 228358b405..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,202.12833333 -2016-12-23,0,0,0,0,0,0,0,194.86787037 -2016-12-24,0,0,0,0,0,0,0,200.00000000 -2016-12-25,0,0,0,0,0,0,0,129.71166667 -2016-12-26,0,0,0,0,0,0,0,205.12121212 -2016-12-27,0,0,0,0,0,0,0,370.31296958 -2016-12-28,0,0,0,0,0,0,0,182.19713395 -2016-12-29,0,0.02666667,2.04706667,3.63511860,7.12643246,213.36079861,31.47967125,123.85804092 -2016-12-30,0,0.04720222,1.02464827,6.60106644,13.24311345,8.02312193,94.50595975,91.31999102 -2016-12-31,0,0.04772036,2.05496092,6.77198865,12.42697538,7.75664920,153.82075315,56.92325035 -2017-01-01,0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 21ff78ef40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -2016-12,0,0.04744826,1.54736848,6.82270633,13.56120300,13.80149317,148.41040217,210.80056448 -2017-01,0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 719bb26957..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -"2016 Q4",0,0.04744826,1.54736848,6.82270633,13.56120300,13.80149317,148.41040217,210.80056448 -"2017 Q1",0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index cb34f7f399..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] CPU Hours: Per Job","[1 - 30s] CPU Hours: Per Job","[30s - 30min] CPU Hours: Per Job","[30 - 60min] CPU Hours: Per Job","[1 - 5hr] CPU Hours: Per Job","[5 - 10hr] CPU Hours: Per Job","[10 - 18hr] CPU Hours: Per Job","[18+hr] CPU Hours: Per Job" -2016,0,0.04744826,1.54736848,6.82270633,13.56120300,13.80149317,148.41040217,210.80056448 -2017,0.00000000,0.02343898,1.44758820,6.64116915,19.32226478,46.44864583,87.24596810,28.22646522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3b948a4a69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Per Job" -"0 - 1s",0.00000000 -"1 - 30s",0.00000056 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.19310603 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 3b948a4a69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Per Job" -"0 - 1s",0.00000000 -"1 - 30s",0.00000056 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.19310603 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3b948a4a69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Per Job" -"0 - 1s",0.00000000 -"1 - 30s",0.00000056 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.19310603 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 3b948a4a69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Per Job" -"0 - 1s",0.00000000 -"1 - 30s",0.00000056 -"30s - 30min",0.00000000 -"30 - 60min",0.00000000 -"1 - 5hr",0.00000000 -"5 - 10hr",0.00000000 -"10 - 18hr",0.00000000 -18+hr,0.19310603 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3237614890..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,16.74638889 -2016-12-23,0,0,0,0,0,0,0,16.00000000 -2016-12-24,0,0,0,0,0,0,0,16.00000000 -2016-12-25,0,0,0,0,0,0,0,8.00000000 -2016-12-26,0,0,0,0,0,0,0,4.36363636 -2016-12-27,0,0,0,0,0,0,0,1.14285714 -2016-12-28,0,0,0,0,0,0,0,0.10666667 -2016-12-29,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.03611738 -2016-12-30,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.02424242 -2016-12-31,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.02635914 -2017-01-01,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7e81fcaa80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -2016-12,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 -2017-01,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f9c8331848..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -"2016 Q4",0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 -"2017 Q1",0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index da646d8a15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" -2016,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 -2017,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 45982a6079..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0000,0 -"1 - 30s",0.0001,0.00011900157661986485 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0008,0.0007617596236544783 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 45982a6079..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0000,0 -"1 - 30s",0.0001,0.00011900157661986485 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0008,0.0007617596236544783 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 45982a6079..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0000,0 -"1 - 30s",0.0001,0.00011900157661986485 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0008,0.0007617596236544783 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 45982a6079..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"0 - 1s",0.0000,0 -"1 - 30s",0.0001,0.00011900157661986485 -"30s - 30min",0.0000,0 -"30 - 60min",0.0000,0 -"1 - 5hr",0.0000,0 -"5 - 10hr",0.0000,0 -"10 - 18hr",0.0000,0 -18+hr,0.0008,0.0007617596236544783 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 1c58d1d3c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -2016-12-22,0,0,0,0,0,0,0,1.0000 -2016-12-23,0,0,0,0,0,0,0,0.6667 -2016-12-24,0,0,0,0,0,0,0,0.6667 -2016-12-25,0,0,0,0,0,0,0,0.3333 -2016-12-26,0,0,0,0,0,0,0,0.1818 -2016-12-27,0,0,0,0,0,0,0,0.0476 -2016-12-28,0,0,0,0,0,0,0,0.0044 -2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0015 -2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0010 -2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0011 -2017-01-01,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 0fb822d113..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 -2017-01,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 4ee213f145..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 -"2017 Q1",0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index db95fe1aaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" -2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 -2017,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3bfdcbd953..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",0.0000 -"1 - 30s",8.3761 -"30s - 30min",12.6150 -"30 - 60min",11.9980 -"1 - 5hr",10.6108 -"5 - 10hr",29.1064 -"10 - 18hr",70.9822 -18+hr,85.2054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 3bfdcbd953..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",0.0000 -"1 - 30s",8.3761 -"30s - 30min",12.6150 -"30 - 60min",11.9980 -"1 - 5hr",10.6108 -"5 - 10hr",29.1064 -"10 - 18hr",70.9822 -18+hr,85.2054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3bfdcbd953..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",0.0000 -"1 - 30s",8.3761 -"30s - 30min",12.6150 -"30 - 60min",11.9980 -"1 - 5hr",10.6108 -"5 - 10hr",29.1064 -"10 - 18hr",70.9822 -18+hr,85.2054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 3bfdcbd953..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By CPU Hours (Core Count)" -"0 - 1s",0.0000 -"1 - 30s",8.3761 -"30s - 30min",12.6150 -"30 - 60min",11.9980 -"1 - 5hr",10.6108 -"5 - 10hr",29.1064 -"10 - 18hr",70.9822 -18+hr,85.2054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7c3ba6d1bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,0,0,0,0,0,0,12.0000 -2016-12-23,0,0,0,0,0,0,0,11.8381 -2016-12-24,0,0,0,0,0,0,0,11.5600 -2016-12-25,0,0,0,0,0,0,0,14.0099 -2016-12-26,0,0,0,0,0,0,0,18.3933 -2016-12-27,0,0,0,0,0,0,0,67.8600 -2016-12-28,0,0,0,0,0,0,0,107.6133 -2016-12-29,0,8.0000,11.0602,11.2686,9.6295,129.5264,57.8719,88.4859 -2016-12-30,0,8.0214,12.6177,11.7066,9.6705,27.1506,69.4558,93.7569 -2016-12-31,0,8.0659,11.9325,11.8839,10.2742,6.5618,80.0038,70.4326 -2017-01-01,0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 8f32074e39..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,0,8.0415,12.1568,11.8077,9.9461,26.5253,72.9020,88.4699 -2017-01,0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index be7b69084c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",0,8.0415,12.1568,11.8077,9.9461,26.5253,72.9020,88.4699 -"2017 Q1",0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index ee273d31e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Weighted By CPU Hours (Core Count)","[1 - 30s] Job Size: Weighted By CPU Hours (Core Count)","[30s - 30min] Job Size: Weighted By CPU Hours (Core Count)","[30 - 60min] Job Size: Weighted By CPU Hours (Core Count)","[1 - 5hr] Job Size: Weighted By CPU Hours (Core Count)","[5 - 10hr] Job Size: Weighted By CPU Hours (Core Count)","[10 - 18hr] Job Size: Weighted By CPU Hours (Core Count)","[18+hr] Job Size: Weighted By CPU Hours (Core Count)" -2016,0,8.0415,12.1568,11.8077,9.9461,26.5253,72.9020,88.4699 -2017,0.0000,8.9479,18.4458,14.5119,12.3688,42.2723,63.5453,16.5054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 42c3c3c16e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",0.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 42c3c3c16e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",0.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 42c3c3c16e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",0.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 42c3c3c16e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" -"0 - 1s",0.0000 -"1 - 30s",12.0000 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 70581a434a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,0,0,0,0,0,0,0,12.0000 -2016-12-23,0,0,0,0,0,0,0,12.0000 -2016-12-24,0,0,0,0,0,0,0,12.0000 -2016-12-25,0,0,0,0,0,0,0,12.0000 -2016-12-26,0,0,0,0,0,0,0,12.0000 -2016-12-27,0,0,0,0,0,0,0,12.0000 -2016-12-28,0,0,0,0,0,0,0,12.0000 -2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 -2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 -2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 -2017-01-01,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 22adca734e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 -2017-01,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2b9c15aea4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 -"2017 Q1",0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 70cbf9e093..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" -2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 -2017,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index c11ba137c0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index cc106ed217..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index cc106ed217..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index cc106ed217..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 17e118fc0c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,16.84402778 -2016-12-23,0,0,0,0,0,0,0,18.86787037 -2016-12-24,0,0,0,0,0,0,0,24.00000000 -2016-12-25,0,0,0,0,0,0,0,13.41796296 -2016-12-26,0,0,0,0,0,0,0,14.32007576 -2016-12-27,0,0,0,0,0,0,0,28.72362434 -2016-12-28,0,0,0,0,0,0,0,19.14359259 -2016-12-29,0,0.00333333,0.20393889,0.33386704,0.80695171,23.85128472,7.16686290,20.61182635 -2016-12-30,0,0.00615899,0.10752299,0.60261784,1.59544717,4.56279920,12.04322688,19.66855233 -2016-12-31,0,0.00600808,0.17849747,0.58784425,1.64400914,5.68685042,18.13074456,16.22165263 -2017-01-01,0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index f2b0bb5ecb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -2016-12,0,0.00609280,0.14367879,0.60500652,1.70536588,8.41619561,19.78734420,40.57277608 -2017-01,0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5b6af9ee4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -"2016 Q4",0,0.00609280,0.14367879,0.60500652,1.70536588,8.41619561,19.78734420,40.57277608 -"2017 Q1",0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 99ae63ef5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Node Hours: Per Job","[1 - 30s] Node Hours: Per Job","[30s - 30min] Node Hours: Per Job","[30 - 60min] Node Hours: Per Job","[1 - 5hr] Node Hours: Per Job","[5 - 10hr] Node Hours: Per Job","[10 - 18hr] Node Hours: Per Job","[18+hr] Node Hours: Per Job" -2016,0,0.00609280,0.14367879,0.60500652,1.70536588,8.41619561,19.78734420,40.57277608 -2017,0.00000000,0.00271538,0.13371809,0.66281219,1.90413861,7.55385802,15.76140539,13.61827496 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index a4d68d65b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index a4d68d65b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index a4d68d65b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index a4d68d65b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 246324220e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,12.0000 -2016-12-23,0,0,0,0,0,0,0,8.3333 -2016-12-24,0,0,0,0,0,0,0,8.3333 -2016-12-25,0,0,0,0,0,0,0,14.1667 -2016-12-26,0,0,0,0,0,0,0,15.0000 -2016-12-27,0,0,0,0,0,0,0,29.0238 -2016-12-28,0,0,0,0,0,0,0,11.5644 -2016-12-29,0,8.0000,9.4400,11.0562,8.5556,39.5000,5.0275,6.2438 -2016-12-30,0,7.6652,8.0058,11.1603,8.2130,1.8205,10.8263,5.0444 -2016-12-31,0,7.9714,9.1588,11.6703,8.0921,1.3084,17.1753,4.2521 -2017-01-01,10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 249bec9231..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -2016-12,0,7.8028,8.5822,11.4601,8.1025,1.7354,11.4304,4.2750 -2017-01,10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 59a1679069..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -"2016 Q4",0,7.8028,8.5822,11.4601,8.1025,1.7354,11.4304,4.2750 -"2017 Q1",10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 3bdd6ae794..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Per Job (Core Count)","[1 - 30s] Job Size: Per Job (Core Count)","[30s - 30min] Job Size: Per Job (Core Count)","[30 - 60min] Job Size: Per Job (Core Count)","[1 - 5hr] Job Size: Per Job (Core Count)","[5 - 10hr] Job Size: Per Job (Core Count)","[10 - 18hr] Job Size: Per Job (Core Count)","[18+hr] Job Size: Per Job (Core Count)" -2016,0,7.8028,8.5822,11.4601,8.1025,1.7354,11.4304,4.2750 -2017,10.1859,8.7941,10.7174,11.1463,10.3114,7.3472,9.7327,2.9580 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4d31b4dfa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",1.75797943,0.07225916089808289 -"1 - 30s",1.34280665,0.027298224161272592 -"30s - 30min",4.78160354,0.15859935254032856 -"30 - 60min",4.82357202,0.30866999281232865 -"1 - 5hr",10.58790336,0.22380828584819532 -"5 - 10hr",5.12942144,0.19143484631584606 -"10 - 18hr",2.15733883,0.43004631076392297 -18+hr,3.66214825,0.5194762197126669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4d31b4dfa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",1.75797943,0.07225916089808289 -"1 - 30s",1.34280665,0.027298224161272592 -"30s - 30min",4.78160354,0.15859935254032856 -"30 - 60min",4.82357202,0.30866999281232865 -"1 - 5hr",10.58790336,0.22380828584819532 -"5 - 10hr",5.12942144,0.19143484631584606 -"10 - 18hr",2.15733883,0.43004631076392297 -18+hr,3.66214825,0.5194762197126669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4d31b4dfa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",1.75797943,0.07225916089808289 -"1 - 30s",1.34280665,0.027298224161272592 -"30s - 30min",4.78160354,0.15859935254032856 -"30 - 60min",4.82357202,0.30866999281232865 -"1 - 5hr",10.58790336,0.22380828584819532 -"5 - 10hr",5.12942144,0.19143484631584606 -"10 - 18hr",2.15733883,0.43004631076392297 -18+hr,3.66214825,0.5194762197126669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4d31b4dfa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"0 - 1s",1.75797943,0.07225916089808289 -"1 - 30s",1.34280665,0.027298224161272592 -"30s - 30min",4.78160354,0.15859935254032856 -"30 - 60min",4.82357202,0.30866999281232865 -"1 - 5hr",10.58790336,0.22380828584819532 -"5 - 10hr",5.12942144,0.19143484631584606 -"10 - 18hr",2.15733883,0.43004631076392297 -18+hr,3.66214825,0.5194762197126669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 927b713818..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,4.66625000 -2016-12-23,0,0,0,0,0,0,0,9.59638889 -2016-12-24,0,0,0,0,0,0,0,0.00000000 -2016-12-25,0,0,0,0,0,0,0,36.96185185 -2016-12-26,0,0,0,0,0,0,0,0.00066667 -2016-12-27,0,0,0,0,0,0,0,63.81457885 -2016-12-28,0,0,0,0,0,0,0,8.81944104 -2016-12-29,0,0.00027778,39.79101111,7.71368914,12.75797204,3.35656250,1.18908257,1.49871413 -2016-12-30,0,0.80820964,8.57240499,10.22453127,8.41848253,2.41778487,4.21659962,1.24884750 -2016-12-31,0,2.76736224,1.30652462,0.98469655,15.29293925,10.62378277,3.52318783,2.79679134 -2017-01-01,1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d97aa0a1fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -2016-12,0,1.68863779,4.97744000,4.88127932,11.74988540,5.37828591,2.59188527,3.67599756 -2017-01,1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7123dabbde..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -"2016 Q4",0,1.68863779,4.97744000,4.88127932,11.74988540,5.37828591,2.59188527,3.67599756 -"2017 Q1",1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index cd74854f09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wait Hours: Per Job","[1 - 30s] Wait Hours: Per Job","[30s - 30min] Wait Hours: Per Job","[30 - 60min] Wait Hours: Per Job","[1 - 5hr] Wait Hours: Per Job","[5 - 10hr] Wait Hours: Per Job","[10 - 18hr] Wait Hours: Per Job","[18+hr] Wait Hours: Per Job" -2016,0,1.68863779,4.97744000,4.88127932,11.74988540,5.37828591,2.59188527,3.67599756 -2017,1.75797943,1.05086339,2.30832002,3.89290678,5.24135292,0.60594363,0.57089947,0.04055556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8fc67a30a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00425772,0.000020680416493683043 -"30s - 30min",0.14098194,0.0010058497282342677 -"30 - 60min",0.61308951,0.000946207432541567 -"1 - 5hr",1.78755398,0.008479014802875632 -"5 - 10hr",8.07963701, -"10 - 18hr",13.53437998, -18+hr,35.53722212, ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c74daedbc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00425772,0.000020682543214807062 -"30s - 30min",0.14098194,0.00100774909771691 -"30 - 60min",0.61308951,0.0011109028185435747 -"1 - 5hr",1.78755398,0.009401875379897017 -"5 - 10hr",8.07963701,0.03239580111285475 -"10 - 18hr",13.53437998, -18+hr,35.53722212,0.1527501916941727 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c74daedbc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00425772,0.000020682543214807062 -"30s - 30min",0.14098194,0.00100774909771691 -"30 - 60min",0.61308951,0.0011109028185435747 -"1 - 5hr",1.78755398,0.009401875379897017 -"5 - 10hr",8.07963701,0.03239580111285475 -"10 - 18hr",13.53437998, -18+hr,35.53722212,0.1527501916941727 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c74daedbc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"0 - 1s",0.00000000,0 -"1 - 30s",0.00425772,0.000020682543214807062 -"30s - 30min",0.14098194,0.00100774909771691 -"30 - 60min",0.61308951,0.0011109028185435747 -"1 - 5hr",1.78755398,0.009401875379897017 -"5 - 10hr",8.07963701,0.03239580111285475 -"10 - 18hr",13.53437998, -18+hr,35.53722212,0.1527501916941727 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0f37ba8607..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,16.84402778 -2016-12-23,0,0,0,0,0,0,0,18.86787037 -2016-12-24,0,0,0,0,0,0,0,24.00000000 -2016-12-25,0,0,0,0,0,0,0,13.41796296 -2016-12-26,0,0,0,0,0,0,0,14.32007576 -2016-12-27,0,0,0,0,0,0,0,12.71865079 -2016-12-28,0,0,0,0,0,0,0,10.16476358 -2016-12-29,0,0.00333333,0.20393889,0.33386704,0.80695171,5.48704861,5.79718400,14.79709452 -2016-12-30,0,0.00615381,0.10523706,0.59942082,1.58562870,4.40082842,7.70464571,15.36433039 -2016-12-31,0,0.00600430,0.17799823,0.58708566,1.60662306,5.64624892,9.09936999,13.99883580 -2017-01-01,0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index afa8f8996d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -2016-12,0,0.00608825,0.14228847,0.60320315,1.68142152,8.15553937,12.17916425,31.00850478 -2017-01,0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 558b6d1ee6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -"2016 Q4",0,0.00608825,0.14228847,0.60320315,1.68142152,8.15553937,12.17916425,31.00850478 -"2017 Q1",0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 26cffb96e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wall Hours: Per Job","[1 - 30s] Wall Hours: Per Job","[30s - 30min] Wall Hours: Per Job","[30 - 60min] Wall Hours: Per Job","[1 - 5hr] Wall Hours: Per Job","[5 - 10hr] Wall Hours: Per Job","[10 - 18hr] Wall Hours: Per Job","[18+hr] Wall Hours: Per Job" -2016,0,0.00608825,0.14228847,0.60320315,1.68142152,8.15553937,12.17916425,31.00850478 -2017,0.00000000,0.00271243,0.11734249,0.61571808,1.86401094,6.32777778,11.52837184,13.14436213 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index fd68a699f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","User Expansion Factor" -"0 - 1s",0.0000 -"1 - 30s",316.3051 -"30s - 30min",35.7816 -"30 - 60min",8.9675 -"1 - 5hr",6.8435 -"5 - 10hr",1.6699 -"10 - 18hr",1.1780 -18+hr,1.2185 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index fd68a699f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","User Expansion Factor" -"0 - 1s",0.0000 -"1 - 30s",316.3051 -"30s - 30min",35.7816 -"30 - 60min",8.9675 -"1 - 5hr",6.8435 -"5 - 10hr",1.6699 -"10 - 18hr",1.1780 -18+hr,1.2185 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index fd68a699f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","User Expansion Factor" -"0 - 1s",0.0000 -"1 - 30s",316.3051 -"30s - 30min",35.7816 -"30 - 60min",8.9675 -"1 - 5hr",6.8435 -"5 - 10hr",1.6699 -"10 - 18hr",1.1780 -18+hr,1.2185 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index fd68a699f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","User Expansion Factor" -"0 - 1s",0.0000 -"1 - 30s",316.3051 -"30s - 30min",35.7816 -"30 - 60min",8.9675 -"1 - 5hr",6.8435 -"5 - 10hr",1.6699 -"10 - 18hr",1.1780 -18+hr,1.2185 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 1682d47e56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -2016-12-22,0,0,0,0,0,0,0,1.0249 -2016-12-23,0,0,0,0,0,0,0,1.0302 -2016-12-24,0,0,0,0,0,0,0,1.0368 -2016-12-25,0,0,0,0,0,0,0,1.0813 -2016-12-26,0,0,0,0,0,0,0,1.1760 -2016-12-27,0,0,0,0,0,0,0,2.0450 -2016-12-28,0,0,0,0,0,0,0,1.5085 -2016-12-29,0,1.0417,89.1026,13.7294,7.6485,2.9477,1.2752,1.2980 -2016-12-30,0,132.3045,82.8001,17.8304,6.1278,1.2128,1.2140,1.1807 -2016-12-31,0,461.4775,8.3564,2.5988,9.1531,1.9123,1.1838,1.1257 -2017-01-01,0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index a3310e7657..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -2016-12,0,278.2336,36.3038,9.1029,7.6090,1.6886,1.2129,1.2318 -2017-01,0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 7c99f830f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -"2016 Q4",0,278.2336,36.3038,9.1029,7.6090,1.6886,1.2129,1.2318 -"2017 Q1",0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 58269d0e98..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] User Expansion Factor","[1 - 30s] User Expansion Factor","[30s - 30min] User Expansion Factor","[30 - 60min] User Expansion Factor","[1 - 5hr] User Expansion Factor","[5 - 10hr] User Expansion Factor","[10 - 18hr] User Expansion Factor","[18+hr] User Expansion Factor" -2016,0,278.2336,36.3038,9.1029,7.6090,1.6886,1.2129,1.2318 -2017,0.0000,388.4193,29.1017,7.3779,4.2598,1.3120,1.0785,1.1068 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 3791d8aebf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Ended" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 3791d8aebf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Ended" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 3791d8aebf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Ended" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 3791d8aebf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Ended" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 43570954a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -2016-12-22,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0 -2016-12-30,0,4234,15582,3547,2241,75,133,794 -2016-12-31,0,3459,15613,4929,2021,1157,59,903 -2017-01-01,1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv deleted file mode 100644 index a73233d6bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -2016-12,0,7693,31195,8476,4262,1232,192,1697 -2017-01,1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9a497598d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -"2016 Q4",0,7693,31195,8476,4262,1232,192,1697 -"2017 Q1",1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 44b653b421..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Ended","[1 - 30s] Number of Jobs Ended","[30s - 30min] Number of Jobs Ended","[30 - 60min] Number of Jobs Ended","[1 - 5hr] Number of Jobs Ended","[5 - 10hr] Number of Jobs Ended","[10 - 18hr] Number of Jobs Ended","[18+hr] Number of Jobs Ended" -2016,0,7693,31195,8476,4262,1232,192,1697 -2017,1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 8d9fc6e128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Max (Core Count)" -"0 - 1s",12 -"1 - 30s",32 -"30s - 30min",288 -"30 - 60min",96 -"1 - 5hr",80 -"5 - 10hr",160 -"10 - 18hr",112 -18+hr,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 8d9fc6e128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Max (Core Count)" -"0 - 1s",12 -"1 - 30s",32 -"30s - 30min",288 -"30 - 60min",96 -"1 - 5hr",80 -"5 - 10hr",160 -"10 - 18hr",112 -18+hr,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 8d9fc6e128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Max (Core Count)" -"0 - 1s",12 -"1 - 30s",32 -"30s - 30min",288 -"30 - 60min",96 -"1 - 5hr",80 -"5 - 10hr",160 -"10 - 18hr",112 -18+hr,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 8d9fc6e128..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Max (Core Count)" -"0 - 1s",12 -"1 - 30s",32 -"30s - 30min",288 -"30 - 60min",96 -"1 - 5hr",80 -"5 - 10hr",160 -"10 - 18hr",112 -18+hr,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index a1e76b6918..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,0,0,0,12 -2016-12-23,0,0,0,0,0,0,0,12 -2016-12-24,0,0,0,0,0,0,0,12 -2016-12-25,0,0,0,0,0,0,0,24 -2016-12-26,0,0,0,0,0,0,0,24 -2016-12-27,0,0,0,0,0,0,0,144 -2016-12-28,0,0,0,0,0,0,0,192 -2016-12-29,0,8,12,12,20,160,96,192 -2016-12-30,0,24,288,64,80,160,112,336 -2016-12-31,0,32,192,96,64,60,112,336 -2017-01-01,12,32,192,96,48,96,96,96 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 72020e4035..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -2016-12,0,32,288,96,80,160,112,336 -2017-01,12,32,192,96,48,96,96,96 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 432b9a65a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -"2016 Q4",0,32,288,96,80,160,112,336 -"2017 Q1",12,32,192,96,48,96,96,96 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 6dc21d58c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Max (Core Count)","[1 - 30s] Job Size: Max (Core Count)","[30s - 30min] Job Size: Max (Core Count)","[30 - 60min] Job Size: Max (Core Count)","[1 - 5hr] Job Size: Max (Core Count)","[5 - 10hr] Job Size: Max (Core Count)","[10 - 18hr] Job Size: Max (Core Count)","[18+hr] Job Size: Max (Core Count)" -2016,0,32,288,96,80,160,112,336 -2017,12,32,192,96,48,96,96,96 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index ee562cde8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Min (Core Count)" -"0 - 1s",8 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",1 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index ee562cde8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Min (Core Count)" -"0 - 1s",8 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",1 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index ee562cde8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Min (Core Count)" -"0 - 1s",8 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",1 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index ee562cde8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Job Size: Min (Core Count)" -"0 - 1s",8 -"1 - 30s",1 -"30s - 30min",1 -"30 - 60min",1 -"1 - 5hr",1 -"5 - 10hr",1 -"10 - 18hr",1 -18+hr,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index e685da27ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,0,0,0,12 -2016-12-23,0,0,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,0,0,1 -2016-12-25,0,0,0,0,0,0,0,1 -2016-12-26,0,0,0,0,0,0,0,1 -2016-12-27,0,0,0,0,0,0,0,1 -2016-12-28,0,0,0,0,0,0,0,1 -2016-12-29,0,8,4,4,1,1,1,1 -2016-12-30,0,1,1,1,1,1,1,1 -2016-12-31,0,1,1,1,1,1,1,1 -2017-01-01,8,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index d709e86ccc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -2016-12,0,1,1,1,1,1,1,1 -2017-01,8,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 63661a5a60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -"2016 Q4",0,1,1,1,1,1,1,1 -"2017 Q1",8,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index f25f718998..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Min (Core Count)","[1 - 30s] Job Size: Min (Core Count)","[30s - 30min] Job Size: Min (Core Count)","[30 - 60min] Job Size: Min (Core Count)","[1 - 5hr] Job Size: Min (Core Count)","[5 - 10hr] Job Size: Min (Core Count)","[10 - 18hr] Job Size: Min (Core Count)","[18+hr] Job Size: Min (Core Count)" -2016,0,1,1,1,1,1,1,1 -2017,8,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 06e921eca5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 06e921eca5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 06e921eca5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 06e921eca5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -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/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 4fece74fdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0.150000000 -2016-12-23,0,0,0,0,0,0,0,0.104166667 -2016-12-24,0,0,0,0,0,0,0,0.104166667 -2016-12-25,0,0,0,0,0,0,0,0.177083333 -2016-12-26,0,0,0,0,0,0,0,0.125000000 -2016-12-27,0,0,0,0,0,0,0,0.145119048 -2016-12-28,0,0,0,0,0,0,0,0.057822222 -2016-12-29,0,0.200000000,0.059000000,0.069101124,0.053472222,0.329166667,0.062844037,0.031218962 -2016-12-30,0,0.038325856,0.040028806,0.069751778,0.051331115,0.015170670,0.090219561,0.025222222 -2016-12-31,0,0.039856895,0.045793897,0.072939289,0.040460644,0.010902957,0.107345361,0.021260297 -2017-01-01,0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 01ddf893e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -2016-12,0,0.039014039,0.042910898,0.071625348,0.040512620,0.014461974,0.071440217,0.021374761 -2017-01,0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index f0ab1428c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0,0.039014039,0.042910898,0.071625348,0.040512620,0.014461974,0.071440217,0.021374761 -"2017 Q1",0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 7ff93c88fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Job Size: Normalized (% of Total Cores)","[1 - 30s] Job Size: Normalized (% of Total Cores)","[30s - 30min] Job Size: Normalized (% of Total Cores)","[30 - 60min] Job Size: Normalized (% of Total Cores)","[1 - 5hr] Job Size: Normalized (% of Total Cores)","[5 - 10hr] Job Size: Normalized (% of Total Cores)","[10 - 18hr] Job Size: Normalized (% of Total Cores)","[18+hr] Job Size: Normalized (% of Total Cores)" -2016,0,0.039014039,0.042910898,0.071625348,0.040512620,0.014461974,0.071440217,0.021374761 -2017,0.050929608,0.043970701,0.053587163,0.055731343,0.051557239,0.061226852,0.060829208,0.014789871 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 5caf04093b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Running" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 5caf04093b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Running" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 5caf04093b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Running" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 5caf04093b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Running" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 97cbd8d166..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -2016-12-22,0,0,0,0,0,0,0,2 -2016-12-23,0,0,0,0,0,0,0,3 -2016-12-24,0,0,0,0,0,0,0,3 -2016-12-25,0,0,0,0,0,0,0,6 -2016-12-26,0,0,0,0,0,0,0,11 -2016-12-27,0,0,0,0,0,0,0,42 -2016-12-28,0,0,0,0,0,0,0,450 -2016-12-29,0,2,50,89,153,8,109,1329 -2016-12-30,0,4235,15622,3656,2404,791,167,1980 -2016-12-31,0,3459,15764,5065,2236,1161,97,1821 -2017-01-01,1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 7f15a71aab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -2016-12,0,7693,31346,8612,4477,1236,230,2615 -2017-01,1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1d2d77b157..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -"2016 Q4",0,7693,31346,8612,4477,1236,230,2615 -"2017 Q1",1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index b8b1fd7170..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Running","[1 - 30s] Number of Jobs Running","[30s - 30min] Number of Jobs Running","[30 - 60min] Number of Jobs Running","[1 - 5hr] Number of Jobs Running","[5 - 10hr] Number of Jobs Running","[10 - 18hr] Number of Jobs Running","[18+hr] Number of Jobs Running" -2016,0,7693,31346,8612,4477,1236,230,2615 -2017,1861,9113,2633,670,1188,72,101,928 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 9ebb8e21f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Started" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 9ebb8e21f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Started" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 9ebb8e21f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Started" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 9ebb8e21f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Started" -"0 - 1s",1861 -"1 - 30s",16806 -"30s - 30min",33828 -"30 - 60min",9146 -"1 - 5hr",5450 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 458972b0b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -2016-12-22,0,0,0,0,0,0,0,2 -2016-12-23,0,0,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,3 -2016-12-26,0,0,0,0,0,0,0,5 -2016-12-27,0,0,0,0,0,0,0,31 -2016-12-28,0,0,0,0,0,0,0,408 -2016-12-29,0,2,50,89,153,8,109,879 -2016-12-30,0,4233,15572,3567,2251,783,58,651 -2016-12-31,0,3458,15724,4956,2073,445,63,635 -2017-01-01,1861,9113,2482,534,973,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 58cb9566f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -2016-12,0,7693,31346,8612,4477,1236,230,2615 -2017-01,1861,9113,2482,534,973,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index ff52a38552..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -"2016 Q4",0,7693,31346,8612,4477,1236,230,2615 -"2017 Q1",1861,9113,2482,534,973,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index d4d81ba0ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Started","[1 - 30s] Number of Jobs Started","[30s - 30min] Number of Jobs Started","[30 - 60min] Number of Jobs Started","[1 - 5hr] Number of Jobs Started","[5 - 10hr] Number of Jobs Started","[10 - 18hr] Number of Jobs Started","[18+hr] Number of Jobs Started" -2016,0,7693,31346,8612,4477,1236,230,2615 -2017,1861,9113,2482,534,973,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index e32c3df854..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Submitted" -"0 - 1s",1337 -"1 - 30s",15344 -"30s - 30min",31475 -"30 - 60min",8680 -"1 - 5hr",3888 -"5 - 10hr",922 -"10 - 18hr",268 -18+hr,2502 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 394e51261b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Submitted" -"0 - 1s",1337 -"1 - 30s",15936 -"30s - 30min",33355 -"30 - 60min",9040 -"1 - 5hr",5353 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 394e51261b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Submitted" -"0 - 1s",1337 -"1 - 30s",15936 -"30s - 30min",33355 -"30 - 60min",9040 -"1 - 5hr",5353 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 394e51261b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Number of Jobs Submitted" -"0 - 1s",1337 -"1 - 30s",15936 -"30s - 30min",33355 -"30 - 60min",9040 -"1 - 5hr",5353 -"5 - 10hr",1304 -"10 - 18hr",293 -18+hr,2625 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index a48d30bb8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,1 -2016-12-23,0,0,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,1 -2016-12-26,0,0,0,0,0,0,0,5 -2016-12-27,0,0,0,0,0,0,0,18 -2016-12-28,0,0,0,0,0,0,0,379 -2016-12-29,0,2,41,86,103,7,107,860 -2016-12-30,0,4230,14929,3350,1688,781,44,638 -2016-12-31,0,2869,14496,4816,1221,66,54,589 -2017-01-01,1337,8243,2009,428,876,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 3e1cd2eb48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -2016-12,0,7693,31346,8612,4477,1236,230,2615 -2017-01,1337,8243,2009,428,876,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index b8dc86179a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -"2016 Q4",0,7693,31346,8612,4477,1236,230,2615 -"2017 Q1",1337,8243,2009,428,876,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 8dc50045aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Number of Jobs Submitted","[1 - 30s] Number of Jobs Submitted","[30s - 30min] Number of Jobs Submitted","[30 - 60min] Number of Jobs Submitted","[1 - 5hr] Number of Jobs Submitted","[5 - 10hr] Number of Jobs Submitted","[10 - 18hr] Number of Jobs Submitted","[18+hr] Number of Jobs Submitted" -2016,0,7693,31346,8612,4477,1236,230,2615 -2017,1337,8243,2009,428,876,68,63,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0f0e7ef70d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","CPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",578.6189 -"30s - 30min",52315.3122 -"30 - 60min",63206.7303 -"1 - 5hr",83668.3564 -"5 - 10hr",20402.9481 -"10 - 18hr",42946.2353 -18+hr,577437.6358 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0f0e7ef70d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","CPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",578.6189 -"30s - 30min",52315.3122 -"30 - 60min",63206.7303 -"1 - 5hr",83668.3564 -"5 - 10hr",20402.9481 -"10 - 18hr",42946.2353 -18+hr,577437.6358 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0f0e7ef70d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","CPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",578.6189 -"30s - 30min",52315.3122 -"30 - 60min",63206.7303 -"1 - 5hr",83668.3564 -"5 - 10hr",20402.9481 -"10 - 18hr",42946.2353 -18+hr,577437.6358 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0f0e7ef70d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","CPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",578.6189 -"30s - 30min",52315.3122 -"30 - 60min",63206.7303 -"1 - 5hr",83668.3564 -"5 - 10hr",20402.9481 -"10 - 18hr",42946.2353 -18+hr,577437.6358 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index e55aa264fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -2016-12-22,0,0,0,0,0,0,0,404.2567 -2016-12-23,0,0,0,0,0,0,0,584.6036 -2016-12-24,0,0,0,0,0,0,0,600.0000 -2016-12-25,0,0,0,0,0,0,0,778.2700 -2016-12-26,0,0,0,0,0,0,0,2256.3333 -2016-12-27,0,0,0,0,0,0,0,15553.1447 -2016-12-28,0,0,0,0,0,0,0,81988.7103 -2016-12-29,0,0.0533,102.3533,323.5256,1090.3442,1706.8864,3431.2842,164607.3364 -2016-12-30,0,199.9014,16007.0553,24133.4989,31836.4447,6346.2894,15782.4953,180813.5822 -2016-12-31,0,165.0647,32394.4039,34300.1225,27786.7169,9005.4697,14920.6131,103657.2389 -2017-01-01,0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 832d12eadd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -2016-12,0,365.0194,48503.8125,58757.1469,60713.5058,17058.6456,34134.3925,551243.4761 -2017-01,0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4f3921dec5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -"2016 Q4",0,365.0194,48503.8125,58757.1469,60713.5058,17058.6456,34134.3925,551243.4761 -"2017 Q1",0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 90b9b377f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] CPU Hours: Total","[1 - 30s] CPU Hours: Total","[30s - 30min] CPU Hours: Total","[30 - 60min] CPU Hours: Total","[1 - 5hr] CPU Hours: Total","[5 - 10hr] CPU Hours: Total","[10 - 18hr] CPU Hours: Total","[18+hr] CPU Hours: Total" -2016,0,365.0194,48503.8125,58757.1469,60713.5058,17058.6456,34134.3925,551243.4761 -2017,0.0000,213.5994,3811.4997,4449.5833,22954.8506,3344.3025,8811.8428,26194.1597 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index eb596183ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",0.0094 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,506.9033 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index eb596183ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",0.0094 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,506.9033 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index eb596183ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",0.0094 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,506.9033 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index eb596183ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","GPU Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",0.0094 -"30s - 30min",0.0000 -"30 - 60min",0.0000 -"1 - 5hr",0.0000 -"5 - 10hr",0.0000 -"10 - 18hr",0.0000 -18+hr,506.9033 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5226fdaa02..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -2016-12-22,0,0,0,0,0,0,0,33.4928 -2016-12-23,0,0,0,0,0,0,0,48.0000 -2016-12-24,0,0,0,0,0,0,0,48.0000 -2016-12-25,0,0,0,0,0,0,0,48.0000 -2016-12-26,0,0,0,0,0,0,0,48.0000 -2016-12-27,0,0,0,0,0,0,0,48.0000 -2016-12-28,0,0,0,0,0,0,0,48.0000 -2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 -2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 -2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 -2017-01-01,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index b5274048c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 -2017-01,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index da072d6303..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 -"2017 Q1",0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index e369105e36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" -2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 -2017,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index e2e270caa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Node Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.6172 -"30s - 30min",4855.8350 -"30 - 60min",5654.4003 -"1 - 5hr",9897.0397 -"5 - 10hr",10946.2956 -"10 - 18hr",6142.9911 -18+hr,118735.5686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index e2e270caa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Node Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.6172 -"30s - 30min",4855.8350 -"30 - 60min",5654.4003 -"1 - 5hr",9897.0397 -"5 - 10hr",10946.2956 -"10 - 18hr",6142.9911 -18+hr,118735.5686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e2e270caa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Node Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.6172 -"30s - 30min",4855.8350 -"30 - 60min",5654.4003 -"1 - 5hr",9897.0397 -"5 - 10hr",10946.2956 -"10 - 18hr",6142.9911 -18+hr,118735.5686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index e2e270caa9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Node Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.6172 -"30s - 30min",4855.8350 -"30 - 60min",5654.4003 -"1 - 5hr",9897.0397 -"5 - 10hr",10946.2956 -"10 - 18hr",6142.9911 -18+hr,118735.5686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 647a6e5d47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -2016-12-22,0,0,0,0,0,0,0,33.6881 -2016-12-23,0,0,0,0,0,0,0,56.6036 -2016-12-24,0,0,0,0,0,0,0,72.0000 -2016-12-25,0,0,0,0,0,0,0,80.5078 -2016-12-26,0,0,0,0,0,0,0,157.5208 -2016-12-27,0,0,0,0,0,0,0,1206.3922 -2016-12-28,0,0,0,0,0,0,0,8614.6167 -2016-12-29,0,0.0067,10.1969,29.7142,123.4636,190.8103,781.1881,27393.1172 -2016-12-30,0,26.0833,1679.7242,2203.1708,3835.4550,3609.1742,2011.2189,38943.7336 -2016-12-31,0,20.7819,2813.8342,2977.4311,3676.0044,6602.4333,1758.6822,29539.6294 -2017-01-01,0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index ce98d9bcd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -2016-12,0,46.8719,4503.7553,5210.3161,7634.9231,10402.4178,4551.0892,106097.8094 -2017-01,0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3f70ca27a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -"2016 Q4",0,46.8719,4503.7553,5210.3161,7634.9231,10402.4178,4551.0892,106097.8094 -"2017 Q1",0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8fa7363773..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Node Hours: Total","[1 - 30s] Node Hours: Total","[30s - 30min] Node Hours: Total","[30 - 60min] Node Hours: Total","[1 - 5hr] Node Hours: Total","[5 - 10hr] Node Hours: Total","[10 - 18hr] Node Hours: Total","[18+hr] Node Hours: Total" -2016,0,46.8719,4503.7553,5210.3161,7634.9231,10402.4178,4551.0892,106097.8094 -2017,0.0000,24.7453,352.0797,444.0842,2262.1167,543.8778,1591.9019,12637.7592 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index dde0c1911d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Total" -"0 - 1s",3271.5997 -"1 - 30s",22567.2086 -"30s - 30min",161752.0844 -"30 - 60min",44116.3897 -"1 - 5hr",57704.0733 -"5 - 10hr",6688.7656 -"10 - 18hr",632.1003 -18+hr,9613.1392 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index dde0c1911d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Total" -"0 - 1s",3271.5997 -"1 - 30s",22567.2086 -"30s - 30min",161752.0844 -"30 - 60min",44116.3897 -"1 - 5hr",57704.0733 -"5 - 10hr",6688.7656 -"10 - 18hr",632.1003 -18+hr,9613.1392 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index dde0c1911d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Total" -"0 - 1s",3271.5997 -"1 - 30s",22567.2086 -"30s - 30min",161752.0844 -"30 - 60min",44116.3897 -"1 - 5hr",57704.0733 -"5 - 10hr",6688.7656 -"10 - 18hr",632.1003 -18+hr,9613.1392 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index dde0c1911d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wait Hours: Total" -"0 - 1s",3271.5997 -"1 - 30s",22567.2086 -"30s - 30min",161752.0844 -"30 - 60min",44116.3897 -"1 - 5hr",57704.0733 -"5 - 10hr",6688.7656 -"10 - 18hr",632.1003 -18+hr,9613.1392 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index a772f966f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -2016-12-22,0,0,0,0,0,0,0,9.3325 -2016-12-23,0,0,0,0,0,0,0,9.5964 -2016-12-24,0,0,0,0,0,0,0,0.0000 -2016-12-25,0,0,0,0,0,0,0,110.8856 -2016-12-26,0,0,0,0,0,0,0,0.0033 -2016-12-27,0,0,0,0,0,0,0,1978.2519 -2016-12-28,0,0,0,0,0,0,0,3598.3319 -2016-12-29,0,0.0006,1989.5506,686.5183,1951.9697,26.8525,129.6100,1317.3697 -2016-12-30,0,3421.1514,133489.4906,36470.9031,18950.0042,1893.1256,244.5628,812.9997 -2016-12-31,0,9569.5386,20543.7931,4880.1561,31702.2631,4727.5833,221.9608,1775.9625 -2017-01-01,3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index e7f4b0e518..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -2016-12,0,12990.6906,156022.8342,42037.5775,52604.2369,6647.5614,596.1336,9612.7336 -2017-01,3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5e0be5159c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -"2016 Q4",0,12990.6906,156022.8342,42037.5775,52604.2369,6647.5614,596.1336,9612.7336 -"2017 Q1",3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1c64ff6c0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wait Hours: Total","[1 - 30s] Wait Hours: Total","[30s - 30min] Wait Hours: Total","[30 - 60min] Wait Hours: Total","[1 - 5hr] Wait Hours: Total","[5 - 10hr] Wait Hours: Total","[10 - 18hr] Wait Hours: Total","[18+hr] Wait Hours: Total" -2016,0,12990.6906,156022.8342,42037.5775,52604.2369,6647.5614,596.1336,9612.7336 -2017,3271.5997,9576.5181,5729.2503,2078.8122,5099.8364,41.2042,35.9667,0.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9d7cc7de56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.5553 -"30s - 30min",4769.1372 -"30 - 60min",5607.3167 -"1 - 5hr",9742.1692 -"5 - 10hr",10535.8467 -"10 - 18hr",3965.5733 -18+hr,93285.2081 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9d7cc7de56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.5553 -"30s - 30min",4769.1372 -"30 - 60min",5607.3167 -"1 - 5hr",9742.1692 -"5 - 10hr",10535.8467 -"10 - 18hr",3965.5733 -18+hr,93285.2081 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9d7cc7de56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.5553 -"30s - 30min",4769.1372 -"30 - 60min",5607.3167 -"1 - 5hr",9742.1692 -"5 - 10hr",10535.8467 -"10 - 18hr",3965.5733 -18+hr,93285.2081 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9d7cc7de56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Wall Hours: Total" -"0 - 1s",0.0000 -"1 - 30s",71.5553 -"30s - 30min",4769.1372 -"30 - 60min",5607.3167 -"1 - 5hr",9742.1692 -"5 - 10hr",10535.8467 -"10 - 18hr",3965.5733 -18+hr,93285.2081 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index b3dbb48d1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -2016-12-22,0,0,0,0,0,0,0,33.6881 -2016-12-23,0,0,0,0,0,0,0,56.6036 -2016-12-24,0,0,0,0,0,0,0,72.0000 -2016-12-25,0,0,0,0,0,0,0,80.5078 -2016-12-26,0,0,0,0,0,0,0,157.5208 -2016-12-27,0,0,0,0,0,0,0,534.1833 -2016-12-28,0,0,0,0,0,0,0,4574.1436 -2016-12-29,0,0.0067,10.1969,29.7142,123.4636,43.8964,631.8931,19665.3386 -2016-12-30,0,26.0614,1644.0133,2191.4825,3811.8514,3481.0553,1286.6758,30421.3742 -2016-12-31,0,20.7689,2805.9642,2973.5889,3592.4092,6555.2950,882.6389,25491.8800 -2017-01-01,0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5ecf7aea1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -2016-12,0,46.8369,4460.1744,5194.7856,7527.7242,10080.2467,2801.2078,81087.2400 -2017-01,0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 6251ade6b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -"2016 Q4",0,46.8369,4460.1744,5194.7856,7527.7242,10080.2467,2801.2078,81087.2400 -"2017 Q1",0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1277063b25..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Wall Hours: Total","[1 - 30s] Wall Hours: Total","[30s - 30min] Wall Hours: Total","[30 - 60min] Wall Hours: Total","[1 - 5hr] Wall Hours: Total","[5 - 10hr] Wall Hours: Total","[10 - 18hr] Wall Hours: Total","[18+hr] Wall Hours: Total" -2016,0,46.8369,4460.1744,5194.7856,7527.7242,10080.2467,2801.2078,81087.2400 -2017,0.0000,24.7183,308.9628,412.5311,2214.4450,455.6000,1164.3656,12197.9681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv deleted file mode 100644 index cb527b856d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.0000 -"1 - 30s",0.0131 -"30s - 30min",1.1847 -"30 - 60min",1.4313 -"1 - 5hr",1.8947 -"5 - 10hr",0.7590 -"10 - 18hr",1.2782 -18+hr,13.0760 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 6face7f1a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.0000 -"1 - 30s",0.0029 -"30s - 30min",0.2633 -"30 - 60min",0.3181 -"1 - 5hr",0.4210 -"5 - 10hr",0.1648 -"10 - 18hr",0.2695 -18+hr,2.9058 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index a73f017bd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.0000 -"1 - 30s",0.0012 -"30s - 30min",0.1086 -"30 - 60min",0.1312 -"1 - 5hr",0.1736 -"5 - 10hr",0.0695 -"10 - 18hr",0.1113 -18+hr,1.1982 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 5f41e08ad3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Job Wall Time","Screwdriver CPU Utilization (%)" -"0 - 1s",0.0000 -"1 - 30s",0.0003 -"30s - 30min",0.0290 -"30 - 60min",0.0351 -"1 - 5hr",0.0464 -"5 - 10hr",0.0188 -"10 - 18hr",0.0298 -18+hr,0.3205 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv deleted file mode 100644 index e11ebdba8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0,0,0.2106 -2016-12-23,0,0,0,0,0,0,0,0.3045 -2016-12-24,0,0,0,0,0,0,0,0.3125 -2016-12-25,0,0,0,0,0,0,0,0.4053 -2016-12-26,0,0,0,0,0,0,0,0.7834 -2016-12-27,0,0,0,0,0,0,0,3.2402 -2016-12-28,0,0,0,0,0,0,0,17.0810 -2016-12-29,0,0.0001,0.0267,0.0843,0.2839,0.5927,1.7871,34.2932 -2016-12-30,0,0.0416,3.3348,6.2848,8.2907,2.2036,5.4800,37.6695 -2016-12-31,0,0.0344,6.7488,8.9323,5.7889,3.1269,3.8856,21.5953 -2017-01-01,0.0000,0.0445,0.7941,0.9270,4.7823,1.1612,2.2948,5.4571 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 1c7f224e57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -2016-12,0,0.0073,0.9716,1.4573,1.2162,0.4936,0.8466,11.0425 -2017-01,0.0000,0.0014,0.0256,0.0299,0.1543,0.0375,0.0740,0.1760 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 33a452015d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -"2016 Q4",0,0.0073,0.9716,1.4573,1.2162,0.4936,0.8466,11.0425 -"2017 Q1",0.0000,0.0005,0.0088,0.0103,0.0531,0.0129,0.0255,0.0606 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv deleted file mode 100644 index a20a5dad9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/jobwalltime/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Job Wall Time" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[0 - 1s] Screwdriver CPU Utilization (%)","[1 - 30s] Screwdriver CPU Utilization (%)","[30s - 30min] Screwdriver CPU Utilization (%)","[30 - 60min] Screwdriver CPU Utilization (%)","[1 - 5hr] Screwdriver CPU Utilization (%)","[5 - 10hr] Screwdriver CPU Utilization (%)","[10 - 18hr] Screwdriver CPU Utilization (%)","[18+hr] Screwdriver CPU Utilization (%)" -2016,0,0.0073,0.9716,1.4573,1.2162,0.4936,0.8466,11.0425 -2017,0.0000,0.0001,0.0022,0.0025,0.0131,0.0032,0.0063,0.0150 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 66d502987b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Users: Active" -1,49 -4,8 -2,7 -8,5 -6,4 -5,3 -12,3 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 66d502987b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Users: Active" -1,49 -4,8 -2,7 -8,5 -6,4 -5,3 -12,3 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 66d502987b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Users: Active" -1,49 -4,8 -2,7 -8,5 -6,4 -5,3 -12,3 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 66d502987b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Users: Active" -1,49 -4,8 -2,7 -8,5 -6,4 -5,3 -12,3 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 2deb89f310..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" -2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,11,0,1,2,1,0,1,0,0,0,0,0,0,0,0 -2016-12-28,19,1,1,2,1,0,2,1,0,0,0,0,0,0,0 -2016-12-29,30,2,2,3,2,2,2,2,0,0,1,0,1,0,0 -2016-12-30,48,7,6,5,3,3,3,2,0,1,1,1,1,1,1 -2016-12-31,40,5,3,5,3,3,2,2,1,0,0,1,0,0,1 -2017-01-01,28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index bfeb48d37d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" -2016-12,49,8,7,5,3,3,3,2,1,1,1,1,1,1,1 -2017-01,28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index a8c5e94047..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" -"2016 Q4",49,8,7,5,3,3,3,2,1,1,1,1,1,1,1 -"2017 Q1",28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index a9f271555d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Users: Active","[4] Number of Users: Active","[2] Number of Users: Active","[8] Number of Users: Active","[6] Number of Users: Active","[5] Number of Users: Active","[12] Number of Users: Active","[7] Number of Users: Active","[3] Number of Users: Active","[9] Number of Users: Active","[14] Number of Users: Active","[16] Number of Users: Active","[20] Number of Users: Active","[24] Number of Users: Active","[28] Number of Users: Active" -2016,49,8,7,5,3,3,3,2,1,1,1,1,1,1,1 -2017,28,4,4,4,2,2,0,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 651632b12c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of PIs: Active" -1,32 -4,8 -2,7 -8,5 -6,3 -12,3 -5,2 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 651632b12c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of PIs: Active" -1,32 -4,8 -2,7 -8,5 -6,3 -12,3 -5,2 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 651632b12c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of PIs: Active" -1,32 -4,8 -2,7 -8,5 -6,3 -12,3 -5,2 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 651632b12c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of PIs: Active" -1,32 -4,8 -2,7 -8,5 -6,3 -12,3 -5,2 -7,2 -3,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 885b28c0e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" -2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,8,0,1,2,1,1,0,0,0,0,0,0,0,0,0 -2016-12-28,15,1,1,2,1,2,0,1,0,0,0,0,0,0,0 -2016-12-29,20,2,2,3,2,2,1,2,0,0,1,0,1,0,0 -2016-12-30,31,7,6,5,2,3,2,2,0,1,1,1,1,1,1 -2016-12-31,26,5,3,5,2,2,2,2,1,0,0,1,0,0,1 -2017-01-01,20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 4ae0670743..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" -2016-12,32,8,7,5,2,3,2,2,1,1,1,1,1,1,1 -2017-01,20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 36265199a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" -"2016 Q4",32,8,7,5,2,3,2,2,1,1,1,1,1,1,1 -"2017 Q1",20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 3a56a69e37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of PIs: Active","[4] Number of PIs: Active","[2] Number of PIs: Active","[8] Number of PIs: Active","[6] Number of PIs: Active","[12] Number of PIs: Active","[5] Number of PIs: Active","[7] Number of PIs: Active","[3] Number of PIs: Active","[9] Number of PIs: Active","[14] Number of PIs: Active","[16] Number of PIs: Active","[20] Number of PIs: Active","[24] Number of PIs: Active","[28] Number of PIs: Active" -2016,32,8,7,5,2,3,2,2,1,1,1,1,1,1,1 -2017,20,4,4,4,2,0,1,0,1,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index a99480e555..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Resources: Active" -1,5 -4,3 -2,2 -8,2 -12,2 -3,1 -5,1 -6,1 -7,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index a99480e555..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Resources: Active" -1,5 -4,3 -2,2 -8,2 -12,2 -3,1 -5,1 -6,1 -7,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index a99480e555..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Resources: Active" -1,5 -4,3 -2,2 -8,2 -12,2 -3,1 -5,1 -6,1 -7,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index a99480e555..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Resources: Active" -1,5 -4,3 -2,2 -8,2 -12,2 -3,1 -5,1 -6,1 -7,1 -9,1 -14,1 -16,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index b1c5245baa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" -2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,5,0,1,2,1,0,0,1,0,0,0,0,0,0,0 -2016-12-28,5,1,1,2,2,0,0,1,1,0,0,0,0,0,0 -2016-12-29,5,2,2,2,2,0,1,1,1,0,1,0,1,0,0 -2016-12-30,5,3,2,2,2,0,1,1,1,1,1,1,1,1,1 -2016-12-31,5,3,2,2,2,1,1,1,1,0,0,1,0,0,1 -2017-01-01,5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 67b26077bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" -2016-12,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1 -2017-01,5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 4beccc2036..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" -"2016 Q4",5,3,2,2,2,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 417be5b136..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Resources: Active","[4] Number of Resources: Active","[2] Number of Resources: Active","[8] Number of Resources: Active","[12] Number of Resources: Active","[3] Number of Resources: Active","[5] Number of Resources: Active","[6] Number of Resources: Active","[7] Number of Resources: Active","[9] Number of Resources: Active","[14] Number of Resources: Active","[16] Number of Resources: Active","[20] Number of Resources: Active","[24] Number of Resources: Active","[28] Number of Resources: Active" -2016,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1 -2017,5,2,1,2,0,1,1,1,0,0,0,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index eb995b4923..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index cc28d3116c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index cc28d3116c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index cc28d3116c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6b1f78e986..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -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","[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,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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3417595479..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -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","[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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d2c6a27499..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -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","[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/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7d5e471d1f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Node Count" -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","[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/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 87f1f63f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Per Job" -1,0.00714989 -2,0.00000000 -3,0.00000000 -4,0.00000000 -5,0.00000000 -6,0.00000000 -7,0.00000000 -8,0.00000000 -9,0.00000000 -12,0.00000000 -14,0.00000000 -16,0.00000000 -20,0.00000000 -24,0.00000000 -28,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 87f1f63f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Per Job" -1,0.00714989 -2,0.00000000 -3,0.00000000 -4,0.00000000 -5,0.00000000 -6,0.00000000 -7,0.00000000 -8,0.00000000 -9,0.00000000 -12,0.00000000 -14,0.00000000 -16,0.00000000 -20,0.00000000 -24,0.00000000 -28,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 87f1f63f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Per Job" -1,0.00714989 -2,0.00000000 -3,0.00000000 -4,0.00000000 -5,0.00000000 -6,0.00000000 -7,0.00000000 -8,0.00000000 -9,0.00000000 -12,0.00000000 -14,0.00000000 -16,0.00000000 -20,0.00000000 -24,0.00000000 -28,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 87f1f63f64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Per Job" -1,0.00714989 -2,0.00000000 -3,0.00000000 -4,0.00000000 -5,0.00000000 -6,0.00000000 -7,0.00000000 -8,0.00000000 -9,0.00000000 -12,0.00000000 -14,0.00000000 -16,0.00000000 -20,0.00000000 -24,0.00000000 -28,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 39ee882bf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" -2016-12-22,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,16.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,16.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,8.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,4.36363636,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1.41176471,0.00000000,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0,0,0 -2016-12-28,0.11650485,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0,0 -2016-12-29,0.02875974,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0 -2016-12-30,0.00167492,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,0.00162739,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000 -2017-01-01,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 69d1e02d52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" -2016-12,0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e1db9987ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" -"2016 Q4",0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 39c1ae8f1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" -2016,0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 7db0e0ee3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0001,0.000039893752013661574 -2,0.0000,0 -3,0.0000,0 -4,0.0000,0 -5,0.0000,0 -6,0.0000,0 -7,0.0000,0 -8,0.0000,0 -9,0.0000,0 -12,0.0000,0 -14,0.0000,0 -16,0.0000,0 -20,0.0000,0 -24,0.0000,0 -28,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 7db0e0ee3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0001,0.000039893752013661574 -2,0.0000,0 -3,0.0000,0 -4,0.0000,0 -5,0.0000,0 -6,0.0000,0 -7,0.0000,0 -8,0.0000,0 -9,0.0000,0 -12,0.0000,0 -14,0.0000,0 -16,0.0000,0 -20,0.0000,0 -24,0.0000,0 -28,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 7db0e0ee3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0001,0.000039893752013661574 -2,0.0000,0 -3,0.0000,0 -4,0.0000,0 -5,0.0000,0 -6,0.0000,0 -7,0.0000,0 -8,0.0000,0 -9,0.0000,0 -12,0.0000,0 -14,0.0000,0 -16,0.0000,0 -20,0.0000,0 -24,0.0000,0 -28,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 7db0e0ee3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -1,0.0001,0.000039893752013661574 -2,0.0000,0 -3,0.0000,0 -4,0.0000,0 -5,0.0000,0 -6,0.0000,0 -7,0.0000,0 -8,0.0000,0 -9,0.0000,0 -12,0.0000,0 -14,0.0000,0 -16,0.0000,0 -20,0.0000,0 -24,0.0000,0 -28,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 73898b4023..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" -2016-12-22,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0.6667,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0.6667,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0.3333,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0.1818,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0.0588,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 -2016-12-28,0.0049,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 -2016-12-29,0.0012,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 -2016-12-30,0.0001,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 -2017-01-01,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 6874dc4bf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" -2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index c9b64858f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 672a732eb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" -2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 98f5c5c925..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By CPU Hours (Core Count)" -28,336.0000 -24,288.0000 -12,183.8058 -16,179.0578 -20,160.0000 -7,112.0000 -9,108.0000 -8,94.4545 -6,69.2561 -5,60.0000 -14,56.0000 -4,40.6778 -3,36.0000 -2,30.0822 -1,10.2574 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 98f5c5c925..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By CPU Hours (Core Count)" -28,336.0000 -24,288.0000 -12,183.8058 -16,179.0578 -20,160.0000 -7,112.0000 -9,108.0000 -8,94.4545 -6,69.2561 -5,60.0000 -14,56.0000 -4,40.6778 -3,36.0000 -2,30.0822 -1,10.2574 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 98f5c5c925..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By CPU Hours (Core Count)" -28,336.0000 -24,288.0000 -12,183.8058 -16,179.0578 -20,160.0000 -7,112.0000 -9,108.0000 -8,94.4545 -6,69.2561 -5,60.0000 -14,56.0000 -4,40.6778 -3,36.0000 -2,30.0822 -1,10.2574 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 98f5c5c925..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By CPU Hours (Core Count)" -28,336.0000 -24,288.0000 -12,183.8058 -16,179.0578 -20,160.0000 -7,112.0000 -9,108.0000 -8,94.4545 -6,69.2561 -5,60.0000 -14,56.0000 -4,40.6778 -3,36.0000 -2,30.0822 -1,10.2574 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index e1db38d68a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.8381 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.5600 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.0099 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.3933 -2016-12-27,0,0,144.0000,0,0,0,0,94.0460,72.0000,0,0,0,0,32.0000,17.3803 -2016-12-28,0,0,186.6424,0,0,112.0000,0,93.9056,65.7129,0,0,32.0000,0,32.0000,18.2927 -2016-12-29,0,0,187.8857,0,160.0000,112.0000,0,95.0709,68.8225,60.0000,56.0000,35.5686,0,32.7542,12.6845 -2016-12-30,336.0000,288.0000,188.5230,183.6426,160.0000,112.0000,108.0000,95.0294,69.8589,60.0000,56.0000,45.9274,0,33.5244,9.4785 -2016-12-31,336.0000,0,161.0440,192.0000,0,112.0000,0,93.8708,69.1050,60.0000,0,42.1685,36.0000,24.6265,9.1250 -2017-01-01,0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index c9cadff792..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,336.0000,288.0000,183.8058,184.9507,160.0000,112.0000,108.0000,94.6441,69.2300,60.0000,56.0000,40.9942,36.0000,30.8956,10.4497 -2017-01,0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c41c146c99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",336.0000,288.0000,183.8058,184.9507,160.0000,112.0000,108.0000,94.6441,69.2300,60.0000,56.0000,40.9942,36.0000,30.8956,10.4497 -"2017 Q1",0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 0db3db0f45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[28] Job Size: Weighted By CPU Hours (Core Count)","[24] Job Size: Weighted By CPU Hours (Core Count)","[12] Job Size: Weighted By CPU Hours (Core Count)","[16] Job Size: Weighted By CPU Hours (Core Count)","[20] Job Size: Weighted By CPU Hours (Core Count)","[7] Job Size: Weighted By CPU Hours (Core Count)","[9] Job Size: Weighted By CPU Hours (Core Count)","[8] Job Size: Weighted By CPU Hours (Core Count)","[6] Job Size: Weighted By CPU Hours (Core Count)","[5] Job Size: Weighted By CPU Hours (Core Count)","[14] Job Size: Weighted By CPU Hours (Core Count)","[4] Job Size: Weighted By CPU Hours (Core Count)","[3] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)","[1] Job Size: Weighted By CPU Hours (Core Count)" -2016,336.0000,288.0000,183.8058,184.9507,160.0000,112.0000,108.0000,94.6441,69.2300,60.0000,56.0000,40.9942,36.0000,30.8956,10.4497 -2017,0,0,0,159.6952,160.0000,0,0,90.7975,69.7948,60.0000,0,35.8310,36.0000,22.6038,8.9607 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9e384975af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" -1,12.0000 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9e384975af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" -1,12.0000 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9e384975af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" -1,12.0000 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9e384975af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" -1,12.0000 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 37db0597ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,12.0000,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 -2016-12-28,12.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 -2016-12-29,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 -2016-12-30,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 -2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 63148c4df6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 0a17584840..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 03d265b5db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index dd389f4e80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index be6b5f5d50..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index be6b5f5d50..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index be6b5f5d50..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 226a70c1bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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,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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index de009ba45a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -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","[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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 40ff7784f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -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","[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/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1f4e7b2372..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Node Count" -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","[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/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 00aa1de7c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 00aa1de7c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 00aa1de7c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 00aa1de7c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -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/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index f179cd5e72..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3333 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3333 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.1667 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.0000 -2016-12-27,0,0,144.0000,0,0,0,0,88.0000,72.0000,0,0,0,0,32.0000,17.2647 -2016-12-28,0,0,186.6667,0,0,112.0000,0,94.0000,60.0000,0,0,32.0000,0,32.0000,3.5631 -2016-12-29,0,0,186.6667,0,160.0000,112.0000,0,94.7692,69.3333,60.0000,56.0000,36.5714,0,32.7273,3.3930 -2016-12-30,336.0000,288.0000,170.1818,160.0000,160.0000,112.0000,108.0000,88.1404,69.6000,60.0000,56.0000,41.7561,0,24.0000,7.6080 -2016-12-31,336.0000,0,172.8000,192.0000,0,112.0000,0,91.7895,68.0000,60.0000,0,40.0000,36.0000,24.3200,8.5385 -2017-01-01,0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 47987f479d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" -2016-12,336.0000,288.0000,170.1818,170.6667,160.0000,112.0000,108.0000,88.0000,70.1538,60.0000,56.0000,41.4118,36.0000,23.9000,8.2893 -2017-01,0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index a454b3460a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" -"2016 Q4",336.0000,288.0000,170.1818,170.6667,160.0000,112.0000,108.0000,88.0000,70.1538,60.0000,56.0000,41.4118,36.0000,23.9000,8.2893 -"2017 Q1",0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index cd8628edf2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[28] Job Size: Per Job (Core Count)","[24] Job Size: Per Job (Core Count)","[12] Job Size: Per Job (Core Count)","[16] Job Size: Per Job (Core Count)","[20] Job Size: Per Job (Core Count)","[7] Job Size: Per Job (Core Count)","[9] Job Size: Per Job (Core Count)","[8] Job Size: Per Job (Core Count)","[6] Job Size: Per Job (Core Count)","[5] Job Size: Per Job (Core Count)","[14] Job Size: Per Job (Core Count)","[4] Job Size: Per Job (Core Count)","[3] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)","[1] Job Size: Per Job (Core Count)" -2016,336.0000,288.0000,170.1818,170.6667,160.0000,112.0000,108.0000,88.0000,70.1538,60.0000,56.0000,41.4118,36.0000,23.9000,8.2893 -2017,0,0,0,160.0000,160.0000,0,0,86.5455,54.0000,60.0000,0,39.3333,36.0000,21.8182,8.7126 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0824459587..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -20,31.02180556,3.7428536858056267 -8,23.32822222,3.5623533676578716 -2,12.75819728,1.7916575165582784 -16,8.82927778,3.577621630132938 -4,8.80284937,1.2555800122268639 -24,8.77666667,0 -12,7.94618687,6.785954421587278 -5,7.86661111,2.858018648480399 -6,7.37370833,4.0104974299359375 -28,4.58277778,0 -1,4.24213692,0.0897695546135694 -3,1.29993827,0.48194573964755716 -14,0.98805556,0.13847507798236555 -9,0.09777778,0 -7,0.00055556,0.00013094570021973103 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0824459587..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -20,31.02180556,3.7428536858056267 -8,23.32822222,3.5623533676578716 -2,12.75819728,1.7916575165582784 -16,8.82927778,3.577621630132938 -4,8.80284937,1.2555800122268639 -24,8.77666667,0 -12,7.94618687,6.785954421587278 -5,7.86661111,2.858018648480399 -6,7.37370833,4.0104974299359375 -28,4.58277778,0 -1,4.24213692,0.0897695546135694 -3,1.29993827,0.48194573964755716 -14,0.98805556,0.13847507798236555 -9,0.09777778,0 -7,0.00055556,0.00013094570021973103 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0824459587..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -20,31.02180556,3.7428536858056267 -8,23.32822222,3.5623533676578716 -2,12.75819728,1.7916575165582784 -16,8.82927778,3.577621630132938 -4,8.80284937,1.2555800122268639 -24,8.77666667,0 -12,7.94618687,6.785954421587278 -5,7.86661111,2.858018648480399 -6,7.37370833,4.0104974299359375 -28,4.58277778,0 -1,4.24213692,0.0897695546135694 -3,1.29993827,0.48194573964755716 -14,0.98805556,0.13847507798236555 -9,0.09777778,0 -7,0.00055556,0.00013094570021973103 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0824459587..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -20,31.02180556,3.7428536858056267 -8,23.32822222,3.5623533676578716 -2,12.75819728,1.7916575165582784 -16,8.82927778,3.577621630132938 -4,8.80284937,1.2555800122268639 -24,8.77666667,0 -12,7.94618687,6.785954421587278 -5,7.86661111,2.858018648480399 -6,7.37370833,4.0104974299359375 -28,4.58277778,0 -1,4.24213692,0.0897695546135694 -3,1.29993827,0.48194573964755716 -14,0.98805556,0.13847507798236555 -9,0.09777778,0 -7,0.00055556,0.00013094570021973103 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 786eb70436..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,4.66625000,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,9.59638889,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,36.96185185,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0 -2016-12-27,0,77.78361111,46.99166667,0,0,0,78.78861111,0,76.08611111,0,61.66345411,0,0,0,0 -2016-12-28,0,108.01750000,87.03238889,0,2.73787037,0,0.00017361,0,36.87611111,0,4.81975823,0,0,0,0.00027778 -2016-12-29,25.72861111,34.46513889,67.80812500,0,11.16486111,0,0.00000000,5.85819444,1.98928571,0,4.28732167,0,0.79222222,0,0.00062500 -2016-12-30,0.00000000,7.04252688,9.45451852,9.63930556,8.55795752,8.77666667,4.30902778,9.20555556,17.26194444,4.58277778,7.19775006,0,1.18388889,0.09777778,0.00055556 -2016-12-31,0,1.87794444,1.16680556,5.17777778,0.39252778,0,0.00000000,0.00000000,0.36703704,0.00000000,2.68714749,1.30061111,0,0,0.00000000 -2017-01-01,36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 1b63820f76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" -2016-12,25.72861111,30.53449074,15.67293056,8.15212963,6.81899782,8.77666667,7.94618687,7.86661111,11.17309829,4.58277778,4.93919225,1.30061111,0.98805556,0.09777778,0.00055556 -2017-01,36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d53b7c35d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" -"2016 Q4",25.72861111,30.53449074,15.67293056,8.15212963,6.81899782,8.77666667,7.94618687,7.86661111,11.17309829,4.58277778,4.93919225,1.30061111,0.98805556,0.09777778,0.00055556 -"2017 Q1",36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index a84ca61fa7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[20] Wait Hours: Per Job","[8] Wait Hours: Per Job","[2] Wait Hours: Per Job","[16] Wait Hours: Per Job","[4] Wait Hours: Per Job","[24] Wait Hours: Per Job","[12] Wait Hours: Per Job","[5] Wait Hours: Per Job","[6] Wait Hours: Per Job","[28] Wait Hours: Per Job","[1] Wait Hours: Per Job","[3] Wait Hours: Per Job","[14] Wait Hours: Per Job","[9] Wait Hours: Per Job","[7] Wait Hours: Per Job" -2016,25.72861111,30.53449074,15.67293056,8.15212963,6.81899782,8.77666667,7.94618687,7.86661111,11.17309829,4.58277778,4.93919225,1.30061111,0.98805556,0.09777778,0.00055556 -2017,36.31500000,7.60545455,9.27791874,9.84500000,11.00233696,0,0,0.00000000,0.31769841,0,1.63219083,1.29909722,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index a0cf63d9dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -12,64.23568182, -28,37.77027778, -5,30.72350000, -6,22.41712500, -7,22.02904321, -8,17.76180159,0.6087360678198865 -14,10.08083333,5.736664622204642 -2,5.20598073,0.6639556959407057 -20,4.51402778,1.3866381241776238 -3,4.03675926,0.40654126035691324 -4,3.97137457,0.6800199931656237 -1,1.73983262,0.017634409297817635 -9,0.26055556,0 -16,0.05505556,0.019275199955728954 -24,0.02138889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 196a64c884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -12,64.23568182,5.022295006482176 -28,37.77027778,0 -5,30.72350000,2.787898170200514 -6,22.41712500,4.958147503609022 -7,22.02904321,6.022712308418543 -8,17.76180159,2.736494697732903 -14,10.08083333,7.102298361367882 -2,5.20598073,1.034690026204867 -20,4.51402778,3.1765790052054 -3,4.03675926,0.40654126035691324 -4,3.97137457,0.988521065528704 -1,1.73983262,0.025196235065978963 -9,0.26055556,0 -16,0.05505556,0.019275199955728954 -24,0.02138889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 196a64c884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -12,64.23568182,5.022295006482176 -28,37.77027778,0 -5,30.72350000,2.787898170200514 -6,22.41712500,4.958147503609022 -7,22.02904321,6.022712308418543 -8,17.76180159,2.736494697732903 -14,10.08083333,7.102298361367882 -2,5.20598073,1.034690026204867 -20,4.51402778,3.1765790052054 -3,4.03675926,0.40654126035691324 -4,3.97137457,0.988521065528704 -1,1.73983262,0.025196235065978963 -9,0.26055556,0 -16,0.05505556,0.019275199955728954 -24,0.02138889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 196a64c884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -12,64.23568182,5.022295006482176 -28,37.77027778,0 -5,30.72350000,2.787898170200514 -6,22.41712500,4.958147503609022 -7,22.02904321,6.022712308418543 -8,17.76180159,2.736494697732903 -14,10.08083333,7.102298361367882 -2,5.20598073,1.034690026204867 -20,4.51402778,3.1765790052054 -3,4.03675926,0.40654126035691324 -4,3.97137457,0.988521065528704 -1,1.73983262,0.025196235065978963 -9,0.26055556,0 -16,0.05505556,0.019275199955728954 -24,0.02138889,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 560a1b6859..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,16.84402778,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,18.86787037,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,13.41796296,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,14.32007576,0,0,0 -2016-12-27,20.81333333,0,0,20.66416667,0,10.68798611,0,20.33888889,0,0,0,12.03753268,0,0,0 -2016-12-28,18.58521605,0,0,18.38902778,17.50194444,15.77859375,0,9.92388889,0,0,8.32944444,9.72253304,0,0,0 -2016-12-29,24.00000000,0,13.22000000,14.31675926,7.73555556,21.50342949,1.92694444,22.44030303,6.48888889,0,17.00476190,11.48062263,0,0,0 -2016-12-30,18.84722222,20.80138889,9.85422222,18.73475000,11.80487654,10.17189084,9.11736111,2.09234623,2.51750000,0,2.98219512,1.44640537,0.26055556,0.08611111,0.02138889 -2016-12-31,9.51927778,16.96888889,18.75444444,9.04125000,7.16755556,8.78502193,0,7.69457778,0,3.89516667,6.69218254,1.40446323,0,0.03000000,0 -2017-01-01,0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index aa3a1216cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" -2016-12,64.23568182,37.77027778,26.39488889,32.91446581,22.02904321,24.55454475,10.08083333,8.33155208,9.00638889,3.89516667,7.05847495,1.90964305,0.26055556,0.06740741,0.02138889 -2017-01,0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 92a4c23ad5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" -"2016 Q4",64.23568182,37.77027778,26.39488889,32.91446581,22.02904321,24.55454475,10.08083333,8.33155208,9.00638889,3.89516667,7.05847495,1.90964305,0.26055556,0.06740741,0.02138889 -"2017 Q1",0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index a3f981ed9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[12] Wall Hours: Per Job","[28] Wall Hours: Per Job","[5] Wall Hours: Per Job","[6] Wall Hours: Per Job","[7] Wall Hours: Per Job","[8] Wall Hours: Per Job","[14] Wall Hours: Per Job","[2] Wall Hours: Per Job","[20] Wall Hours: Per Job","[3] Wall Hours: Per Job","[4] Wall Hours: Per Job","[1] Wall Hours: Per Job","[9] Wall Hours: Per Job","[16] Wall Hours: Per Job","[24] Wall Hours: Per Job" -2016,64.23568182,37.77027778,26.39488889,32.91446581,22.02904321,24.55454475,10.08083333,8.33155208,9.00638889,3.89516667,7.05847495,1.90964305,0.26055556,0.06740741,0.02138889 -2017,0,0,10.82152778,2.55680556,0,2.20595328,0,1.28253247,0.02166667,3.37100000,0.52585648,1.00729505,0,0.03652778,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 573c78106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","User Expansion Factor" -24,411.3377 -16,161.3703 -20,7.8723 -2,3.4507 -1,3.4117 -4,3.2166 -8,2.3134 -9,1.3753 -6,1.3289 -3,1.3220 -5,1.2560 -12,1.1237 -28,1.1213 -14,1.0980 -7,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 573c78106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","User Expansion Factor" -24,411.3377 -16,161.3703 -20,7.8723 -2,3.4507 -1,3.4117 -4,3.2166 -8,2.3134 -9,1.3753 -6,1.3289 -3,1.3220 -5,1.2560 -12,1.1237 -28,1.1213 -14,1.0980 -7,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 573c78106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","User Expansion Factor" -24,411.3377 -16,161.3703 -20,7.8723 -2,3.4507 -1,3.4117 -4,3.2166 -8,2.3134 -9,1.3753 -6,1.3289 -3,1.3220 -5,1.2560 -12,1.1237 -28,1.1213 -14,1.0980 -7,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 573c78106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","User Expansion Factor" -24,411.3377 -16,161.3703 -20,7.8723 -2,3.4507 -1,3.4117 -4,3.2166 -8,2.3134 -9,1.3753 -6,1.3289 -3,1.3220 -5,1.2560 -12,1.1237 -28,1.1213 -14,1.0980 -7,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index ba9ba3ce32..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" -2016-12-22,0,0,0,0,1.0249,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,1.0302,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,1.0368,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,1.0813,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,1.1760,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,1.6524,1.7710,0,2.4152,0,2.0864,0,0,2.0942,0,0,0 -2016-12-28,0,0,0,2.1666,1.2063,1.0771,2.4222,0,1.8919,0,0,1.1570,0,0,1.0000 -2016-12-29,0,0,3.8567,3.0451,1.1744,1.1059,2.2212,0,1.3242,0,1.3449,1.1216,0,1.0394,1.0000 -2016-12-30,411.3377,112.9403,3.8567,6.2353,5.7153,3.5416,2.4579,1.3753,1.2032,0,1.3579,1.0192,1.1213,1.1042,1.0000 -2016-12-31,0,173.5926,0,1.1025,2.7529,1.2388,1.7277,0,1.1871,1.3338,1.2016,1.0855,1.1213,0,1.0000 -2017-01-01,0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 5cd786906b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" -2016-12,411.3377,121.9382,3.8567,2.8687,3.5511,1.9658,2.2390,1.3753,1.3394,1.3338,1.2887,1.1237,1.1213,1.0980,1.0000 -2017-01,0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index a8f3b26281..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" -"2016 Q4",411.3377,121.9382,3.8567,2.8687,3.5511,1.9658,2.2390,1.3753,1.3394,1.3338,1.2887,1.1237,1.1213,1.0980,1.0000 -"2017 Q1",0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 4e76172ae0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[24] User Expansion Factor","[16] User Expansion Factor","[20] User Expansion Factor","[2] User Expansion Factor","[1] User Expansion Factor","[4] User Expansion Factor","[8] User Expansion Factor","[9] User Expansion Factor","[6] User Expansion Factor","[3] User Expansion Factor","[5] User Expansion Factor","[12] User Expansion Factor","[28] User Expansion Factor","[14] User Expansion Factor","[7] User Expansion Factor" -2016,411.3377,121.9382,3.8567,2.8687,3.5511,1.9658,2.2390,1.3753,1.3394,1.3338,1.2887,1.1237,1.1213,1.0980,1.0000 -2017,0,270.5209,1677.0769,7.3785,2.5092,21.0553,3.6678,0,1.1090,1.3084,1.0572,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv deleted file mode 100644 index e54431efcb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Ended" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv deleted file mode 100644 index e54431efcb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Ended" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e54431efcb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Ended" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv deleted file mode 100644 index e54431efcb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Ended" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 1cf09b1ce1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" -2016-12-22,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 -2016-12-24,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 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,26459,55,34,37,7,1,0,4,2,2,2,1,1,1,0 -2016-12-31,28060,15,27,12,5,10,4,5,1,1,0,0,0,0,1 -2017-01-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 0c5dca57a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" -2016-12,54519,70,61,49,12,11,4,9,3,3,2,1,1,1,1 -2017-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 89132eb9f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" -"2016 Q4",54519,70,61,49,12,11,4,9,3,3,2,1,1,1,1 -"2017 Q1",16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 476f1dfd29..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Ended","[2] Number of Jobs Ended","[8] Number of Jobs Ended","[4] Number of Jobs Ended","[6] Number of Jobs Ended","[12] Number of Jobs Ended","[3] Number of Jobs Ended","[7] Number of Jobs Ended","[5] Number of Jobs Ended","[16] Number of Jobs Ended","[14] Number of Jobs Ended","[20] Number of Jobs Ended","[9] Number of Jobs Ended","[24] Number of Jobs Ended","[28] Number of Jobs Ended" -2016,54519,70,61,49,12,11,4,9,3,3,2,1,1,1,1 -2017,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 48752d1560..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Max (Core Count)" -28,336 -24,288 -12,192 -16,192 -20,160 -7,112 -9,108 -8,96 -4,80 -6,72 -5,60 -14,56 -2,40 -3,36 -1,32 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 48752d1560..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Max (Core Count)" -28,336 -24,288 -12,192 -16,192 -20,160 -7,112 -9,108 -8,96 -4,80 -6,72 -5,60 -14,56 -2,40 -3,36 -1,32 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 48752d1560..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Max (Core Count)" -28,336 -24,288 -12,192 -16,192 -20,160 -7,112 -9,108 -8,96 -4,80 -6,72 -5,60 -14,56 -2,40 -3,36 -1,32 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 48752d1560..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Max (Core Count)" -28,336 -24,288 -12,192 -16,192 -20,160 -7,112 -9,108 -8,96 -4,80 -6,72 -5,60 -14,56 -2,40 -3,36 -1,32 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 7f9262883b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 -2016-12-27,0,0,144,0,0,0,0,96,0,72,0,0,32,0,32 -2016-12-28,0,0,192,0,0,112,0,96,32,72,0,0,32,0,32 -2016-12-29,0,0,192,0,160,112,0,96,64,72,60,56,40,0,32 -2016-12-30,336,288,192,192,160,112,108,96,80,72,60,56,40,0,32 -2016-12-31,336,0,192,192,0,112,0,96,64,72,60,0,40,36,32 -2017-01-01,0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 8c37206d0d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" -2016-12,336,288,192,192,160,112,108,96,80,72,60,56,40,36,32 -2017-01,0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8db97154f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" -"2016 Q4",336,288,192,192,160,112,108,96,80,72,60,56,40,36,32 -"2017 Q1",0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index c7992462cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[28] Job Size: Max (Core Count)","[24] Job Size: Max (Core Count)","[12] Job Size: Max (Core Count)","[16] Job Size: Max (Core Count)","[20] Job Size: Max (Core Count)","[7] Job Size: Max (Core Count)","[9] Job Size: Max (Core Count)","[8] Job Size: Max (Core Count)","[4] Job Size: Max (Core Count)","[6] Job Size: Max (Core Count)","[5] Job Size: Max (Core Count)","[14] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)","[3] Job Size: Max (Core Count)","[1] Job Size: Max (Core Count)" -2016,336,288,192,192,160,112,108,96,80,72,60,56,40,36,32 -2017,0,0,0,192,160,0,0,96,48,72,60,0,24,36,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 881987751d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Min (Core Count)" -28,336 -24,288 -20,160 -16,128 -7,112 -9,108 -12,96 -8,64 -5,60 -14,56 -6,48 -3,36 -4,32 -2,16 -1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 881987751d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Min (Core Count)" -28,336 -24,288 -20,160 -16,128 -7,112 -9,108 -12,96 -8,64 -5,60 -14,56 -6,48 -3,36 -4,32 -2,16 -1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 881987751d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Min (Core Count)" -28,336 -24,288 -20,160 -16,128 -7,112 -9,108 -12,96 -8,64 -5,60 -14,56 -6,48 -3,36 -4,32 -2,16 -1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 881987751d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Job Size: Min (Core Count)" -28,336 -24,288 -20,160 -16,128 -7,112 -9,108 -12,96 -8,64 -5,60 -14,56 -6,48 -3,36 -4,32 -2,16 -1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 7907bed1c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-27,0,0,0,0,0,0,144,64,0,0,72,0,0,32,1 -2016-12-28,0,0,0,0,112,0,144,64,0,0,48,0,32,32,1 -2016-12-29,0,0,160,0,112,0,144,64,60,56,48,0,32,32,1 -2016-12-30,336,288,160,128,112,108,96,64,60,56,48,0,32,16,1 -2016-12-31,336,0,0,192,112,0,96,64,60,0,48,36,32,16,1 -2017-01-01,0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 784be2f368..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" -2016-12,336,288,160,128,112,108,96,64,60,56,48,36,32,16,1 -2017-01,0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8b07d75bfc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" -"2016 Q4",336,288,160,128,112,108,96,64,60,56,48,36,32,16,1 -"2017 Q1",0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index e7bf1e76f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[28] Job Size: Min (Core Count)","[24] Job Size: Min (Core Count)","[20] Job Size: Min (Core Count)","[16] Job Size: Min (Core Count)","[7] Job Size: Min (Core Count)","[9] Job Size: Min (Core Count)","[12] Job Size: Min (Core Count)","[8] Job Size: Min (Core Count)","[5] Job Size: Min (Core Count)","[14] Job Size: Min (Core Count)","[6] Job Size: Min (Core Count)","[3] Job Size: Min (Core Count)","[4] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)","[1] Job Size: Min (Core Count)" -2016,336,288,160,128,112,108,96,64,60,56,48,36,32,16,1 -2017,0,0,160,128,0,0,0,64,60,0,48,36,32,16,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 22195dbc87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -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/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 22195dbc87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -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/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 22195dbc87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -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/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 22195dbc87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -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/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 8243567400..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.150000000 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104166667 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104166667 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177083333 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125000000 -2016-12-27,0,0,0,0,0,0,3.600000000,1.800000000,0,0,1.100000000,0,0,0.800000000,0.086323529 -2016-12-28,0,0,0,0,2.800000000,0,2.333333333,1.500000000,0,0,1.175000000,0,0.800000000,0.800000000,0.017815534 -2016-12-29,0,0,0,4.000000000,2.800000000,0,2.333333333,1.733333333,1.500000000,1.400000000,1.184615385,0,0.457142857,0.409090909,0.016965249 -2016-12-30,8.400000000,7.200000000,4.000000000,4.000000000,2.800000000,2.700000000,2.127272727,1.740000000,1.500000000,1.400000000,1.101754386,0,0.347967480,0.300000000,0.038039989 -2016-12-31,8.400000000,0,4.800000000,0,2.800000000,0,2.160000000,1.700000000,1.500000000,0,1.147368421,0.900000000,0.333333333,0.304000000,0.042692660 -2017-01-01,0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 1d719145a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" -2016-12,8.400000000,7.200000000,4.266666667,4.000000000,2.800000000,2.700000000,2.127272727,1.753846154,1.500000000,1.400000000,1.100000000,0.900000000,0.345098039,0.298750000,0.041446367 -2017-01,0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 6ade840940..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" -"2016 Q4",8.400000000,7.200000000,4.266666667,4.000000000,2.800000000,2.700000000,2.127272727,1.753846154,1.500000000,1.400000000,1.100000000,0.900000000,0.345098039,0.298750000,0.041446367 -"2017 Q1",0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 5b1859a94b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[28] Job Size: Normalized (% of Total Cores)","[24] Job Size: Normalized (% of Total Cores)","[16] Job Size: Normalized (% of Total Cores)","[20] Job Size: Normalized (% of Total Cores)","[7] Job Size: Normalized (% of Total Cores)","[9] Job Size: Normalized (% of Total Cores)","[12] Job Size: Normalized (% of Total Cores)","[6] Job Size: Normalized (% of Total Cores)","[5] Job Size: Normalized (% of Total Cores)","[14] Job Size: Normalized (% of Total Cores)","[8] Job Size: Normalized (% of Total Cores)","[3] Job Size: Normalized (% of Total Cores)","[4] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)","[1] Job Size: Normalized (% of Total Cores)" -2016,8.400000000,7.200000000,4.266666667,4.000000000,2.800000000,2.700000000,2.127272727,1.753846154,1.500000000,1.400000000,1.100000000,0.900000000,0.345098039,0.298750000,0.041446367 -2017,0,0,4.000000000,4.000000000,0,0,0,1.350000000,1.500000000,0,1.081818182,0.900000000,0.491666667,0.545454545,0.043562794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index b6d125a4b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Running" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index b6d125a4b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Running" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b6d125a4b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Running" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index b6d125a4b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Running" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 907374b853..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" -2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,34,2,4,0,1,1,0,0,0,0,0,0,0,0,0 -2016-12-28,412,7,16,3,2,9,0,1,0,0,0,0,0,0,0 -2016-12-29,1669,11,26,7,9,9,0,5,2,0,1,1,0,0,0 -2016-12-30,28658,56,57,41,10,11,0,9,5,2,2,1,1,1,1 -2016-12-31,29495,25,38,14,6,10,5,5,3,1,0,0,0,0,1 -2017-01-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index b3d092299f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" -2016-12,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -2017-01,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 42cfc8e345..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" -"2016 Q4",55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -"2017 Q1",16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 903380553b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Running","[2] Number of Jobs Running","[8] Number of Jobs Running","[4] Number of Jobs Running","[6] Number of Jobs Running","[12] Number of Jobs Running","[3] Number of Jobs Running","[7] Number of Jobs Running","[5] Number of Jobs Running","[16] Number of Jobs Running","[14] Number of Jobs Running","[20] Number of Jobs Running","[9] Number of Jobs Running","[24] Number of Jobs Running","[28] Number of Jobs Running" -2016,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -2017,16379,77,44,48,8,0,5,0,2,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 6fa9cf32fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Started" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 6fa9cf32fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Started" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 6fa9cf32fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Started" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 6fa9cf32fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Started" -1,70898 -2,147 -8,105 -4,97 -6,20 -12,11 -3,9 -7,9 -5,5 -16,5 -14,2 -20,2 -9,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 91c0463afe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" -2016-12-22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,1,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 -2016-12-25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,23,2,4,0,1,1,0,0,0,0,0,0,0,0,0 -2016-12-28,378,5,12,3,1,8,0,1,0,0,0,0,0,0,0 -2016-12-29,1257,4,10,4,7,0,0,4,2,0,1,1,0,0,0 -2016-12-30,26989,45,31,34,1,2,0,4,3,2,1,0,1,1,1 -2016-12-31,27296,24,15,10,3,0,5,0,0,1,0,0,0,0,0 -2017-01-01,14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index e864673c83..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" -2016-12,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -2017-01,14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 8e2447da80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" -"2016 Q4",55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -"2017 Q1",14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 9903f1e952..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Started","[2] Number of Jobs Started","[8] Number of Jobs Started","[4] Number of Jobs Started","[6] Number of Jobs Started","[12] Number of Jobs Started","[3] Number of Jobs Started","[7] Number of Jobs Started","[5] Number of Jobs Started","[16] Number of Jobs Started","[14] Number of Jobs Started","[20] Number of Jobs Started","[9] Number of Jobs Started","[24] Number of Jobs Started","[28] Number of Jobs Started" -2016,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -2017,14944,67,33,46,7,0,4,0,0,2,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index dbcb5a97ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Submitted" -1,64137 -2,97 -4,65 -8,64 -6,17 -12,10 -7,9 -3,8 -5,3 -16,3 -14,2 -9,1 -20,0 -24,0 -28,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index e17704ee21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Submitted" -1,68887 -2,121 -8,94 -4,77 -6,20 -12,11 -3,9 -7,9 -5,5 -16,4 -14,2 -9,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e17704ee21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Submitted" -1,68887 -2,121 -8,94 -4,77 -6,20 -12,11 -3,9 -7,9 -5,5 -16,4 -14,2 -9,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index e17704ee21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Number of Jobs Submitted" -1,68887 -2,121 -8,94 -4,77 -6,20 -12,11 -3,9 -7,9 -5,5 -16,4 -14,2 -9,1 -20,1 -24,1 -28,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 198cd86519..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[4] Number of Jobs Submitted","[8] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[7] Number of Jobs Submitted","[3] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" -2016-12-22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,1,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 -2016-12-25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,17,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,367,0,3,0,0,8,1,0,0,0,0,0,0,0,0 -2016-12-29,1186,1,3,3,7,0,4,0,1,0,1,0,0,0,0 -2016-12-30,25570,31,25,23,0,2,4,0,2,1,1,1,0,0,0 -2016-12-31,24056,24,8,15,3,0,0,4,0,1,0,0,0,0,0 -2017-01-01,12933,41,26,22,7,0,0,4,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 9f89f8693a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[8] Number of Jobs Submitted","[4] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[3] Number of Jobs Submitted","[7] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" -2016-12,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -2017-01,12933,41,22,26,7,0,4,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9a70a09359..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[8] Number of Jobs Submitted","[4] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[3] Number of Jobs Submitted","[7] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" -"2016 Q4",55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -"2017 Q1",12933,41,22,26,7,0,4,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index c6276bdd68..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Number of Jobs Submitted","[2] Number of Jobs Submitted","[8] Number of Jobs Submitted","[4] Number of Jobs Submitted","[6] Number of Jobs Submitted","[12] Number of Jobs Submitted","[3] Number of Jobs Submitted","[7] Number of Jobs Submitted","[5] Number of Jobs Submitted","[16] Number of Jobs Submitted","[14] Number of Jobs Submitted","[9] Number of Jobs Submitted","[20] Number of Jobs Submitted","[24] Number of Jobs Submitted","[28] Number of Jobs Submitted" -2016,55954,80,72,51,13,11,5,9,5,3,2,1,1,1,1 -2017,12933,41,22,26,7,0,4,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5d0e191d7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","CPU Hours: Total" -1,423990.4703 -8,174817.4489 -12,126588.8667 -6,30535.1267 -2,22222.2422 -7,22205.2756 -4,14324.7911 -28,12690.8133 -5,9217.0500 -20,1444.4889 -3,1307.9100 -14,1129.0533 -16,48.0000 -9,28.1400 -24,6.1600 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5d0e191d7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","CPU Hours: Total" -1,423990.4703 -8,174817.4489 -12,126588.8667 -6,30535.1267 -2,22222.2422 -7,22205.2756 -4,14324.7911 -28,12690.8133 -5,9217.0500 -20,1444.4889 -3,1307.9100 -14,1129.0533 -16,48.0000 -9,28.1400 -24,6.1600 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5d0e191d7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","CPU Hours: Total" -1,423990.4703 -8,174817.4489 -12,126588.8667 -6,30535.1267 -2,22222.2422 -7,22205.2756 -4,14324.7911 -28,12690.8133 -5,9217.0500 -20,1444.4889 -3,1307.9100 -14,1129.0533 -16,48.0000 -9,28.1400 -24,6.1600 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5d0e191d7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","CPU Hours: Total" -1,423990.4703 -8,174817.4489 -12,126588.8667 -6,30535.1267 -2,22222.2422 -7,22205.2756 -4,14324.7911 -28,12690.8133 -5,9217.0500 -20,1444.4889 -3,1307.9100 -14,1129.0533 -16,48.0000 -9,28.1400 -24,6.1600 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 00b3ce2c80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" -2016-12-22,404.2567,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,584.6036,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,600.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,778.2700,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,2256.3333,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,5783.9203,3982.5956,2997.1200,1487.8200,1301.6889,0,0,0,0,0,0,0,0,0,0 -2016-12-28,20233.3947,23467.9200,30963.2533,2341.3467,2222.9511,1960.2178,799.6267,0,0,0,0,0,0,0,0 -2016-12-29,50186.7367,52904.5600,40320.0000,8701.2600,8050.7844,4331.9111,4034.0000,0,1586.4000,1038.2222,0,107.9089,0,0,0 -2016-12-30,136663.6894,54829.0400,38488.0133,12913.0200,3846.2333,11899.3156,5045.1378,6989.2667,2956.2667,402.8000,0,1021.1444,31.0400,28.1400,6.1600 -2016-12-31,151722.6131,31015.8844,13820.4800,3683.6467,4620.6844,4013.8311,3568.2533,5701.5467,3375.8000,0,701.1300,0,5.7600,0,0 -2017-01-01,54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index bf0db4d383..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" -2016-12,369213.8178,166200.0000,126588.8667,29127.0933,20042.3422,22205.2756,13447.0178,12690.8133,7918.4667,1441.0222,701.1300,1129.0533,36.8000,28.1400,6.1600 -2017-01,54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4aa4ff1df3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" -"2016 Q4",369213.8178,166200.0000,126588.8667,29127.0933,20042.3422,22205.2756,13447.0178,12690.8133,7918.4667,1441.0222,701.1300,1129.0533,36.8000,28.1400,6.1600 -"2017 Q1",54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index a47d8f2150..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] CPU Hours: Total","[8] CPU Hours: Total","[12] CPU Hours: Total","[6] CPU Hours: Total","[2] CPU Hours: Total","[7] CPU Hours: Total","[4] CPU Hours: Total","[28] CPU Hours: Total","[5] CPU Hours: Total","[20] CPU Hours: Total","[3] CPU Hours: Total","[14] CPU Hours: Total","[16] CPU Hours: Total","[9] CPU Hours: Total","[24] CPU Hours: Total" -2016,369213.8178,166200.0000,126588.8667,29127.0933,20042.3422,22205.2756,13447.0178,12690.8133,7918.4667,1441.0222,701.1300,1129.0533,36.8000,28.1400,6.1600 -2017,54776.6525,8617.4489,0,1408.0333,2179.9000,0,877.7733,0,1298.5833,3.4667,606.7800,0,11.2000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index d696207c9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Total" -1,506.9128 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index d696207c9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Total" -1,506.9128 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index d696207c9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Total" -1,506.9128 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index d696207c9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","GPU Hours: Total" -1,506.9128 -2,0.0000 -3,0.0000 -4,0.0000 -5,0.0000 -6,0.0000 -7,0.0000 -8,0.0000 -9,0.0000 -12,0.0000 -14,0.0000 -16,0.0000 -20,0.0000 -24,0.0000 -28,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index f8a33a2180..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,48.0000,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 -2016-12-28,48.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 -2016-12-29,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 -2016-12-30,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 -2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a2296c99f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ba0f64c53e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index e15a54b695..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 449af38878..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Node Hours: Total" -1,123350.6528 -8,14919.9133 -12,8479.1100 -6,2690.0550 -4,1540.8933 -2,1530.5583 -7,1387.8297 -28,1057.5678 -5,768.0875 -14,282.2633 -20,180.5611 -3,108.9925 -16,4.4044 -9,2.3450 -24,0.5133 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 449af38878..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Node Hours: Total" -1,123350.6528 -8,14919.9133 -12,8479.1100 -6,2690.0550 -4,1540.8933 -2,1530.5583 -7,1387.8297 -28,1057.5678 -5,768.0875 -14,282.2633 -20,180.5611 -3,108.9925 -16,4.4044 -9,2.3450 -24,0.5133 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 449af38878..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Node Hours: Total" -1,123350.6528 -8,14919.9133 -12,8479.1100 -6,2690.0550 -4,1540.8933 -2,1530.5583 -7,1387.8297 -28,1057.5678 -5,768.0875 -14,282.2633 -20,180.5611 -3,108.9925 -16,4.4044 -9,2.3450 -24,0.5133 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 449af38878..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Node Hours: Total" -1,123350.6528 -8,14919.9133 -12,8479.1100 -6,2690.0550 -4,1540.8933 -2,1530.5583 -7,1387.8297 -28,1057.5678 -5,768.0875 -14,282.2633 -20,180.5611 -3,108.9925 -16,4.4044 -9,2.3450 -24,0.5133 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5c64a7fb3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" -2016-12-22,33.6881,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,56.6036,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,72.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,80.5078,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,157.5208,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,409.2761,342.0156,249.7600,123.9850,0,81.3556,0,0,0,0,0,0,0,0,0 -2016-12-28,4005.6836,2019.6600,2007.2033,220.6683,99.9533,138.9344,122.5136,0,0,0,0,0,0,0,0 -2016-12-29,19161.1592,4472.7133,2592.0000,773.1050,476.1333,493.6867,270.7444,0,132.2000,26.9772,129.7778,0,0,0,0 -2016-12-30,41451.0850,4638.3822,2487.8333,1124.0850,489.0800,234.3428,743.7072,582.4389,246.3556,255.2861,50.3500,0,2.7556,2.3450,0.5133 -2016-12-31,41424.6431,2670.6467,1142.3133,325.4850,374.7622,384.7289,250.8644,475.1289,281.3167,0,0,58.4275,0.4800,0,0 -2017-01-01,16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index ecbb3867e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" -2016-12,106852.1672,14143.4178,8479.1100,2567.3283,1439.9289,1333.0483,1387.8297,1057.5678,659.8722,282.2633,180.1278,58.4275,3.2356,2.3450,0.5133 -2017-01,16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d88e2538d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" -"2016 Q4",106852.1672,14143.4178,8479.1100,2567.3283,1439.9289,1333.0483,1387.8297,1057.5678,659.8722,282.2633,180.1278,58.4275,3.2356,2.3450,0.5133 -"2017 Q1",16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 899ec5b50f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Node Hours: Total","[8] Node Hours: Total","[12] Node Hours: Total","[6] Node Hours: Total","[4] Node Hours: Total","[2] Node Hours: Total","[7] Node Hours: Total","[28] Node Hours: Total","[5] Node Hours: Total","[14] Node Hours: Total","[20] Node Hours: Total","[3] Node Hours: Total","[16] Node Hours: Total","[9] Node Hours: Total","[24] Node Hours: Total" -2016,106852.1672,14143.4178,8479.1100,2567.3283,1439.9289,1333.0483,1387.8297,1057.5678,659.8722,282.2633,180.1278,58.4275,3.2356,2.3450,0.5133 -2017,16498.4856,776.4956,0,122.7267,100.9644,197.5100,0,0,108.2153,0,0.4333,50.5650,1.1689,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index adcb7f7aed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Total" -1,300759.0231 -8,2449.4633 -2,1875.4550 -4,853.8764 -6,147.4742 -12,87.4081 -20,62.0436 -16,44.1464 -5,39.3331 -3,11.6994 -24,8.7767 -28,4.5828 -14,1.9761 -9,0.0978 -7,0.0050 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index adcb7f7aed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Total" -1,300759.0231 -8,2449.4633 -2,1875.4550 -4,853.8764 -6,147.4742 -12,87.4081 -20,62.0436 -16,44.1464 -5,39.3331 -3,11.6994 -24,8.7767 -28,4.5828 -14,1.9761 -9,0.0978 -7,0.0050 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index adcb7f7aed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Total" -1,300759.0231 -8,2449.4633 -2,1875.4550 -4,853.8764 -6,147.4742 -12,87.4081 -20,62.0436 -16,44.1464 -5,39.3331 -3,11.6994 -24,8.7767 -28,4.5828 -14,1.9761 -9,0.0978 -7,0.0050 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index adcb7f7aed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wait Hours: Total" -1,300759.0231 -8,2449.4633 -2,1875.4550 -4,853.8764 -6,147.4742 -12,87.4081 -20,62.0436 -16,44.1464 -5,39.3331 -3,11.6994 -24,8.7767 -28,4.5828 -14,1.9761 -9,0.0978 -7,0.0050 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 72d3883fc4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" -2016-12-22,9.3325,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,9.5964,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,110.8856,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0.0033,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1418.2594,311.1344,93.9833,0,76.0861,78.7886,0,0,0,0,0,0,0,0,0 -2016-12-28,1821.8686,1296.2100,435.1619,8.2136,36.8761,0.0014,0,0,0,0,0,0,0,0,0.0003 -2016-12-29,5389.1633,344.6514,271.2325,44.6594,13.9250,0.0000,25.7286,0,11.7164,0,0,0,0.7922,0,0.0025 -2016-12-30,194260.0764,218.3183,425.4533,290.9706,17.2619,8.6181,0.0000,19.2786,27.6167,0,8.7767,4.5828,1.1839,0.0978,0.0022 -2016-12-31,73348.3778,28.1692,28.0033,3.9253,1.1011,0.0000,0,5.1778,0.0000,6.5031,0,0.0000,0,0,0.0000 -2017-01-01,24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 329c1b4844..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" -2016-12,276367.5633,2198.4833,1253.8344,347.7689,145.2503,87.4081,25.7286,24.4564,39.3331,6.5031,8.7767,4.5828,1.9761,0.0978,0.0050 -2017-01,24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b2608f67df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" -"2016 Q4",276367.5633,2198.4833,1253.8344,347.7689,145.2503,87.4081,25.7286,24.4564,39.3331,6.5031,8.7767,4.5828,1.9761,0.0978,0.0050 -"2017 Q1",24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index b854dbd09d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Wait Hours: Total","[8] Wait Hours: Total","[2] Wait Hours: Total","[4] Wait Hours: Total","[6] Wait Hours: Total","[12] Wait Hours: Total","[20] Wait Hours: Total","[16] Wait Hours: Total","[5] Wait Hours: Total","[3] Wait Hours: Total","[24] Wait Hours: Total","[28] Wait Hours: Total","[14] Wait Hours: Total","[9] Wait Hours: Total","[7] Wait Hours: Total" -2016,276367.5633,2198.4833,1253.8344,347.7689,145.2503,87.4081,25.7286,24.4564,39.3331,6.5031,8.7767,4.5828,1.9761,0.0978,0.0050 -2017,24391.4597,250.9800,621.6206,506.1075,2.2239,0,36.3150,19.6900,0.0000,5.1964,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3ae94a1fb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Total" -1,123350.6528 -8,1864.9892 -2,765.2792 -12,706.5925 -6,448.3425 -4,385.2233 -7,198.2614 -5,153.6175 -28,37.7703 -3,36.3308 -14,20.1617 -20,9.0281 -16,0.2753 -9,0.2606 -24,0.0214 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 3ae94a1fb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Total" -1,123350.6528 -8,1864.9892 -2,765.2792 -12,706.5925 -6,448.3425 -4,385.2233 -7,198.2614 -5,153.6175 -28,37.7703 -3,36.3308 -14,20.1617 -20,9.0281 -16,0.2753 -9,0.2606 -24,0.0214 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3ae94a1fb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Total" -1,123350.6528 -8,1864.9892 -2,765.2792 -12,706.5925 -6,448.3425 -4,385.2233 -7,198.2614 -5,153.6175 -28,37.7703 -3,36.3308 -14,20.1617 -20,9.0281 -16,0.2753 -9,0.2606 -24,0.0214 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 3ae94a1fb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Wall Hours: Total" -1,123350.6528 -8,1864.9892 -2,765.2792 -12,706.5925 -6,448.3425 -4,385.2233 -7,198.2614 -5,153.6175 -28,37.7703 -3,36.3308 -14,20.1617 -20,9.0281 -16,0.2753 -9,0.2606 -24,0.0214 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index a9c496c579..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" -2016-12-22,33.6881,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,56.6036,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,72.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,80.5078,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,157.5208,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,409.2761,42.7519,40.6778,20.8133,20.6642,0,0,0,0,0,0,0,0,0,0 -2016-12-28,4005.6836,252.4575,69.4672,167.2669,36.7781,24.9883,17.5019,0,0,0,0,0,0,0,0 -2016-12-29,19161.1592,559.0892,246.8433,216.0000,128.8508,119.0333,38.6778,26.4400,0,0,1.9269,6.4889,0,0,0 -2016-12-30,41451.0850,579.7978,117.1714,207.3194,187.3475,122.2700,106.2439,49.2711,20.8014,0,18.2347,2.5175,0.1722,0.2606,0.0214 -2016-12-31,41424.6431,333.8308,192.3644,95.1928,54.2475,93.6906,35.8378,56.2633,16.9689,19.4758,0,0,0.0300,0,0 -2017-01-01,16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index b47ae0e747..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" -2016-12,106852.1672,1767.9272,666.5242,706.5925,427.8881,359.9822,198.2614,131.9744,37.7703,19.4758,20.1617,9.0064,0.2022,0.2606,0.0214 -2017-01,16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f82dec08d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" -"2016 Q4",106852.1672,1767.9272,666.5242,706.5925,427.8881,359.9822,198.2614,131.9744,37.7703,19.4758,20.1617,9.0064,0.2022,0.2606,0.0214 -"2017 Q1",16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7c73c67e85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[1] Wall Hours: Total","[8] Wall Hours: Total","[2] Wall Hours: Total","[12] Wall Hours: Total","[6] Wall Hours: Total","[4] Wall Hours: Total","[7] Wall Hours: Total","[5] Wall Hours: Total","[28] Wall Hours: Total","[3] Wall Hours: Total","[14] Wall Hours: Total","[20] Wall Hours: Total","[16] Wall Hours: Total","[9] Wall Hours: Total","[24] Wall Hours: Total" -2016,106852.1672,1767.9272,666.5242,706.5925,427.8881,359.9822,198.2614,131.9744,37.7703,19.4758,20.1617,9.0064,0.2022,0.2606,0.0214 -2017,16498.4856,97.0619,98.7550,0,20.4544,25.2411,0,21.6431,0,16.8550,0,0.0217,0.0731,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 55a3235f62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Screwdriver CPU Utilization (%)" -1,9.6012 -8,8.2773 -12,7.7567 -7,3.8551 -6,2.8916 -28,1.2018 -2,1.0522 -5,0.8728 -4,0.4522 -20,0.1368 -3,0.1239 -14,0.1069 -16,0.0045 -9,0.0027 -24,0.0006 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv deleted file mode 100644 index a7f2cabe84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Screwdriver CPU Utilization (%)" -1,2.1336 -8,1.9794 -12,1.5157 -7,0.6425 -6,0.6237 -28,0.2592 -2,0.2489 -5,0.1883 -4,0.1114 -20,0.0295 -3,0.0267 -14,0.0231 -16,0.0010 -9,0.0006 -24,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 7f78eeadbb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Screwdriver CPU Utilization (%)" -1,0.8798 -8,0.8672 -12,0.6432 -6,0.2892 -7,0.2435 -28,0.1202 -2,0.1097 -5,0.0873 -4,0.0480 -20,0.0137 -3,0.0124 -14,0.0107 -16,0.0005 -9,0.0003 -24,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 0c2f793459..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,24 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Node Count","Screwdriver CPU Utilization (%)" -8,0.2396 -1,0.2353 -12,0.1747 -6,0.0826 -7,0.0625 -28,0.0343 -2,0.0304 -5,0.0249 -4,0.0131 -20,0.0039 -3,0.0035 -14,0.0031 -9,0.0001 -16,0.0001 -24,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv deleted file mode 100644 index e1b1f13346..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[1] Screwdriver CPU Utilization (%)","[8] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" -2016-12-22,0.2106,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0.3045,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0.3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0.4053,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0.7834,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1.2050,2.0743,3.1220,0,1.5498,0,1.3559,0,0,0,0,0,0,0,0 -2016-12-28,4.2153,12.2229,16.1267,2.0419,2.4389,0,2.3156,0,0.8329,0,0,0,0,0,0 -2016-12-29,10.4556,27.5545,21.0000,4.5124,9.0638,0,4.1931,1.6525,2.1010,1.0815,0,0.1124,0,0,0 -2016-12-30,28.4716,28.5568,20.0458,12.3951,13.4511,7.2805,2.0032,3.0794,1.7518,0.4196,0,1.0637,0.0323,0.0293,0.0064 -2016-12-31,31.6089,16.1541,7.1982,4.1811,3.8371,5.9391,2.4066,3.5165,1.2390,0,0.7303,0,0.0060,0,0 -2017-01-01,11.4118,4.4883,0,0,1.4667,0,2.2707,1.3527,0.4572,0.0036,0.6321,0,0.0117,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv deleted file mode 100644 index c85bf88725..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[1] Screwdriver CPU Utilization (%)","[8] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" -2016-12,7.3961,5.7708,5.2745,4.6261,1.5170,0.6610,0.6735,0.4124,0.3416,0.0751,0.0365,0.0588,0.0019,0.0015,0.0003 -2017-01,0.3681,0.1448,0,0,0.0473,0,0.0732,0.0436,0.0147,0.0001,0.0204,0,0.0004,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index d988254166..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[1] Screwdriver CPU Utilization (%)","[8] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" -"2016 Q4",7.3961,5.7708,5.2745,1.5170,4.6261,0.6610,0.6735,0.4124,0.3416,0.0751,0.0365,0.0588,0.0019,0.0015,0.0003 -"2017 Q1",0.1268,0.0499,0,0.0163,0,0,0.0252,0.0150,0.0051,0.0000,0.0070,0,0.0001,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv deleted file mode 100644 index dca6b2b73e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nodecount/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Node Count" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[8] Screwdriver CPU Utilization (%)","[1] Screwdriver CPU Utilization (%)","[12] Screwdriver CPU Utilization (%)","[6] Screwdriver CPU Utilization (%)","[7] Screwdriver CPU Utilization (%)","[28] Screwdriver CPU Utilization (%)","[2] Screwdriver CPU Utilization (%)","[5] Screwdriver CPU Utilization (%)","[4] Screwdriver CPU Utilization (%)","[20] Screwdriver CPU Utilization (%)","[3] Screwdriver CPU Utilization (%)","[14] Screwdriver CPU Utilization (%)","[9] Screwdriver CPU Utilization (%)","[16] Screwdriver CPU Utilization (%)","[24] Screwdriver CPU Utilization (%)" -2016,5.7708,7.3961,5.2745,1.5170,4.6261,0.6610,0.6735,0.4124,0.3416,0.0751,0.0365,0.0588,0.0015,0.0019,0.0003 -2017,0.0123,0.0313,0,0.0040,0,0,0.0062,0.0037,0.0013,0.0000,0.0017,0,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 55d0a8b890..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Users: Active" -Screwdriver,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 55d0a8b890..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Users: Active" -Screwdriver,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 55d0a8b890..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Users: Active" -Screwdriver,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 55d0a8b890..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Users: Active" -Screwdriver,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 58e544dbac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of Users: Active" -2016-12-22,2 -2016-12-23,3 -2016-12-24,3 -2016-12-25,4 -2016-12-26,5 -2016-12-27,16 -2016-12-28,25 -2016-12-29,43 -2016-12-30,64 -2016-12-31,55 -2017-01-01,38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 9a31b0de2c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of Users: Active" -2016-12,66 -2017-01,38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 16b4630b7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of Users: Active" -"2016 Q4",66 -"2017 Q1",38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 7ba18d9f8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of Users: Active" -2016,66 -2017,38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index d4713ee7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of PIs: Active" -Screwdriver,41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index d4713ee7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of PIs: Active" -Screwdriver,41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index d4713ee7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of PIs: Active" -Screwdriver,41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index d4713ee7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of PIs: Active" -Screwdriver,41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 96e3db941a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of PIs: Active" -2016-12-22,2 -2016-12-23,3 -2016-12-24,3 -2016-12-25,3 -2016-12-26,4 -2016-12-27,11 -2016-12-28,18 -2016-12-29,28 -2016-12-30,39 -2016-12-31,34 -2017-01-01,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 431d02ad1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of PIs: Active" -2016-12,41 -2017-01,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1dc2a393c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of PIs: Active" -"2016 Q4",41 -"2017 Q1",25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 83ed901316..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of PIs: Active" -2016,41 -2017,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 7cdd4cb01c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Resources: Active" -Screwdriver,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 7cdd4cb01c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Resources: Active" -Screwdriver,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 7cdd4cb01c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Resources: Active" -Screwdriver,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 7cdd4cb01c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Resources: Active" -Screwdriver,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 1c5d189985..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of Resources: Active" -2016-12-22,2 -2016-12-23,2 -2016-12-24,2 -2016-12-25,2 -2016-12-26,3 -2016-12-27,5 -2016-12-28,5 -2016-12-29,5 -2016-12-30,5 -2016-12-31,5 -2017-01-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index b0206ff881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of Resources: Active" -2016-12,5 -2017-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index c260ac7618..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of Resources: Active" -"2016 Q4",5 -"2017 Q1",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 2ba267b5ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of Resources: Active" -2016,5 -2017,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index b14424beec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index dcda9ec49c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index dcda9ec49c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index dcda9ec49c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 73837851a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] CPU Hours: Per Job" -2016-12-22,202.12833333 -2016-12-23,194.86787037 -2016-12-24,200.00000000 -2016-12-25,129.71166667 -2016-12-26,205.12121212 -2016-12-27,370.31296958 -2016-12-28,182.19713395 -2016-12-29,98.42631226 -2016-12-30,9.53454400 -2016-12-31,7.50699692 -2017-01-01,4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 2d016fd941..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] CPU Hours: Per Job" -2016-12,13.71267944 -2017-01,4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3d9691cac4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] CPU Hours: Per Job" -"2016 Q4",13.71267944 -"2017 Q1",4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3ff7f1bd10..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] CPU Hours: Per Job" -2016,13.71267944 -2017,4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index f42cc6295c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Per Job" -Screwdriver,0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index f42cc6295c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Per Job" -Screwdriver,0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f42cc6295c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Per Job" -Screwdriver,0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index f42cc6295c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Per Job" -Screwdriver,0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index a1b720375d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] GPU Hours: Per Job" -2016-12-22,16.74638889 -2016-12-23,16.00000000 -2016-12-24,16.00000000 -2016-12-25,8.00000000 -2016-12-26,4.36363636 -2016-12-27,1.14285714 -2016-12-28,0.10666667 -2016-12-29,0.02758621 -2016-12-30,0.00166349 -2016-12-31,0.00162146 -2017-01-01,0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 931395676e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] GPU Hours: Per Job" -2016-12,0.00828146 -2017-01,0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7253e758e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] GPU Hours: Per Job" -"2016 Q4",0.00828146 -"2017 Q1",0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3e12c42858..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] GPU Hours: Per Job" -2016,0.00828146 -2017,0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 21f0c26790..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Screwdriver,0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 21f0c26790..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Screwdriver,0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 21f0c26790..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Screwdriver,0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 21f0c26790..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Screwdriver,0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 937da59fb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] GPU Count: Per Job" -2016-12-22,1.0000 -2016-12-23,0.6667 -2016-12-24,0.6667 -2016-12-25,0.3333 -2016-12-26,0.1818 -2016-12-27,0.0476 -2016-12-28,0.0044 -2016-12-29,0.0011 -2016-12-30,0.0001 -2016-12-31,0.0001 -2017-01-01,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 8d8c3cd462..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] GPU Count: Per Job" -2016-12,0.0000 -2017-01,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index c6553d41ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] GPU Count: Per Job" -"2016 Q4",0.0000 -"2017 Q1",0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index d571a225ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] GPU Count: Per Job" -2016,0.0000 -2017,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 010af7ceab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By CPU Hours (Core Count)" -Screwdriver,65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 010af7ceab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By CPU Hours (Core Count)" -Screwdriver,65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 010af7ceab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By CPU Hours (Core Count)" -Screwdriver,65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 010af7ceab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By CPU Hours (Core Count)" -Screwdriver,65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index a6aaa3972d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,12.0000 -2016-12-23,11.8381 -2016-12-24,11.5600 -2016-12-25,14.0099 -2016-12-26,18.3933 -2016-12-27,67.8600 -2016-12-28,107.6133 -2016-12-29,87.5874 -2016-12-30,69.1154 -2016-12-31,43.3544 -2017-01-01,22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 244e3ca308..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,69.5398 -2017-01,22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 45c2612215..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",69.5398 -"2017 Q1",22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 664adb91d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Job Size: Weighted By CPU Hours (Core Count)" -2016,69.5398 -2017,22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9de85967c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By GPU Hours (GPU Count)" -Screwdriver,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9de85967c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By GPU Hours (GPU Count)" -Screwdriver,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9de85967c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By GPU Hours (GPU Count)" -Screwdriver,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9de85967c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Weighted By GPU Hours (GPU Count)" -Screwdriver,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index af52fb7566..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000 -2016-12-23,12.0000 -2016-12-24,12.0000 -2016-12-25,12.0000 -2016-12-26,12.0000 -2016-12-27,12.0000 -2016-12-28,12.0000 -2016-12-29,12.0000 -2016-12-30,12.0000 -2016-12-31,12.0000 -2017-01-01,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index bc4b0e094e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000 -2017-01,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 688648ba12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000 -"2017 Q1",12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 05c200df73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000 -2017,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6411c49e61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index c7ba1b18f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c7ba1b18f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index c7ba1b18f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -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/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index ab7b8541a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Node Hours: Per Job" -2016-12-22,16.84402778 -2016-12-23,18.86787037 -2016-12-24,24.00000000 -2016-12-25,13.41796296 -2016-12-26,14.32007576 -2016-12-27,28.72362434 -2016-12-28,19.14359259 -2016-12-29,16.39568790 -2016-12-30,1.81280749 -2016-12-31,1.60081062 -2017-01-01,1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 895eddb5b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Node Hours: Per Job" -2016-12,2.46307856 -2017-01,1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4234fa551c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Node Hours: Per Job" -"2016 Q4",2.46307856 -"2017 Q1",1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index b738fd46b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Node Hours: Per Job" -2016,2.46307856 -2017,1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 628019e8b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -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/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 628019e8b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -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/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 628019e8b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -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/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 628019e8b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -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/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 26a2ccb93e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Job Size: Per Job (Core Count)" -2016-12-22,12.0000 -2016-12-23,8.3333 -2016-12-24,8.3333 -2016-12-25,14.1667 -2016-12-26,15.0000 -2016-12-27,29.0238 -2016-12-28,11.5644 -2016-12-29,6.8638 -2016-12-30,8.0163 -2016-12-31,8.7857 -2017-01-01,9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 4fa6485199..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Job Size: Per Job (Core Count)" -2016-12,8.5390 -2017-01,9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8a7ce70bf3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Job Size: Per Job (Core Count)" -"2016 Q4",8.5390 -"2017 Q1",9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 8ed670af91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Job Size: Per Job (Core Count)" -2016,8.5390 -2017,9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1124779cd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -Screwdriver,4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1124779cd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -Screwdriver,4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1124779cd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -Screwdriver,4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1124779cd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -Screwdriver,4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8fb06893b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Wait Hours: Per Job" -2016-12-22,4.66625000 -2016-12-23,9.59638889 -2016-12-24,0.00000000 -2016-12-25,36.96185185 -2016-12-26,0.00066667 -2016-12-27,63.81457885 -2016-12-28,8.81944104 -2016-12-29,4.73013286 -2016-12-30,7.20200027 -2016-12-31,2.68411411 -2017-01-01,1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index ee8f937c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Wait Hours: Per Job" -2016-12,4.99051340 -2017-01,1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2b0f08cc4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Wait Hours: Per Job" -"2016 Q4",4.99051340 -"2017 Q1",1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 02ee982b53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Wait Hours: Per Job" -2016,4.99051340 -2017,1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7ec84033cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Screwdriver,1.79457892,0.017929611668507588 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index b2f6b56a8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Screwdriver,1.79457892,0.0259028363905744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b2f6b56a8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Screwdriver,1.79457892,0.0259028363905744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index b2f6b56a8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Screwdriver,1.79457892,0.0259028363905744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index d2d3dce377..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Wall Hours: Per Job" -2016-12-22,16.84402778 -2016-12-23,18.86787037 -2016-12-24,24.00000000 -2016-12-25,13.41796296 -2016-12-26,14.32007576 -2016-12-27,12.71865079 -2016-12-28,10.16476358 -2016-12-29,11.78420083 -2016-12-30,1.48544495 -2016-12-31,1.42967081 -2017-01-01,1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 978a933a62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Wall Hours: Per Job" -2016-12,1.97829913 -2017-01,1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3885ac061c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Wall Hours: Per Job" -"2016 Q4",1.97829913 -"2017 Q1",1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index e5e834040c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Wall Hours: Per Job" -2016,1.97829913 -2017,1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 4d40fc85fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"User Expansion Factor" -Screwdriver,3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 4d40fc85fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"User Expansion Factor" -Screwdriver,3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 4d40fc85fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"User Expansion Factor" -Screwdriver,3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 4d40fc85fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"User Expansion Factor" -Screwdriver,3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index d3f3931ec4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] User Expansion Factor" -2016-12-22,1.0249 -2016-12-23,1.0302 -2016-12-24,1.0368 -2016-12-25,1.0813 -2016-12-26,1.1760 -2016-12-27,2.0450 -2016-12-28,1.5085 -2016-12-29,1.3802 -2016-12-30,4.9345 -2016-12-31,2.5839 -2017-01-01,2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 7ad8ff6f47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] User Expansion Factor" -2016-12,3.1481 -2017-01,2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index fb3a05cfd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] User Expansion Factor" -"2016 Q4",3.1481 -"2017 Q1",2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index cd86fd45e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] User Expansion Factor" -2016,3.1481 -2017,2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 6de8c6bbe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Ended" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 6de8c6bbe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Ended" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 6de8c6bbe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Ended" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 6de8c6bbe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Ended" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 3868e4a948..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of Jobs Ended" -2016-12-22,0 -2016-12-23,0 -2016-12-24,0 -2016-12-25,0 -2016-12-26,0 -2016-12-27,0 -2016-12-28,0 -2016-12-29,0 -2016-12-30,26606 -2016-12-31,28141 -2017-01-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 39cbaf10b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of Jobs Ended" -2016-12,54747 -2017-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 31fe30f1d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of Jobs Ended" -"2016 Q4",54747 -"2017 Q1",16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 4ddcf5422a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of Jobs Ended" -2016,54747 -2017,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index c1f36ddeff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Max (Core Count)" -Screwdriver,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index c1f36ddeff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Max (Core Count)" -Screwdriver,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index c1f36ddeff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Max (Core Count)" -Screwdriver,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index c1f36ddeff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Max (Core Count)" -Screwdriver,336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 3164dfe060..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Job Size: Max (Core Count)" -2016-12-22,12 -2016-12-23,12 -2016-12-24,12 -2016-12-25,24 -2016-12-26,24 -2016-12-27,144 -2016-12-28,192 -2016-12-29,192 -2016-12-30,336 -2016-12-31,336 -2017-01-01,192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 0ff83944b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Job Size: Max (Core Count)" -2016-12,336 -2017-01,192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 2a70425d60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Job Size: Max (Core Count)" -"2016 Q4",336 -"2017 Q1",192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 1680eb4aa6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Job Size: Max (Core Count)" -2016,336 -2017,192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index c8cf408c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Min (Core Count)" -Screwdriver,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index c8cf408c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Min (Core Count)" -Screwdriver,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index c8cf408c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Min (Core Count)" -Screwdriver,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index c8cf408c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Job Size: Min (Core Count)" -Screwdriver,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 56d8705bfd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Job Size: Min (Core Count)" -2016-12-22,12 -2016-12-23,1 -2016-12-24,1 -2016-12-25,1 -2016-12-26,1 -2016-12-27,1 -2016-12-28,1 -2016-12-29,1 -2016-12-30,1 -2016-12-31,1 -2017-01-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 9c47de9de8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Job Size: Min (Core Count)" -2016-12,1 -2017-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 44dd553ae0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Job Size: Min (Core Count)" -"2016 Q4",1 -"2017 Q1",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index df84695769..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Job Size: Min (Core Count)" -2016,1 -2017,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 7d557792c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -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/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 7d557792c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -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/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 7d557792c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -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/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 7d557792c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -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/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index cb33162e3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Job Size: Normalized (% of Total Cores)" -2016-12-22,0.150000000 -2016-12-23,0.104166667 -2016-12-24,0.104166667 -2016-12-25,0.177083333 -2016-12-26,0.125000000 -2016-12-27,0.145119048 -2016-12-28,0.057822222 -2016-12-29,0.034318966 -2016-12-30,0.040081442 -2016-12-31,0.043928656 -2017-01-01,0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 4707496294..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Job Size: Normalized (% of Total Cores)" -2016-12,0.042694764 -2017-01,0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index a46d32084e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.042694764 -"2017 Q1",0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index a369fafa30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Job Size: Normalized (% of Total Cores)" -2016,0.042694764 -2017,0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 6c491eed15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Running" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 6c491eed15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Running" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 6c491eed15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Running" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 6c491eed15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Running" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 441dc8d143..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of Jobs Running" -2016-12-22,2 -2016-12-23,3 -2016-12-24,3 -2016-12-25,6 -2016-12-26,11 -2016-12-27,42 -2016-12-28,450 -2016-12-29,1740 -2016-12-30,28855 -2016-12-31,29603 -2017-01-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 8915d316bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of Jobs Running" -2016-12,56209 -2017-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index f879363116..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of Jobs Running" -"2016 Q4",56209 -"2017 Q1",16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index f44b9a46f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of Jobs Running" -2016,56209 -2017,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 73a2a361a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Started" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 73a2a361a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Started" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 73a2a361a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Started" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 73a2a361a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Started" -Screwdriver,71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index ec60e41b58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of Jobs Started" -2016-12-22,2 -2016-12-23,1 -2016-12-24,0 -2016-12-25,3 -2016-12-26,5 -2016-12-27,31 -2016-12-28,408 -2016-12-29,1290 -2016-12-30,27115 -2016-12-31,27354 -2017-01-01,15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 17609dbfaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of Jobs Started" -2016-12,56209 -2017-01,15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index abb16b2f12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of Jobs Started" -"2016 Q4",56209 -"2017 Q1",15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 266214efc2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of Jobs Started" -2016,56209 -2017,15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index f682d935e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Submitted" -Screwdriver,64416 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 285ec5fa72..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Submitted" -Screwdriver,69243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 285ec5fa72..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Submitted" -Screwdriver,69243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 285ec5fa72..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Number of Jobs Submitted" -Screwdriver,69243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 8a709ca88b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Number of Jobs Submitted" -2016-12-22,1 -2016-12-23,1 -2016-12-24,0 -2016-12-25,1 -2016-12-26,5 -2016-12-27,18 -2016-12-28,379 -2016-12-29,1206 -2016-12-30,25660 -2016-12-31,24111 -2017-01-01,13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index ecb955462f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Number of Jobs Submitted" -2016-12,56209 -2017-01,13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 5287b6bffe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Number of Jobs Submitted" -"2016 Q4",56209 -"2017 Q1",13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 3397dc432a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Number of Jobs Submitted" -2016,56209 -2017,13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0ac812f8a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"CPU Hours: Total" -Screwdriver,840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0ac812f8a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"CPU Hours: Total" -Screwdriver,840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0ac812f8a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"CPU Hours: Total" -Screwdriver,840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0ac812f8a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"CPU Hours: Total" -Screwdriver,840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 23102d003e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] CPU Hours: Total" -2016-12-22,404.2567 -2016-12-23,584.6036 -2016-12-24,600.0000 -2016-12-25,778.2700 -2016-12-26,2256.3333 -2016-12-27,15553.1447 -2016-12-28,81988.7103 -2016-12-29,171261.7833 -2016-12-30,275119.2672 -2016-12-31,222229.6297 -2017-01-01,69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 186e486915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] CPU Hours: Total" -2016-12,770775.9989 -2017-01,69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2a0680efe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] CPU Hours: Total" -"2016 Q4",770775.9989 -"2017 Q1",69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index fe7aeec10a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] CPU Hours: Total" -2016,770775.9989 -2017,69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4ffcc6f02e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Total" -Screwdriver,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4ffcc6f02e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Total" -Screwdriver,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4ffcc6f02e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Total" -Screwdriver,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4ffcc6f02e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"GPU Hours: Total" -Screwdriver,506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 114cbd12f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] GPU Hours: Total" -2016-12-22,33.4928 -2016-12-23,48.0000 -2016-12-24,48.0000 -2016-12-25,48.0000 -2016-12-26,48.0000 -2016-12-27,48.0000 -2016-12-28,48.0000 -2016-12-29,48.0000 -2016-12-30,48.0000 -2016-12-31,48.0000 -2017-01-01,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index cc8ccac726..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] GPU Hours: Total" -2016-12,465.4928 -2017-01,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ad78335da6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] GPU Hours: Total" -"2016 Q4",465.4928 -"2017 Q1",41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 84a3a19d15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] GPU Hours: Total" -2016,465.4928 -2017,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 90b62b2251..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Node Hours: Total" -Screwdriver,156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 90b62b2251..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Node Hours: Total" -Screwdriver,156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 90b62b2251..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Node Hours: Total" -Screwdriver,156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 90b62b2251..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Node Hours: Total" -Screwdriver,156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 72649b419d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Node Hours: Total" -2016-12-22,33.6881 -2016-12-23,56.6036 -2016-12-24,72.0000 -2016-12-25,80.5078 -2016-12-26,157.5208 -2016-12-27,1206.3922 -2016-12-28,8614.6167 -2016-12-29,28528.4969 -2016-12-30,52308.5600 -2016-12-31,47388.7967 -2017-01-01,17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index d2db1b10fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Node Hours: Total" -2016-12,138447.1828 -2017-01,17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 23db1dbd5e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Node Hours: Total" -"2016 Q4",138447.1828 -"2017 Q1",17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 97039e3391..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Node Hours: Total" -2016,138447.1828 -2017,17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 895a6373bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Total" -Screwdriver,306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 895a6373bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Total" -Screwdriver,306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 895a6373bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Total" -Screwdriver,306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 895a6373bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wait Hours: Total" -Screwdriver,306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7b9d8a866d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Wait Hours: Total" -2016-12-22,9.3325 -2016-12-23,9.5964 -2016-12-24,0.0000 -2016-12-25,110.8856 -2016-12-26,0.0033 -2016-12-27,1978.2519 -2016-12-28,3598.3319 -2016-12-29,6101.8714 -2016-12-30,195282.2372 -2016-12-31,73421.2575 -2017-01-01,25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0f39d4bae7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Wait Hours: Total" -2016-12,280511.7678 -2017-01,25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 669aae733d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Wait Hours: Total" -"2016 Q4",280511.7678 -"2017 Q1",25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5c815da1a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Wait Hours: Total" -2016,280511.7678 -2017,25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5751301019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Total" -Screwdriver,127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5751301019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Total" -Screwdriver,127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5751301019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Total" -Screwdriver,127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5751301019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Wall Hours: Total" -Screwdriver,127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index c312651dc3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Wall Hours: Total" -2016-12-22,33.6881 -2016-12-23,56.6036 -2016-12-24,72.0000 -2016-12-25,80.5078 -2016-12-26,157.5208 -2016-12-27,534.1833 -2016-12-28,4574.1436 -2016-12-29,20504.5094 -2016-12-30,42862.5139 -2016-12-31,42322.5450 -2017-01-01,16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6df403bf77..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Wall Hours: Total" -2016-12,111198.2156 -2017-01,16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 873f8e9858..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Wall Hours: Total" -"2016 Q4",111198.2156 -"2017 Q1",16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index b822ae4a7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Wall Hours: Total" -2016,111198.2156 -2017,16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv deleted file mode 100644 index ca213b33b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Screwdriver CPU Utilization (%)" -Screwdriver,19.0343 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 9fbb8a1d15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Screwdriver CPU Utilization (%)" -Screwdriver,4.2299 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index d9024b8b2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Screwdriver CPU Utilization (%)" -Screwdriver,1.7442 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 083b1f775c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Summary,"Screwdriver CPU Utilization (%)" -Screwdriver,0.4665 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 8226ea8661..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Screwdriver] Screwdriver CPU Utilization (%)" -2016-12-22,0.2106 -2016-12-23,0.3045 -2016-12-24,0.3125 -2016-12-25,0.4053 -2016-12-26,0.7834 -2016-12-27,3.2402 -2016-12-28,17.0810 -2016-12-29,35.6795 -2016-12-30,57.3165 -2016-12-31,46.2978 -2017-01-01,14.5375 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 099dd9e68d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Screwdriver] Screwdriver CPU Utilization (%)" -2016-12,15.4402 -2017-01,0.4690 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 4029647ccd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Screwdriver] Screwdriver CPU Utilization (%)" -"2016 Q4",15.4402 -"2017 Q1",0.1615 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 22cb139203..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/none/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%)" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Screwdriver] Screwdriver CPU Utilization (%)" -2016,15.4402 -2017,0.0398 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 62c6dd045c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Users: Active" -"Mathematical and Physical Sciences",24 -Engineering,13 -Geosciences,9 -"Biological Sciences",6 -"Social, Behavioral, and Economic Sciences",6 -"Computer and Information Science and Engineering",5 -Humanities/Arts,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 62c6dd045c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Users: Active" -"Mathematical and Physical Sciences",24 -Engineering,13 -Geosciences,9 -"Biological Sciences",6 -"Social, Behavioral, and Economic Sciences",6 -"Computer and Information Science and Engineering",5 -Humanities/Arts,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 62c6dd045c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Users: Active" -"Mathematical and Physical Sciences",24 -Engineering,13 -Geosciences,9 -"Biological Sciences",6 -"Social, Behavioral, and Economic Sciences",6 -"Computer and Information Science and Engineering",5 -Humanities/Arts,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 62c6dd045c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Users: Active" -"Mathematical and Physical Sciences",24 -Engineering,13 -Geosciences,9 -"Biological Sciences",6 -"Social, Behavioral, and Economic Sciences",6 -"Computer and Information Science and Engineering",5 -Humanities/Arts,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 45857a20f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" -2016-12-22,1,0,0,1,0,0,0 -2016-12-23,2,0,0,1,0,0,0 -2016-12-24,2,0,0,1,0,0,0 -2016-12-25,3,0,0,1,0,0,0 -2016-12-26,4,0,0,1,0,0,0 -2016-12-27,10,1,0,4,1,0,0 -2016-12-28,15,2,1,4,1,2,0 -2016-12-29,19,6,4,5,3,4,2 -2016-12-30,24,12,8,6,6,5,3 -2016-12-31,20,13,6,5,4,4,3 -2017-01-01,12,10,5,4,3,2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index c2f2e1c0a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" -2016-12,24,13,9,6,6,5,3 -2017-01,12,10,5,4,3,2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 6a49055b0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" -"2016 Q4",24,13,9,6,6,5,3 -"2017 Q1",12,10,5,4,3,2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 7907c220f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical and Physical Sciences] Number of Users: Active","[Engineering] Number of Users: Active","[Geosciences] Number of Users: Active","[Biological Sciences] Number of Users: Active","[Social, Behavioral, and Economic Sciences] Number of Users: Active","[Computer and Information Science and Engineering] Number of Users: Active","[Humanities/Arts] Number of Users: Active" -2016,24,13,9,6,6,5,3 -2017,12,10,5,4,3,2,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 212bac5177..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of PIs: Active" -"Mathematical and Physical Sciences",11 -Geosciences,9 -Engineering,8 -"Biological Sciences",4 -"Computer and Information Science and Engineering",4 -"Social, Behavioral, and Economic Sciences",4 -Humanities/Arts,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 212bac5177..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of PIs: Active" -"Mathematical and Physical Sciences",11 -Geosciences,9 -Engineering,8 -"Biological Sciences",4 -"Computer and Information Science and Engineering",4 -"Social, Behavioral, and Economic Sciences",4 -Humanities/Arts,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 212bac5177..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of PIs: Active" -"Mathematical and Physical Sciences",11 -Geosciences,9 -Engineering,8 -"Biological Sciences",4 -"Computer and Information Science and Engineering",4 -"Social, Behavioral, and Economic Sciences",4 -Humanities/Arts,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 212bac5177..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of PIs: Active" -"Mathematical and Physical Sciences",11 -Geosciences,9 -Engineering,8 -"Biological Sciences",4 -"Computer and Information Science and Engineering",4 -"Social, Behavioral, and Economic Sciences",4 -Humanities/Arts,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index bcf2e11feb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" -2016-12-22,1,0,0,1,0,0,0 -2016-12-23,2,0,0,1,0,0,0 -2016-12-24,2,0,0,1,0,0,0 -2016-12-25,2,0,0,1,0,0,0 -2016-12-26,3,0,0,1,0,0,0 -2016-12-27,6,0,1,3,0,1,0 -2016-12-28,9,1,2,3,2,1,0 -2016-12-29,10,4,5,3,3,2,1 -2016-12-30,11,8,7,4,4,4,1 -2016-12-31,9,6,8,4,3,3,1 -2017-01-01,6,5,6,3,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 26a787e298..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" -2016-12,11,9,8,4,4,4,1 -2017-01,6,5,6,3,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index cffe3f1eca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" -"2016 Q4",11,9,8,4,4,4,1 -"2017 Q1",6,5,6,3,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 2a02d91a75..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical and Physical Sciences] Number of PIs: Active","[Geosciences] Number of PIs: Active","[Engineering] Number of PIs: Active","[Biological Sciences] Number of PIs: Active","[Computer and Information Science and Engineering] Number of PIs: Active","[Social, Behavioral, and Economic Sciences] Number of PIs: Active","[Humanities/Arts] Number of PIs: Active" -2016,11,9,8,4,4,4,1 -2017,6,5,6,3,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 0343c162c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Resources: Active" -"Mathematical and Physical Sciences",5 -"Social, Behavioral, and Economic Sciences",5 -Engineering,3 -Geosciences,3 -"Biological Sciences",2 -Humanities/Arts,2 -"Computer and Information Science and Engineering",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 0343c162c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Resources: Active" -"Mathematical and Physical Sciences",5 -"Social, Behavioral, and Economic Sciences",5 -Engineering,3 -Geosciences,3 -"Biological Sciences",2 -Humanities/Arts,2 -"Computer and Information Science and Engineering",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 0343c162c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Resources: Active" -"Mathematical and Physical Sciences",5 -"Social, Behavioral, and Economic Sciences",5 -Engineering,3 -Geosciences,3 -"Biological Sciences",2 -Humanities/Arts,2 -"Computer and Information Science and Engineering",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 0343c162c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Resources: Active" -"Mathematical and Physical Sciences",5 -"Social, Behavioral, and Economic Sciences",5 -Engineering,3 -Geosciences,3 -"Biological Sciences",2 -Humanities/Arts,2 -"Computer and Information Science and Engineering",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index c79bb1feaa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" -2016-12-22,1,0,0,0,1,0,0 -2016-12-23,1,0,0,0,1,0,0 -2016-12-24,1,0,0,0,1,0,0 -2016-12-25,1,0,0,0,1,0,0 -2016-12-26,2,0,0,0,1,0,0 -2016-12-27,4,1,1,0,2,0,0 -2016-12-28,4,1,1,1,2,0,1 -2016-12-29,4,4,3,3,2,2,1 -2016-12-30,5,5,3,3,2,2,1 -2016-12-31,5,5,3,3,2,2,1 -2017-01-01,5,5,3,2,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 63706fd663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" -2016-12,5,5,3,3,2,2,1 -2017-01,5,5,3,2,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 08681ffa96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" -"2016 Q4",5,5,3,3,2,2,1 -"2017 Q1",5,5,3,2,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index dacc0eda21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical and Physical Sciences] Number of Resources: Active","[Social, Behavioral, and Economic Sciences] Number of Resources: Active","[Engineering] Number of Resources: Active","[Geosciences] Number of Resources: Active","[Biological Sciences] Number of Resources: Active","[Humanities/Arts] Number of Resources: Active","[Computer and Information Science and Engineering] Number of Resources: Active" -2016,5,5,3,3,2,2,1 -2017,5,5,3,2,2,2,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5dc8e71c4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 228915657c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 228915657c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 228915657c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 1290cf60d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" -2016-12-22,0,0,200.95666667,203.30000000,0,0,0 -2016-12-23,0,0,288.00000000,148.30180556,0,0,0 -2016-12-24,0,0,288.00000000,156.00000000,0,0,0 -2016-12-25,0,0,288.00000000,98.05400000,0,0,0 -2016-12-26,0,0,288.00000000,196.83333333,0,0,0 -2016-12-27,1246.47111111,0,166.08277778,349.39508333,0,0,3.21666667 -2016-12-28,147.49854595,0,271.00512821,681.38766382,6.69041168,94.01111111,24.00000000 -2016-12-29,214.07366750,46.91737374,66.39927778,585.33533832,14.21335853,582.30381944,7.39809663 -2016-12-30,229.01666415,107.24694444,26.59341111,19.79102838,14.58756597,6.26633395,3.03737720 -2016-12-31,107.44654864,171.46924897,106.20362847,17.08886588,13.61354217,6.56568955,3.78294327 -2017-01-01,67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 1ace5019f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" -2016-12,404.22454684,183.58806397,96.23316926,39.87568906,25.19334377,12.64740448,3.49505680 -2017-01,67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 82a44a8843..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" -"2016 Q4",404.22454684,183.58806397,96.23316926,39.87568906,25.19334377,12.64740448,3.49505680 -"2017 Q1",67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2761cc19c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Engineering] CPU Hours: Per Job","[Humanities/Arts] CPU Hours: Per Job","[Biological Sciences] CPU Hours: Per Job","[Mathematical and Physical Sciences] CPU Hours: Per Job","[Computer and Information Science and Engineering] CPU Hours: Per Job","[Geosciences] CPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] CPU Hours: Per Job" -2016,404.22454684,183.58806397,96.23316926,39.87568906,25.19334377,12.64740448,3.49505680 -2017,67.15728861,59.98977778,20.54366410,32.64719972,12.31921090,23.37171659,0.62134448 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 295095bf4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Per Job" -"Biological Sciences",1.41992375 -"Computer and Information Science and Engineering",0.00000000 -Engineering,0.00000000 -Geosciences,0.00000000 -Humanities/Arts,0.00000000 -"Mathematical and Physical Sciences",0.00000000 -"Social, Behavioral, and Economic Sciences",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 295095bf4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Per Job" -"Biological Sciences",1.41992375 -"Computer and Information Science and Engineering",0.00000000 -Engineering,0.00000000 -Geosciences,0.00000000 -Humanities/Arts,0.00000000 -"Mathematical and Physical Sciences",0.00000000 -"Social, Behavioral, and Economic Sciences",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 295095bf4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Per Job" -"Biological Sciences",1.41992375 -"Computer and Information Science and Engineering",0.00000000 -Engineering,0.00000000 -Geosciences,0.00000000 -Humanities/Arts,0.00000000 -"Mathematical and Physical Sciences",0.00000000 -"Social, Behavioral, and Economic Sciences",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 295095bf4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Per Job" -"Biological Sciences",1.41992375 -"Computer and Information Science and Engineering",0.00000000 -Engineering,0.00000000 -Geosciences,0.00000000 -Humanities/Arts,0.00000000 -"Mathematical and Physical Sciences",0.00000000 -"Social, Behavioral, and Economic Sciences",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index f05dd15b50..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0.00000000,0 -2016-12-23,48.00000000,0,0,0,0,0.00000000,0 -2016-12-24,48.00000000,0,0,0,0,0.00000000,0 -2016-12-25,48.00000000,0,0,0,0,0.00000000,0 -2016-12-26,48.00000000,0,0,0,0,0.00000000,0 -2016-12-27,6.00000000,0,0.00000000,0,0,0.00000000,0.00000000 -2016-12-28,3.69230769,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 -2016-12-29,0.73846154,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-30,0.27428571,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,1.50000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01-01,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index ccbedcf9bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" -2016-12,2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f6c66c488e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" -"2016 Q4",2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index b24a3d602c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" -2016,2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 56313bc58b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Biological Sciences",0.0112,0.007900541269787514 -"Computer and Information Science and Engineering",0.0000,0 -Engineering,0.0000,0 -Geosciences,0.0000,0 -Humanities/Arts,0.0000,0 -"Mathematical and Physical Sciences",0.0000,0 -"Social, Behavioral, and Economic Sciences",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 56313bc58b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Biological Sciences",0.0112,0.007900541269787514 -"Computer and Information Science and Engineering",0.0000,0 -Engineering,0.0000,0 -Geosciences,0.0000,0 -Humanities/Arts,0.0000,0 -"Mathematical and Physical Sciences",0.0000,0 -"Social, Behavioral, and Economic Sciences",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 56313bc58b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Biological Sciences",0.0112,0.007900541269787514 -"Computer and Information Science and Engineering",0.0000,0 -Engineering,0.0000,0 -Geosciences,0.0000,0 -Humanities/Arts,0.0000,0 -"Mathematical and Physical Sciences",0.0000,0 -"Social, Behavioral, and Economic Sciences",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 56313bc58b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Biological Sciences",0.0112,0.007900541269787514 -"Computer and Information Science and Engineering",0.0000,0 -Engineering,0.0000,0 -Geosciences,0.0000,0 -Humanities/Arts,0.0000,0 -"Mathematical and Physical Sciences",0.0000,0 -"Social, Behavioral, and Economic Sciences",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 1b4e805068..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0,0,0.0000,0 -2016-12-23,2.0000,0,0,0,0,0.0000,0 -2016-12-24,2.0000,0,0,0,0,0.0000,0 -2016-12-25,2.0000,0,0,0,0,0.0000,0 -2016-12-26,2.0000,0,0,0,0,0.0000,0 -2016-12-27,0.2500,0,0.0000,0,0,0.0000,0.0000 -2016-12-28,0.1538,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2016-12-29,0.0308,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,0.0114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0625,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 79d51c87c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" -2016-12,0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 7f4b24bc8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" -"2016 Q4",0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index d3d98490ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" -2016,0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index c70319d289..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" -Engineering,101.2769 -"Mathematical and Physical Sciences",93.8663 -"Biological Sciences",31.3393 -Geosciences,18.1667 -Humanities/Arts,11.8252 -"Social, Behavioral, and Economic Sciences",10.8677 -"Computer and Information Science and Engineering",1.7640 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index c70319d289..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" -Engineering,101.2769 -"Mathematical and Physical Sciences",93.8663 -"Biological Sciences",31.3393 -Geosciences,18.1667 -Humanities/Arts,11.8252 -"Social, Behavioral, and Economic Sciences",10.8677 -"Computer and Information Science and Engineering",1.7640 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c70319d289..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" -Engineering,101.2769 -"Mathematical and Physical Sciences",93.8663 -"Biological Sciences",31.3393 -Geosciences,18.1667 -Humanities/Arts,11.8252 -"Social, Behavioral, and Economic Sciences",10.8677 -"Computer and Information Science and Engineering",1.7640 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index c70319d289..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By CPU Hours (Core Count)" -Engineering,101.2769 -"Mathematical and Physical Sciences",93.8663 -"Biological Sciences",31.3393 -Geosciences,18.1667 -Humanities/Arts,11.8252 -"Social, Behavioral, and Economic Sciences",10.8677 -"Computer and Information Science and Engineering",1.7640 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6dde69dcfd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,12.0000,12.0000,0,0,0,0 -2016-12-23,0,11.6809,12.0000,0,0,0,0 -2016-12-24,0,11.1538,12.0000,0,0,0,0 -2016-12-25,0,15.1906,12.0000,0,0,0,0 -2016-12-26,0,19.3287,12.0000,0,0,0,0 -2016-12-27,96.0000,63.9290,19.8357,0,0,1.0000,0 -2016-12-28,88.1962,124.0581,33.0691,20.0000,0,1.0000,2.8865 -2016-12-29,89.9037,104.0892,28.0857,88.5857,11.5552,10.2034,1.6777 -2016-12-30,112.1825,99.9328,32.5776,23.1791,11.8713,10.9005,1.9011 -2016-12-31,112.3553,64.8745,36.8877,7.7053,11.8540,10.8898,1.7160 -2017-01-01,68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 21b11129d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,102.9933,97.4694,30.0052,26.3413,11.8512,10.8841,1.8047 -2017-01,68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 01991de945..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",102.9933,97.4694,30.0052,26.3413,11.8512,10.8841,1.8047 -"2017 Q1",68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index e57983ebf7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Engineering] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical and Physical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Biological Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Geosciences] Job Size: Weighted By CPU Hours (Core Count)","[Humanities/Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Information Science and Engineering] Job Size: Weighted By CPU Hours (Core Count)" -2016,102.9933,97.4694,30.0052,26.3413,11.8512,10.8841,1.8047 -2017,68.1385,22.6656,38.3114,12.0180,10.7741,10.5763,1.5550 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7441a22d2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" -"Biological Sciences",12.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 7441a22d2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" -"Biological Sciences",12.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7441a22d2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" -"Biological Sciences",12.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7441a22d2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" -"Biological Sciences",12.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 88244c4a20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0,0,0.0000,0 -2016-12-23,12.0000,0,0,0,0,0.0000,0 -2016-12-24,12.0000,0,0,0,0,0.0000,0 -2016-12-25,12.0000,0,0,0,0,0.0000,0 -2016-12-26,12.0000,0,0,0,0,0.0000,0 -2016-12-27,12.0000,0,0.0000,0,0,0.0000,0.0000 -2016-12-28,12.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 80b6d03478..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b1c301a414..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 0d75ffecaa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 627c883eba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index f6d3926355..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f6d3926355..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index f6d3926355..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9d23c3f64e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" -2016-12-22,0,0,0,16.74638889,0,16.94166667,0 -2016-12-23,0,0,0,24.00000000,0,16.30180556,0 -2016-12-24,0,0,0,24.00000000,0,24.00000000,0 -2016-12-25,0,0,0,24.00000000,0,11.30155556,0 -2016-12-26,0,0,0,24.00000000,0,13.35208333,0 -2016-12-27,103.87259259,0,0,18.01625000,0,24.91425926,3.21666667 -2016-12-28,23.39817558,5.11274929,0,32.02948718,4.70055556,43.35951567,24.00000000 -2016-12-29,31.24421888,13.00927766,4.34454545,11.06724359,50.53201389,39.47018162,1.27936230 -2016-12-30,33.89972306,13.19797834,9.68358547,5.37832698,4.08397301,1.48685926,0.33097065 -2016-12-31,16.25349374,12.51093474,15.93161523,12.94794271,5.40183243,1.53228783,0.37017739 -2017-01-01,13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 365940c0f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" -2016-12,59.91741394,22.90902738,16.77843434,14.23923287,8.07149077,2.91895910,0.36183462 -2017-01,13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 6dc4f413cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" -"2016 Q4",59.91741394,22.90902738,16.77843434,14.23923287,8.07149077,2.91895910,0.36183462 -"2017 Q1",13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 21efb1bc79..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Engineering] Node Hours: Per Job","[Computer and Information Science and Engineering] Node Hours: Per Job","[Humanities/Arts] Node Hours: Per Job","[Biological Sciences] Node Hours: Per Job","[Geosciences] Node Hours: Per Job","[Mathematical and Physical Sciences] Node Hours: Per Job","[Social, Behavioral, and Economic Sciences] Node Hours: Per Job" -2016,59.91741394,22.90902738,16.77843434,14.23923287,8.07149077,2.91895910,0.36183462 -2017,13.09319008,11.46455460,6.53122222,2.39604528,1.95282464,3.14905354,0.06801433 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 523793d5c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 523793d5c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 523793d5c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 523793d5c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index bfc5dd5b1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -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)","[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/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 48cfa69fe6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,27.5440,11.2471,11.0909,9.0258,8.4469,1.7194,1.1430 -2017-01,32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 582d33a807..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",27.5440,11.2471,11.0909,9.0258,8.4469,1.7194,1.1430 -"2017 Q1",32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 82f6119b78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,27.5440,11.2471,11.0909,9.0258,8.4469,1.7194,1.1430 -2017,32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index ebe37b0921..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Biological Sciences",23.22531746,3.3791413016727105 -"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 -Engineering,8.29298478,0.8262094447522345 -Humanities/Arts,4.87037458,0.44747381160758987 -Geosciences,4.20178504,0.10235707106304519 -"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 -"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index ebe37b0921..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Biological Sciences",23.22531746,3.3791413016727105 -"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 -Engineering,8.29298478,0.8262094447522345 -Humanities/Arts,4.87037458,0.44747381160758987 -Geosciences,4.20178504,0.10235707106304519 -"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 -"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ebe37b0921..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Biological Sciences",23.22531746,3.3791413016727105 -"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 -Engineering,8.29298478,0.8262094447522345 -Humanities/Arts,4.87037458,0.44747381160758987 -Geosciences,4.20178504,0.10235707106304519 -"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 -"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index ebe37b0921..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Biological Sciences",23.22531746,3.3791413016727105 -"Mathematical and Physical Sciences",21.21300381,0.7320123847068871 -Engineering,8.29298478,0.8262094447522345 -Humanities/Arts,4.87037458,0.44747381160758987 -Geosciences,4.20178504,0.10235707106304519 -"Social, Behavioral, and Economic Sciences",1.99144263,0.025430337208220542 -"Computer and Information Science and Engineering",0.20800686,0.015445917527693484 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 467e03aaf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" -2016-12-22,0.00027778,9.33222222,0,0,0,0,0 -2016-12-23,0.00000000,9.59638889,0,0,0,0,0 -2016-12-24,0.00000000,0.00000000,0,0,0,0,0 -2016-12-25,0.00000000,36.96185185,0,0,0,0,0 -2016-12-26,0.00000000,0.00066667,0,0,0,0,0 -2016-12-27,202.60396825,12.44448611,103.71148148,0,0,0.00000000,0 -2016-12-28,280.72700000,18.33165509,8.21878931,0,0.00027778,0.00000000,0.04097293 -2016-12-29,12.05893162,39.51646368,3.35201389,0.87133838,8.57675926,7.71266385,0.04345597 -2016-12-30,14.31103283,35.41370328,1.28882479,5.77518519,2.45399724,1.34893024,0.32917740 -2016-12-31,80.03162037,0.66458122,14.92100248,0.00000000,6.31360942,2.80449242,0.35112299 -2017-01-01,11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0f5ec62122..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" -2016-12,33.49072683,22.31151628,9.25718519,4.87037458,3.58140917,2.14923636,0.22278137 -2017-01,11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index a0f8564a61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" -"2016 Q4",33.49072683,22.31151628,9.25718519,4.87037458,3.58140917,2.14923636,0.22278137 -"2017 Q1",11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 02290d49fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biological Sciences] Wait Hours: Per Job","[Mathematical and Physical Sciences] Wait Hours: Per Job","[Engineering] Wait Hours: Per Job","[Humanities/Arts] Wait Hours: Per Job","[Geosciences] Wait Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wait Hours: Per Job","[Computer and Information Science and Engineering] Wait Hours: Per Job" -2016,33.49072683,22.31151628,9.25718519,4.87037458,3.58140917,2.14923636,0.22278137 -2017,11.14468327,0.11044023,0.48755291,0.00000000,5.07693066,1.47296410,0.03552149 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 15020a9074..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Engineering,32.29722077, -"Computer and Information Science and Engineering",25.30770717, -Humanities/Arts,17.27322391, -"Biological Sciences",6.21035170,0.4195997254250178 -Geosciences,5.41253102,0.0390852045071304 -"Mathematical and Physical Sciences",1.37350189,0.05067553106484687 -"Social, Behavioral, and Economic Sciences",0.28820096,0.0031231359871834977 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index ae55a4a004..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Engineering,32.29722077,1.1156835781855632 -"Computer and Information Science and Engineering",25.30770717,0.10903555194264934 -Humanities/Arts,17.27322391,1.2812633375632778 -"Biological Sciences",6.21035170,0.9872353046375569 -Geosciences,5.41253102,0.08730703376986411 -"Mathematical and Physical Sciences",1.37350189,0.08794526811918975 -"Social, Behavioral, and Economic Sciences",0.28820096,0.004430889448528951 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ae55a4a004..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Engineering,32.29722077,1.1156835781855632 -"Computer and Information Science and Engineering",25.30770717,0.10903555194264934 -Humanities/Arts,17.27322391,1.2812633375632778 -"Biological Sciences",6.21035170,0.9872353046375569 -Geosciences,5.41253102,0.08730703376986411 -"Mathematical and Physical Sciences",1.37350189,0.08794526811918975 -"Social, Behavioral, and Economic Sciences",0.28820096,0.004430889448528951 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index ae55a4a004..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Engineering,32.29722077,1.1156835781855632 -"Computer and Information Science and Engineering",25.30770717,0.10903555194264934 -Humanities/Arts,17.27322391,1.2812633375632778 -"Biological Sciences",6.21035170,0.9872353046375569 -Geosciences,5.41253102,0.08730703376986411 -"Mathematical and Physical Sciences",1.37350189,0.08794526811918975 -"Social, Behavioral, and Economic Sciences",0.28820096,0.004430889448528951 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 1060304a70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" -2016-12-22,0,0,0,16.74638889,0,16.94166667,0 -2016-12-23,0,0,0,24.00000000,0,16.30180556,0 -2016-12-24,0,0,0,24.00000000,0,24.00000000,0 -2016-12-25,0,0,0,24.00000000,0,11.30155556,0 -2016-12-26,0,0,0,24.00000000,0,13.35208333,0 -2016-12-27,12.98407407,0,0,14.69149306,0,12.48275000,3.21666667 -2016-12-28,13.52655521,5.11274929,0,19.10641026,4.70055556,14.21502137,24.00000000 -2016-12-29,16.83184733,13.00927766,4.34454545,8.48262821,14.96611111,14.75875356,1.18189040 -2016-12-30,18.95314451,13.19673760,9.68358547,4.19858095,3.99121069,0.65498804,0.31886620 -2016-12-31,9.47680621,12.51093474,15.93161523,7.41091146,5.36329308,0.87636759,0.36858846 -2017-01-01,9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index a1e97382a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" -2016-12,33.36889379,22.90818519,16.77843434,10.37271157,7.84480993,1.28661758,0.35467017 -2017-01,9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f98166c86e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" -"2016 Q4",33.36889379,22.90818519,16.77843434,10.37271157,7.84480993,1.28661758,0.35467017 -"2017 Q1",9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index cf509ce774..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Engineering] Wall Hours: Per Job","[Computer and Information Science and Engineering] Wall Hours: Per Job","[Humanities/Arts] Wall Hours: Per Job","[Biological Sciences] Wall Hours: Per Job","[Geosciences] Wall Hours: Per Job","[Mathematical and Physical Sciences] Wall Hours: Per Job","[Social, Behavioral, and Economic Sciences] Wall Hours: Per Job" -2016,33.36889379,22.90818519,16.77843434,10.37271157,7.84480993,1.28661758,0.35467017 -2017,9.35957023,11.46455460,6.53122222,1.24371227,1.95232138,2.56249763,0.06733589 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index e8a2c4ccbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","User Expansion Factor" -"Mathematical and Physical Sciences",8.2892 -"Social, Behavioral, and Economic Sciences",7.5872 -"Biological Sciences",5.9152 -Geosciences,1.8672 -Engineering,1.5836 -Humanities/Arts,1.2820 -"Computer and Information Science and Engineering",1.0082 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index e8a2c4ccbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","User Expansion Factor" -"Mathematical and Physical Sciences",8.2892 -"Social, Behavioral, and Economic Sciences",7.5872 -"Biological Sciences",5.9152 -Geosciences,1.8672 -Engineering,1.5836 -Humanities/Arts,1.2820 -"Computer and Information Science and Engineering",1.0082 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index e8a2c4ccbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","User Expansion Factor" -"Mathematical and Physical Sciences",8.2892 -"Social, Behavioral, and Economic Sciences",7.5872 -"Biological Sciences",5.9152 -Geosciences,1.8672 -Engineering,1.5836 -Humanities/Arts,1.2820 -"Computer and Information Science and Engineering",1.0082 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index e8a2c4ccbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","User Expansion Factor" -"Mathematical and Physical Sciences",8.2892 -"Social, Behavioral, and Economic Sciences",7.5872 -"Biological Sciences",5.9152 -Geosciences,1.8672 -Engineering,1.5836 -Humanities/Arts,1.2820 -"Computer and Information Science and Engineering",1.0082 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index dd7964b9be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" -2016-12-22,1.0495,0,1.0000,0,0,0,0 -2016-12-23,1.0525,0,1.0000,0,0,0,0 -2016-12-24,1.0552,0,1.0000,0,0,0,0 -2016-12-25,1.1158,0,1.0000,0,0,0,0 -2016-12-26,1.2076,0,1.0000,0,0,0,0 -2016-12-27,1.6540,1.0000,2.9970,0,2.5533,0,0 -2016-12-28,1.2374,1.0000,2.6841,1.0000,1.7584,0,1.0014 -2016-12-29,1.5169,3.5135,2.3663,2.8342,1.6577,1.0436,1.0012 -2016-12-30,24.3083,5.1671,6.5484,1.2462,1.4851,1.4225,1.0026 -2016-12-31,1.5676,8.2251,4.5106,1.5960,1.6434,1.1163,1.0186 -2017-01-01,1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 76a1c12bce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" -2016-12,8.7685,6.7861,4.1471,1.4970,1.6127,1.2872,1.0081 -2017-01,1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 58615c3d7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" -"2016 Q4",8.7685,6.7861,4.1471,1.4970,1.6127,1.2872,1.0081 -"2017 Q1",1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index ccfc093bb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical and Physical Sciences] User Expansion Factor","[Social, Behavioral, and Economic Sciences] User Expansion Factor","[Biological Sciences] User Expansion Factor","[Geosciences] User Expansion Factor","[Engineering] User Expansion Factor","[Humanities/Arts] User Expansion Factor","[Computer and Information Science and Engineering] User Expansion Factor" -2016,8.7685,6.7861,4.1471,1.4970,1.6127,1.2872,1.0081 -2017,1.1019,21.0966,17.6377,3.9938,1.1558,1.1040,1.0087 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv deleted file mode 100644 index b323209538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Ended" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv deleted file mode 100644 index b323209538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Ended" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b323209538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Ended" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv deleted file mode 100644 index b323209538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Ended" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv deleted file mode 100644 index eabe9274db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" -2016-12-22,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0 -2016-12-30,20765,4654,815,88,84,161,39 -2016-12-31,22983,2860,886,1037,330,23,22 -2017-01-01,13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 12dbe9d21d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" -2016-12,43748,7514,1701,1125,414,184,61 -2017-01,13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 878ac6aa6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" -"2016 Q4",43748,7514,1701,1125,414,184,61 -"2017 Q1",13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv deleted file mode 100644 index b916a78410..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Ended","[Mathematical and Physical Sciences] Number of Jobs Ended","[Computer and Information Science and Engineering] Number of Jobs Ended","[Geosciences] Number of Jobs Ended","[Engineering] Number of Jobs Ended","[Biological Sciences] Number of Jobs Ended","[Humanities/Arts] Number of Jobs Ended" -2016,43748,7514,1701,1125,414,184,61 -2017,13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index e8670a7a96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Max (Core Count)" -Engineering,336 -"Biological Sciences",192 -"Mathematical and Physical Sciences",192 -Geosciences,160 -"Computer and Information Science and Engineering",108 -"Social, Behavioral, and Economic Sciences",56 -Humanities/Arts,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index e8670a7a96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Max (Core Count)" -Engineering,336 -"Biological Sciences",192 -"Mathematical and Physical Sciences",192 -Geosciences,160 -"Computer and Information Science and Engineering",108 -"Social, Behavioral, and Economic Sciences",56 -Humanities/Arts,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index e8670a7a96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Max (Core Count)" -Engineering,336 -"Biological Sciences",192 -"Mathematical and Physical Sciences",192 -Geosciences,160 -"Computer and Information Science and Engineering",108 -"Social, Behavioral, and Economic Sciences",56 -Humanities/Arts,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index e8670a7a96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Max (Core Count)" -Engineering,336 -"Biological Sciences",192 -"Mathematical and Physical Sciences",192 -Geosciences,160 -"Computer and Information Science and Engineering",108 -"Social, Behavioral, and Economic Sciences",56 -Humanities/Arts,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 1ca92a38b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" -2016-12-22,0,12,12,0,0,0,0 -2016-12-23,0,12,12,0,0,0,0 -2016-12-24,0,12,12,0,0,0,0 -2016-12-25,0,12,24,0,0,0,0 -2016-12-26,0,12,24,0,0,0,0 -2016-12-27,96,64,144,0,0,1,0 -2016-12-28,96,64,192,20,8,1,0 -2016-12-29,112,64,192,160,8,56,12 -2016-12-30,336,192,192,160,108,56,12 -2016-12-31,336,192,192,60,12,48,12 -2017-01-01,96,192,72,160,8,48,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index fa1e58c2a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" -2016-12,336,192,192,160,108,56,12 -2017-01,96,192,72,160,8,48,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 72f297bff7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,108,56,12 -"2017 Q1",96,192,72,160,8,48,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index fb3915905e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Engineering] Job Size: Max (Core Count)","[Biological Sciences] Job Size: Max (Core Count)","[Mathematical and Physical Sciences] Job Size: Max (Core Count)","[Geosciences] Job Size: Max (Core Count)","[Computer and Information Science and Engineering] Job Size: Max (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Max (Core Count)","[Humanities/Arts] Job Size: Max (Core Count)" -2016,336,192,192,160,108,56,12 -2017,96,192,72,160,8,48,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index c14f8a3734..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Min (Core Count)" -"Biological Sciences",1 -"Computer and Information Science and Engineering",1 -Engineering,1 -Geosciences,1 -Humanities/Arts,1 -"Mathematical and Physical Sciences",1 -"Social, Behavioral, and Economic Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index c14f8a3734..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Min (Core Count)" -"Biological Sciences",1 -"Computer and Information Science and Engineering",1 -Engineering,1 -Geosciences,1 -Humanities/Arts,1 -"Mathematical and Physical Sciences",1 -"Social, Behavioral, and Economic Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index c14f8a3734..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Min (Core Count)" -"Biological Sciences",1 -"Computer and Information Science and Engineering",1 -Engineering,1 -Geosciences,1 -Humanities/Arts,1 -"Mathematical and Physical Sciences",1 -"Social, Behavioral, and Economic Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index c14f8a3734..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Job Size: Min (Core Count)" -"Biological Sciences",1 -"Computer and Information Science and Engineering",1 -Engineering,1 -Geosciences,1 -Humanities/Arts,1 -"Mathematical and Physical Sciences",1 -"Social, Behavioral, and Economic Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 91ef9f8b62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" -2016-12-22,12,0,0,0,0,12,0 -2016-12-23,12,0,0,0,0,1,0 -2016-12-24,12,0,0,0,0,1,0 -2016-12-25,12,0,0,0,0,1,0 -2016-12-26,12,0,0,0,0,1,0 -2016-12-27,8,0,96,0,0,1,1 -2016-12-28,8,1,1,20,0,1,1 -2016-12-29,1,1,1,5,4,1,1 -2016-12-30,1,1,1,1,1,1,1 -2016-12-31,1,1,1,1,1,1,1 -2017-01-01,1,1,1,1,4,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 9bc4416c22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" -2016-12,1,1,1,1,1,1,1 -2017-01,1,1,1,1,4,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index bbd7bed9ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" -"2016 Q4",1,1,1,1,1,1,1 -"2017 Q1",1,1,1,1,4,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 0419087bdf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biological Sciences] Job Size: Min (Core Count)","[Computer and Information Science and Engineering] Job Size: Min (Core Count)","[Engineering] Job Size: Min (Core Count)","[Geosciences] Job Size: Min (Core Count)","[Humanities/Arts] Job Size: Min (Core Count)","[Mathematical and Physical Sciences] Job Size: Min (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Min (Core Count)" -2016,1,1,1,1,1,1,1 -2017,1,1,1,1,4,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv deleted file mode 100644 index 1d3c11ff28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -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 -"Mathematical and Physical Sciences",0.053645246 -Geosciences,0.047546749 -"Social, Behavioral, and Economic Sciences",0.045246083 -"Computer and Information Science and Engineering",0.028814663 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 9e0644fb69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 9e0644fb69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 9e0644fb69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 9e0644fb69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv deleted file mode 100644 index 9ac89accba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -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)","[Geosciences] Job Size: Normalized (% of Total Cores)","[Social, Behavioral, and Economic 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.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,0.025000000,0 -2016-12-28,0.161538462,0,0.244907407,0.256250000,0.500000000,0.025000000,0.029487179 -2016-12-29,0.045000000,0.140909091,0.096679198,0.189383013,0.468750000,0.059678988,0.027854230 -2016-12-30,0.304000000,0.140000000,0.121752266,0.042305188,0.014194479,0.042276790,0.029449405 -2016-12-31,0.470312500,0.136111111,0.078579812,0.046537151,0.011121703,0.047710969,0.027981928 -2017-01-01,0.400650289,0.130000000,0.108176101,0.057665245,0.141732885,0.045808971,0.027484787 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 90280c68f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -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)","[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/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 1fc6c9063e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,0.344300518,0.138636364,0.093725490,0.014328643,0.045129182,0.042234449,0.028575758 -2017-01,0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 957f3b608f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",0.344300518,0.138636364,0.093725490,0.014328643,0.045129182,0.042234449,0.028575758 -"2017 Q1",0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index c55eda040a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,0.344300518,0.138636364,0.093725490,0.014328643,0.045129182,0.042234449,0.028575758 -2017,0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 64b1a46262..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Running" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 64b1a46262..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Running" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 64b1a46262..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Running" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 64b1a46262..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Running" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index e3b0ae3973..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" -2016-12-22,0,1,0,0,0,1,0 -2016-12-23,0,2,0,0,0,1,0 -2016-12-24,0,2,0,0,0,1,0 -2016-12-25,0,5,0,0,0,1,0 -2016-12-26,0,10,0,0,0,1,0 -2016-12-27,1,30,0,0,3,8,0 -2016-12-28,1,78,195,1,162,13,0 -2016-12-29,257,156,981,4,266,65,11 -2016-12-30,21034,4761,1680,809,331,175,65 -2016-12-31,23475,2934,1660,1049,426,32,27 -2017-01-01,13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index a3e864c9f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" -2016-12,44240,7588,2475,1137,510,193,66 -2017-01,13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index edd0093187..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" -"2016 Q4",44240,7588,2475,1137,510,193,66 -"2017 Q1",13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index b0bb08cb92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Running","[Mathematical and Physical Sciences] Number of Jobs Running","[Computer and Information Science and Engineering] Number of Jobs Running","[Geosciences] Number of Jobs Running","[Engineering] Number of Jobs Running","[Biological Sciences] Number of Jobs Running","[Humanities/Arts] Number of Jobs Running" -2016,44240,7588,2475,1137,510,193,66 -2017,13956,469,986,818,159,173,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index d47823526f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Started" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index d47823526f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Started" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index d47823526f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Started" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index d47823526f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Started" -"Social, Behavioral, and Economic Sciences",57704 -"Mathematical and Physical Sciences",7983 -"Computer and Information Science and Engineering",2687 -Geosciences,1943 -Engineering,573 -"Biological Sciences",357 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 7a7373f631..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" -2016-12-22,0,1,0,0,0,1,0 -2016-12-23,0,1,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0 -2016-12-25,0,3,0,0,0,0,0 -2016-12-26,0,5,0,0,0,0,0 -2016-12-27,1,20,0,0,3,7,0 -2016-12-28,0,48,195,1,159,5,0 -2016-12-29,256,78,786,3,104,52,11 -2016-12-30,20777,4605,699,805,65,110,54 -2016-12-31,23206,2827,795,328,179,18,1 -2017-01-01,13464,395,212,806,63,164,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 06a1f904a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" -2016-12,44240,7588,2475,1137,510,193,66 -2017-01,13464,395,212,806,63,164,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9fb5789e09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" -"2016 Q4",44240,7588,2475,1137,510,193,66 -"2017 Q1",13464,395,212,806,63,164,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index f685ea7158..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Started","[Mathematical and Physical Sciences] Number of Jobs Started","[Computer and Information Science and Engineering] Number of Jobs Started","[Geosciences] Number of Jobs Started","[Engineering] Number of Jobs Started","[Biological Sciences] Number of Jobs Started","[Humanities/Arts] Number of Jobs Started" -2016,44240,7588,2475,1137,510,193,66 -2017,13464,395,212,806,63,164,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 17f78a27df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Submitted" -"Social, Behavioral, and Economic Sciences",52367 -"Mathematical and Physical Sciences",7107 -"Computer and Information Science and Engineering",2644 -Geosciences,1596 -Engineering,448 -"Biological Sciences",223 -Humanities/Arts,31 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 5f64ed38aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Submitted" -"Social, Behavioral, and Economic Sciences",55774 -"Mathematical and Physical Sciences",7982 -"Computer and Information Science and Engineering",2687 -Geosciences,1879 -Engineering,573 -"Biological Sciences",282 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 5f64ed38aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Submitted" -"Social, Behavioral, and Economic Sciences",55774 -"Mathematical and Physical Sciences",7982 -"Computer and Information Science and Engineering",2687 -Geosciences,1879 -Engineering,573 -"Biological Sciences",282 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 5f64ed38aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Number of Jobs Submitted" -"Social, Behavioral, and Economic Sciences",55774 -"Mathematical and Physical Sciences",7982 -"Computer and Information Science and Engineering",2687 -Geosciences,1879 -Engineering,573 -"Biological Sciences",282 -Humanities/Arts,66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index c51fb0b4c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,1,0 -2016-12-23,0,1,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0 -2016-12-25,0,1,0,0,0,0,0 -2016-12-26,0,5,0,0,0,0,0 -2016-12-27,1,16,0,0,0,1,0 -2016-12-28,0,36,195,1,147,0,0 -2016-12-29,206,54,786,2,97,50,11 -2016-12-30,20182,3828,699,804,59,69,19 -2016-12-31,20444,2772,752,47,82,13,1 -2017-01-01,11534,394,212,742,63,89,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 8973852316..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" -2016-12,44240,7588,2475,1137,510,193,66 -2017-01,11534,394,212,742,63,89,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 87b9f58bdf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" -"2016 Q4",44240,7588,2475,1137,510,193,66 -"2017 Q1",11534,394,212,742,63,89,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 070363d279..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social, Behavioral, and Economic Sciences] Number of Jobs Submitted","[Mathematical and Physical Sciences] Number of Jobs Submitted","[Computer and Information Science and Engineering] Number of Jobs Submitted","[Geosciences] Number of Jobs Submitted","[Engineering] Number of Jobs Submitted","[Biological Sciences] Number of Jobs Submitted","[Humanities/Arts] Number of Jobs Submitted" -2016,44240,7588,2475,1137,510,193,66 -2017,11534,394,212,742,63,89,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index dfc86a43d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","CPU Hours: Total" -"Mathematical and Physical Sciences",317888.2653 -Engineering,216832.5278 -"Social, Behavioral, and Economic Sciences",163292.7964 -"Computer and Information Science and Engineering",74500.2678 -Geosciences,33498.1631 -"Biological Sciences",22127.0556 -Humanities/Arts,12416.7611 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index dfc86a43d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","CPU Hours: Total" -"Mathematical and Physical Sciences",317888.2653 -Engineering,216832.5278 -"Social, Behavioral, and Economic Sciences",163292.7964 -"Computer and Information Science and Engineering",74500.2678 -Geosciences,33498.1631 -"Biological Sciences",22127.0556 -Humanities/Arts,12416.7611 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index dfc86a43d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","CPU Hours: Total" -"Mathematical and Physical Sciences",317888.2653 -Engineering,216832.5278 -"Social, Behavioral, and Economic Sciences",163292.7964 -"Computer and Information Science and Engineering",74500.2678 -Geosciences,33498.1631 -"Biological Sciences",22127.0556 -Humanities/Arts,12416.7611 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index dfc86a43d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","CPU Hours: Total" -"Mathematical and Physical Sciences",317888.2653 -Engineering,216832.5278 -"Social, Behavioral, and Economic Sciences",163292.7964 -"Computer and Information Science and Engineering",74500.2678 -Geosciences,33498.1631 -"Biological Sciences",22127.0556 -Humanities/Arts,12416.7611 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6e723d47b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" -2016-12-22,203.3000,0,0,0,0,200.9567,0 -2016-12-23,296.6036,0,0,0,0,288.0000,0 -2016-12-24,312.0000,0,0,0,0,288.0000,0 -2016-12-25,490.2700,0,0,0,0,288.0000,0 -2016-12-26,1968.3333,0,0,0,0,288.0000,0 -2016-12-27,10481.8525,3739.4133,3.2167,0,0,1328.6622,0 -2016-12-28,53148.2378,23894.7644,24.0000,1304.6303,94.0111,3523.0667,0 -2016-12-29,91312.3128,56943.5956,1901.3108,13943.3047,2329.2153,4315.9531,516.0911 -2016-12-30,94225.0861,75804.5158,63888.1919,24507.1108,5069.4642,4653.8469,6971.0514 -2016-12-31,50138.7325,45772.2297,88804.5933,22598.4800,6887.4083,3398.5161,4629.6697 -2017-01-01,15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index fa28f127d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" -2016-12,302576.7286,206154.5189,154621.3128,62353.5258,14380.0989,18573.0017,12116.8122 -2017-01,15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e95ee302f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" -"2016 Q4",302576.7286,206154.5189,154621.3128,62353.5258,14380.0989,18573.0017,12116.8122 -"2017 Q1",15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3ba94e38df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical and Physical Sciences] CPU Hours: Total","[Engineering] CPU Hours: Total","[Social, Behavioral, and Economic Sciences] CPU Hours: Total","[Computer and Information Science and Engineering] CPU Hours: Total","[Geosciences] CPU Hours: Total","[Biological Sciences] CPU Hours: Total","[Humanities/Arts] CPU Hours: Total" -2016,302576.7286,206154.5189,154621.3128,62353.5258,14380.0989,18573.0017,12116.8122 -2017,15311.5367,10678.0089,8671.4836,12146.7419,19118.0642,3554.0539,299.9489 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1798446b91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Total" -"Biological Sciences",506.9128 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1798446b91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Total" -"Biological Sciences",506.9128 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1798446b91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Total" -"Biological Sciences",506.9128 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1798446b91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","GPU Hours: Total" -"Biological Sciences",506.9128 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9a13c6ba8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0.0000,0 -2016-12-23,48.0000,0,0,0,0,0.0000,0 -2016-12-24,48.0000,0,0,0,0,0.0000,0 -2016-12-25,48.0000,0,0,0,0,0.0000,0 -2016-12-26,48.0000,0,0,0,0,0.0000,0 -2016-12-27,48.0000,0,0.0000,0,0,0.0000,0.0000 -2016-12-28,48.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 1cd4a6e071..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 90a465292e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 9c88a5b018..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9230cb19b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Node Hours: Total" -"Computer and Information Science and Engineering",68003.8936 -Engineering,32639.6983 -"Mathematical and Physical Sciences",23625.9678 -"Social, Behavioral, and Economic Sciences",16956.7717 -Geosciences,10774.6956 -"Biological Sciences",3162.6878 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9230cb19b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Node Hours: Total" -"Computer and Information Science and Engineering",68003.8936 -Engineering,32639.6983 -"Mathematical and Physical Sciences",23625.9678 -"Social, Behavioral, and Economic Sciences",16956.7717 -Geosciences,10774.6956 -"Biological Sciences",3162.6878 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9230cb19b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Node Hours: Total" -"Computer and Information Science and Engineering",68003.8936 -Engineering,32639.6983 -"Mathematical and Physical Sciences",23625.9678 -"Social, Behavioral, and Economic Sciences",16956.7717 -Geosciences,10774.6956 -"Biological Sciences",3162.6878 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9230cb19b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Node Hours: Total" -"Computer and Information Science and Engineering",68003.8936 -Engineering,32639.6983 -"Mathematical and Physical Sciences",23625.9678 -"Social, Behavioral, and Economic Sciences",16956.7717 -Geosciences,10774.6956 -"Biological Sciences",3162.6878 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0d79eff31f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" -2016-12-22,0,0,16.9417,0,0,16.7464,0 -2016-12-23,0,0,32.6036,0,0,24.0000,0 -2016-12-24,0,0,48.0000,0,0,24.0000,0 -2016-12-25,0,0,56.5078,0,0,24.0000,0 -2016-12-26,0,0,133.5208,0,0,24.0000,0 -2016-12-27,0,311.6178,747.4278,3.2167,0,144.1300,0 -2016-12-28,996.9861,3790.5044,3382.0422,24.0000,4.7006,416.3833,0 -2016-12-29,12762.1014,8310.9622,6157.3483,328.7961,202.1281,719.3708,47.7900 -2016-12-30,22172.6036,11220.8083,7078.9369,6961.6367,3303.9342,941.2072,629.4331 -2016-12-31,20768.1517,6923.9883,4495.7325,8689.9142,5666.5222,414.3342,430.1536 -2017-01-01,11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 534ce8c75a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" -2016-12,56699.8428,30557.8811,22149.0617,16007.5636,9177.2850,2748.1719,1107.3767 -2017-01,11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 312c547914..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" -"2016 Q4",56699.8428,30557.8811,22149.0617,16007.5636,9177.2850,2748.1719,1107.3767 -"2017 Q1",11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index a605fbb2c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Computer and Information Science and Engineering] Node Hours: Total","[Engineering] Node Hours: Total","[Mathematical and Physical Sciences] Node Hours: Total","[Social, Behavioral, and Economic Sciences] Node Hours: Total","[Geosciences] Node Hours: Total","[Biological Sciences] Node Hours: Total","[Humanities/Arts] Node Hours: Total" -2016,56699.8428,30557.8811,22149.0617,16007.5636,9177.2850,2748.1719,1107.3767 -2017,11304.0508,2081.8172,1476.9061,949.2081,1597.4106,414.5158,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 809da632ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Total" -"Mathematical and Physical Sciences",169343.4094 -"Social, Behavioral, and Economic Sciences",114914.2053 -"Biological Sciences",8291.4383 -Geosciences,8164.0683 -Engineering,4751.8803 -"Computer and Information Science and Engineering",558.9144 -Humanities/Arts,321.4447 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 809da632ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Total" -"Mathematical and Physical Sciences",169343.4094 -"Social, Behavioral, and Economic Sciences",114914.2053 -"Biological Sciences",8291.4383 -Geosciences,8164.0683 -Engineering,4751.8803 -"Computer and Information Science and Engineering",558.9144 -Humanities/Arts,321.4447 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 809da632ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Total" -"Mathematical and Physical Sciences",169343.4094 -"Social, Behavioral, and Economic Sciences",114914.2053 -"Biological Sciences",8291.4383 -Geosciences,8164.0683 -Engineering,4751.8803 -"Computer and Information Science and Engineering",558.9144 -Humanities/Arts,321.4447 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 809da632ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wait Hours: Total" -"Mathematical and Physical Sciences",169343.4094 -"Social, Behavioral, and Economic Sciences",114914.2053 -"Biological Sciences",8291.4383 -Geosciences,8164.0683 -Engineering,4751.8803 -"Computer and Information Science and Engineering",558.9144 -Humanities/Arts,321.4447 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index dd78dd2798..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" -2016-12-22,9.3322,0,0.0003,0,0,0,0 -2016-12-23,9.5964,0,0.0000,0,0,0,0 -2016-12-24,0.0000,0,0.0000,0,0,0,0 -2016-12-25,110.8856,0,0.0000,0,0,0,0 -2016-12-26,0.0033,0,0.0000,0,0,0,0 -2016-12-27,248.8897,0.0000,1418.2278,0,311.1344,0,0 -2016-12-28,879.9194,0.0000,1403.6350,0.0003,1306.7875,7.9897,0 -2016-12-29,3082.2842,1974.4419,627.0644,25.7303,348.6094,34.1564,9.5847 -2016-12-30,163080.1036,28026.7236,1574.2136,1975.4678,83.7736,230.0950,311.8600 -2016-12-31,1878.7711,65081.0511,1440.5692,2070.8639,2670.8594,279.1428,0.0000 -2017-01-01,43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index b59a2b22e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" -2016-12,169299.7856,95082.2167,6463.7103,4072.0622,4721.1644,551.3839,321.4447 -2017-01,43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 34f4a1406c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" -"2016 Q4",169299.7856,95082.2167,6463.7103,4072.0622,4721.1644,551.3839,321.4447 -"2017 Q1",43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index ef9f54ac74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical and Physical Sciences] Wait Hours: Total","[Social, Behavioral, and Economic Sciences] Wait Hours: Total","[Biological Sciences] Wait Hours: Total","[Geosciences] Wait Hours: Total","[Engineering] Wait Hours: Total","[Computer and Information Science and Engineering] Wait Hours: Total","[Humanities/Arts] Wait Hours: Total" -2016,169299.7856,95082.2167,6463.7103,4072.0622,4721.1644,551.3839,321.4447 -2017,43.6239,19831.9886,1827.7281,4092.0061,30.7158,7.5306,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1ce61bb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Total" -"Computer and Information Science and Engineering",68001.8092 -Engineering,18506.3075 -"Social, Behavioral, and Economic Sciences",16630.3481 -"Mathematical and Physical Sciences",10964.6656 -Geosciences,10516.5478 -"Biological Sciences",2217.0956 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1ce61bb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Total" -"Computer and Information Science and Engineering",68001.8092 -Engineering,18506.3075 -"Social, Behavioral, and Economic Sciences",16630.3481 -"Mathematical and Physical Sciences",10964.6656 -Geosciences,10516.5478 -"Biological Sciences",2217.0956 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1ce61bb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Total" -"Computer and Information Science and Engineering",68001.8092 -Engineering,18506.3075 -"Social, Behavioral, and Economic Sciences",16630.3481 -"Mathematical and Physical Sciences",10964.6656 -Geosciences,10516.5478 -"Biological Sciences",2217.0956 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1ce61bb678..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Wall Hours: Total" -"Computer and Information Science and Engineering",68001.8092 -Engineering,18506.3075 -"Social, Behavioral, and Economic Sciences",16630.3481 -"Mathematical and Physical Sciences",10964.6656 -Geosciences,10516.5478 -"Biological Sciences",2217.0956 -Humanities/Arts,1140.0328 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index f5bbdcc673..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" -2016-12-22,0,0,0,16.9417,0,16.7464,0 -2016-12-23,0,0,0,32.6036,0,24.0000,0 -2016-12-24,0,0,0,48.0000,0,24.0000,0 -2016-12-25,0,0,0,56.5078,0,24.0000,0 -2016-12-26,0,0,0,133.5208,0,24.0000,0 -2016-12-27,0,38.9522,3.2167,374.4825,0,117.5319,0 -2016-12-28,996.9861,2191.3019,24.0000,1108.7717,4.7006,248.3833,0 -2016-12-29,12762.1014,4477.2714,303.7458,2302.3656,59.8644,551.3708,47.7900 -2016-12-30,22170.5192,6273.4908,6707.0317,3118.3981,3228.8894,734.7517,629.4331 -2016-12-31,20768.1517,4037.1194,8652.6142,2571.2625,5626.0944,237.1492,430.1536 -2017-01-01,11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6183051fbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" -2016-12,56697.7583,17018.1358,15690.6083,9762.8542,8919.5489,2001.9333,1107.3767 -2017-01,11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7b33fa2fc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" -"2016 Q4",56697.7583,17018.1358,15690.6083,9762.8542,8919.5489,2001.9333,1107.3767 -"2017 Q1",11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 290de0c1bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Computer and Information Science and Engineering] Wall Hours: Total","[Engineering] Wall Hours: Total","[Social, Behavioral, and Economic Sciences] Wall Hours: Total","[Mathematical and Physical Sciences] Wall Hours: Total","[Geosciences] Wall Hours: Total","[Biological Sciences] Wall Hours: Total","[Humanities/Arts] Wall Hours: Total" -2016,56697.7583,17018.1358,15690.6083,9762.8542,8919.5489,2001.9333,1107.3767 -2017,11304.0508,1488.1717,939.7397,1201.8114,1596.9989,215.1622,32.6561 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv deleted file mode 100644 index a603317019..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Screwdriver CPU Utilization (%)" -Engineering,8.0667 -"Mathematical and Physical Sciences",7.1986 -"Computer and Information Science and Engineering",7.0549 -"Social, Behavioral, and Economic Sciences",3.6978 -Geosciences,1.2032 -"Biological Sciences",1.0477 -Humanities/Arts,0.7186 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv deleted file mode 100644 index f41473c3ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Screwdriver CPU Utilization (%)" -Engineering,1.7509 -"Mathematical and Physical Sciences",1.5997 -"Computer and Information Science and Engineering",1.5217 -"Social, Behavioral, and Economic Sciences",0.8217 -Geosciences,0.2684 -"Biological Sciences",0.2505 -Humanities/Arts,0.1470 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index c22f37f754..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Screwdriver CPU Utilization (%)" -Engineering,0.7381 -"Computer and Information Science and Engineering",0.7055 -"Mathematical and Physical Sciences",0.6596 -"Social, Behavioral, and Economic Sciences",0.3388 -Geosciences,0.1137 -"Biological Sciences",0.1098 -Humanities/Arts,0.0628 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 1fa8f2e056..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Decanal Unit","Screwdriver CPU Utilization (%)" -"Computer and Information Science and Engineering",0.2016 -Engineering,0.1997 -"Mathematical and Physical Sciences",0.1764 -"Social, Behavioral, and Economic Sciences",0.0906 -Geosciences,0.0308 -"Biological Sciences",0.0303 -Humanities/Arts,0.0171 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv deleted file mode 100644 index f5cbe46e58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" -2016-12-22,0,0.2118,0,0,0,0.2093,0 -2016-12-23,0,0.3090,0,0,0,0.3000,0 -2016-12-24,0,0.3250,0,0,0,0.3000,0 -2016-12-25,0,0.5107,0,0,0,0.3000,0 -2016-12-26,0,1.0252,0,0,0,0.3000,0 -2016-12-27,3.8952,2.7296,0,0.0034,0,0.6920,0 -2016-12-28,24.8904,13.8407,1.3590,0.0250,0.0979,1.8349,0 -2016-12-29,19.7721,23.7792,14.5243,0.4951,0.8088,2.2479,0.2688 -2016-12-30,26.3210,19.6302,25.5282,13.3100,1.7602,2.4239,3.6308 -2016-12-31,15.8931,10.4456,23.5401,18.5010,2.3915,1.7701,2.4113 -2017-01-01,3.7076,3.1899,12.6529,1.8066,9.9573,1.8511,0.1562 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 93590cc5c0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" -2016-12,5.9651,6.0612,3.2476,3.0974,0.4048,0.6449,0.4854 -2017-01,0.1196,0.1029,0.4082,0.0583,0.3212,0.0597,0.0050 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 4a53db39cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Engineering] Screwdriver CPU Utilization (%)","[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" -"2016 Q4",5.9651,3.2476,6.0612,3.0974,0.4048,0.6449,0.4854 -"2017 Q1",0.0412,0.1406,0.0354,0.0201,0.1106,0.0206,0.0017 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 9696a1384f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/nsfdirectorate/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Decanal Unit" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Computer and Information Science and Engineering] Screwdriver CPU Utilization (%)","[Engineering] Screwdriver CPU Utilization (%)","[Mathematical and Physical Sciences] Screwdriver CPU Utilization (%)","[Social, Behavioral, and Economic Sciences] Screwdriver CPU Utilization (%)","[Geosciences] Screwdriver CPU Utilization (%)","[Biological Sciences] Screwdriver CPU Utilization (%)","[Humanities/Arts] Screwdriver CPU Utilization (%)" -2016,3.2476,5.9651,6.0612,3.0974,0.4048,0.6449,0.4854 -2017,0.0347,0.0102,0.0087,0.0049,0.0273,0.0051,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 7c30552d78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Users: Active" -"Astronomical Sciences",11 -Chemistry,6 -"Electrical and Communication Systems",6 -"Social and Economic Science",6 -"Earth Sciences",5 -"Molecular Biosciences",5 -"Mechanical and Structural Systems",4 -"Microelectronic Information Processing Systems",4 -Arts,3 -"Materials Research",3 -"Mathematical Sciences",3 -"Polar Programs",3 -"Design and Manufacturing Systems",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 7c30552d78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Users: Active" -"Astronomical Sciences",11 -Chemistry,6 -"Electrical and Communication Systems",6 -"Social and Economic Science",6 -"Earth Sciences",5 -"Molecular Biosciences",5 -"Mechanical and Structural Systems",4 -"Microelectronic Information Processing Systems",4 -Arts,3 -"Materials Research",3 -"Mathematical Sciences",3 -"Polar Programs",3 -"Design and Manufacturing Systems",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 7c30552d78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Users: Active" -"Astronomical Sciences",11 -Chemistry,6 -"Electrical and Communication Systems",6 -"Social and Economic Science",6 -"Earth Sciences",5 -"Molecular Biosciences",5 -"Mechanical and Structural Systems",4 -"Microelectronic Information Processing Systems",4 -Arts,3 -"Materials Research",3 -"Mathematical Sciences",3 -"Polar Programs",3 -"Design and Manufacturing Systems",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 7c30552d78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Users: Active" -"Astronomical Sciences",11 -Chemistry,6 -"Electrical and Communication Systems",6 -"Social and Economic Science",6 -"Earth Sciences",5 -"Molecular Biosciences",5 -"Mechanical and Structural Systems",4 -"Microelectronic Information Processing Systems",4 -Arts,3 -"Materials Research",3 -"Mathematical Sciences",3 -"Polar Programs",3 -"Design and Manufacturing Systems",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 9aee54cb69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" -2016-12-22,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,1,2,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-27,4,2,1,1,0,4,0,0,0,2,2,0,0,0,0,0,0,0 -2016-12-28,4,5,1,1,1,4,0,2,0,2,3,0,1,0,0,0,0,1 -2016-12-29,7,5,4,3,2,5,1,3,2,3,3,1,1,1,0,1,0,1 -2016-12-30,11,6,6,6,5,5,4,4,3,3,3,2,1,1,1,1,1,1 -2016-12-31,10,6,6,4,3,4,4,3,3,2,2,3,2,0,1,1,1,0 -2017-01-01,5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 9fabaffb83..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" -2016-12,11,6,6,6,5,5,4,4,3,3,3,3,2,1,1,1,1,1 -2017-01,5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 914f8568f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" -"2016 Q4",11,6,6,6,5,5,4,4,3,3,3,3,2,1,1,1,1,1 -"2017 Q1",5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 81f031f65c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Astronomical Sciences] Number of Users: Active","[Chemistry] Number of Users: Active","[Electrical and Communication Systems] Number of Users: Active","[Social and Economic Science] Number of Users: Active","[Earth Sciences] Number of Users: Active","[Molecular Biosciences] Number of Users: Active","[Mechanical and Structural Systems] Number of Users: Active","[Microelectronic Information Processing Systems] Number of Users: Active","[Arts] Number of Users: Active","[Materials Research] Number of Users: Active","[Mathematical Sciences] Number of Users: Active","[Polar Programs] Number of Users: Active","[Design and Manufacturing Systems] Number of Users: Active","[Atmospheric Sciences] Number of Users: Active","[Chemical, Thermal Systems] Number of Users: Active","[Computer and Computation Research] Number of Users: Active","[Environmental Biology] Number of Users: Active","[Physics] Number of Users: Active" -2016,11,6,6,6,5,5,4,4,3,3,3,3,2,1,1,1,1,1 -2017,5,5,5,3,2,3,3,2,2,0,2,2,2,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index e7789f8ef2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of PIs: Active" -"Earth Sciences",5 -"Social and Economic Science",4 -"Astronomical Sciences",3 -"Electrical and Communication Systems",3 -"Mathematical Sciences",3 -"Microelectronic Information Processing Systems",3 -"Molecular Biosciences",3 -"Polar Programs",3 -Chemistry,2 -"Design and Manufacturing Systems",2 -"Materials Research",2 -"Mechanical and Structural Systems",2 -Arts,1 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index e7789f8ef2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of PIs: Active" -"Earth Sciences",5 -"Social and Economic Science",4 -"Astronomical Sciences",3 -"Electrical and Communication Systems",3 -"Mathematical Sciences",3 -"Microelectronic Information Processing Systems",3 -"Molecular Biosciences",3 -"Polar Programs",3 -Chemistry,2 -"Design and Manufacturing Systems",2 -"Materials Research",2 -"Mechanical and Structural Systems",2 -Arts,1 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e7789f8ef2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of PIs: Active" -"Earth Sciences",5 -"Social and Economic Science",4 -"Astronomical Sciences",3 -"Electrical and Communication Systems",3 -"Mathematical Sciences",3 -"Microelectronic Information Processing Systems",3 -"Molecular Biosciences",3 -"Polar Programs",3 -Chemistry,2 -"Design and Manufacturing Systems",2 -"Materials Research",2 -"Mechanical and Structural Systems",2 -Arts,1 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index e7789f8ef2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of PIs: Active" -"Earth Sciences",5 -"Social and Economic Science",4 -"Astronomical Sciences",3 -"Electrical and Communication Systems",3 -"Mathematical Sciences",3 -"Microelectronic Information Processing Systems",3 -"Molecular Biosciences",3 -"Polar Programs",3 -Chemistry,2 -"Design and Manufacturing Systems",2 -"Materials Research",2 -"Mechanical and Structural Systems",2 -Arts,1 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Environmental Biology",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index fd738c89d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" -2016-12-22,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0 -2016-12-27,0,1,2,1,2,0,3,0,1,0,1,0,0,0,0,0,0,0 -2016-12-28,1,1,2,1,3,2,3,0,2,1,1,0,0,0,0,0,0,1 -2016-12-29,2,2,2,3,3,2,3,1,2,1,2,1,1,1,0,1,0,1 -2016-12-30,5,4,3,3,3,3,3,2,2,1,2,2,1,1,1,1,1,1 -2016-12-31,3,3,3,3,2,2,3,3,2,2,2,2,1,0,1,1,1,0 -2017-01-01,2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index e3262f2186..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" -2016-12,5,4,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1 -2017-01,2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 732bf2f8e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" -"2016 Q4",5,4,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1 -"2017 Q1",2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index a460afc588..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Earth Sciences] Number of PIs: Active","[Social and Economic Science] Number of PIs: Active","[Astronomical Sciences] Number of PIs: Active","[Electrical and Communication Systems] Number of PIs: Active","[Mathematical Sciences] Number of PIs: Active","[Microelectronic Information Processing Systems] Number of PIs: Active","[Molecular Biosciences] Number of PIs: Active","[Polar Programs] Number of PIs: Active","[Chemistry] Number of PIs: Active","[Design and Manufacturing Systems] Number of PIs: Active","[Materials Research] Number of PIs: Active","[Mechanical and Structural Systems] Number of PIs: Active","[Arts] Number of PIs: Active","[Atmospheric Sciences] Number of PIs: Active","[Chemical, Thermal Systems] Number of PIs: Active","[Computer and Computation Research] Number of PIs: Active","[Environmental Biology] Number of PIs: Active","[Physics] Number of PIs: Active" -2016,5,4,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1 -2017,2,2,2,3,2,2,2,2,2,2,0,1,1,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index dd459d5fc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Resources: Active" -"Social and Economic Science",5 -Chemistry,4 -"Astronomical Sciences",3 -"Materials Research",3 -"Polar Programs",3 -Arts,2 -"Earth Sciences",2 -"Electrical and Communication Systems",2 -"Mathematical Sciences",2 -"Molecular Biosciences",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Environmental Biology",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index dd459d5fc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Resources: Active" -"Social and Economic Science",5 -Chemistry,4 -"Astronomical Sciences",3 -"Materials Research",3 -"Polar Programs",3 -Arts,2 -"Earth Sciences",2 -"Electrical and Communication Systems",2 -"Mathematical Sciences",2 -"Molecular Biosciences",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Environmental Biology",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index dd459d5fc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Resources: Active" -"Social and Economic Science",5 -Chemistry,4 -"Astronomical Sciences",3 -"Materials Research",3 -"Polar Programs",3 -Arts,2 -"Earth Sciences",2 -"Electrical and Communication Systems",2 -"Mathematical Sciences",2 -"Molecular Biosciences",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Environmental Biology",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index dd459d5fc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Resources: Active" -"Social and Economic Science",5 -Chemistry,4 -"Astronomical Sciences",3 -"Materials Research",3 -"Polar Programs",3 -Arts,2 -"Earth Sciences",2 -"Electrical and Communication Systems",2 -"Mathematical Sciences",2 -"Molecular Biosciences",2 -"Atmospheric Sciences",1 -"Chemical, Thermal Systems",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Environmental Biology",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -Physics,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 61509e4a85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" -2016-12-22,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-23,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-24,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-25,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-26,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -2016-12-27,1,2,3,1,0,0,0,1,2,2,0,0,0,0,0,0,0,0 -2016-12-28,1,3,3,2,0,0,1,1,2,2,0,0,0,1,0,0,1,1 -2016-12-29,4,3,3,3,1,2,2,2,2,2,1,0,1,1,0,1,1,1 -2016-12-30,5,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2016-12-31,5,4,2,2,3,2,1,2,2,2,0,1,1,1,1,1,1,0 -2017-01-01,5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 75ca8d9f96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" -2016-12,5,4,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 5eedf721c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" -"2016 Q4",5,4,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 3a28a5d13a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social and Economic Science] Number of Resources: Active","[Chemistry] Number of Resources: Active","[Astronomical Sciences] Number of Resources: Active","[Materials Research] Number of Resources: Active","[Polar Programs] Number of Resources: Active","[Arts] Number of Resources: Active","[Earth Sciences] Number of Resources: Active","[Electrical and Communication Systems] Number of Resources: Active","[Mathematical Sciences] Number of Resources: Active","[Molecular Biosciences] Number of Resources: Active","[Atmospheric Sciences] Number of Resources: Active","[Chemical, Thermal Systems] Number of Resources: Active","[Computer and Computation Research] Number of Resources: Active","[Design and Manufacturing Systems] Number of Resources: Active","[Environmental Biology] Number of Resources: Active","[Mechanical and Structural Systems] Number of Resources: Active","[Microelectronic Information Processing Systems] Number of Resources: Active","[Physics] Number of Resources: Active" -2016,5,4,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,5,4,2,0,2,2,1,2,2,2,1,0,0,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 94579d8e09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index e9b9cde087..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e9b9cde087..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index e9b9cde087..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index a44bfbc2eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -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","[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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 64f20303ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -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","[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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7c7fc5dd0d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -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","[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/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 68f4eefe90..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Department" -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","[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/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1f11e82745..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Per Job" -"Molecular Biosciences",4.29587100 -Arts,0.00000000 -"Astronomical Sciences",0.00000000 -"Atmospheric Sciences",0.00000000 -"Chemical, Thermal Systems",0.00000000 -Chemistry,0.00000000 -"Computer and Computation Research",0.00000000 -"Design and Manufacturing Systems",0.00000000 -"Earth Sciences",0.00000000 -"Electrical and Communication Systems",0.00000000 -"Environmental Biology",0.00000000 -"Materials Research",0.00000000 -"Mathematical Sciences",0.00000000 -"Mechanical and Structural Systems",0.00000000 -"Microelectronic Information Processing Systems",0.00000000 -Physics,0.00000000 -"Polar Programs",0.00000000 -"Social and Economic Science",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1f11e82745..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Per Job" -"Molecular Biosciences",4.29587100 -Arts,0.00000000 -"Astronomical Sciences",0.00000000 -"Atmospheric Sciences",0.00000000 -"Chemical, Thermal Systems",0.00000000 -Chemistry,0.00000000 -"Computer and Computation Research",0.00000000 -"Design and Manufacturing Systems",0.00000000 -"Earth Sciences",0.00000000 -"Electrical and Communication Systems",0.00000000 -"Environmental Biology",0.00000000 -"Materials Research",0.00000000 -"Mathematical Sciences",0.00000000 -"Mechanical and Structural Systems",0.00000000 -"Microelectronic Information Processing Systems",0.00000000 -Physics,0.00000000 -"Polar Programs",0.00000000 -"Social and Economic Science",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1f11e82745..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Per Job" -"Molecular Biosciences",4.29587100 -Arts,0.00000000 -"Astronomical Sciences",0.00000000 -"Atmospheric Sciences",0.00000000 -"Chemical, Thermal Systems",0.00000000 -Chemistry,0.00000000 -"Computer and Computation Research",0.00000000 -"Design and Manufacturing Systems",0.00000000 -"Earth Sciences",0.00000000 -"Electrical and Communication Systems",0.00000000 -"Environmental Biology",0.00000000 -"Materials Research",0.00000000 -"Mathematical Sciences",0.00000000 -"Mechanical and Structural Systems",0.00000000 -"Microelectronic Information Processing Systems",0.00000000 -Physics,0.00000000 -"Polar Programs",0.00000000 -"Social and Economic Science",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1f11e82745..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Per Job" -"Molecular Biosciences",4.29587100 -Arts,0.00000000 -"Astronomical Sciences",0.00000000 -"Atmospheric Sciences",0.00000000 -"Chemical, Thermal Systems",0.00000000 -Chemistry,0.00000000 -"Computer and Computation Research",0.00000000 -"Design and Manufacturing Systems",0.00000000 -"Earth Sciences",0.00000000 -"Electrical and Communication Systems",0.00000000 -"Environmental Biology",0.00000000 -"Materials Research",0.00000000 -"Mathematical Sciences",0.00000000 -"Mechanical and Structural Systems",0.00000000 -"Microelectronic Information Processing Systems",0.00000000 -Physics,0.00000000 -"Polar Programs",0.00000000 -"Social and Economic Science",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9b76c8902b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0 -2016-12-27,6.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0.00000000 -2016-12-28,3.69230769,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000 -2016-12-29,0.73846154,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-30,0.56470588,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,2.18181818,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 -2017-01-01,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3aa4290c0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" -2016-12,5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 74c9a62d72..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" -"2016 Q4",5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3ced5c691c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" -2016,5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 848a858eef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Molecular Biosciences",0.0339,0.023765720058417587 -Arts,0.0000,0 -"Astronomical Sciences",0.0000,0 -"Atmospheric Sciences",0.0000,0 -"Chemical, Thermal Systems",0.0000,0 -Chemistry,0.0000,0 -"Computer and Computation Research",0.0000,0 -"Design and Manufacturing Systems",0.0000,0 -"Earth Sciences",0.0000,0 -"Electrical and Communication Systems",0.0000,0 -"Environmental Biology",0.0000,0 -"Materials Research",0.0000,0 -"Mathematical Sciences",0.0000,0 -"Mechanical and Structural Systems",0.0000,0 -"Microelectronic Information Processing Systems",0.0000,0 -Physics,0.0000,0 -"Polar Programs",0.0000,0 -"Social and Economic Science",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 848a858eef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Molecular Biosciences",0.0339,0.023765720058417587 -Arts,0.0000,0 -"Astronomical Sciences",0.0000,0 -"Atmospheric Sciences",0.0000,0 -"Chemical, Thermal Systems",0.0000,0 -Chemistry,0.0000,0 -"Computer and Computation Research",0.0000,0 -"Design and Manufacturing Systems",0.0000,0 -"Earth Sciences",0.0000,0 -"Electrical and Communication Systems",0.0000,0 -"Environmental Biology",0.0000,0 -"Materials Research",0.0000,0 -"Mathematical Sciences",0.0000,0 -"Mechanical and Structural Systems",0.0000,0 -"Microelectronic Information Processing Systems",0.0000,0 -Physics,0.0000,0 -"Polar Programs",0.0000,0 -"Social and Economic Science",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 848a858eef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Molecular Biosciences",0.0339,0.023765720058417587 -Arts,0.0000,0 -"Astronomical Sciences",0.0000,0 -"Atmospheric Sciences",0.0000,0 -"Chemical, Thermal Systems",0.0000,0 -Chemistry,0.0000,0 -"Computer and Computation Research",0.0000,0 -"Design and Manufacturing Systems",0.0000,0 -"Earth Sciences",0.0000,0 -"Electrical and Communication Systems",0.0000,0 -"Environmental Biology",0.0000,0 -"Materials Research",0.0000,0 -"Mathematical Sciences",0.0000,0 -"Mechanical and Structural Systems",0.0000,0 -"Microelectronic Information Processing Systems",0.0000,0 -Physics,0.0000,0 -"Polar Programs",0.0000,0 -"Social and Economic Science",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 848a858eef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Molecular Biosciences",0.0339,0.023765720058417587 -Arts,0.0000,0 -"Astronomical Sciences",0.0000,0 -"Atmospheric Sciences",0.0000,0 -"Chemical, Thermal Systems",0.0000,0 -Chemistry,0.0000,0 -"Computer and Computation Research",0.0000,0 -"Design and Manufacturing Systems",0.0000,0 -"Earth Sciences",0.0000,0 -"Electrical and Communication Systems",0.0000,0 -"Environmental Biology",0.0000,0 -"Materials Research",0.0000,0 -"Mathematical Sciences",0.0000,0 -"Mechanical and Structural Systems",0.0000,0 -"Microelectronic Information Processing Systems",0.0000,0 -Physics,0.0000,0 -"Polar Programs",0.0000,0 -"Social and Economic Science",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index c857a095b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 -2016-12-27,0.2500,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 -2016-12-28,0.1538,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 -2016-12-29,0.0308,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,0.0235,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0909,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2017-01-01,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index e77c58952e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" -2016-12,0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 52ce68583a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" -"2016 Q4",0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 0a73cb0dc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" -2016,0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 76c17d3a33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By CPU Hours (Core Count)" -"Chemical, Thermal Systems",326.9898 -"Atmospheric Sciences",160.0000 -Chemistry,128.2687 -"Mechanical and Structural Systems",111.3630 -"Electrical and Communication Systems",94.4593 -"Materials Research",65.7034 -"Environmental Biology",57.7053 -"Astronomical Sciences",47.1669 -"Molecular Biosciences",29.3971 -"Polar Programs",14.5813 -"Mathematical Sciences",13.5488 -Physics,12.0000 -Arts,11.8252 -"Social and Economic Science",10.8677 -"Design and Manufacturing Systems",6.6809 -"Earth Sciences",6.2418 -"Microelectronic Information Processing Systems",1.7650 -"Computer and Computation Research",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 76c17d3a33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By CPU Hours (Core Count)" -"Chemical, Thermal Systems",326.9898 -"Atmospheric Sciences",160.0000 -Chemistry,128.2687 -"Mechanical and Structural Systems",111.3630 -"Electrical and Communication Systems",94.4593 -"Materials Research",65.7034 -"Environmental Biology",57.7053 -"Astronomical Sciences",47.1669 -"Molecular Biosciences",29.3971 -"Polar Programs",14.5813 -"Mathematical Sciences",13.5488 -Physics,12.0000 -Arts,11.8252 -"Social and Economic Science",10.8677 -"Design and Manufacturing Systems",6.6809 -"Earth Sciences",6.2418 -"Microelectronic Information Processing Systems",1.7650 -"Computer and Computation Research",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 76c17d3a33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By CPU Hours (Core Count)" -"Chemical, Thermal Systems",326.9898 -"Atmospheric Sciences",160.0000 -Chemistry,128.2687 -"Mechanical and Structural Systems",111.3630 -"Electrical and Communication Systems",94.4593 -"Materials Research",65.7034 -"Environmental Biology",57.7053 -"Astronomical Sciences",47.1669 -"Molecular Biosciences",29.3971 -"Polar Programs",14.5813 -"Mathematical Sciences",13.5488 -Physics,12.0000 -Arts,11.8252 -"Social and Economic Science",10.8677 -"Design and Manufacturing Systems",6.6809 -"Earth Sciences",6.2418 -"Microelectronic Information Processing Systems",1.7650 -"Computer and Computation Research",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 76c17d3a33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By CPU Hours (Core Count)" -"Chemical, Thermal Systems",326.9898 -"Atmospheric Sciences",160.0000 -Chemistry,128.2687 -"Mechanical and Structural Systems",111.3630 -"Electrical and Communication Systems",94.4593 -"Materials Research",65.7034 -"Environmental Biology",57.7053 -"Astronomical Sciences",47.1669 -"Molecular Biosciences",29.3971 -"Polar Programs",14.5813 -"Mathematical Sciences",13.5488 -Physics,12.0000 -Arts,11.8252 -"Social and Economic Science",10.8677 -"Design and Manufacturing Systems",6.6809 -"Earth Sciences",6.2418 -"Microelectronic Information Processing Systems",1.7650 -"Computer and Computation Research",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index dde65078f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,0,12.0000,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,12.0000,0,0,0,0,1.0000,12.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,12.0000,0,0,0,0,1.0000,12.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,15.9210,0,0,0,0,1.0000,12.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,20.0000,0,0,0,0,1.0000,12.0000,0,16.0000,0,0,0,0,0,0,0 -2016-12-27,0,0,22.5565,0,96.0000,110.0862,0,58.2272,19.8357,0,15.9632,0,0,1.0000,0,0,0,0 -2016-12-28,0,0,146.7685,0,96.0000,87.9948,0,43.0772,33.0691,0,15.3614,12.0000,0,1.0000,1.0000,20.0000,2.8865,0 -2016-12-29,0,160.0000,141.7754,112.0000,95.9456,65.2945,0,47.7147,28.0857,40.0000,14.9544,12.0000,11.5552,10.2034,1.0000,18.5337,1.6782,1.0000 -2016-12-30,320.0517,160.0000,138.9738,111.6728,94.9365,54.3936,65.8038,40.9495,28.3785,36.0526,15.0028,12.0000,11.8713,10.9005,1.0000,4.0431,1.9041,1.0000 -2016-12-31,336.0000,0,99.3288,111.0872,90.9081,37.7420,95.7214,50.6854,34.6323,34.2349,11.9136,0,11.8540,10.8898,13.5207,6.2480,1.7162,1.0000 -2017-01-01,0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index d6f1af4aea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,326.9898,160.0000,132.5250,111.5740,94.6650,65.7034,71.6000,46.2364,28.5024,37.1250,14.0136,12.0000,11.8512,10.8841,5.4428,6.2382,1.8060,1.0000 -2017-01,0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e90ccbe7ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",326.9898,160.0000,132.5250,111.5740,94.6650,65.7034,71.6000,46.2364,28.5024,37.1250,14.0136,12.0000,11.8512,10.8841,5.4428,6.2382,1.8060,1.0000 -"2017 Q1",0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 4ecb19b74c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chemical, Thermal Systems] Job Size: Weighted By CPU Hours (Core Count)","[Atmospheric Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Chemistry] Job Size: Weighted By CPU Hours (Core Count)","[Mechanical and Structural Systems] Job Size: Weighted By CPU Hours (Core Count)","[Electrical and Communication Systems] Job Size: Weighted By CPU Hours (Core Count)","[Materials Research] Job Size: Weighted By CPU Hours (Core Count)","[Environmental Biology] Job Size: Weighted By CPU Hours (Core Count)","[Astronomical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Molecular Biosciences] Job Size: Weighted By CPU Hours (Core Count)","[Polar Programs] Job Size: Weighted By CPU Hours (Core Count)","[Mathematical Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Physics] Job Size: Weighted By CPU Hours (Core Count)","[Arts] Job Size: Weighted By CPU Hours (Core Count)","[Social and Economic Science] Job Size: Weighted By CPU Hours (Core Count)","[Design and Manufacturing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Earth Sciences] Job Size: Weighted By CPU Hours (Core Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By CPU Hours (Core Count)","[Computer and Computation Research] Job Size: Weighted By CPU Hours (Core Count)" -2016,326.9898,160.0000,132.5250,111.5740,94.6650,65.7034,71.6000,46.2364,28.5024,37.1250,14.0136,12.0000,11.8512,10.8841,5.4428,6.2382,1.8060,1.0000 -2017,0,160.0000,14.4798,1.0000,90.0978,0,47.3679,55.6210,35.3735,11.9990,10.2559,0,10.7741,10.5763,13.8313,7.4372,1.5550,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index e02c6167cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By GPU Hours (GPU Count)" -"Molecular Biosciences",12.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index e02c6167cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By GPU Hours (GPU Count)" -"Molecular Biosciences",12.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e02c6167cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By GPU Hours (GPU Count)" -"Molecular Biosciences",12.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index e02c6167cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Weighted By GPU Hours (GPU Count)" -"Molecular Biosciences",12.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 91d6b102b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 -2016-12-27,12.0000,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 -2016-12-28,12.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 -2016-12-29,12.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2017-01-01,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index fe408b10ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 74da5e79d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 83c979fb0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9158b6ffca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index bef0ae140a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index bef0ae140a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index bef0ae140a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index a9f081b985..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Department" -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","[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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3bfb48928c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3c6a53e903..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 02031bcb99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 0350a801f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -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/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 0350a801f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -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/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 0350a801f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -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/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 0350a801f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -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/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index f35c2d242a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -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)","[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/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 76f3c57b8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,224.0000,160.0000,48.8800,24.9310,21.3595,12.0000,11.0909,10.9231,14.8750,3.0909,9.0258,8.5125,5.1703,4.6022,1.6678,1.4181,1.1442,1.0000 -2017-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/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 667273b18b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",224.0000,160.0000,48.8800,24.9310,21.3595,12.0000,11.0909,10.9231,14.8750,3.0909,9.0258,8.5125,5.1703,4.6022,1.6678,1.4181,1.1442,1.0000 -"2017 Q1",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/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 4bf55734e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,224.0000,160.0000,48.8800,24.9310,21.3595,12.0000,11.0909,10.9231,14.8750,3.0909,9.0258,8.5125,5.1703,4.6022,1.6678,1.4181,1.1442,1.0000 -2017,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/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index f7af99c4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Astronomical Sciences",206.38288882,2.4291502902979274 -"Molecular Biosciences",44.58446092,9.807106639983111 -"Materials Research",33.61029775,1.730173782416776 -"Atmospheric Sciences",31.02180556,3.7428536858056267 -"Electrical and Communication Systems",29.16013458,2.208287142540563 -"Environmental Biology",12.67979893,0.790292910753799 -"Chemical, Thermal Systems",6.67768519,0.98851049021015 -Arts,4.87037458,0.44747381160758987 -"Polar Programs",4.57691764,0.1895661574730915 -"Earth Sciences",3.81717768,0.08631664004435641 -Physics,3.72481481,0.0007211928415468717 -"Social and Economic Science",1.99144263,0.025430337208220542 -"Mathematical Sciences",1.30868803,0.25716865971163017 -"Computer and Computation Research",0.32390278,0.2312398274998169 -"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 -"Design and Manufacturing Systems",0.11687785,0.028203321818092885 -Chemistry,0.06359074,0.014028715326432175 -"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index f7af99c4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Astronomical Sciences",206.38288882,2.4291502902979274 -"Molecular Biosciences",44.58446092,9.807106639983111 -"Materials Research",33.61029775,1.730173782416776 -"Atmospheric Sciences",31.02180556,3.7428536858056267 -"Electrical and Communication Systems",29.16013458,2.208287142540563 -"Environmental Biology",12.67979893,0.790292910753799 -"Chemical, Thermal Systems",6.67768519,0.98851049021015 -Arts,4.87037458,0.44747381160758987 -"Polar Programs",4.57691764,0.1895661574730915 -"Earth Sciences",3.81717768,0.08631664004435641 -Physics,3.72481481,0.0007211928415468717 -"Social and Economic Science",1.99144263,0.025430337208220542 -"Mathematical Sciences",1.30868803,0.25716865971163017 -"Computer and Computation Research",0.32390278,0.2312398274998169 -"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 -"Design and Manufacturing Systems",0.11687785,0.028203321818092885 -Chemistry,0.06359074,0.014028715326432175 -"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f7af99c4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Astronomical Sciences",206.38288882,2.4291502902979274 -"Molecular Biosciences",44.58446092,9.807106639983111 -"Materials Research",33.61029775,1.730173782416776 -"Atmospheric Sciences",31.02180556,3.7428536858056267 -"Electrical and Communication Systems",29.16013458,2.208287142540563 -"Environmental Biology",12.67979893,0.790292910753799 -"Chemical, Thermal Systems",6.67768519,0.98851049021015 -Arts,4.87037458,0.44747381160758987 -"Polar Programs",4.57691764,0.1895661574730915 -"Earth Sciences",3.81717768,0.08631664004435641 -Physics,3.72481481,0.0007211928415468717 -"Social and Economic Science",1.99144263,0.025430337208220542 -"Mathematical Sciences",1.30868803,0.25716865971163017 -"Computer and Computation Research",0.32390278,0.2312398274998169 -"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 -"Design and Manufacturing Systems",0.11687785,0.028203321818092885 -Chemistry,0.06359074,0.014028715326432175 -"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index f7af99c4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Astronomical Sciences",206.38288882,2.4291502902979274 -"Molecular Biosciences",44.58446092,9.807106639983111 -"Materials Research",33.61029775,1.730173782416776 -"Atmospheric Sciences",31.02180556,3.7428536858056267 -"Electrical and Communication Systems",29.16013458,2.208287142540563 -"Environmental Biology",12.67979893,0.790292910753799 -"Chemical, Thermal Systems",6.67768519,0.98851049021015 -Arts,4.87037458,0.44747381160758987 -"Polar Programs",4.57691764,0.1895661574730915 -"Earth Sciences",3.81717768,0.08631664004435641 -Physics,3.72481481,0.0007211928415468717 -"Social and Economic Science",1.99144263,0.025430337208220542 -"Mathematical Sciences",1.30868803,0.25716865971163017 -"Computer and Computation Research",0.32390278,0.2312398274998169 -"Microelectronic Information Processing Systems",0.20713775,0.015463598934236437 -"Design and Manufacturing Systems",0.11687785,0.028203321818092885 -Chemistry,0.06359074,0.014028715326432175 -"Mechanical and Structural Systems",0.00016606,0.000023797091252046995 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3a487637b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" -2016-12-22,0,0.00027778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.33222222,0 -2016-12-23,9.59638889,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0 -2016-12-24,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0 -2016-12-25,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.96185185,0 -2016-12-26,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0.00000000,0 -2016-12-27,12.68148148,202.60396825,57.59064815,0,103.71148148,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00288889,0 -2016-12-28,36.87611111,280.72700000,80.35419753,0,108.01750000,0,0,0,0,0.00027778,3.72481481,0.00000000,3.31159722,0,0.04097293,0.07195578,2.82994444,0 -2016-12-29,135.82563889,12.05893162,15.12413889,25.72861111,28.72319444,0,0,0.87133838,0.00166667,0.00000000,0.00000000,7.71266385,4.46097222,0.01788889,0.04361965,0.04464331,1.33660948,0.00062500 -2016-12-30,222.28495351,20.19094444,31.96192488,0.00000000,4.72822650,13.00438580,6.67768519,5.77518519,1.70461755,2.52425159,0.00000000,1.34893024,0.38944444,0.42590741,0.32705612,0.13344771,0.02573029,0.00015625 -2016-12-31,2.86747685,175.87315972,33.49272778,0,25.24681217,3.35838889,0.00000000,0.00000000,0.02094444,7.18759066,0,2.80449242,0.00626263,0.00000000,0.35112299,0.43350242,0.03718570,0.00010913 -2017-01-01,1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 98170bb911..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" -2016-12,207.94704539,56.55625448,33.61029775,25.72861111,32.16831034,12.03978611,6.67768519,4.87037458,1.07689141,3.82833875,3.72481481,2.14923636,1.30868803,0.32390278,0.22195757,0.12320749,0.06183072,0.00016493 -2017-01,1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 45e97dc0ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" -"2016 Q4",207.94704539,56.55625448,33.61029775,25.72861111,32.16831034,12.03978611,6.67768519,4.87037458,1.07689141,3.82833875,3.72481481,2.14923636,1.30868803,0.32390278,0.22195757,0.12320749,0.06183072,0.00016493 -"2017 Q1",1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index f44c89bbcc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Astronomical Sciences] Wait Hours: Per Job","[Molecular Biosciences] Wait Hours: Per Job","[Materials Research] Wait Hours: Per Job","[Atmospheric Sciences] Wait Hours: Per Job","[Electrical and Communication Systems] Wait Hours: Per Job","[Environmental Biology] Wait Hours: Per Job","[Chemical, Thermal Systems] Wait Hours: Per Job","[Arts] Wait Hours: Per Job","[Polar Programs] Wait Hours: Per Job","[Earth Sciences] Wait Hours: Per Job","[Physics] Wait Hours: Per Job","[Social and Economic Science] Wait Hours: Per Job","[Mathematical Sciences] Wait Hours: Per Job","[Computer and Computation Research] Wait Hours: Per Job","[Microelectronic Information Processing Systems] Wait Hours: Per Job","[Design and Manufacturing Systems] Wait Hours: Per Job","[Chemistry] Wait Hours: Per Job","[Mechanical and Structural Systems] Wait Hours: Per Job" -2016,207.94704539,56.55625448,33.61029775,25.72861111,32.16831034,12.03978611,6.67768519,4.87037458,1.07689141,3.82833875,3.72481481,2.14923636,1.30868803,0.32390278,0.22195757,0.12320749,0.06183072,0.00016493 -2017,1.21768519,0.04938889,0,36.31500000,1.89854167,13.14023981,0,0.00000000,5.05697111,0.00009259,0,1.47296410,0.00000000,0,0.03552149,0.01760234,0.09336190,0.00016865 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 129b1df1e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Mathematical Sciences",50.44206410, -"Design and Manufacturing Systems",49.15940063, -Physics,44.13648148, -"Microelectronic Information Processing Systems",25.45968035, -"Molecular Biosciences",18.40561205, -Arts,17.27322391, -"Electrical and Communication Systems",16.57502415, -"Chemical, Thermal Systems",15.43750000,2.949516142225878 -"Materials Research",9.15687182,0.6454421230974878 -"Earth Sciences",8.48227702, -"Computer and Computation Research",5.04208333,1.412736659063767 -"Atmospheric Sciences",4.51402778,1.3866381241776238 -"Mechanical and Structural Systems",2.25963164,0.3305676586108775 -"Astronomical Sciences",2.09553699,0.18634770348231622 -"Polar Programs",1.95093933,0.05491474812292802 -Chemistry,0.64439083,0.03401091518206925 -"Social and Economic Science",0.28820096,0.0031231359871834977 -"Environmental Biology",0.18926081,0.027954377835160745 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1c948e9883..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Mathematical Sciences",50.44206410, -"Design and Manufacturing Systems",49.15940063,1.0910353513705056 -Physics,44.13648148,3.8863777173028686 -"Microelectronic Information Processing Systems",25.45968035,0.10340711182738624 -"Molecular Biosciences",18.40561205,2.6523848250332356 -Arts,17.27322391,1.2812633375632778 -"Electrical and Communication Systems",16.57502415,1.675444082244451 -"Chemical, Thermal Systems",15.43750000,9.334819660458281 -"Materials Research",9.15687182,1.3644148657479764 -"Earth Sciences",8.48227702,0.06190189958135605 -"Computer and Computation Research",5.04208333,1.9381499596292342 -"Atmospheric Sciences",4.51402778,3.1765790052054 -"Mechanical and Structural Systems",2.25963164,0.45223146995766755 -"Astronomical Sciences",2.09553699,0.37523899443145664 -"Polar Programs",1.95093933,0.06980480406246423 -Chemistry,0.64439083,0.06267511493298365 -"Social and Economic Science",0.28820096,0.004430889448528951 -"Environmental Biology",0.18926081,0.027954377835160745 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1c948e9883..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Mathematical Sciences",50.44206410, -"Design and Manufacturing Systems",49.15940063,1.0910353513705056 -Physics,44.13648148,3.8863777173028686 -"Microelectronic Information Processing Systems",25.45968035,0.10340711182738624 -"Molecular Biosciences",18.40561205,2.6523848250332356 -Arts,17.27322391,1.2812633375632778 -"Electrical and Communication Systems",16.57502415,1.675444082244451 -"Chemical, Thermal Systems",15.43750000,9.334819660458281 -"Materials Research",9.15687182,1.3644148657479764 -"Earth Sciences",8.48227702,0.06190189958135605 -"Computer and Computation Research",5.04208333,1.9381499596292342 -"Atmospheric Sciences",4.51402778,3.1765790052054 -"Mechanical and Structural Systems",2.25963164,0.45223146995766755 -"Astronomical Sciences",2.09553699,0.37523899443145664 -"Polar Programs",1.95093933,0.06980480406246423 -Chemistry,0.64439083,0.06267511493298365 -"Social and Economic Science",0.28820096,0.004430889448528951 -"Environmental Biology",0.18926081,0.027954377835160745 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1c948e9883..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Mathematical Sciences",50.44206410, -"Design and Manufacturing Systems",49.15940063,1.0910353513705056 -Physics,44.13648148,3.8863777173028686 -"Microelectronic Information Processing Systems",25.45968035,0.10340711182738624 -"Molecular Biosciences",18.40561205,2.6523848250332356 -Arts,17.27322391,1.2812633375632778 -"Electrical and Communication Systems",16.57502415,1.675444082244451 -"Chemical, Thermal Systems",15.43750000,9.334819660458281 -"Materials Research",9.15687182,1.3644148657479764 -"Earth Sciences",8.48227702,0.06190189958135605 -"Computer and Computation Research",5.04208333,1.9381499596292342 -"Atmospheric Sciences",4.51402778,3.1765790052054 -"Mechanical and Structural Systems",2.25963164,0.45223146995766755 -"Astronomical Sciences",2.09553699,0.37523899443145664 -"Polar Programs",1.95093933,0.06980480406246423 -Chemistry,0.64439083,0.06267511493298365 -"Social and Economic Science",0.28820096,0.004430889448528951 -"Environmental Biology",0.18926081,0.027954377835160745 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index aa1bb64aca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" -2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0 -2016-12-23,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,8.60361111,0,24.00000000,0,0 -2016-12-24,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,24.00000000,0,0 -2016-12-25,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,8.12694444,0,0 -2016-12-26,2.70416667,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,24.00000000,0,0 -2016-12-27,20.78689815,0,0,0,14.69149306,0,12.98407407,0,20.49703704,0,0,0,0,10.42293651,0,8.23638889,3.21666667,0 -2016-12-28,7.55612179,13.35268330,5.03972222,5.11274929,19.10641026,0,15.23050000,0,14.10152778,4.70055556,0,0,0,22.59725694,0,18.86886015,24.00000000,0 -2016-12-29,23.92517593,16.60273286,24.00000000,13.06557690,8.48262821,4.34454545,20.77597737,0,13.66271701,17.20041667,2.01966667,6.48888889,3.66944444,9.35722222,18.97472222,12.91112875,1.18189040,0 -2016-12-30,17.43217014,21.71949405,15.09675926,13.30626941,8.49330392,9.68358547,16.53400000,9.78120370,5.30866235,4.19277326,4.10559722,2.51750000,3.04096451,0.91902722,1.88721825,0.33013860,0.31886620,0.14245370 -2016-12-31,23.19598639,11.02771149,0,12.51327322,10.71203283,15.93161523,8.15699612,16.96888889,2.21777116,5.54529872,8.63138889,0,1.76819444,6.16083333,0.88861789,0.34603937,0.36858846,0.14844444 -2017-01-01,11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6066ff3f57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" -2016-12,42.25983761,47.81582215,44.13648148,23.05373388,21.37234468,16.77843434,17.53085249,15.43750000,9.15687182,8.50197775,5.04208333,9.00638889,2.82398003,2.01048779,1.70466667,0.59275076,0.35467017,0.14305278 -2017-01,11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index cdb1c436b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" -"2016 Q4",42.25983761,47.81582215,44.13648148,23.05373388,21.37234468,16.77843434,17.53085249,15.43750000,9.15687182,8.50197775,5.04208333,9.00638889,2.82398003,2.01048779,1.70466667,0.59275076,0.35467017,0.14305278 -"2017 Q1",11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index c0524b1ea6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Mathematical Sciences] Wall Hours: Per Job","[Design and Manufacturing Systems] Wall Hours: Per Job","[Physics] Wall Hours: Per Job","[Microelectronic Information Processing Systems] Wall Hours: Per Job","[Molecular Biosciences] Wall Hours: Per Job","[Arts] Wall Hours: Per Job","[Electrical and Communication Systems] Wall Hours: Per Job","[Chemical, Thermal Systems] Wall Hours: Per Job","[Materials Research] Wall Hours: Per Job","[Earth Sciences] Wall Hours: Per Job","[Computer and Computation Research] Wall Hours: Per Job","[Atmospheric Sciences] Wall Hours: Per Job","[Mechanical and Structural Systems] Wall Hours: Per Job","[Astronomical Sciences] Wall Hours: Per Job","[Polar Programs] Wall Hours: Per Job","[Chemistry] Wall Hours: Per Job","[Social and Economic Science] Wall Hours: Per Job","[Environmental Biology] Wall Hours: Per Job" -2016,42.25983761,47.81582215,44.13648148,23.05373388,21.37234468,16.77843434,17.53085249,15.43750000,9.15687182,8.50197775,5.04208333,9.00638889,2.82398003,2.01048779,1.70466667,0.59275076,0.35467017,0.14305278 -2017,11.08009838,12.95548544,0,11.46455460,5.41865196,6.53122222,4.52161706,0,0,1.74462963,0,0.02166667,0.96969246,7.22790404,1.95545864,1.44014566,0.06733589,0.22250400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 86dba5f1d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"User Expansion Factor" -"Environmental Biology",69.2703 -"Astronomical Sciences",49.2958 -"Atmospheric Sciences",7.8723 -"Social and Economic Science",7.5872 -"Polar Programs",3.2814 -"Materials Research",2.7638 -"Molecular Biosciences",2.7490 -"Electrical and Communication Systems",2.2611 -"Earth Sciences",1.4482 -"Chemical, Thermal Systems",1.3348 -Arts,1.2820 -Physics,1.0844 -"Computer and Computation Research",1.0642 -Chemistry,1.0463 -"Mathematical Sciences",1.0259 -"Microelectronic Information Processing Systems",1.0081 -"Design and Manufacturing Systems",1.0036 -"Mechanical and Structural Systems",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 86dba5f1d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"User Expansion Factor" -"Environmental Biology",69.2703 -"Astronomical Sciences",49.2958 -"Atmospheric Sciences",7.8723 -"Social and Economic Science",7.5872 -"Polar Programs",3.2814 -"Materials Research",2.7638 -"Molecular Biosciences",2.7490 -"Electrical and Communication Systems",2.2611 -"Earth Sciences",1.4482 -"Chemical, Thermal Systems",1.3348 -Arts,1.2820 -Physics,1.0844 -"Computer and Computation Research",1.0642 -Chemistry,1.0463 -"Mathematical Sciences",1.0259 -"Microelectronic Information Processing Systems",1.0081 -"Design and Manufacturing Systems",1.0036 -"Mechanical and Structural Systems",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 86dba5f1d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"User Expansion Factor" -"Environmental Biology",69.2703 -"Astronomical Sciences",49.2958 -"Atmospheric Sciences",7.8723 -"Social and Economic Science",7.5872 -"Polar Programs",3.2814 -"Materials Research",2.7638 -"Molecular Biosciences",2.7490 -"Electrical and Communication Systems",2.2611 -"Earth Sciences",1.4482 -"Chemical, Thermal Systems",1.3348 -Arts,1.2820 -Physics,1.0844 -"Computer and Computation Research",1.0642 -Chemistry,1.0463 -"Mathematical Sciences",1.0259 -"Microelectronic Information Processing Systems",1.0081 -"Design and Manufacturing Systems",1.0036 -"Mechanical and Structural Systems",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 86dba5f1d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"User Expansion Factor" -"Environmental Biology",69.2703 -"Astronomical Sciences",49.2958 -"Atmospheric Sciences",7.8723 -"Social and Economic Science",7.5872 -"Polar Programs",3.2814 -"Materials Research",2.7638 -"Molecular Biosciences",2.7490 -"Electrical and Communication Systems",2.2611 -"Earth Sciences",1.4482 -"Chemical, Thermal Systems",1.3348 -Arts,1.2820 -Physics,1.0844 -"Computer and Computation Research",1.0642 -Chemistry,1.0463 -"Mathematical Sciences",1.0259 -"Microelectronic Information Processing Systems",1.0081 -"Design and Manufacturing Systems",1.0036 -"Mechanical and Structural Systems",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 19572a18ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" -2016-12-22,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,1.0495,0,0,0,0 -2016-12-23,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.0495,0,0,0,0 -2016-12-24,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.0495,0,0,0,0 -2016-12-25,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.1562,0,0,0,0 -2016-12-26,0,1.0610,0,0,0,0,1.0000,0,0,0,0,0,0,1.2735,1.0000,0,0,0 -2016-12-27,0,1.7724,0,1.0000,0,1.9856,2.9970,2.5533,0,0,0,0,0,1.2277,1.0000,0,0,0 -2016-12-28,0,1.5437,0,1.0000,0,2.1159,2.6841,2.5716,1.0000,0,0,1.0866,0,1.0169,1.0175,1.0014,1.0013,0 -2016-12-29,0,3.5124,3.8567,3.5135,1.0000,2.0971,2.3663,2.2683,1.0000,0,1.0436,1.0866,1.0011,1.0285,1.0515,1.0012,1.0011,1.0000 -2016-12-30,82.2879,144.6787,3.8567,5.1671,1.7535,2.6830,2.1869,2.1328,1.1782,1.4992,1.4225,1.0801,1.0787,1.0357,1.0535,1.0023,1.0011,1.0000 -2016-12-31,30.3841,1.2803,0,8.2251,1.0129,8.1155,3.8407,2.3853,1.6005,1.1213,1.1163,0,1.0006,1.0953,1.0103,1.0186,1.0085,1.0000 -2017-01-01,66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index bdc3ac9407..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" -2016-12,73.4926,53.7276,3.8567,6.7861,1.4969,2.7638,2.5543,2.2965,1.4485,1.3348,1.2872,1.0844,1.0642,1.0455,1.0298,1.0080,1.0027,1.0000 -2017-01,66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 6c99b12a1f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" -"2016 Q4",73.4926,53.7276,3.8567,6.7861,1.4969,2.7638,2.5543,2.2965,1.4485,1.3348,1.2872,1.0844,1.0642,1.0455,1.0298,1.0080,1.0027,1.0000 -"2017 Q1",66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index a5519f0e94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Environmental Biology] User Expansion Factor","[Astronomical Sciences] User Expansion Factor","[Atmospheric Sciences] User Expansion Factor","[Social and Economic Science] User Expansion Factor","[Polar Programs] User Expansion Factor","[Materials Research] User Expansion Factor","[Molecular Biosciences] User Expansion Factor","[Electrical and Communication Systems] User Expansion Factor","[Earth Sciences] User Expansion Factor","[Chemical, Thermal Systems] User Expansion Factor","[Arts] User Expansion Factor","[Physics] User Expansion Factor","[Computer and Computation Research] User Expansion Factor","[Chemistry] User Expansion Factor","[Mathematical Sciences] User Expansion Factor","[Microelectronic Information Processing Systems] User Expansion Factor","[Design and Manufacturing Systems] User Expansion Factor","[Mechanical and Structural Systems] User Expansion Factor" -2016,73.4926,53.7276,3.8567,6.7861,1.4969,2.7638,2.5543,2.2965,1.4485,1.3348,1.2872,1.0844,1.0642,1.0455,1.0298,1.0080,1.0027,1.0000 -2017,66.3373,1.3741,1677.0769,21.0966,3.5481,0,4.3551,1.4790,1.0001,0,1.1040,0,0,1.0599,1.0060,1.0087,1.0125,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 1c5b6ea184..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Ended" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 1c5b6ea184..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Ended" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 1c5b6ea184..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Ended" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 1c5b6ea184..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Ended" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 583620b165..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" -2016-12-22,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 -2016-12-24,0,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 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,20765,3827,796,18,69,739,34,90,16,69,71,32,39,16,19,2,3,1 -2016-12-31,22983,2732,885,1008,29,43,180,10,117,84,13,32,22,1,1,1,0,0 -2017-01-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv deleted file mode 100644 index b4b715cd66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" -2016-12,43748,6559,1681,1026,98,782,214,100,133,153,84,64,61,17,20,3,3,1 -2017-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index b7e795485e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" -"2016 Q4",43748,6559,1681,1026,98,782,214,100,133,153,84,64,61,17,20,3,3,1 -"2017 Q1",13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv deleted file mode 100644 index da1ca5c96f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social and Economic Science] Number of Jobs Ended","[Chemistry] Number of Jobs Ended","[Microelectronic Information Processing Systems] Number of Jobs Ended","[Earth Sciences] Number of Jobs Ended","[Polar Programs] Number of Jobs Ended","[Astronomical Sciences] Number of Jobs Ended","[Design and Manufacturing Systems] Number of Jobs Ended","[Environmental Biology] Number of Jobs Ended","[Electrical and Communication Systems] Number of Jobs Ended","[Materials Research] Number of Jobs Ended","[Molecular Biosciences] Number of Jobs Ended","[Mechanical and Structural Systems] Number of Jobs Ended","[Arts] Number of Jobs Ended","[Mathematical Sciences] Number of Jobs Ended","[Computer and Computation Research] Number of Jobs Ended","[Chemical, Thermal Systems] Number of Jobs Ended","[Physics] Number of Jobs Ended","[Atmospheric Sciences] Number of Jobs Ended" -2016,43748,6559,1681,1026,98,782,214,100,133,153,84,64,61,17,20,3,3,1 -2017,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 36e66fd1bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Max (Core Count)" -"Chemical, Thermal Systems",336 -Chemistry,192 -"Environmental Biology",192 -"Atmospheric Sciences",160 -"Materials Research",144 -"Mechanical and Structural Systems",112 -"Microelectronic Information Processing Systems",108 -"Electrical and Communication Systems",96 -"Astronomical Sciences",72 -"Molecular Biosciences",64 -"Earth Sciences",60 -"Social and Economic Science",56 -"Polar Programs",40 -"Design and Manufacturing Systems",24 -"Mathematical Sciences",16 -Arts,12 -Physics,12 -"Computer and Computation Research",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 36e66fd1bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Max (Core Count)" -"Chemical, Thermal Systems",336 -Chemistry,192 -"Environmental Biology",192 -"Atmospheric Sciences",160 -"Materials Research",144 -"Mechanical and Structural Systems",112 -"Microelectronic Information Processing Systems",108 -"Electrical and Communication Systems",96 -"Astronomical Sciences",72 -"Molecular Biosciences",64 -"Earth Sciences",60 -"Social and Economic Science",56 -"Polar Programs",40 -"Design and Manufacturing Systems",24 -"Mathematical Sciences",16 -Arts,12 -Physics,12 -"Computer and Computation Research",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 36e66fd1bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Max (Core Count)" -"Chemical, Thermal Systems",336 -Chemistry,192 -"Environmental Biology",192 -"Atmospheric Sciences",160 -"Materials Research",144 -"Mechanical and Structural Systems",112 -"Microelectronic Information Processing Systems",108 -"Electrical and Communication Systems",96 -"Astronomical Sciences",72 -"Molecular Biosciences",64 -"Earth Sciences",60 -"Social and Economic Science",56 -"Polar Programs",40 -"Design and Manufacturing Systems",24 -"Mathematical Sciences",16 -Arts,12 -Physics,12 -"Computer and Computation Research",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 36e66fd1bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Max (Core Count)" -"Chemical, Thermal Systems",336 -Chemistry,192 -"Environmental Biology",192 -"Atmospheric Sciences",160 -"Materials Research",144 -"Mechanical and Structural Systems",112 -"Microelectronic Information Processing Systems",108 -"Electrical and Communication Systems",96 -"Astronomical Sciences",72 -"Molecular Biosciences",64 -"Earth Sciences",60 -"Social and Economic Science",56 -"Polar Programs",40 -"Design and Manufacturing Systems",24 -"Mathematical Sciences",16 -Arts,12 -Physics,12 -"Computer and Computation Research",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 3c0a281b91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" -2016-12-22,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0 -2016-12-23,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0 -2016-12-24,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0 -2016-12-25,0,24,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0 -2016-12-26,0,24,0,0,0,0,0,0,1,12,0,0,0,0,16,0,0,0 -2016-12-27,0,32,0,0,144,0,0,96,72,64,0,1,0,0,16,0,0,0 -2016-12-28,0,192,0,0,144,0,8,96,72,64,20,1,0,1,16,0,12,0 -2016-12-29,0,192,0,160,144,112,8,96,72,64,20,56,40,1,16,12,12,1 -2016-12-30,336,192,192,160,144,112,108,96,72,64,60,56,40,1,16,12,12,1 -2016-12-31,336,192,192,0,72,112,12,96,72,64,60,48,40,24,16,12,0,1 -2017-01-01,0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index b442976501..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" -2016-12,336,192,192,160,144,112,108,96,72,64,60,56,40,24,16,12,12,1 -2017-01,0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index c1653a9016..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,144,112,108,96,72,64,60,56,40,24,16,12,12,1 -"2017 Q1",0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 294954ecad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chemical, Thermal Systems] Job Size: Max (Core Count)","[Chemistry] Job Size: Max (Core Count)","[Environmental Biology] Job Size: Max (Core Count)","[Atmospheric Sciences] Job Size: Max (Core Count)","[Materials Research] Job Size: Max (Core Count)","[Mechanical and Structural Systems] Job Size: Max (Core Count)","[Microelectronic Information Processing Systems] Job Size: Max (Core Count)","[Electrical and Communication Systems] Job Size: Max (Core Count)","[Astronomical Sciences] Job Size: Max (Core Count)","[Molecular Biosciences] Job Size: Max (Core Count)","[Earth Sciences] Job Size: Max (Core Count)","[Social and Economic Science] Job Size: Max (Core Count)","[Polar Programs] Job Size: Max (Core Count)","[Design and Manufacturing Systems] Job Size: Max (Core Count)","[Mathematical Sciences] Job Size: Max (Core Count)","[Arts] Job Size: Max (Core Count)","[Physics] Job Size: Max (Core Count)","[Computer and Computation Research] Job Size: Max (Core Count)" -2016,336,192,192,160,144,112,108,96,72,64,60,56,40,24,16,12,12,1 -2017,0,48,192,160,0,1,8,96,72,64,12,48,12,24,16,12,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 968201ea7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Min (Core Count)" -"Atmospheric Sciences",160 -"Chemical, Thermal Systems",48 -"Materials Research",12 -Physics,12 -Chemistry,8 -"Environmental Biology",8 -Arts,1 -"Astronomical Sciences",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Earth Sciences",1 -"Electrical and Communication Systems",1 -"Mathematical Sciences",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -"Molecular Biosciences",1 -"Polar Programs",1 -"Social and Economic Science",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 968201ea7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Min (Core Count)" -"Atmospheric Sciences",160 -"Chemical, Thermal Systems",48 -"Materials Research",12 -Physics,12 -Chemistry,8 -"Environmental Biology",8 -Arts,1 -"Astronomical Sciences",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Earth Sciences",1 -"Electrical and Communication Systems",1 -"Mathematical Sciences",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -"Molecular Biosciences",1 -"Polar Programs",1 -"Social and Economic Science",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 968201ea7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Min (Core Count)" -"Atmospheric Sciences",160 -"Chemical, Thermal Systems",48 -"Materials Research",12 -Physics,12 -Chemistry,8 -"Environmental Biology",8 -Arts,1 -"Astronomical Sciences",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Earth Sciences",1 -"Electrical and Communication Systems",1 -"Mathematical Sciences",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -"Molecular Biosciences",1 -"Polar Programs",1 -"Social and Economic Science",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 968201ea7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Job Size: Min (Core Count)" -"Atmospheric Sciences",160 -"Chemical, Thermal Systems",48 -"Materials Research",12 -Physics,12 -Chemistry,8 -"Environmental Biology",8 -Arts,1 -"Astronomical Sciences",1 -"Computer and Computation Research",1 -"Design and Manufacturing Systems",1 -"Earth Sciences",1 -"Electrical and Communication Systems",1 -"Mathematical Sciences",1 -"Mechanical and Structural Systems",1 -"Microelectronic Information Processing Systems",1 -"Molecular Biosciences",1 -"Polar Programs",1 -"Social and Economic Science",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 45d655cf3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,12,0,0 -2016-12-23,0,0,0,0,12,0,0,1,0,0,0,0,0,0,0,12,0,0 -2016-12-24,0,0,0,0,12,0,0,1,0,0,0,0,0,0,0,12,0,0 -2016-12-25,0,0,0,0,12,0,0,1,0,0,0,0,0,0,0,12,0,0 -2016-12-26,0,0,0,0,12,0,0,1,0,0,0,0,16,0,0,12,0,0 -2016-12-27,0,0,32,0,8,0,0,1,0,0,0,96,1,0,0,8,0,1 -2016-12-28,0,0,12,12,8,0,0,1,0,1,20,96,1,0,1,8,0,1 -2016-12-29,160,0,12,12,8,0,4,1,1,1,5,1,1,112,1,1,40,1 -2016-12-30,160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,0,336,12,0,8,12,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01-01,160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 35f414d2bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" -2016-12,160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index b74a57a009..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" -"2016 Q4",160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 5a0cabf0d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Atmospheric Sciences] Job Size: Min (Core Count)","[Chemical, Thermal Systems] Job Size: Min (Core Count)","[Materials Research] Job Size: Min (Core Count)","[Physics] Job Size: Min (Core Count)","[Chemistry] Job Size: Min (Core Count)","[Environmental Biology] Job Size: Min (Core Count)","[Arts] Job Size: Min (Core Count)","[Astronomical Sciences] Job Size: Min (Core Count)","[Computer and Computation Research] Job Size: Min (Core Count)","[Design and Manufacturing Systems] Job Size: Min (Core Count)","[Earth Sciences] Job Size: Min (Core Count)","[Electrical and Communication Systems] Job Size: Min (Core Count)","[Mathematical Sciences] Job Size: Min (Core Count)","[Mechanical and Structural Systems] Job Size: Min (Core Count)","[Microelectronic Information Processing Systems] Job Size: Min (Core Count)","[Molecular Biosciences] Job Size: Min (Core Count)","[Polar Programs] Job Size: Min (Core Count)","[Social and Economic Science] Job Size: Min (Core Count)" -2016,160,48,12,12,8,8,1,1,1,1,1,1,1,1,1,1,1,1 -2017,160,0,0,0,8,8,4,1,0,1,5,2,8,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 7face4f4f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -parameters - -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/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 7face4f4f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -parameters - -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/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 7face4f4f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -parameters - -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/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 7face4f4f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -parameters - -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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 56c481a096..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -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)","[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,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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 979e5856f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -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)","[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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 671dadcbb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -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)","[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/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 98ac938abe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Department" -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)","[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/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index d8b52fb50d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Running" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index d8b52fb50d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Running" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index d8b52fb50d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Running" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index d8b52fb50d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Running" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 7510f274af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" -2016-12-22,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-23,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-24,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-25,0,4,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-26,0,4,0,0,0,1,0,0,0,0,1,0,0,5,0,0,0,0 -2016-12-27,1,14,0,0,0,7,0,0,3,3,8,0,0,6,0,0,0,0 -2016-12-28,1,29,195,1,0,8,147,0,15,12,13,0,0,26,0,0,3,0 -2016-12-29,257,63,976,2,1,28,235,0,27,32,65,4,11,30,5,0,3,1 -2016-12-30,21034,3872,1660,738,70,751,252,90,40,103,85,36,65,32,20,3,3,1 -2016-12-31,23475,2753,1659,1008,41,48,264,10,129,84,22,32,27,49,1,1,0,0 -2017-01-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 588676f3c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" -2016-12,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -2017-01,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 63e5355b3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" -"2016 Q4",44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -"2017 Q1",13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 8ef2bdc30b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social and Economic Science] Number of Jobs Running","[Chemistry] Number of Jobs Running","[Microelectronic Information Processing Systems] Number of Jobs Running","[Earth Sciences] Number of Jobs Running","[Polar Programs] Number of Jobs Running","[Astronomical Sciences] Number of Jobs Running","[Design and Manufacturing Systems] Number of Jobs Running","[Environmental Biology] Number of Jobs Running","[Electrical and Communication Systems] Number of Jobs Running","[Materials Research] Number of Jobs Running","[Molecular Biosciences] Number of Jobs Running","[Mechanical and Structural Systems] Number of Jobs Running","[Arts] Number of Jobs Running","[Mathematical Sciences] Number of Jobs Running","[Computer and Computation Research] Number of Jobs Running","[Chemical, Thermal Systems] Number of Jobs Running","[Physics] Number of Jobs Running","[Atmospheric Sciences] Number of Jobs Running" -2016,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -2017,13956,410,986,3,814,11,103,139,28,0,34,28,5,48,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index ca5c703bec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Started" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index ca5c703bec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Started" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index ca5c703bec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Started" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index ca5c703bec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Started" -"Social and Economic Science",57704 -Chemistry,6969 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",912 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",239 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index a9b4876b7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" -2016-12-22,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,1,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 -2016-12-25,0,3,0,0,0,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,5,0,0,0,0 -2016-12-27,1,10,0,0,0,6,0,0,3,3,7,0,0,1,0,0,0,0 -2016-12-28,0,15,195,1,0,1,147,0,12,9,5,0,0,20,0,0,3,0 -2016-12-29,256,34,781,1,1,20,88,0,12,20,52,4,11,4,5,0,0,1 -2016-12-30,20777,3809,684,736,69,723,17,90,13,71,20,32,54,2,15,3,0,0 -2016-12-31,23206,2708,795,288,40,36,46,10,105,50,8,28,1,33,0,0,0,0 -2017-01-01,13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index e959079f36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" -2016-12,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -2017-01,13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 8fb4ca50f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" -"2016 Q4",44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -"2017 Q1",13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index ce14d4f8a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social and Economic Science] Number of Jobs Started","[Chemistry] Number of Jobs Started","[Microelectronic Information Processing Systems] Number of Jobs Started","[Earth Sciences] Number of Jobs Started","[Polar Programs] Number of Jobs Started","[Astronomical Sciences] Number of Jobs Started","[Design and Manufacturing Systems] Number of Jobs Started","[Environmental Biology] Number of Jobs Started","[Electrical and Communication Systems] Number of Jobs Started","[Materials Research] Number of Jobs Started","[Molecular Biosciences] Number of Jobs Started","[Mechanical and Structural Systems] Number of Jobs Started","[Arts] Number of Jobs Started","[Mathematical Sciences] Number of Jobs Started","[Computer and Computation Research] Number of Jobs Started","[Chemical, Thermal Systems] Number of Jobs Started","[Physics] Number of Jobs Started","[Atmospheric Sciences] Number of Jobs Started" -2016,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -2017,13464,389,212,3,802,6,19,139,16,0,25,28,0,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index eca476acb0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Submitted" -"Social and Economic Science",52367 -Chemistry,6952 -"Microelectronic Information Processing Systems",2624 -"Polar Programs",848 -"Earth Sciences",748 -"Design and Manufacturing Systems",317 -"Environmental Biology",123 -"Molecular Biosciences",100 -"Mechanical and Structural Systems",92 -"Astronomical Sciences",71 -"Mathematical Sciences",61 -"Electrical and Communication Systems",39 -Arts,31 -"Computer and Computation Research",20 -"Materials Research",20 -Physics,3 -"Atmospheric Sciences",0 -"Chemical, Thermal Systems",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index c45f45bf15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Submitted" -"Social and Economic Science",55774 -Chemistry,6968 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",849 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",164 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index c45f45bf15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Submitted" -"Social and Economic Science",55774 -Chemistry,6968 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",849 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",164 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index c45f45bf15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Number of Jobs Submitted" -"Social and Economic Science",55774 -Chemistry,6968 -"Microelectronic Information Processing Systems",2667 -"Earth Sciences",1029 -"Polar Programs",849 -"Astronomical Sciences",793 -"Design and Manufacturing Systems",317 -"Environmental Biology",164 -"Electrical and Communication Systems",161 -"Materials Research",153 -"Molecular Biosciences",118 -"Mechanical and Structural Systems",92 -Arts,66 -"Mathematical Sciences",65 -"Computer and Computation Research",20 -"Chemical, Thermal Systems",3 -Physics,3 -"Atmospheric Sciences",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 600a9c5507..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,1,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 -2016-12-25,0,1,0,0,0,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,5,0,0,0,0,0,0,0 -2016-12-27,1,10,0,0,0,0,0,1,0,5,1,0,0,0,0,0,0,0 -2016-12-28,0,13,195,0,1,147,0,0,0,0,20,0,0,0,0,3,0,0 -2016-12-29,206,32,781,1,1,88,0,50,4,5,0,5,11,5,17,0,0,0 -2016-12-30,20182,3805,684,68,736,17,50,19,32,20,2,10,19,15,1,0,0,0 -2016-12-31,20444,2703,752,40,7,46,9,4,28,34,33,8,1,0,2,0,0,0 -2017-01-01,11534,388,212,739,3,19,64,25,28,6,0,16,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 506d5d7680..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted" -2016-12,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -2017-01,11534,388,212,3,739,6,19,64,16,0,25,28,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d6fb52911d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted" -"2016 Q4",44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -"2017 Q1",11534,388,212,3,739,6,19,64,16,0,25,28,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 0b28e486e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Social and Economic Science] Number of Jobs Submitted","[Chemistry] Number of Jobs Submitted","[Microelectronic Information Processing Systems] Number of Jobs Submitted","[Earth Sciences] Number of Jobs Submitted","[Polar Programs] Number of Jobs Submitted","[Astronomical Sciences] Number of Jobs Submitted","[Design and Manufacturing Systems] Number of Jobs Submitted","[Environmental Biology] Number of Jobs Submitted","[Electrical and Communication Systems] Number of Jobs Submitted","[Materials Research] Number of Jobs Submitted","[Molecular Biosciences] Number of Jobs Submitted","[Mechanical and Structural Systems] Number of Jobs Submitted","[Arts] Number of Jobs Submitted","[Mathematical Sciences] Number of Jobs Submitted","[Computer and Computation Research] Number of Jobs Submitted","[Chemical, Thermal Systems] Number of Jobs Submitted","[Physics] Number of Jobs Submitted","[Atmospheric Sciences] Number of Jobs Submitted" -2016,44240,6580,2455,1026,110,787,298,100,145,153,93,64,66,65,20,3,3,1 -2017,11534,388,212,3,739,6,19,64,16,0,25,28,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index f16a9d0ae9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"CPU Hours: Total" -Chemistry,188505.5578 -"Electrical and Communication Systems",168887.4169 -"Social and Economic Science",163292.7964 -"Microelectronic Information Processing Systems",74399.4261 -"Materials Research",51837.5633 -"Mathematical Sciences",40095.7789 -"Astronomical Sciences",35860.4519 -"Polar Programs",21267.5019 -"Design and Manufacturing Systems",20616.3914 -"Molecular Biosciences",20608.9078 -"Mechanical and Structural Systems",14222.7461 -"Chemical, Thermal Systems",13105.9733 -Arts,12416.7611 -"Earth Sciences",10786.1722 -Physics,1588.9133 -"Environmental Biology",1518.1478 -"Atmospheric Sciences",1444.4889 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index f16a9d0ae9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"CPU Hours: Total" -Chemistry,188505.5578 -"Electrical and Communication Systems",168887.4169 -"Social and Economic Science",163292.7964 -"Microelectronic Information Processing Systems",74399.4261 -"Materials Research",51837.5633 -"Mathematical Sciences",40095.7789 -"Astronomical Sciences",35860.4519 -"Polar Programs",21267.5019 -"Design and Manufacturing Systems",20616.3914 -"Molecular Biosciences",20608.9078 -"Mechanical and Structural Systems",14222.7461 -"Chemical, Thermal Systems",13105.9733 -Arts,12416.7611 -"Earth Sciences",10786.1722 -Physics,1588.9133 -"Environmental Biology",1518.1478 -"Atmospheric Sciences",1444.4889 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f16a9d0ae9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"CPU Hours: Total" -Chemistry,188505.5578 -"Electrical and Communication Systems",168887.4169 -"Social and Economic Science",163292.7964 -"Microelectronic Information Processing Systems",74399.4261 -"Materials Research",51837.5633 -"Mathematical Sciences",40095.7789 -"Astronomical Sciences",35860.4519 -"Polar Programs",21267.5019 -"Design and Manufacturing Systems",20616.3914 -"Molecular Biosciences",20608.9078 -"Mechanical and Structural Systems",14222.7461 -"Chemical, Thermal Systems",13105.9733 -Arts,12416.7611 -"Earth Sciences",10786.1722 -Physics,1588.9133 -"Environmental Biology",1518.1478 -"Atmospheric Sciences",1444.4889 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index f16a9d0ae9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"CPU Hours: Total" -Chemistry,188505.5578 -"Electrical and Communication Systems",168887.4169 -"Social and Economic Science",163292.7964 -"Microelectronic Information Processing Systems",74399.4261 -"Materials Research",51837.5633 -"Mathematical Sciences",40095.7789 -"Astronomical Sciences",35860.4519 -"Polar Programs",21267.5019 -"Design and Manufacturing Systems",20616.3914 -"Molecular Biosciences",20608.9078 -"Mechanical and Structural Systems",14222.7461 -"Chemical, Thermal Systems",13105.9733 -Arts,12416.7611 -"Earth Sciences",10786.1722 -Physics,1588.9133 -"Environmental Biology",1518.1478 -"Atmospheric Sciences",1444.4889 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7fa78d72f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" -2016-12-22,203.3000,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0 -2016-12-23,288.0000,0,0,0,0,0,8.6036,0,0,288.0000,0,0,0,0,0,0,0,0 -2016-12-24,288.0000,0,0,0,0,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0,0 -2016-12-25,466.2700,0,0,0,0,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0,0 -2016-12-26,1728.0000,0,0,0,0,216.3333,24.0000,0,0,288.0000,0,0,0,0,0,0,0,0 -2016-12-27,2293.7600,3739.4133,3.2167,0,4298.8089,1924.7214,1964.5622,0,0,1328.6622,0,0,0,0,0,0,0,0 -2016-12-28,39422.3022,21931.9200,24.0000,1304.6303,6587.9644,2671.1944,4285.3467,0,1962.8444,3523.0667,0,0,0,94.0111,181.4300,0,0,0 -2016-12-29,55290.2700,51398.0422,1901.3108,13933.2064,17862.8422,10260.0844,7035.1161,758.9889,3901.6422,4315.9531,1643.9111,0,516.0911,532.0042,864.0000,0,1038.2222,10.0983 -2016-12-30,56377.7367,53688.2303,63888.1919,24424.9989,18930.7533,7995.6400,10377.4728,1068.1136,5473.3125,4131.6792,9238.5464,7404.4267,6971.0514,3598.5506,543.4833,522.1678,402.8000,82.1119 -2016-12-31,25351.0100,30521.7450,88804.5933,22589.8486,4157.1944,12068.8131,8561.7150,358.6408,6235.8008,3273.0428,3313.1372,5701.5467,4629.6697,6528.7675,0,125.4733,0,8.6314 -2017-01-01,6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 518e3f5047..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" -2016-12,181708.6489,161279.3508,154621.3128,62252.6842,51837.5633,35136.7867,32304.8164,2185.7433,17573.6000,17925.3606,14195.5947,13105.9733,12116.8122,10753.3333,1588.9133,647.6411,1441.0222,100.8417 -2017-01,6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 15269c15e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" -"2016 Q4",181708.6489,161279.3508,154621.3128,62252.6842,51837.5633,35136.7867,32304.8164,2185.7433,17573.6000,17925.3606,14195.5947,13105.9733,12116.8122,10753.3333,1588.9133,647.6411,1441.0222,100.8417 -"2017 Q1",6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index a900372bd6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chemistry] CPU Hours: Total","[Electrical and Communication Systems] CPU Hours: Total","[Social and Economic Science] CPU Hours: Total","[Microelectronic Information Processing Systems] CPU Hours: Total","[Materials Research] CPU Hours: Total","[Mathematical Sciences] CPU Hours: Total","[Astronomical Sciences] CPU Hours: Total","[Polar Programs] CPU Hours: Total","[Design and Manufacturing Systems] CPU Hours: Total","[Molecular Biosciences] CPU Hours: Total","[Mechanical and Structural Systems] CPU Hours: Total","[Chemical, Thermal Systems] CPU Hours: Total","[Arts] CPU Hours: Total","[Earth Sciences] CPU Hours: Total","[Physics] CPU Hours: Total","[Environmental Biology] CPU Hours: Total","[Atmospheric Sciences] CPU Hours: Total","[Computer and Computation Research] CPU Hours: Total" -2016,181708.6489,161279.3508,154621.3128,62252.6842,51837.5633,35136.7867,32304.8164,2185.7433,17573.6000,17925.3606,14195.5947,13105.9733,12116.8122,10753.3333,1588.9133,647.6411,1441.0222,100.8417 -2017,6796.9089,7608.0661,8671.4836,12146.7419,0,4958.9922,3555.6356,19081.7586,3042.7914,2683.5472,27.1514,0,299.9489,32.8389,0,870.5067,3.4667,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8d316ab7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Total" -"Molecular Biosciences",506.9128 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 8d316ab7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Total" -"Molecular Biosciences",506.9128 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 8d316ab7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Total" -"Molecular Biosciences",506.9128 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8d316ab7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"GPU Hours: Total" -"Molecular Biosciences",506.9128 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Computer and Computation Research",0.0000 -"Design and Manufacturing Systems",0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7bca8f21ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 -2016-12-27,48.0000,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 -2016-12-28,48.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 -2016-12-29,48.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2017-01-01,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5178b00241..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 26b34dbc6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 333811d0e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8cc26509db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Node Hours: Total" -"Microelectronic Information Processing Systems",67903.0519 -"Social and Economic Science",16956.7717 -"Design and Manufacturing Systems",15812.9842 -"Electrical and Communication Systems",14769.1036 -Chemistry,12905.5581 -"Earth Sciences",8764.5286 -"Materials Research",3900.2250 -"Astronomical Sciences",3409.0411 -"Mathematical Sciences",3278.7342 -"Molecular Biosciences",3012.1539 -"Polar Programs",1829.6058 -Arts,1140.0328 -"Chemical, Thermal Systems",1092.1644 -"Mechanical and Structural Systems",965.4461 -"Atmospheric Sciences",180.5611 -"Environmental Biology",150.5339 -Physics,132.4094 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 8cc26509db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Node Hours: Total" -"Microelectronic Information Processing Systems",67903.0519 -"Social and Economic Science",16956.7717 -"Design and Manufacturing Systems",15812.9842 -"Electrical and Communication Systems",14769.1036 -Chemistry,12905.5581 -"Earth Sciences",8764.5286 -"Materials Research",3900.2250 -"Astronomical Sciences",3409.0411 -"Mathematical Sciences",3278.7342 -"Molecular Biosciences",3012.1539 -"Polar Programs",1829.6058 -Arts,1140.0328 -"Chemical, Thermal Systems",1092.1644 -"Mechanical and Structural Systems",965.4461 -"Atmospheric Sciences",180.5611 -"Environmental Biology",150.5339 -Physics,132.4094 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 8cc26509db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Node Hours: Total" -"Microelectronic Information Processing Systems",67903.0519 -"Social and Economic Science",16956.7717 -"Design and Manufacturing Systems",15812.9842 -"Electrical and Communication Systems",14769.1036 -Chemistry,12905.5581 -"Earth Sciences",8764.5286 -"Materials Research",3900.2250 -"Astronomical Sciences",3409.0411 -"Mathematical Sciences",3278.7342 -"Molecular Biosciences",3012.1539 -"Polar Programs",1829.6058 -Arts,1140.0328 -"Chemical, Thermal Systems",1092.1644 -"Mechanical and Structural Systems",965.4461 -"Atmospheric Sciences",180.5611 -"Environmental Biology",150.5339 -Physics,132.4094 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8cc26509db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Node Hours: Total" -"Microelectronic Information Processing Systems",67903.0519 -"Social and Economic Science",16956.7717 -"Design and Manufacturing Systems",15812.9842 -"Electrical and Communication Systems",14769.1036 -Chemistry,12905.5581 -"Earth Sciences",8764.5286 -"Materials Research",3900.2250 -"Astronomical Sciences",3409.0411 -"Mathematical Sciences",3278.7342 -"Molecular Biosciences",3012.1539 -"Polar Programs",1829.6058 -Arts,1140.0328 -"Chemical, Thermal Systems",1092.1644 -"Mechanical and Structural Systems",965.4461 -"Atmospheric Sciences",180.5611 -"Environmental Biology",150.5339 -Physics,132.4094 -"Computer and Computation Research",100.8417 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b2166ddadf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" -2016-12-22,0,0,0,0,16.9417,0,0,0,0,16.7464,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,24.0000,0,0,8.6036,0,24.0000,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,24.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,32.5078,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,96.0000,0,0,24.0000,13.5208,24.0000,0,0,0,0,0,0,0,0 -2016-12-27,0,3.2167,0,311.6178,115.3094,0,331.1156,176.2814,124.7214,144.1300,0,0,0,0,0,0,0,0 -2016-12-28,996.9861,24.0000,1962.8444,1827.6600,2303.1100,4.7006,502.6856,364.6683,196.4592,416.3833,0,0,0,0,0,0,15.1192,0 -2016-12-29,12752.0031,328.7961,3901.6422,4306.5756,3405.4136,34.4008,1333.3297,628.8497,717.7553,719.3708,37.9494,47.7900,0,102.7444,129.7778,0,72.0000,10.0983 -2016-12-30,22090.4917,6961.6367,5473.3125,4527.5222,3909.1153,3097.4789,1436.3486,1130.3533,557.8294,889.9586,156.1053,629.4331,617.0356,602.9381,50.3500,51.2486,45.2903,82.1119 -2016-12-31,20759.5203,8689.9142,3060.8175,3155.4297,2322.6839,5622.7144,296.7456,739.6997,1136.6033,403.8781,43.8078,430.1536,475.1289,232.6122,0,10.4561,0,8.6314 -2017-01-01,11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3049a2e72f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" -2016-12,56599.0011,16007.5636,14398.6167,14128.8053,12249.0817,8759.2947,3900.2250,3120.4561,2746.8894,2686.4672,237.8625,1107.3767,1092.1644,938.2947,180.1278,61.7047,132.4094,100.8417 -2017-01,11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9bc3a88835..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" -"2016 Q4",56599.0011,16007.5636,14398.6167,14128.8053,12249.0817,8759.2947,3900.2250,3120.4561,2746.8894,2686.4672,237.8625,1107.3767,1092.1644,938.2947,180.1278,61.7047,132.4094,100.8417 -"2017 Q1",11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5425ace7a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Microelectronic Information Processing Systems] Node Hours: Total","[Social and Economic Science] Node Hours: Total","[Design and Manufacturing Systems] Node Hours: Total","[Electrical and Communication Systems] Node Hours: Total","[Chemistry] Node Hours: Total","[Earth Sciences] Node Hours: Total","[Materials Research] Node Hours: Total","[Astronomical Sciences] Node Hours: Total","[Mathematical Sciences] Node Hours: Total","[Molecular Biosciences] Node Hours: Total","[Polar Programs] Node Hours: Total","[Arts] Node Hours: Total","[Chemical, Thermal Systems] Node Hours: Total","[Mechanical and Structural Systems] Node Hours: Total","[Atmospheric Sciences] Node Hours: Total","[Environmental Biology] Node Hours: Total","[Physics] Node Hours: Total","[Computer and Computation Research] Node Hours: Total" -2016,56599.0011,16007.5636,14398.6167,14128.8053,12249.0817,8759.2947,3900.2250,3120.4561,2746.8894,2686.4672,237.8625,1107.3767,1092.1644,938.2947,180.1278,61.7047,132.4094,100.8417 -2017,11304.0508,949.2081,1414.3675,640.2983,656.4764,5.2339,0,288.5850,531.8447,325.6867,1591.7433,32.6561,0,27.1514,0.4333,88.8292,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5954f2b27c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Total" -"Astronomical Sciences",163661.6308 -"Social and Economic Science",114914.2053 -"Molecular Biosciences",5260.9664 -"Materials Research",5142.3756 -"Electrical and Communication Systems",4694.7817 -"Polar Programs",4174.1489 -"Earth Sciences",3927.8758 -"Environmental Biology",3030.4719 -"Microelectronic Information Processing Systems",552.4364 -Chemistry,443.1639 -Arts,321.4447 -"Mathematical Sciences",85.0647 -"Atmospheric Sciences",62.0436 -"Design and Manufacturing Systems",37.0503 -"Chemical, Thermal Systems",20.0331 -Physics,11.1744 -"Computer and Computation Research",6.4781 -"Mechanical and Structural Systems",0.0153 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5954f2b27c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Total" -"Astronomical Sciences",163661.6308 -"Social and Economic Science",114914.2053 -"Molecular Biosciences",5260.9664 -"Materials Research",5142.3756 -"Electrical and Communication Systems",4694.7817 -"Polar Programs",4174.1489 -"Earth Sciences",3927.8758 -"Environmental Biology",3030.4719 -"Microelectronic Information Processing Systems",552.4364 -Chemistry,443.1639 -Arts,321.4447 -"Mathematical Sciences",85.0647 -"Atmospheric Sciences",62.0436 -"Design and Manufacturing Systems",37.0503 -"Chemical, Thermal Systems",20.0331 -Physics,11.1744 -"Computer and Computation Research",6.4781 -"Mechanical and Structural Systems",0.0153 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5954f2b27c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Total" -"Astronomical Sciences",163661.6308 -"Social and Economic Science",114914.2053 -"Molecular Biosciences",5260.9664 -"Materials Research",5142.3756 -"Electrical and Communication Systems",4694.7817 -"Polar Programs",4174.1489 -"Earth Sciences",3927.8758 -"Environmental Biology",3030.4719 -"Microelectronic Information Processing Systems",552.4364 -Chemistry,443.1639 -Arts,321.4447 -"Mathematical Sciences",85.0647 -"Atmospheric Sciences",62.0436 -"Design and Manufacturing Systems",37.0503 -"Chemical, Thermal Systems",20.0331 -Physics,11.1744 -"Computer and Computation Research",6.4781 -"Mechanical and Structural Systems",0.0153 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5954f2b27c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wait Hours: Total" -"Astronomical Sciences",163661.6308 -"Social and Economic Science",114914.2053 -"Molecular Biosciences",5260.9664 -"Materials Research",5142.3756 -"Electrical and Communication Systems",4694.7817 -"Polar Programs",4174.1489 -"Earth Sciences",3927.8758 -"Environmental Biology",3030.4719 -"Microelectronic Information Processing Systems",552.4364 -Chemistry,443.1639 -Arts,321.4447 -"Mathematical Sciences",85.0647 -"Atmospheric Sciences",62.0436 -"Design and Manufacturing Systems",37.0503 -"Chemical, Thermal Systems",20.0331 -Physics,11.1744 -"Computer and Computation Research",6.4781 -"Mechanical and Structural Systems",0.0153 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index fe78a0613d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" -2016-12-22,0,0,0.0003,0,0,0,0,0,0,9.3322,0,0,0,0,0,0,0,0 -2016-12-23,9.5964,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-24,0.0000,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-25,0.0000,0,0.0000,0,0,0,0,0,0,110.8856,0,0,0,0,0,0,0,0 -2016-12-26,0.0000,0,0.0000,0,0,0,0,0,0,0.0000,0,0.0033,0,0,0,0,0,0 -2016-12-27,76.0889,0.0000,1418.2278,172.7719,311.1344,0,0,0,0,0.0289,0,0.0000,0,0,0,0,0,0 -2016-12-28,36.8761,0.0000,1403.6350,723.1878,1296.2100,0,0.0003,0,7.9897,42.4492,0,66.2319,0,10.5775,0,11.1744,0,0 -2016-12-29,2716.5128,1974.4419,627.0644,302.4828,344.6783,0.0017,0.0000,0,34.0669,45.4447,9.5847,17.8439,25.7286,3.9286,0,0.0000,0.0894,0.0025 -2016-12-30,160712.0214,28026.7236,403.8189,2269.2967,61.4669,117.6186,1857.8492,1170.3947,223.7064,98.0067,311.8600,0.7789,0.0000,2.2686,20.0331,0.0000,6.3886,0.0050 -2016-12-31,103.2292,65081.0511,1406.9853,1674.6364,2650.9153,0.8378,2070.0261,33.5839,279.1428,100.6989,0.0000,0.2067,0,19.9411,0.0000,0,0.0000,0.0031 -2017-01-01,7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index e037730709..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" -2016-12,163654.3247,95082.2167,5259.7317,5142.3756,4664.4050,118.4581,3927.8756,1203.9786,544.9058,406.8461,321.4447,85.0647,25.7286,36.7158,20.0331,11.1744,6.4781,0.0106 -2017-01,7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5659a691e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" -"2016 Q4",163654.3247,95082.2167,5259.7317,5142.3756,4664.4050,118.4581,3927.8756,1203.9786,544.9058,406.8461,321.4447,85.0647,25.7286,36.7158,20.0331,11.1744,6.4781,0.0106 -"2017 Q1",7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 584ebc5295..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Astronomical Sciences] Wait Hours: Total","[Social and Economic Science] Wait Hours: Total","[Molecular Biosciences] Wait Hours: Total","[Materials Research] Wait Hours: Total","[Electrical and Communication Systems] Wait Hours: Total","[Polar Programs] Wait Hours: Total","[Earth Sciences] Wait Hours: Total","[Environmental Biology] Wait Hours: Total","[Microelectronic Information Processing Systems] Wait Hours: Total","[Chemistry] Wait Hours: Total","[Arts] Wait Hours: Total","[Mathematical Sciences] Wait Hours: Total","[Atmospheric Sciences] Wait Hours: Total","[Design and Manufacturing Systems] Wait Hours: Total","[Chemical, Thermal Systems] Wait Hours: Total","[Physics] Wait Hours: Total","[Computer and Computation Research] Wait Hours: Total","[Mechanical and Structural Systems] Wait Hours: Total" -2016,163654.3247,95082.2167,5259.7317,5142.3756,4664.4050,118.4581,3927.8756,1203.9786,544.9058,406.8461,321.4447,85.0647,25.7286,36.7158,20.0331,11.1744,6.4781,0.0106 -2017,7.3061,19831.9886,1.2347,0,30.3767,4055.6908,0.0003,1826.4933,7.5306,36.3178,0.0000,0.0000,36.3150,0.3344,0,0,0,0.0047 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index fe6cd4704b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Total" -"Microelectronic Information Processing Systems",67900.9675 -"Social and Economic Science",16630.3481 -"Design and Manufacturing Systems",15583.5300 -"Earth Sciences",8728.2631 -Chemistry,4490.7597 -"Mathematical Sciences",3278.7342 -"Electrical and Communication Systems",2668.5789 -"Molecular Biosciences",2171.8622 -"Polar Programs",1779.2567 -"Astronomical Sciences",1661.7608 -"Materials Research",1401.0014 -Arts,1140.0328 -"Mechanical and Structural Systems",207.8861 -Physics,132.4094 -"Computer and Computation Research",100.8417 -"Chemical, Thermal Systems",46.3125 -"Environmental Biology",45.2333 -"Atmospheric Sciences",9.0281 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index fe6cd4704b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Total" -"Microelectronic Information Processing Systems",67900.9675 -"Social and Economic Science",16630.3481 -"Design and Manufacturing Systems",15583.5300 -"Earth Sciences",8728.2631 -Chemistry,4490.7597 -"Mathematical Sciences",3278.7342 -"Electrical and Communication Systems",2668.5789 -"Molecular Biosciences",2171.8622 -"Polar Programs",1779.2567 -"Astronomical Sciences",1661.7608 -"Materials Research",1401.0014 -Arts,1140.0328 -"Mechanical and Structural Systems",207.8861 -Physics,132.4094 -"Computer and Computation Research",100.8417 -"Chemical, Thermal Systems",46.3125 -"Environmental Biology",45.2333 -"Atmospheric Sciences",9.0281 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fe6cd4704b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Total" -"Microelectronic Information Processing Systems",67900.9675 -"Social and Economic Science",16630.3481 -"Design and Manufacturing Systems",15583.5300 -"Earth Sciences",8728.2631 -Chemistry,4490.7597 -"Mathematical Sciences",3278.7342 -"Electrical and Communication Systems",2668.5789 -"Molecular Biosciences",2171.8622 -"Polar Programs",1779.2567 -"Astronomical Sciences",1661.7608 -"Materials Research",1401.0014 -Arts,1140.0328 -"Mechanical and Structural Systems",207.8861 -Physics,132.4094 -"Computer and Computation Research",100.8417 -"Chemical, Thermal Systems",46.3125 -"Environmental Biology",45.2333 -"Atmospheric Sciences",9.0281 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index fe6cd4704b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Wall Hours: Total" -"Microelectronic Information Processing Systems",67900.9675 -"Social and Economic Science",16630.3481 -"Design and Manufacturing Systems",15583.5300 -"Earth Sciences",8728.2631 -Chemistry,4490.7597 -"Mathematical Sciences",3278.7342 -"Electrical and Communication Systems",2668.5789 -"Molecular Biosciences",2171.8622 -"Polar Programs",1779.2567 -"Astronomical Sciences",1661.7608 -"Materials Research",1401.0014 -Arts,1140.0328 -"Mechanical and Structural Systems",207.8861 -Physics,132.4094 -"Computer and Computation Research",100.8417 -"Chemical, Thermal Systems",46.3125 -"Environmental Biology",45.2333 -"Atmospheric Sciences",9.0281 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 14f0421d66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" -2016-12-22,0,0,0,0,16.9417,0,0,16.7464,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,24.0000,0,0,24.0000,0,8.6036,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,24.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,32.5078,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,96.0000,13.5208,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0 -2016-12-27,0,3.2167,0,0,115.3094,124.7214,38.9522,117.5319,0,72.9606,61.4911,0,0,0,0,0,0,0 -2016-12-28,996.9861,24.0000,1962.8444,4.7006,547.1969,196.4592,228.4575,248.3833,0,180.7781,169.2183,0,0,15.1192,0,0,0,0 -2016-12-29,12752.0031,303.7458,3901.6422,34.4008,813.4011,717.7553,560.9514,551.3708,18.9747,262.0022,437.2069,47.7900,14.6778,72.0000,10.0983,0,0,6.4889 -2016-12-30,22088.4072,6707.0317,5473.3125,3094.2667,1278.2967,557.8294,661.3600,721.9308,132.1053,690.1894,546.7922,629.4331,109.4747,45.2903,82.1119,29.3436,12.8208,2.5175 -2016-12-31,20759.5203,8652.6142,2911.3158,5589.6611,952.6464,1136.6033,1052.2525,235.6647,36.4333,295.7200,186.2928,430.1536,56.5822,0,8.6314,16.9689,1.4844,0 -2017-01-01,11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index cc39cfb575..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" -2016-12,56596.9167,15690.6083,14249.1150,8723.0292,3900.3000,2746.8894,2541.9736,1987.6281,187.5133,1582.2539,1401.0014,1107.3767,180.7347,132.4094,100.8417,46.3125,14.3053,9.0064 -2017-01,11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7eb2bdca54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" -"2016 Q4",56596.9167,15690.6083,14249.1150,8723.0292,3900.3000,2746.8894,2541.9736,1987.6281,187.5133,1582.2539,1401.0014,1107.3767,180.7347,132.4094,100.8417,46.3125,14.3053,9.0064 -"2017 Q1",11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 345a66caca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Microelectronic Information Processing Systems] Wall Hours: Total","[Social and Economic Science] Wall Hours: Total","[Design and Manufacturing Systems] Wall Hours: Total","[Earth Sciences] Wall Hours: Total","[Chemistry] Wall Hours: Total","[Mathematical Sciences] Wall Hours: Total","[Electrical and Communication Systems] Wall Hours: Total","[Molecular Biosciences] Wall Hours: Total","[Polar Programs] Wall Hours: Total","[Astronomical Sciences] Wall Hours: Total","[Materials Research] Wall Hours: Total","[Arts] Wall Hours: Total","[Mechanical and Structural Systems] Wall Hours: Total","[Physics] Wall Hours: Total","[Computer and Computation Research] Wall Hours: Total","[Chemical, Thermal Systems] Wall Hours: Total","[Environmental Biology] Wall Hours: Total","[Atmospheric Sciences] Wall Hours: Total" -2016,56596.9167,15690.6083,14249.1150,8723.0292,3900.3000,2746.8894,2541.9736,1987.6281,187.5133,1582.2539,1401.0014,1107.3767,180.7347,132.4094,100.8417,46.3125,14.3053,9.0064 -2017,11304.0508,939.7397,1334.4150,5.2339,590.4597,531.8447,126.6053,184.2342,1591.7433,79.5069,0,32.6561,27.1514,0,0,0,30.9281,0.0217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 3562c3eeef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Screwdriver CPU Utilization (%)" -"Electrical and Communication Systems",7.9966 -"Microelectronic Information Processing Systems",7.0454 -Chemistry,5.0349 -"Social and Economic Science",3.6978 -"Mechanical and Structural Systems",2.4692 -"Mathematical Sciences",2.3204 -"Design and Manufacturing Systems",1.9523 -"Materials Research",1.9285 -"Astronomical Sciences",1.3341 -"Chemical, Thermal Systems",1.2411 -"Molecular Biosciences",0.9758 -"Polar Programs",0.7639 -Arts,0.7186 -"Earth Sciences",0.6242 -Physics,0.1505 -"Environmental Biology",0.1438 -"Atmospheric Sciences",0.1368 -"Computer and Computation Research",0.0095 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 44471bc26e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Screwdriver CPU Utilization (%)" -"Electrical and Communication Systems",1.8917 -"Microelectronic Information Processing Systems",1.5196 -Chemistry,1.1551 -"Social and Economic Science",0.8217 -"Mathematical Sciences",0.4746 -"Design and Manufacturing Systems",0.4211 -"Materials Research",0.4186 -"Mechanical and Structural Systems",0.4115 -"Astronomical Sciences",0.2896 -"Chemical, Thermal Systems",0.2677 -"Molecular Biosciences",0.2333 -"Polar Programs",0.1704 -Arts,0.1470 -"Earth Sciences",0.1277 -Physics,0.0325 -"Environmental Biology",0.0310 -"Atmospheric Sciences",0.0295 -"Computer and Computation Research",0.0021 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index b50aaa69f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Screwdriver CPU Utilization (%)" -"Electrical and Communication Systems",0.8338 -"Microelectronic Information Processing Systems",0.7045 -Chemistry,0.4836 -"Social and Economic Science",0.3388 -"Mathematical Sciences",0.2027 -"Design and Manufacturing Systems",0.1952 -"Materials Research",0.1765 -"Mechanical and Structural Systems",0.1560 -"Chemical, Thermal Systems",0.1241 -"Astronomical Sciences",0.1221 -"Molecular Biosciences",0.1022 -"Polar Programs",0.0722 -Arts,0.0628 -"Earth Sciences",0.0545 -Physics,0.0150 -"Environmental Biology",0.0144 -"Atmospheric Sciences",0.0137 -"Computer and Computation Research",0.0010 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv deleted file mode 100644 index a5c344a12c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Department,"Screwdriver CPU Utilization (%)" -"Electrical and Communication Systems",0.2312 -"Microelectronic Information Processing Systems",0.2013 -Chemistry,0.1304 -"Social and Economic Science",0.0906 -"Design and Manufacturing Systems",0.0558 -"Mathematical Sciences",0.0552 -"Materials Research",0.0477 -"Mechanical and Structural Systems",0.0400 -"Chemical, Thermal Systems",0.0355 -"Astronomical Sciences",0.0330 -"Molecular Biosciences",0.0282 -"Polar Programs",0.0196 -Arts,0.0171 -"Earth Sciences",0.0149 -Physics,0.0043 -"Environmental Biology",0.0041 -"Atmospheric Sciences",0.0039 -"Computer and Computation Research",0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 6962f806b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0.2118,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0 -2016-12-23,0,0,0.3000,0,0,0,0,0,0.0090,0,0.3000,0,0,0,0,0,0,0 -2016-12-24,0,0,0.3000,0,0,0,0,0,0.0250,0,0.3000,0,0,0,0,0,0,0 -2016-12-25,0,0,0.4857,0,0,0,0,0,0.0250,0,0.3000,0,0,0,0,0,0,0 -2016-12-26,0,0,1.8000,0,0,0.2253,0,0,0.0250,0,0.3000,0,0,0,0,0,0,0 -2016-12-27,3.8952,0,1.1947,0.0034,0,1.0025,0,4.4779,0.6821,0,0.6920,0,0,0,0,0,0,0 -2016-12-28,22.8458,1.3590,13.6883,0.0250,0,1.3912,2.0446,3.4312,1.4880,0,1.8349,0,0,0.0979,0.1890,0,0,0 -2016-12-29,26.7698,14.5138,19.1980,0.4951,1.7124,5.3438,4.0642,6.2024,2.4427,0,2.2479,0.7906,0.2688,0.2771,0.9000,0,1.0815,0.0105 -2016-12-30,27.9626,25.4427,14.6817,13.3100,9.6235,4.1644,5.7014,6.5732,3.6033,7.7129,2.1519,0.5563,3.6308,1.8742,0.5661,0.5439,0.4196,0.0855 -2016-12-31,15.8967,23.5311,6.6018,18.5010,3.4512,6.2858,6.4956,2.1652,4.4592,5.9391,1.7047,0.1245,2.4113,6.8008,0,0.1307,0,0.0090 -2017-01-01,3.9625,12.6529,1.7700,1.8066,0.0283,2.5828,3.1696,0,1.8519,0,1.3977,9.9384,0.1562,0.0342,0,0.9068,0.0036,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv deleted file mode 100644 index ee5aae1346..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" -2016-12,5.4193,3.2423,4.1148,3.0974,1.4077,0.9153,1.4999,2.9574,0.9347,0.6826,0.6224,0.0615,0.4854,0.4308,0.0828,0.0337,0.0751,0.0053 -2017-01,0.1278,0.4082,0.0571,0.0583,0.0833,0.1022,0,0.0009,0.0597,0,0.0451,0.3206,0.0050,0.0011,0,0.0293,0.0001,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index b10567dcde..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" -"2016 Q4",5.4193,3.2423,4.1148,3.0974,1.4077,0.9153,1.4999,2.9574,0.6826,0.9347,0.6224,0.0615,0.4854,0.4308,0.0828,0.0337,0.0751,0.0053 -"2017 Q1",0.0440,0.1406,0.0197,0.0201,0.0287,0.0352,0,0.0003,0,0.0206,0.0155,0.1104,0.0017,0.0004,0,0.0101,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 88bf9b9d08..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/parentscience/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Department" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Electrical and Communication Systems] Screwdriver CPU Utilization (%)","[Microelectronic Information Processing Systems] Screwdriver CPU Utilization (%)","[Chemistry] Screwdriver CPU Utilization (%)","[Social and Economic Science] Screwdriver CPU Utilization (%)","[Design and Manufacturing Systems] Screwdriver CPU Utilization (%)","[Mathematical Sciences] Screwdriver CPU Utilization (%)","[Materials Research] Screwdriver CPU Utilization (%)","[Mechanical and Structural Systems] Screwdriver CPU Utilization (%)","[Chemical, Thermal Systems] Screwdriver CPU Utilization (%)","[Astronomical Sciences] Screwdriver CPU Utilization (%)","[Molecular Biosciences] Screwdriver CPU Utilization (%)","[Polar Programs] Screwdriver CPU Utilization (%)","[Arts] Screwdriver CPU Utilization (%)","[Earth Sciences] Screwdriver CPU Utilization (%)","[Physics] Screwdriver CPU Utilization (%)","[Environmental Biology] Screwdriver CPU Utilization (%)","[Atmospheric Sciences] Screwdriver CPU Utilization (%)","[Computer and Computation Research] Screwdriver CPU Utilization (%)" -2016,5.4193,3.2423,4.1148,3.0974,0.9153,1.4077,1.4999,2.9574,0.6826,0.9347,0.6224,0.0615,0.4854,0.4308,0.0828,0.0337,0.0751,0.0053 -2017,0.0109,0.0347,0.0048,0.0049,0.0087,0.0071,0,0.0001,0,0.0051,0.0038,0.0272,0.0004,0.0001,0,0.0025,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index a08d34ab38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Users: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index a08d34ab38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Users: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index a08d34ab38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Users: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index a08d34ab38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Users: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 948e6b2a2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" -2016-12-22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-27,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0 -2016-12-28,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,1,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,1,1,1,0,0 -2016-12-29,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,1,0 -2016-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1 -2017-01-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 5fde984947..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index a0b3bca868..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 3da0b5835d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Auk, Little] Number of Users: Active","[Bunting, Black-headed] Number of Users: Active","[Bunting, Reed] Number of Users: Active","[Bunting, Yellow-breasted] Number of Users: Active","[Bunting, Yellow-browed] Number of Users: Active","[Chaffinch] Number of Users: Active","[Coot] Number of Users: Active","[Crane] Number of Users: Active","[Crane, Sandhill] Number of Users: Active","[Dove, Turtle] Number of Users: Active","[Duck, Ferruginous] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Cattle] Number of Users: Active","[Fieldfare] Number of Users: Active","[Gallinule, Allen's] Number of Users: Active","[Goose, Egyptian] Number of Users: Active","[Grebe, Pied-billed] Number of Users: Active","[Grey, Great] Number of Users: Active","[Grey, Lesser] Number of Users: Active","[Grey, Southern] Number of Users: Active","[Grosbeak, Evening] Number of Users: Active","[Gull, Ring-billed] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Honey-buzzard] Number of Users: Active","[Ibis, Glossy] Number of Users: Active","[Jackdaw] Number of Users: Active","[Lapwing] Number of Users: Active","[Martin, Crag] Number of Users: Active","[Martin, Purple] Number of Users: Active","[Moorhen] Number of Users: Active","[Oriole, Baltimore] Number of Users: Active","[Ovenbird] Number of Users: Active","[Partridge, Red-legged] Number of Users: Active","[Peregrine] Number of Users: Active","[Pipit, Meadow] Number of Users: Active","[Plover, Caspian] Number of Users: Active","[Plover, White-tailed] Number of Users: Active","[Redpoll, Lesser] Number of Users: Active","[Roller] Number of Users: Active","[Sandpiper, Spotted] Number of Users: Active","[Sapsucker, Yellow-bellied] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Scoter, Velvet] Number of Users: Active","[Shag] Number of Users: Active","[Shearwater, Cory's] Number of Users: Active","[Shrike, Long-tailed] Number of Users: Active","[Siskin] Number of Users: Active","[Smew] Number of Users: Active","[Sparrow, Savannah] Number of Users: Active","[Sparrow, White-throated] Number of Users: Active","[Stint, Little] Number of Users: Active","[Swift, Alpine] Number of Users: Active","[Tern, Sandwich] Number of Users: Active","[Thrush, Grey-cheeked] Number of Users: Active","[Thrush, Mistle] Number of Users: Active","[Thrush, Swainson's] Number of Users: Active","[Treecreeper, Short-toed] Number of Users: Active","[Warbler, Booted] Number of Users: Active","[Warbler, Dusky] Number of Users: Active","[Warbler, Garden] Number of Users: Active","[Warbler, Golden-winged] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Warbler, Moltoni's] Number of Users: Active","[Warbler, Sardinian] Number of Users: Active","[Warbler, Yellow-browed] Number of Users: Active","[Whimbrel] Number of Users: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 3c952c9d5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of PIs: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 3c952c9d5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of PIs: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 3c952c9d5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of PIs: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 3c952c9d5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of PIs: Active" -"Auk, Little",1 -"Bunting, Black-headed",1 -"Bunting, Reed",1 -"Bunting, Yellow-breasted",1 -"Bunting, Yellow-browed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Crane, Sandhill",1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, Caspian",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Shag,1 -"Shearwater, Cory's",1 -"Shrike, Long-tailed",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Stint, Little",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Thrush, Mistle",1 -"Thrush, Swainson's",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Sardinian",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index df3142c666..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" -2016-12-22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-27,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0 -2016-12-28,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,1,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,1,1,1,0,0 -2016-12-29,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,1,0 -2016-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1 -2017-01-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index e9006d05ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 59b7cc826e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index e45c0e1257..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Auk, Little] Number of PIs: Active","[Bunting, Black-headed] Number of PIs: Active","[Bunting, Reed] Number of PIs: Active","[Bunting, Yellow-breasted] Number of PIs: Active","[Bunting, Yellow-browed] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Coot] Number of PIs: Active","[Crane] Number of PIs: Active","[Crane, Sandhill] Number of PIs: Active","[Dove, Turtle] Number of PIs: Active","[Duck, Ferruginous] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Cattle] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Gallinule, Allen's] Number of PIs: Active","[Goose, Egyptian] Number of PIs: Active","[Grebe, Pied-billed] Number of PIs: Active","[Grey, Great] Number of PIs: Active","[Grey, Lesser] Number of PIs: Active","[Grey, Southern] Number of PIs: Active","[Grosbeak, Evening] Number of PIs: Active","[Gull, Ring-billed] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Honey-buzzard] Number of PIs: Active","[Ibis, Glossy] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Lapwing] Number of PIs: Active","[Martin, Crag] Number of PIs: Active","[Martin, Purple] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Oriole, Baltimore] Number of PIs: Active","[Ovenbird] Number of PIs: Active","[Partridge, Red-legged] Number of PIs: Active","[Peregrine] Number of PIs: Active","[Pipit, Meadow] Number of PIs: Active","[Plover, Caspian] Number of PIs: Active","[Plover, White-tailed] Number of PIs: Active","[Redpoll, Lesser] Number of PIs: Active","[Roller] Number of PIs: Active","[Sandpiper, Spotted] Number of PIs: Active","[Sapsucker, Yellow-bellied] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Scoter, Velvet] Number of PIs: Active","[Shag] Number of PIs: Active","[Shearwater, Cory's] Number of PIs: Active","[Shrike, Long-tailed] Number of PIs: Active","[Siskin] Number of PIs: Active","[Smew] Number of PIs: Active","[Sparrow, Savannah] Number of PIs: Active","[Sparrow, White-throated] Number of PIs: Active","[Stint, Little] Number of PIs: Active","[Swift, Alpine] Number of PIs: Active","[Tern, Sandwich] Number of PIs: Active","[Thrush, Grey-cheeked] Number of PIs: Active","[Thrush, Mistle] Number of PIs: Active","[Thrush, Swainson's] Number of PIs: Active","[Treecreeper, Short-toed] Number of PIs: Active","[Warbler, Booted] Number of PIs: Active","[Warbler, Dusky] Number of PIs: Active","[Warbler, Garden] Number of PIs: Active","[Warbler, Golden-winged] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Moltoni's] Number of PIs: Active","[Warbler, Sardinian] Number of PIs: Active","[Warbler, Yellow-browed] Number of PIs: Active","[Whimbrel] Number of PIs: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,1,0,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 764bf95e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Resources: Active" -Honey-buzzard,5 -"Bunting, Reed",3 -"Crane, Sandhill",3 -"Bunting, Yellow-breasted",2 -"Bunting, Yellow-browed",2 -"Plover, Caspian",2 -"Scoter, Velvet",2 -Shag,2 -"Shrike, Long-tailed",2 -"Stint, Little",2 -"Thrush, Grey-cheeked",2 -"Thrush, Swainson's",2 -"Warbler, Sardinian",2 -"Auk, Little",1 -"Bunting, Black-headed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Shearwater, Cory's",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Mistle",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 764bf95e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Resources: Active" -Honey-buzzard,5 -"Bunting, Reed",3 -"Crane, Sandhill",3 -"Bunting, Yellow-breasted",2 -"Bunting, Yellow-browed",2 -"Plover, Caspian",2 -"Scoter, Velvet",2 -Shag,2 -"Shrike, Long-tailed",2 -"Stint, Little",2 -"Thrush, Grey-cheeked",2 -"Thrush, Swainson's",2 -"Warbler, Sardinian",2 -"Auk, Little",1 -"Bunting, Black-headed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Shearwater, Cory's",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Mistle",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 764bf95e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Resources: Active" -Honey-buzzard,5 -"Bunting, Reed",3 -"Crane, Sandhill",3 -"Bunting, Yellow-breasted",2 -"Bunting, Yellow-browed",2 -"Plover, Caspian",2 -"Scoter, Velvet",2 -Shag,2 -"Shrike, Long-tailed",2 -"Stint, Little",2 -"Thrush, Grey-cheeked",2 -"Thrush, Swainson's",2 -"Warbler, Sardinian",2 -"Auk, Little",1 -"Bunting, Black-headed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Shearwater, Cory's",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Mistle",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 764bf95e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Resources: Active" -Honey-buzzard,5 -"Bunting, Reed",3 -"Crane, Sandhill",3 -"Bunting, Yellow-breasted",2 -"Bunting, Yellow-browed",2 -"Plover, Caspian",2 -"Scoter, Velvet",2 -Shag,2 -"Shrike, Long-tailed",2 -"Stint, Little",2 -"Thrush, Grey-cheeked",2 -"Thrush, Swainson's",2 -"Warbler, Sardinian",2 -"Auk, Little",1 -"Bunting, Black-headed",1 -Chaffinch,1 -Coot,1 -Crane,1 -"Dove, Turtle",1 -"Duck, Ferruginous",1 -Dunlin,1 -"Egret, Cattle",1 -Fieldfare,1 -"Gallinule, Allen's",1 -"Goose, Egyptian",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -"Ibis, Glossy",1 -Jackdaw,1 -Lapwing,1 -"Martin, Crag",1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -Ovenbird,1 -"Partridge, Red-legged",1 -Peregrine,1 -"Pipit, Meadow",1 -"Plover, White-tailed",1 -"Redpoll, Lesser",1 -Roller,1 -"Sandpiper, Spotted",1 -"Sapsucker, Yellow-bellied",1 -"Scaup, Lesser",1 -"Shearwater, Cory's",1 -Siskin,1 -Smew,1 -"Sparrow, Savannah",1 -"Sparrow, White-throated",1 -"Swift, Alpine",1 -"Tern, Sandwich",1 -"Thrush, Mistle",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Hooded",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 -Whimbrel,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 7da97e2b57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0 -2016-12-27,1,2,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0 -2016-12-28,1,2,2,1,0,0,1,2,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,1,1,1,0,1,0,1,1,0,0 -2016-12-29,4,3,3,2,1,0,1,2,1,0,1,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,0,1,0,1,1,1,0 -2016-12-30,5,3,3,2,2,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,5,3,2,1,1,1,0,2,2,1,2,1,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1 -2017-01-01,5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index eaee7bc86e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" -2016-12,5,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index de5dfd42ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" -"2016 Q4",5,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 9284193c4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Honey-buzzard] Number of Resources: Active","[Bunting, Reed] Number of Resources: Active","[Crane, Sandhill] Number of Resources: Active","[Bunting, Yellow-breasted] Number of Resources: Active","[Bunting, Yellow-browed] Number of Resources: Active","[Plover, Caspian] Number of Resources: Active","[Scoter, Velvet] Number of Resources: Active","[Shag] Number of Resources: Active","[Shrike, Long-tailed] Number of Resources: Active","[Stint, Little] Number of Resources: Active","[Thrush, Grey-cheeked] Number of Resources: Active","[Thrush, Swainson's] Number of Resources: Active","[Warbler, Sardinian] Number of Resources: Active","[Auk, Little] Number of Resources: Active","[Bunting, Black-headed] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Coot] Number of Resources: Active","[Crane] Number of Resources: Active","[Dove, Turtle] Number of Resources: Active","[Duck, Ferruginous] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Egret, Cattle] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Gallinule, Allen's] Number of Resources: Active","[Goose, Egyptian] Number of Resources: Active","[Grebe, Pied-billed] Number of Resources: Active","[Grey, Great] Number of Resources: Active","[Grey, Lesser] Number of Resources: Active","[Grey, Southern] Number of Resources: Active","[Grosbeak, Evening] Number of Resources: Active","[Gull, Ring-billed] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Ibis, Glossy] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Lapwing] Number of Resources: Active","[Martin, Crag] Number of Resources: Active","[Martin, Purple] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Oriole, Baltimore] Number of Resources: Active","[Ovenbird] Number of Resources: Active","[Partridge, Red-legged] Number of Resources: Active","[Peregrine] Number of Resources: Active","[Pipit, Meadow] Number of Resources: Active","[Plover, White-tailed] Number of Resources: Active","[Redpoll, Lesser] Number of Resources: Active","[Roller] Number of Resources: Active","[Sandpiper, Spotted] Number of Resources: Active","[Sapsucker, Yellow-bellied] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Shearwater, Cory's] Number of Resources: Active","[Siskin] Number of Resources: Active","[Smew] Number of Resources: Active","[Sparrow, Savannah] Number of Resources: Active","[Sparrow, White-throated] Number of Resources: Active","[Swift, Alpine] Number of Resources: Active","[Tern, Sandwich] Number of Resources: Active","[Thrush, Mistle] Number of Resources: Active","[Treecreeper, Short-toed] Number of Resources: Active","[Warbler, Booted] Number of Resources: Active","[Warbler, Dusky] Number of Resources: Active","[Warbler, Garden] Number of Resources: Active","[Warbler, Golden-winged] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[Warbler, Moltoni's] Number of Resources: Active","[Warbler, Yellow-browed] Number of Resources: Active","[Whimbrel] Number of Resources: Active" -2016,5,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,5,2,0,0,0,2,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index d269925257..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 7a3f651866..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7a3f651866..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7a3f651866..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index e056525627..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index ddc656859b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c2dc7cbdd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index c836c4e25c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index fde886ddc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Per Job" -"Oriole, Baltimore",16.89709259 -"Auk, Little",0.00000000 -"Bunting, Black-headed",0.00000000 -"Bunting, Reed",0.00000000 -"Bunting, Yellow-breasted",0.00000000 -"Bunting, Yellow-browed",0.00000000 -Chaffinch,0.00000000 -Coot,0.00000000 -Crane,0.00000000 -"Crane, Sandhill",0.00000000 -"Dove, Turtle",0.00000000 -"Duck, Ferruginous",0.00000000 -Dunlin,0.00000000 -"Egret, Cattle",0.00000000 -Fieldfare,0.00000000 -"Gallinule, Allen's",0.00000000 -"Goose, Egyptian",0.00000000 -"Grebe, Pied-billed",0.00000000 -"Grey, Great",0.00000000 -"Grey, Lesser",0.00000000 -"Grey, Southern",0.00000000 -"Grosbeak, Evening",0.00000000 -"Gull, Ring-billed",0.00000000 -"Harrier, Hen",0.00000000 -Honey-buzzard,0.00000000 -"Ibis, Glossy",0.00000000 -Jackdaw,0.00000000 -Lapwing,0.00000000 -"Martin, Crag",0.00000000 -"Martin, Purple",0.00000000 -Moorhen,0.00000000 -Ovenbird,0.00000000 -"Partridge, Red-legged",0.00000000 -Peregrine,0.00000000 -"Pipit, Meadow",0.00000000 -"Plover, Caspian",0.00000000 -"Plover, White-tailed",0.00000000 -"Redpoll, Lesser",0.00000000 -Roller,0.00000000 -"Sandpiper, Spotted",0.00000000 -"Sapsucker, Yellow-bellied",0.00000000 -"Scaup, Lesser",0.00000000 -"Scoter, Velvet",0.00000000 -Shag,0.00000000 -"Shearwater, Cory's",0.00000000 -"Shrike, Long-tailed",0.00000000 -Siskin,0.00000000 -Smew,0.00000000 -"Sparrow, Savannah",0.00000000 -"Sparrow, White-throated",0.00000000 -"Stint, Little",0.00000000 -"Swift, Alpine",0.00000000 -"Tern, Sandwich",0.00000000 -"Thrush, Grey-cheeked",0.00000000 -"Thrush, Mistle",0.00000000 -"Thrush, Swainson's",0.00000000 -"Treecreeper, Short-toed",0.00000000 -"Warbler, Booted",0.00000000 -"Warbler, Dusky",0.00000000 -"Warbler, Garden",0.00000000 -"Warbler, Golden-winged",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Moltoni's",0.00000000 -"Warbler, Sardinian",0.00000000 -"Warbler, Yellow-browed",0.00000000 -Whimbrel,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index fde886ddc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Per Job" -"Oriole, Baltimore",16.89709259 -"Auk, Little",0.00000000 -"Bunting, Black-headed",0.00000000 -"Bunting, Reed",0.00000000 -"Bunting, Yellow-breasted",0.00000000 -"Bunting, Yellow-browed",0.00000000 -Chaffinch,0.00000000 -Coot,0.00000000 -Crane,0.00000000 -"Crane, Sandhill",0.00000000 -"Dove, Turtle",0.00000000 -"Duck, Ferruginous",0.00000000 -Dunlin,0.00000000 -"Egret, Cattle",0.00000000 -Fieldfare,0.00000000 -"Gallinule, Allen's",0.00000000 -"Goose, Egyptian",0.00000000 -"Grebe, Pied-billed",0.00000000 -"Grey, Great",0.00000000 -"Grey, Lesser",0.00000000 -"Grey, Southern",0.00000000 -"Grosbeak, Evening",0.00000000 -"Gull, Ring-billed",0.00000000 -"Harrier, Hen",0.00000000 -Honey-buzzard,0.00000000 -"Ibis, Glossy",0.00000000 -Jackdaw,0.00000000 -Lapwing,0.00000000 -"Martin, Crag",0.00000000 -"Martin, Purple",0.00000000 -Moorhen,0.00000000 -Ovenbird,0.00000000 -"Partridge, Red-legged",0.00000000 -Peregrine,0.00000000 -"Pipit, Meadow",0.00000000 -"Plover, Caspian",0.00000000 -"Plover, White-tailed",0.00000000 -"Redpoll, Lesser",0.00000000 -Roller,0.00000000 -"Sandpiper, Spotted",0.00000000 -"Sapsucker, Yellow-bellied",0.00000000 -"Scaup, Lesser",0.00000000 -"Scoter, Velvet",0.00000000 -Shag,0.00000000 -"Shearwater, Cory's",0.00000000 -"Shrike, Long-tailed",0.00000000 -Siskin,0.00000000 -Smew,0.00000000 -"Sparrow, Savannah",0.00000000 -"Sparrow, White-throated",0.00000000 -"Stint, Little",0.00000000 -"Swift, Alpine",0.00000000 -"Tern, Sandwich",0.00000000 -"Thrush, Grey-cheeked",0.00000000 -"Thrush, Mistle",0.00000000 -"Thrush, Swainson's",0.00000000 -"Treecreeper, Short-toed",0.00000000 -"Warbler, Booted",0.00000000 -"Warbler, Dusky",0.00000000 -"Warbler, Garden",0.00000000 -"Warbler, Golden-winged",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Moltoni's",0.00000000 -"Warbler, Sardinian",0.00000000 -"Warbler, Yellow-browed",0.00000000 -Whimbrel,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fde886ddc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Per Job" -"Oriole, Baltimore",16.89709259 -"Auk, Little",0.00000000 -"Bunting, Black-headed",0.00000000 -"Bunting, Reed",0.00000000 -"Bunting, Yellow-breasted",0.00000000 -"Bunting, Yellow-browed",0.00000000 -Chaffinch,0.00000000 -Coot,0.00000000 -Crane,0.00000000 -"Crane, Sandhill",0.00000000 -"Dove, Turtle",0.00000000 -"Duck, Ferruginous",0.00000000 -Dunlin,0.00000000 -"Egret, Cattle",0.00000000 -Fieldfare,0.00000000 -"Gallinule, Allen's",0.00000000 -"Goose, Egyptian",0.00000000 -"Grebe, Pied-billed",0.00000000 -"Grey, Great",0.00000000 -"Grey, Lesser",0.00000000 -"Grey, Southern",0.00000000 -"Grosbeak, Evening",0.00000000 -"Gull, Ring-billed",0.00000000 -"Harrier, Hen",0.00000000 -Honey-buzzard,0.00000000 -"Ibis, Glossy",0.00000000 -Jackdaw,0.00000000 -Lapwing,0.00000000 -"Martin, Crag",0.00000000 -"Martin, Purple",0.00000000 -Moorhen,0.00000000 -Ovenbird,0.00000000 -"Partridge, Red-legged",0.00000000 -Peregrine,0.00000000 -"Pipit, Meadow",0.00000000 -"Plover, Caspian",0.00000000 -"Plover, White-tailed",0.00000000 -"Redpoll, Lesser",0.00000000 -Roller,0.00000000 -"Sandpiper, Spotted",0.00000000 -"Sapsucker, Yellow-bellied",0.00000000 -"Scaup, Lesser",0.00000000 -"Scoter, Velvet",0.00000000 -Shag,0.00000000 -"Shearwater, Cory's",0.00000000 -"Shrike, Long-tailed",0.00000000 -Siskin,0.00000000 -Smew,0.00000000 -"Sparrow, Savannah",0.00000000 -"Sparrow, White-throated",0.00000000 -"Stint, Little",0.00000000 -"Swift, Alpine",0.00000000 -"Tern, Sandwich",0.00000000 -"Thrush, Grey-cheeked",0.00000000 -"Thrush, Mistle",0.00000000 -"Thrush, Swainson's",0.00000000 -"Treecreeper, Short-toed",0.00000000 -"Warbler, Booted",0.00000000 -"Warbler, Dusky",0.00000000 -"Warbler, Garden",0.00000000 -"Warbler, Golden-winged",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Moltoni's",0.00000000 -"Warbler, Sardinian",0.00000000 -"Warbler, Yellow-browed",0.00000000 -Whimbrel,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index fde886ddc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Per Job" -"Oriole, Baltimore",16.89709259 -"Auk, Little",0.00000000 -"Bunting, Black-headed",0.00000000 -"Bunting, Reed",0.00000000 -"Bunting, Yellow-breasted",0.00000000 -"Bunting, Yellow-browed",0.00000000 -Chaffinch,0.00000000 -Coot,0.00000000 -Crane,0.00000000 -"Crane, Sandhill",0.00000000 -"Dove, Turtle",0.00000000 -"Duck, Ferruginous",0.00000000 -Dunlin,0.00000000 -"Egret, Cattle",0.00000000 -Fieldfare,0.00000000 -"Gallinule, Allen's",0.00000000 -"Goose, Egyptian",0.00000000 -"Grebe, Pied-billed",0.00000000 -"Grey, Great",0.00000000 -"Grey, Lesser",0.00000000 -"Grey, Southern",0.00000000 -"Grosbeak, Evening",0.00000000 -"Gull, Ring-billed",0.00000000 -"Harrier, Hen",0.00000000 -Honey-buzzard,0.00000000 -"Ibis, Glossy",0.00000000 -Jackdaw,0.00000000 -Lapwing,0.00000000 -"Martin, Crag",0.00000000 -"Martin, Purple",0.00000000 -Moorhen,0.00000000 -Ovenbird,0.00000000 -"Partridge, Red-legged",0.00000000 -Peregrine,0.00000000 -"Pipit, Meadow",0.00000000 -"Plover, Caspian",0.00000000 -"Plover, White-tailed",0.00000000 -"Redpoll, Lesser",0.00000000 -Roller,0.00000000 -"Sandpiper, Spotted",0.00000000 -"Sapsucker, Yellow-bellied",0.00000000 -"Scaup, Lesser",0.00000000 -"Scoter, Velvet",0.00000000 -Shag,0.00000000 -"Shearwater, Cory's",0.00000000 -"Shrike, Long-tailed",0.00000000 -Siskin,0.00000000 -Smew,0.00000000 -"Sparrow, Savannah",0.00000000 -"Sparrow, White-throated",0.00000000 -"Stint, Little",0.00000000 -"Swift, Alpine",0.00000000 -"Tern, Sandwich",0.00000000 -"Thrush, Grey-cheeked",0.00000000 -"Thrush, Mistle",0.00000000 -"Thrush, Swainson's",0.00000000 -"Treecreeper, Short-toed",0.00000000 -"Warbler, Booted",0.00000000 -"Warbler, Dusky",0.00000000 -"Warbler, Garden",0.00000000 -"Warbler, Golden-winged",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Moltoni's",0.00000000 -"Warbler, Sardinian",0.00000000 -"Warbler, Yellow-browed",0.00000000 -Whimbrel,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index dec7ab4864..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,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,48.00000000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.00000000,0,0,0.00000000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0,0.00000000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0 -2016-12-27,48.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0 -2016-12-28,48.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0 -2016-12-29,48.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 -2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,9.60000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000 -2017-01-01,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index ced4fdb804..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" -2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index dd49037a3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" -"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index b4f55273ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" -2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 50b9435dea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Oriole, Baltimore",0.1333,0.09108400682479477 -"Auk, Little",0.0000,0 -"Bunting, Black-headed",0.0000,0 -"Bunting, Reed",0.0000,0 -"Bunting, Yellow-breasted",0.0000,0 -"Bunting, Yellow-browed",0.0000,0 -Chaffinch,0.0000,0 -Coot,0.0000,0 -Crane,0.0000,0 -"Crane, Sandhill",0.0000,0 -"Dove, Turtle",0.0000,0 -"Duck, Ferruginous",0.0000,0 -Dunlin,0.0000,0 -"Egret, Cattle",0.0000,0 -Fieldfare,0.0000,0 -"Gallinule, Allen's",0.0000,0 -"Goose, Egyptian",0.0000,0 -"Grebe, Pied-billed",0.0000,0 -"Grey, Great",0.0000,0 -"Grey, Lesser",0.0000,0 -"Grey, Southern",0.0000,0 -"Grosbeak, Evening",0.0000,0 -"Gull, Ring-billed",0.0000,0 -"Harrier, Hen",0.0000,0 -Honey-buzzard,0.0000,0 -"Ibis, Glossy",0.0000,0 -Jackdaw,0.0000,0 -Lapwing,0.0000,0 -"Martin, Crag",0.0000,0 -"Martin, Purple",0.0000,0 -Moorhen,0.0000,0 -Ovenbird,0.0000,0 -"Partridge, Red-legged",0.0000,0 -Peregrine,0.0000,0 -"Pipit, Meadow",0.0000,0 -"Plover, Caspian",0.0000,0 -"Plover, White-tailed",0.0000,0 -"Redpoll, Lesser",0.0000,0 -Roller,0.0000,0 -"Sandpiper, Spotted",0.0000,0 -"Sapsucker, Yellow-bellied",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Scoter, Velvet",0.0000,0 -Shag,0.0000,0 -"Shearwater, Cory's",0.0000,0 -"Shrike, Long-tailed",0.0000,0 -Siskin,0.0000,0 -Smew,0.0000,0 -"Sparrow, Savannah",0.0000,0 -"Sparrow, White-throated",0.0000,0 -"Stint, Little",0.0000,0 -"Swift, Alpine",0.0000,0 -"Tern, Sandwich",0.0000,0 -"Thrush, Grey-cheeked",0.0000,0 -"Thrush, Mistle",0.0000,0 -"Thrush, Swainson's",0.0000,0 -"Treecreeper, Short-toed",0.0000,0 -"Warbler, Booted",0.0000,0 -"Warbler, Dusky",0.0000,0 -"Warbler, Garden",0.0000,0 -"Warbler, Golden-winged",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Moltoni's",0.0000,0 -"Warbler, Sardinian",0.0000,0 -"Warbler, Yellow-browed",0.0000,0 -Whimbrel,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 50b9435dea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Oriole, Baltimore",0.1333,0.09108400682479477 -"Auk, Little",0.0000,0 -"Bunting, Black-headed",0.0000,0 -"Bunting, Reed",0.0000,0 -"Bunting, Yellow-breasted",0.0000,0 -"Bunting, Yellow-browed",0.0000,0 -Chaffinch,0.0000,0 -Coot,0.0000,0 -Crane,0.0000,0 -"Crane, Sandhill",0.0000,0 -"Dove, Turtle",0.0000,0 -"Duck, Ferruginous",0.0000,0 -Dunlin,0.0000,0 -"Egret, Cattle",0.0000,0 -Fieldfare,0.0000,0 -"Gallinule, Allen's",0.0000,0 -"Goose, Egyptian",0.0000,0 -"Grebe, Pied-billed",0.0000,0 -"Grey, Great",0.0000,0 -"Grey, Lesser",0.0000,0 -"Grey, Southern",0.0000,0 -"Grosbeak, Evening",0.0000,0 -"Gull, Ring-billed",0.0000,0 -"Harrier, Hen",0.0000,0 -Honey-buzzard,0.0000,0 -"Ibis, Glossy",0.0000,0 -Jackdaw,0.0000,0 -Lapwing,0.0000,0 -"Martin, Crag",0.0000,0 -"Martin, Purple",0.0000,0 -Moorhen,0.0000,0 -Ovenbird,0.0000,0 -"Partridge, Red-legged",0.0000,0 -Peregrine,0.0000,0 -"Pipit, Meadow",0.0000,0 -"Plover, Caspian",0.0000,0 -"Plover, White-tailed",0.0000,0 -"Redpoll, Lesser",0.0000,0 -Roller,0.0000,0 -"Sandpiper, Spotted",0.0000,0 -"Sapsucker, Yellow-bellied",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Scoter, Velvet",0.0000,0 -Shag,0.0000,0 -"Shearwater, Cory's",0.0000,0 -"Shrike, Long-tailed",0.0000,0 -Siskin,0.0000,0 -Smew,0.0000,0 -"Sparrow, Savannah",0.0000,0 -"Sparrow, White-throated",0.0000,0 -"Stint, Little",0.0000,0 -"Swift, Alpine",0.0000,0 -"Tern, Sandwich",0.0000,0 -"Thrush, Grey-cheeked",0.0000,0 -"Thrush, Mistle",0.0000,0 -"Thrush, Swainson's",0.0000,0 -"Treecreeper, Short-toed",0.0000,0 -"Warbler, Booted",0.0000,0 -"Warbler, Dusky",0.0000,0 -"Warbler, Garden",0.0000,0 -"Warbler, Golden-winged",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Moltoni's",0.0000,0 -"Warbler, Sardinian",0.0000,0 -"Warbler, Yellow-browed",0.0000,0 -Whimbrel,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 50b9435dea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Oriole, Baltimore",0.1333,0.09108400682479477 -"Auk, Little",0.0000,0 -"Bunting, Black-headed",0.0000,0 -"Bunting, Reed",0.0000,0 -"Bunting, Yellow-breasted",0.0000,0 -"Bunting, Yellow-browed",0.0000,0 -Chaffinch,0.0000,0 -Coot,0.0000,0 -Crane,0.0000,0 -"Crane, Sandhill",0.0000,0 -"Dove, Turtle",0.0000,0 -"Duck, Ferruginous",0.0000,0 -Dunlin,0.0000,0 -"Egret, Cattle",0.0000,0 -Fieldfare,0.0000,0 -"Gallinule, Allen's",0.0000,0 -"Goose, Egyptian",0.0000,0 -"Grebe, Pied-billed",0.0000,0 -"Grey, Great",0.0000,0 -"Grey, Lesser",0.0000,0 -"Grey, Southern",0.0000,0 -"Grosbeak, Evening",0.0000,0 -"Gull, Ring-billed",0.0000,0 -"Harrier, Hen",0.0000,0 -Honey-buzzard,0.0000,0 -"Ibis, Glossy",0.0000,0 -Jackdaw,0.0000,0 -Lapwing,0.0000,0 -"Martin, Crag",0.0000,0 -"Martin, Purple",0.0000,0 -Moorhen,0.0000,0 -Ovenbird,0.0000,0 -"Partridge, Red-legged",0.0000,0 -Peregrine,0.0000,0 -"Pipit, Meadow",0.0000,0 -"Plover, Caspian",0.0000,0 -"Plover, White-tailed",0.0000,0 -"Redpoll, Lesser",0.0000,0 -Roller,0.0000,0 -"Sandpiper, Spotted",0.0000,0 -"Sapsucker, Yellow-bellied",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Scoter, Velvet",0.0000,0 -Shag,0.0000,0 -"Shearwater, Cory's",0.0000,0 -"Shrike, Long-tailed",0.0000,0 -Siskin,0.0000,0 -Smew,0.0000,0 -"Sparrow, Savannah",0.0000,0 -"Sparrow, White-throated",0.0000,0 -"Stint, Little",0.0000,0 -"Swift, Alpine",0.0000,0 -"Tern, Sandwich",0.0000,0 -"Thrush, Grey-cheeked",0.0000,0 -"Thrush, Mistle",0.0000,0 -"Thrush, Swainson's",0.0000,0 -"Treecreeper, Short-toed",0.0000,0 -"Warbler, Booted",0.0000,0 -"Warbler, Dusky",0.0000,0 -"Warbler, Garden",0.0000,0 -"Warbler, Golden-winged",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Moltoni's",0.0000,0 -"Warbler, Sardinian",0.0000,0 -"Warbler, Yellow-browed",0.0000,0 -Whimbrel,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 50b9435dea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"Oriole, Baltimore",0.1333,0.09108400682479477 -"Auk, Little",0.0000,0 -"Bunting, Black-headed",0.0000,0 -"Bunting, Reed",0.0000,0 -"Bunting, Yellow-breasted",0.0000,0 -"Bunting, Yellow-browed",0.0000,0 -Chaffinch,0.0000,0 -Coot,0.0000,0 -Crane,0.0000,0 -"Crane, Sandhill",0.0000,0 -"Dove, Turtle",0.0000,0 -"Duck, Ferruginous",0.0000,0 -Dunlin,0.0000,0 -"Egret, Cattle",0.0000,0 -Fieldfare,0.0000,0 -"Gallinule, Allen's",0.0000,0 -"Goose, Egyptian",0.0000,0 -"Grebe, Pied-billed",0.0000,0 -"Grey, Great",0.0000,0 -"Grey, Lesser",0.0000,0 -"Grey, Southern",0.0000,0 -"Grosbeak, Evening",0.0000,0 -"Gull, Ring-billed",0.0000,0 -"Harrier, Hen",0.0000,0 -Honey-buzzard,0.0000,0 -"Ibis, Glossy",0.0000,0 -Jackdaw,0.0000,0 -Lapwing,0.0000,0 -"Martin, Crag",0.0000,0 -"Martin, Purple",0.0000,0 -Moorhen,0.0000,0 -Ovenbird,0.0000,0 -"Partridge, Red-legged",0.0000,0 -Peregrine,0.0000,0 -"Pipit, Meadow",0.0000,0 -"Plover, Caspian",0.0000,0 -"Plover, White-tailed",0.0000,0 -"Redpoll, Lesser",0.0000,0 -Roller,0.0000,0 -"Sandpiper, Spotted",0.0000,0 -"Sapsucker, Yellow-bellied",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Scoter, Velvet",0.0000,0 -Shag,0.0000,0 -"Shearwater, Cory's",0.0000,0 -"Shrike, Long-tailed",0.0000,0 -Siskin,0.0000,0 -Smew,0.0000,0 -"Sparrow, Savannah",0.0000,0 -"Sparrow, White-throated",0.0000,0 -"Stint, Little",0.0000,0 -"Swift, Alpine",0.0000,0 -"Tern, Sandwich",0.0000,0 -"Thrush, Grey-cheeked",0.0000,0 -"Thrush, Mistle",0.0000,0 -"Thrush, Swainson's",0.0000,0 -"Treecreeper, Short-toed",0.0000,0 -"Warbler, Booted",0.0000,0 -"Warbler, Dusky",0.0000,0 -"Warbler, Garden",0.0000,0 -"Warbler, Golden-winged",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Moltoni's",0.0000,0 -"Warbler, Sardinian",0.0000,0 -"Warbler, Yellow-browed",0.0000,0 -Whimbrel,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 905ec08d0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,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,2.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,2.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 -2016-12-27,2.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 -2016-12-28,2.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 -2016-12-29,2.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 -2017-01-01,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index dca72b91de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" -2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index ee68b1b058..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" -"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 1dbe848624..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" -2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4f680eae6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By CPU Hours (Core Count)" -"Warbler, Dusky",326.9898 -"Scaup, Lesser",186.5633 -"Warbler, Yellow-browed",160.0000 -"Scoter, Velvet",142.8578 -"Goose, Egyptian",112.0000 -"Gallinule, Allen's",108.0000 -Crane,96.0000 -"Pipit, Meadow",96.0000 -Smew,72.0000 -Chaffinch,64.0000 -Whimbrel,62.4269 -Siskin,62.4000 -"Swift, Alpine",60.5835 -"Duck, Ferruginous",60.0000 -Peregrine,60.0000 -Dunlin,57.7053 -"Grosbeak, Evening",56.0000 -Roller,55.6816 -"Warbler, Sardinian",53.2119 -"Thrush, Swainson's",45.0823 -"Bunting, Yellow-browed",39.9999 -"Warbler, Golden-winged",29.2166 -"Bunting, Reed",25.1805 -"Crane, Sandhill",25.0565 -Shag,24.1804 -"Sparrow, White-throated",23.2563 -"Ibis, Glossy",20.0000 -"Martin, Crag",20.0000 -"Shrike, Long-tailed",18.6116 -Ovenbird,16.0000 -"Partridge, Red-legged",16.0000 -"Warbler, Garden",13.8060 -"Stint, Little",13.7425 -"Plover, Caspian",12.0000 -"Plover, White-tailed",12.0000 -"Sandpiper, Spotted",12.0000 -"Thrush, Mistle",12.0000 -"Oriole, Baltimore",11.8318 -"Bunting, Yellow-breasted",11.7604 -Honey-buzzard,10.5343 -"Warbler, Booted",10.0459 -"Auk, Little",9.9744 -"Dove, Turtle",9.1143 -"Warbler, Hooded",8.6041 -"Treecreeper, Short-toed",8.0019 -Fieldfare,8.0000 -"Shearwater, Cory's",8.0000 -"Thrush, Grey-cheeked",4.5532 -"Redpoll, Lesser",4.0000 -"Sapsucker, Yellow-bellied",4.0000 -"Bunting, Black-headed",1.0000 -Coot,1.0000 -"Egret, Cattle",1.0000 -"Grebe, Pied-billed",1.0000 -"Grey, Great",1.0000 -"Grey, Lesser",1.0000 -"Grey, Southern",1.0000 -"Gull, Ring-billed",1.0000 -"Harrier, Hen",1.0000 -Jackdaw,1.0000 -Lapwing,1.0000 -"Martin, Purple",1.0000 -Moorhen,1.0000 -"Sparrow, Savannah",1.0000 -"Tern, Sandwich",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4f680eae6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By CPU Hours (Core Count)" -"Warbler, Dusky",326.9898 -"Scaup, Lesser",186.5633 -"Warbler, Yellow-browed",160.0000 -"Scoter, Velvet",142.8578 -"Goose, Egyptian",112.0000 -"Gallinule, Allen's",108.0000 -Crane,96.0000 -"Pipit, Meadow",96.0000 -Smew,72.0000 -Chaffinch,64.0000 -Whimbrel,62.4269 -Siskin,62.4000 -"Swift, Alpine",60.5835 -"Duck, Ferruginous",60.0000 -Peregrine,60.0000 -Dunlin,57.7053 -"Grosbeak, Evening",56.0000 -Roller,55.6816 -"Warbler, Sardinian",53.2119 -"Thrush, Swainson's",45.0823 -"Bunting, Yellow-browed",39.9999 -"Warbler, Golden-winged",29.2166 -"Bunting, Reed",25.1805 -"Crane, Sandhill",25.0565 -Shag,24.1804 -"Sparrow, White-throated",23.2563 -"Ibis, Glossy",20.0000 -"Martin, Crag",20.0000 -"Shrike, Long-tailed",18.6116 -Ovenbird,16.0000 -"Partridge, Red-legged",16.0000 -"Warbler, Garden",13.8060 -"Stint, Little",13.7425 -"Plover, Caspian",12.0000 -"Plover, White-tailed",12.0000 -"Sandpiper, Spotted",12.0000 -"Thrush, Mistle",12.0000 -"Oriole, Baltimore",11.8318 -"Bunting, Yellow-breasted",11.7604 -Honey-buzzard,10.5343 -"Warbler, Booted",10.0459 -"Auk, Little",9.9744 -"Dove, Turtle",9.1143 -"Warbler, Hooded",8.6041 -"Treecreeper, Short-toed",8.0019 -Fieldfare,8.0000 -"Shearwater, Cory's",8.0000 -"Thrush, Grey-cheeked",4.5532 -"Redpoll, Lesser",4.0000 -"Sapsucker, Yellow-bellied",4.0000 -"Bunting, Black-headed",1.0000 -Coot,1.0000 -"Egret, Cattle",1.0000 -"Grebe, Pied-billed",1.0000 -"Grey, Great",1.0000 -"Grey, Lesser",1.0000 -"Grey, Southern",1.0000 -"Gull, Ring-billed",1.0000 -"Harrier, Hen",1.0000 -Jackdaw,1.0000 -Lapwing,1.0000 -"Martin, Purple",1.0000 -Moorhen,1.0000 -"Sparrow, Savannah",1.0000 -"Tern, Sandwich",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4f680eae6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By CPU Hours (Core Count)" -"Warbler, Dusky",326.9898 -"Scaup, Lesser",186.5633 -"Warbler, Yellow-browed",160.0000 -"Scoter, Velvet",142.8578 -"Goose, Egyptian",112.0000 -"Gallinule, Allen's",108.0000 -Crane,96.0000 -"Pipit, Meadow",96.0000 -Smew,72.0000 -Chaffinch,64.0000 -Whimbrel,62.4269 -Siskin,62.4000 -"Swift, Alpine",60.5835 -"Duck, Ferruginous",60.0000 -Peregrine,60.0000 -Dunlin,57.7053 -"Grosbeak, Evening",56.0000 -Roller,55.6816 -"Warbler, Sardinian",53.2119 -"Thrush, Swainson's",45.0823 -"Bunting, Yellow-browed",39.9999 -"Warbler, Golden-winged",29.2166 -"Bunting, Reed",25.1805 -"Crane, Sandhill",25.0565 -Shag,24.1804 -"Sparrow, White-throated",23.2563 -"Ibis, Glossy",20.0000 -"Martin, Crag",20.0000 -"Shrike, Long-tailed",18.6116 -Ovenbird,16.0000 -"Partridge, Red-legged",16.0000 -"Warbler, Garden",13.8060 -"Stint, Little",13.7425 -"Plover, Caspian",12.0000 -"Plover, White-tailed",12.0000 -"Sandpiper, Spotted",12.0000 -"Thrush, Mistle",12.0000 -"Oriole, Baltimore",11.8318 -"Bunting, Yellow-breasted",11.7604 -Honey-buzzard,10.5343 -"Warbler, Booted",10.0459 -"Auk, Little",9.9744 -"Dove, Turtle",9.1143 -"Warbler, Hooded",8.6041 -"Treecreeper, Short-toed",8.0019 -Fieldfare,8.0000 -"Shearwater, Cory's",8.0000 -"Thrush, Grey-cheeked",4.5532 -"Redpoll, Lesser",4.0000 -"Sapsucker, Yellow-bellied",4.0000 -"Bunting, Black-headed",1.0000 -Coot,1.0000 -"Egret, Cattle",1.0000 -"Grebe, Pied-billed",1.0000 -"Grey, Great",1.0000 -"Grey, Lesser",1.0000 -"Grey, Southern",1.0000 -"Gull, Ring-billed",1.0000 -"Harrier, Hen",1.0000 -Jackdaw,1.0000 -Lapwing,1.0000 -"Martin, Purple",1.0000 -Moorhen,1.0000 -"Sparrow, Savannah",1.0000 -"Tern, Sandwich",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4f680eae6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By CPU Hours (Core Count)" -"Warbler, Dusky",326.9898 -"Scaup, Lesser",186.5633 -"Warbler, Yellow-browed",160.0000 -"Scoter, Velvet",142.8578 -"Goose, Egyptian",112.0000 -"Gallinule, Allen's",108.0000 -Crane,96.0000 -"Pipit, Meadow",96.0000 -Smew,72.0000 -Chaffinch,64.0000 -Whimbrel,62.4269 -Siskin,62.4000 -"Swift, Alpine",60.5835 -"Duck, Ferruginous",60.0000 -Peregrine,60.0000 -Dunlin,57.7053 -"Grosbeak, Evening",56.0000 -Roller,55.6816 -"Warbler, Sardinian",53.2119 -"Thrush, Swainson's",45.0823 -"Bunting, Yellow-browed",39.9999 -"Warbler, Golden-winged",29.2166 -"Bunting, Reed",25.1805 -"Crane, Sandhill",25.0565 -Shag,24.1804 -"Sparrow, White-throated",23.2563 -"Ibis, Glossy",20.0000 -"Martin, Crag",20.0000 -"Shrike, Long-tailed",18.6116 -Ovenbird,16.0000 -"Partridge, Red-legged",16.0000 -"Warbler, Garden",13.8060 -"Stint, Little",13.7425 -"Plover, Caspian",12.0000 -"Plover, White-tailed",12.0000 -"Sandpiper, Spotted",12.0000 -"Thrush, Mistle",12.0000 -"Oriole, Baltimore",11.8318 -"Bunting, Yellow-breasted",11.7604 -Honey-buzzard,10.5343 -"Warbler, Booted",10.0459 -"Auk, Little",9.9744 -"Dove, Turtle",9.1143 -"Warbler, Hooded",8.6041 -"Treecreeper, Short-toed",8.0019 -Fieldfare,8.0000 -"Shearwater, Cory's",8.0000 -"Thrush, Grey-cheeked",4.5532 -"Redpoll, Lesser",4.0000 -"Sapsucker, Yellow-bellied",4.0000 -"Bunting, Black-headed",1.0000 -Coot,1.0000 -"Egret, Cattle",1.0000 -"Grebe, Pied-billed",1.0000 -"Grey, Great",1.0000 -"Grey, Lesser",1.0000 -"Grey, Southern",1.0000 -"Gull, Ring-billed",1.0000 -"Harrier, Hen",1.0000 -Jackdaw,1.0000 -Lapwing,1.0000 -"Martin, Purple",1.0000 -Moorhen,1.0000 -"Sparrow, Savannah",1.0000 -"Tern, Sandwich",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index d1ed0899f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (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,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 -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,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 -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,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 -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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,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 -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,24.0000,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,12.0000,0,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 -2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,72.0000,0,0,0,0,0,0,0,0,0,0,26.0962,32.0000,0,0,0,0,0,16.0000,0,16.0000,0,0,0,0,0,12.0000,16.0000,1.0000,12.0000,0,12.0000,0,8.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,1.0000 -2016-12-28,0,186.6783,0,144.0000,0,0,0,96.0000,0,64.0000,0,65.7129,0,0,0,0,0,0,32.0000,0,0,0,29.7503,26.1953,22.7149,0,20.0000,0,0,16.0000,0,16.0000,0,0,12.0000,0,12.0000,12.0000,16.0000,1.0000,12.0000,0,12.0000,8.0000,8.0000,0,0,0,0,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,186.5631,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,0,62.4000,0,60.0000,60.0000,0,56.0000,0,32.0000,62.5102,40.0000,0,29.9515,29.0661,25.2228,0,20.0000,0,1.0000,16.0000,0,16.0000,0,0,12.0000,12.0000,12.0000,12.0000,13.7716,8.9965,12.0000,5.0000,11.1580,8.0000,8.0000,0,8.0000,2.0000,4.0000,4.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,320.0517,186.5631,160.0000,125.4037,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,72.0000,49.8936,53.8643,60.0000,60.0000,65.8038,56.0000,45.1553,46.9959,35.2172,39.9998,41.1565,23.7785,21.6195,22.6717,0,20.0000,20.0000,1.2886,16.0000,16.0000,16.0000,13.1826,0,12.0000,12.0000,12.0000,12.0000,9.9283,10.1263,2.3934,5.0000,8.1287,8.4439,8.0083,8.0000,8.0000,11.1559,4.0000,4.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,1.0000 -2016-12-31,336.0000,186.2295,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,61.2589,48.0000,64.0000,60.0000,60.0000,95.7214,0,59.2199,72.7559,64.0000,40.0000,24.3207,11.7947,16.5130,25.4705,23.4747,0,0,19.9996,16.0000,0,11.9114,16.0000,12.0000,0,12.0000,12.0000,12.1378,8.0000,10.8526,1.0000,11.1429,8.0000,9.8229,8.0000,8.0000,8.0000,2.0000,4.0000,4.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.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 331c78421a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -2017-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ea3f0df904..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -"2017 Q1",0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 09ba8bad65..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Warbler, Dusky] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Scoter, Velvet] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Egyptian] Job Size: Weighted By CPU Hours (Core Count)","[Gallinule, Allen's] Job Size: Weighted By CPU Hours (Core Count)","[Crane] Job Size: Weighted By CPU Hours (Core Count)","[Pipit, Meadow] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Whimbrel] Job Size: Weighted By CPU Hours (Core Count)","[Siskin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Duck, Ferruginous] Job Size: Weighted By CPU Hours (Core Count)","[Peregrine] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Grosbeak, Evening] Job Size: Weighted By CPU Hours (Core Count)","[Roller] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Sardinian] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Swainson's] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-browed] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Golden-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Reed] Job Size: Weighted By CPU Hours (Core Count)","[Crane, Sandhill] Job Size: Weighted By CPU Hours (Core Count)","[Shag] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, White-throated] Job Size: Weighted By CPU Hours (Core Count)","[Ibis, Glossy] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Crag] Job Size: Weighted By CPU Hours (Core Count)","[Shrike, Long-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Ovenbird] Job Size: Weighted By CPU Hours (Core Count)","[Partridge, Red-legged] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Garden] Job Size: Weighted By CPU Hours (Core Count)","[Stint, Little] Job Size: Weighted By CPU Hours (Core Count)","[Plover, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Plover, White-tailed] Job Size: Weighted By CPU Hours (Core Count)","[Sandpiper, Spotted] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Mistle] Job Size: Weighted By CPU Hours (Core Count)","[Oriole, Baltimore] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Yellow-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Honey-buzzard] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Booted] Job Size: Weighted By CPU Hours (Core Count)","[Auk, Little] Job Size: Weighted By CPU Hours (Core Count)","[Dove, Turtle] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Treecreeper, Short-toed] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Cory's] Job Size: Weighted By CPU Hours (Core Count)","[Thrush, Grey-cheeked] Job Size: Weighted By CPU Hours (Core Count)","[Redpoll, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Black-headed] Job Size: Weighted By CPU Hours (Core Count)","[Coot] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Cattle] Job Size: Weighted By CPU Hours (Core Count)","[Grebe, Pied-billed] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Great] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Grey, Southern] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Ring-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Lapwing] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Purple] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Sparrow, Savannah] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Sandwich] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Moltoni's] Job Size: Weighted By CPU Hours (Core Count)" -2016,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -2017,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,0,12.0000,12.0000,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 466f1763f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By GPU Hours (GPU Count)" -"Oriole, Baltimore",12.0000 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 466f1763f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By GPU Hours (GPU Count)" -"Oriole, Baltimore",12.0000 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 466f1763f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By GPU Hours (GPU Count)" -"Oriole, Baltimore",12.0000 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 466f1763f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Weighted By GPU Hours (GPU Count)" -"Oriole, Baltimore",12.0000 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 094330012b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,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,12.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,12.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 -2016-12-27,12.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 -2016-12-28,12.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 -2016-12-29,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 -2017-01-01,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0cd1eb6c4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 74a6604c2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 4a13d2298d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 93305385ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 6a721af0dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 6a721af0dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 6a721af0dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -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/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 20706dcfde..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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,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/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5ac40b1022..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 467b8cebd6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 0c3043ab42..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index c5b6464efe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -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/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index c5b6464efe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -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/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index c5b6464efe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -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/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index c5b6464efe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -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/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 347c0b02fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -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)","[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/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 748256d6b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -2017-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/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index e914016b04..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -"2017 Q1",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/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index aaf5f2ef20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -2017,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/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 2ed0606aad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Treecreeper, Short-toed",233.46900253,27.708500592959215 -"Thrush, Swainson's",229.08833216,0.3165144562337443 -"Pipit, Meadow",81.66292824,7.183771270440662 -Siskin,56.48111111,13.862828445162263 -"Bunting, Yellow-browed",52.74111111,37.29241880267786 -"Scoter, Velvet",39.39500000,27.85548955209239 -"Crane, Sandhill",35.06708719,1.6947647788562477 -"Warbler, Yellow-browed",31.02180556,3.7428536858056267 -"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 -Ovenbird,18.86933333,16.876685792814378 -"Tern, Sandwich",14.27555556,3.3086704803020535 -Peregrine,13.04694444,0.5705177028327323 -Dunlin,12.67979893,0.790292910753799 -"Warbler, Booted",8.19083333,2.9697909176657884 -"Warbler, Dusky",6.67768519,0.98851049021015 -"Plover, Caspian",5.36508929,0.1678514684969954 -"Sandpiper, Spotted",5.35740741,0.44586416880536145 -"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 -"Thrush, Mistle",4.41189394,0.6571458545780616 -"Grey, Lesser",3.92752472,0.08635320372070841 -"Plover, White-tailed",3.72481481,0.0007211928415468717 -Whimbrel,2.29753968,1.159786159539825 -"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 -"Sparrow, White-throated",2.15222222,0.6988290975119311 -Honey-buzzard,2.05241888,0.0266461444300528 -Smew,1.98928571,0.9136179906052265 -Crane,1.88463542,0.5086144929601321 -Shag,1.36358586,1.050607504263938 -"Grosbeak, Evening",0.98805556,0.13847507798236555 -"Grey, Great",0.74185808,0.00745478946523104 -"Warbler, Garden",0.68931866,0.18792064181649992 -"Warbler, Sardinian",0.68493210,0.20891751003386838 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Warbler, Hooded",0.30899471,0.06608296019883089 -"Warbler, Golden-winged",0.29952899,0.12719098377944033 -Moorhen,0.20714974,0.015675479418422043 -"Gallinule, Allen's",0.09777778,0 -"Stint, Little",0.09015152,0.047849695531533384 -"Grey, Southern",0.08220238,0.011574714004551338 -"Shearwater, Cory's",0.07831597,0.019809027302287216 -"Bunting, Reed",0.06252201,0.016249488196930326 -Lapwing,0.05740350,0.004593062258338075 -"Oriole, Baltimore",0.04120370,0.015935275751000608 -Roller,0.04034722,0.034861577990454876 -"Duck, Ferruginous",0.03111111,0 -"Dove, Turtle",0.02859810,0.009599314670761935 -"Auk, Little",0.01747222,0.00747562396751627 -"Bunting, Black-headed",0.01408333,0.0026920235401535287 -"Sparrow, Savannah",0.01404915,0.002043989277526459 -"Grebe, Pied-billed",0.01099444,0.004697248275110087 -"Gull, Ring-billed",0.00750000,0 -"Shrike, Long-tailed",0.00178819,0.001340063838980952 -"Martin, Crag",0.00105159,0.00005735857833479565 -"Goose, Egyptian",0.00059028,0.000142636082683637 -Fieldfare,0.00055556,0.00022680460581325724 -"Ibis, Glossy",0.00027778,0 -"Scaup, Lesser",0.00018519,0.000043648566827207465 -"Swift, Alpine",0.00015625,0.00004891244648257224 -Coot,0.00015046,0.000032651062689513116 -"Redpoll, Lesser",0.00013889,0.00009820927516479828 -"Egret, Cattle",0.00012731,0.00002825196474708646 -"Martin, Purple",0.00010802,0.00002506891552546276 -Chaffinch,0.00000000,0 -Jackdaw,0.00000000,0 -"Partridge, Red-legged",0.00000000,0 -"Warbler, Moltoni's",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 2ed0606aad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Treecreeper, Short-toed",233.46900253,27.708500592959215 -"Thrush, Swainson's",229.08833216,0.3165144562337443 -"Pipit, Meadow",81.66292824,7.183771270440662 -Siskin,56.48111111,13.862828445162263 -"Bunting, Yellow-browed",52.74111111,37.29241880267786 -"Scoter, Velvet",39.39500000,27.85548955209239 -"Crane, Sandhill",35.06708719,1.6947647788562477 -"Warbler, Yellow-browed",31.02180556,3.7428536858056267 -"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 -Ovenbird,18.86933333,16.876685792814378 -"Tern, Sandwich",14.27555556,3.3086704803020535 -Peregrine,13.04694444,0.5705177028327323 -Dunlin,12.67979893,0.790292910753799 -"Warbler, Booted",8.19083333,2.9697909176657884 -"Warbler, Dusky",6.67768519,0.98851049021015 -"Plover, Caspian",5.36508929,0.1678514684969954 -"Sandpiper, Spotted",5.35740741,0.44586416880536145 -"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 -"Thrush, Mistle",4.41189394,0.6571458545780616 -"Grey, Lesser",3.92752472,0.08635320372070841 -"Plover, White-tailed",3.72481481,0.0007211928415468717 -Whimbrel,2.29753968,1.159786159539825 -"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 -"Sparrow, White-throated",2.15222222,0.6988290975119311 -Honey-buzzard,2.05241888,0.0266461444300528 -Smew,1.98928571,0.9136179906052265 -Crane,1.88463542,0.5086144929601321 -Shag,1.36358586,1.050607504263938 -"Grosbeak, Evening",0.98805556,0.13847507798236555 -"Grey, Great",0.74185808,0.00745478946523104 -"Warbler, Garden",0.68931866,0.18792064181649992 -"Warbler, Sardinian",0.68493210,0.20891751003386838 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Warbler, Hooded",0.30899471,0.06608296019883089 -"Warbler, Golden-winged",0.29952899,0.12719098377944033 -Moorhen,0.20714974,0.015675479418422043 -"Gallinule, Allen's",0.09777778,0 -"Stint, Little",0.09015152,0.047849695531533384 -"Grey, Southern",0.08220238,0.011574714004551338 -"Shearwater, Cory's",0.07831597,0.019809027302287216 -"Bunting, Reed",0.06252201,0.016249488196930326 -Lapwing,0.05740350,0.004593062258338075 -"Oriole, Baltimore",0.04120370,0.015935275751000608 -Roller,0.04034722,0.034861577990454876 -"Duck, Ferruginous",0.03111111,0 -"Dove, Turtle",0.02859810,0.009599314670761935 -"Auk, Little",0.01747222,0.00747562396751627 -"Bunting, Black-headed",0.01408333,0.0026920235401535287 -"Sparrow, Savannah",0.01404915,0.002043989277526459 -"Grebe, Pied-billed",0.01099444,0.004697248275110087 -"Gull, Ring-billed",0.00750000,0 -"Shrike, Long-tailed",0.00178819,0.001340063838980952 -"Martin, Crag",0.00105159,0.00005735857833479565 -"Goose, Egyptian",0.00059028,0.000142636082683637 -Fieldfare,0.00055556,0.00022680460581325724 -"Ibis, Glossy",0.00027778,0 -"Scaup, Lesser",0.00018519,0.000043648566827207465 -"Swift, Alpine",0.00015625,0.00004891244648257224 -Coot,0.00015046,0.000032651062689513116 -"Redpoll, Lesser",0.00013889,0.00009820927516479828 -"Egret, Cattle",0.00012731,0.00002825196474708646 -"Martin, Purple",0.00010802,0.00002506891552546276 -Chaffinch,0.00000000,0 -Jackdaw,0.00000000,0 -"Partridge, Red-legged",0.00000000,0 -"Warbler, Moltoni's",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 2ed0606aad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Treecreeper, Short-toed",233.46900253,27.708500592959215 -"Thrush, Swainson's",229.08833216,0.3165144562337443 -"Pipit, Meadow",81.66292824,7.183771270440662 -Siskin,56.48111111,13.862828445162263 -"Bunting, Yellow-browed",52.74111111,37.29241880267786 -"Scoter, Velvet",39.39500000,27.85548955209239 -"Crane, Sandhill",35.06708719,1.6947647788562477 -"Warbler, Yellow-browed",31.02180556,3.7428536858056267 -"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 -Ovenbird,18.86933333,16.876685792814378 -"Tern, Sandwich",14.27555556,3.3086704803020535 -Peregrine,13.04694444,0.5705177028327323 -Dunlin,12.67979893,0.790292910753799 -"Warbler, Booted",8.19083333,2.9697909176657884 -"Warbler, Dusky",6.67768519,0.98851049021015 -"Plover, Caspian",5.36508929,0.1678514684969954 -"Sandpiper, Spotted",5.35740741,0.44586416880536145 -"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 -"Thrush, Mistle",4.41189394,0.6571458545780616 -"Grey, Lesser",3.92752472,0.08635320372070841 -"Plover, White-tailed",3.72481481,0.0007211928415468717 -Whimbrel,2.29753968,1.159786159539825 -"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 -"Sparrow, White-throated",2.15222222,0.6988290975119311 -Honey-buzzard,2.05241888,0.0266461444300528 -Smew,1.98928571,0.9136179906052265 -Crane,1.88463542,0.5086144929601321 -Shag,1.36358586,1.050607504263938 -"Grosbeak, Evening",0.98805556,0.13847507798236555 -"Grey, Great",0.74185808,0.00745478946523104 -"Warbler, Garden",0.68931866,0.18792064181649992 -"Warbler, Sardinian",0.68493210,0.20891751003386838 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Warbler, Hooded",0.30899471,0.06608296019883089 -"Warbler, Golden-winged",0.29952899,0.12719098377944033 -Moorhen,0.20714974,0.015675479418422043 -"Gallinule, Allen's",0.09777778,0 -"Stint, Little",0.09015152,0.047849695531533384 -"Grey, Southern",0.08220238,0.011574714004551338 -"Shearwater, Cory's",0.07831597,0.019809027302287216 -"Bunting, Reed",0.06252201,0.016249488196930326 -Lapwing,0.05740350,0.004593062258338075 -"Oriole, Baltimore",0.04120370,0.015935275751000608 -Roller,0.04034722,0.034861577990454876 -"Duck, Ferruginous",0.03111111,0 -"Dove, Turtle",0.02859810,0.009599314670761935 -"Auk, Little",0.01747222,0.00747562396751627 -"Bunting, Black-headed",0.01408333,0.0026920235401535287 -"Sparrow, Savannah",0.01404915,0.002043989277526459 -"Grebe, Pied-billed",0.01099444,0.004697248275110087 -"Gull, Ring-billed",0.00750000,0 -"Shrike, Long-tailed",0.00178819,0.001340063838980952 -"Martin, Crag",0.00105159,0.00005735857833479565 -"Goose, Egyptian",0.00059028,0.000142636082683637 -Fieldfare,0.00055556,0.00022680460581325724 -"Ibis, Glossy",0.00027778,0 -"Scaup, Lesser",0.00018519,0.000043648566827207465 -"Swift, Alpine",0.00015625,0.00004891244648257224 -Coot,0.00015046,0.000032651062689513116 -"Redpoll, Lesser",0.00013889,0.00009820927516479828 -"Egret, Cattle",0.00012731,0.00002825196474708646 -"Martin, Purple",0.00010802,0.00002506891552546276 -Chaffinch,0.00000000,0 -Jackdaw,0.00000000,0 -"Partridge, Red-legged",0.00000000,0 -"Warbler, Moltoni's",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 2ed0606aad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Treecreeper, Short-toed",233.46900253,27.708500592959215 -"Thrush, Swainson's",229.08833216,0.3165144562337443 -"Pipit, Meadow",81.66292824,7.183771270440662 -Siskin,56.48111111,13.862828445162263 -"Bunting, Yellow-browed",52.74111111,37.29241880267786 -"Scoter, Velvet",39.39500000,27.85548955209239 -"Crane, Sandhill",35.06708719,1.6947647788562477 -"Warbler, Yellow-browed",31.02180556,3.7428536858056267 -"Thrush, Grey-cheeked",26.77900440,0.3093136712992847 -Ovenbird,18.86933333,16.876685792814378 -"Tern, Sandwich",14.27555556,3.3086704803020535 -Peregrine,13.04694444,0.5705177028327323 -Dunlin,12.67979893,0.790292910753799 -"Warbler, Booted",8.19083333,2.9697909176657884 -"Warbler, Dusky",6.67768519,0.98851049021015 -"Plover, Caspian",5.36508929,0.1678514684969954 -"Sandpiper, Spotted",5.35740741,0.44586416880536145 -"Sapsucker, Yellow-bellied",5.08810185,2.312558796449961 -"Thrush, Mistle",4.41189394,0.6571458545780616 -"Grey, Lesser",3.92752472,0.08635320372070841 -"Plover, White-tailed",3.72481481,0.0007211928415468717 -Whimbrel,2.29753968,1.159786159539825 -"Bunting, Yellow-breasted",2.15912037,1.2980363906441121 -"Sparrow, White-throated",2.15222222,0.6988290975119311 -Honey-buzzard,2.05241888,0.0266461444300528 -Smew,1.98928571,0.9136179906052265 -Crane,1.88463542,0.5086144929601321 -Shag,1.36358586,1.050607504263938 -"Grosbeak, Evening",0.98805556,0.13847507798236555 -"Grey, Great",0.74185808,0.00745478946523104 -"Warbler, Garden",0.68931866,0.18792064181649992 -"Warbler, Sardinian",0.68493210,0.20891751003386838 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Warbler, Hooded",0.30899471,0.06608296019883089 -"Warbler, Golden-winged",0.29952899,0.12719098377944033 -Moorhen,0.20714974,0.015675479418422043 -"Gallinule, Allen's",0.09777778,0 -"Stint, Little",0.09015152,0.047849695531533384 -"Grey, Southern",0.08220238,0.011574714004551338 -"Shearwater, Cory's",0.07831597,0.019809027302287216 -"Bunting, Reed",0.06252201,0.016249488196930326 -Lapwing,0.05740350,0.004593062258338075 -"Oriole, Baltimore",0.04120370,0.015935275751000608 -Roller,0.04034722,0.034861577990454876 -"Duck, Ferruginous",0.03111111,0 -"Dove, Turtle",0.02859810,0.009599314670761935 -"Auk, Little",0.01747222,0.00747562396751627 -"Bunting, Black-headed",0.01408333,0.0026920235401535287 -"Sparrow, Savannah",0.01404915,0.002043989277526459 -"Grebe, Pied-billed",0.01099444,0.004697248275110087 -"Gull, Ring-billed",0.00750000,0 -"Shrike, Long-tailed",0.00178819,0.001340063838980952 -"Martin, Crag",0.00105159,0.00005735857833479565 -"Goose, Egyptian",0.00059028,0.000142636082683637 -Fieldfare,0.00055556,0.00022680460581325724 -"Ibis, Glossy",0.00027778,0 -"Scaup, Lesser",0.00018519,0.000043648566827207465 -"Swift, Alpine",0.00015625,0.00004891244648257224 -Coot,0.00015046,0.000032651062689513116 -"Redpoll, Lesser",0.00013889,0.00009820927516479828 -"Egret, Cattle",0.00012731,0.00002825196474708646 -"Martin, Purple",0.00010802,0.00002506891552546276 -Chaffinch,0.00000000,0 -Jackdaw,0.00000000,0 -"Partridge, Red-legged",0.00000000,0 -"Warbler, Moltoni's",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 658c8ca9f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait 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,0,0.00027778,0,0,9.33222222,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,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,55.41111111,0,0.00000000,0,0,0.06333333,0,0,0,0,0,0,0,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.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,273.48105556,0,103.71148148,76.08611111,0,78.78861111,46.99166667,0,0,0.00062500,0.00000000,0,0,50.82250000,0,0,0,0,0,0,0,0,0.00027778,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00288889,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000 -2016-12-28,280.72700000,0,108.01750000,36.87611111,0,0.00000000,80.35419753,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0.00000000,0,0,6.82972222,0,0,1.68000000,2.73787037,0,0.46633333,0,0.02977924,0,0,0,0,20.57444444,0.07195578,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00027778,0.00018519,0,0,0,0,0,0.00000000,0,0,0.00000000 -2016-12-29,313.25736111,206.22965812,47.74488095,0.00000000,0.00166667,0.00000000,22.19675214,25.72861111,0.00444444,0.00000000,18.95472222,11.68527778,0,0.00000000,0,0,0.95844444,0.00019841,0.00000000,0,0.00000000,0,1.21402778,0,7.95825941,1.98928571,3.47907407,0.00111111,0.79222222,0,4.46097222,0.29993056,0.01788889,0.07572222,0,0.04237662,0,0,0,0.17638889,3.66268519,0.04464331,0.00000000,0,0.03111111,0.01715686,0.00000000,0,0,0.01099444,0,0.02250000,0,0.00062500,0,0.00000000,0.00000000,0,0,0.00027778,0,0,0.00000000,0,0,0.00000000 -2016-12-30,55.29648148,229.51285040,0.00000000,0.00000000,105.48055556,0.00138889,32.41850397,0.00000000,18.02518519,0.00000000,0.00000000,13.72777778,13.00438580,5.14571429,6.67768519,0,6.23720000,1.80364583,0.38944444,2.58369031,0.00000000,17.26194444,8.09833333,0,1.39451717,0.00000000,1.47605556,0.22282407,1.18388889,0.84512711,0.00000000,0.55871032,0.42590741,0.41231481,0.59636111,0.32754774,0.09777778,0.00369048,0.17850082,0.02000000,0.02257879,0.13344771,0.00000000,0.05370370,0.00000000,0.01009512,0.00000000,0.01437500,0.01586806,0.00000000,0.00750000,0.00092593,0.00105159,0.00055556,0.00083333,0.00000000,0.00000000,0.00020833,0.00010417,0.00000000,0.00006944,0.00011574,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,351.74604167,0.00000000,0.00000000,0.00000000,0.00000000,0,33.49272778,0,27.32576747,94.34416667,0,0.00000000,3.35838889,0.00000000,0.00000000,0.02019097,0.00000000,25.71842593,0.00000000,7.36601918,0,0.95052083,0.00000000,2.15222222,2.89868538,0.00000000,0.07819444,0.00097222,0,0.55391509,0.00626263,1.74513889,0.00000000,0.26094444,0.33598291,0.35169374,0,0.24145833,0.02144676,0.00000000,0.03538140,0.01543544,0.00027778,0.00000000,0.00000000,0.04029733,0.02496032,0.01388889,0.01362745,0,0.00000000,0.00074074,0,0.00000000,0.00083333,0,0.00000000,0.00013889,0.00013889,0.00000000,0.00010417,0.00009259,0.00000000,0.00000000,0,0 -2017-01-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7a692c7a69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait Hours: Per Job" -2016-12,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 0be2401900..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait Hours: Per Job" -"2016 Q4",233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 767f42d9f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Treecreeper, Short-toed] Wait Hours: Per Job","[Thrush, Swainson's] Wait Hours: Per Job","[Pipit, Meadow] Wait Hours: Per Job","[Siskin] Wait Hours: Per Job","[Bunting, Yellow-browed] Wait Hours: Per Job","[Scoter, Velvet] Wait Hours: Per Job","[Crane, Sandhill] Wait Hours: Per Job","[Warbler, Yellow-browed] Wait Hours: Per Job","[Thrush, Grey-cheeked] Wait Hours: Per Job","[Ovenbird] Wait Hours: Per Job","[Tern, Sandwich] Wait Hours: Per Job","[Peregrine] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[Warbler, Booted] Wait Hours: Per Job","[Warbler, Dusky] Wait Hours: Per Job","[Plover, Caspian] Wait Hours: Per Job","[Sandpiper, Spotted] Wait Hours: Per Job","[Sapsucker, Yellow-bellied] Wait Hours: Per Job","[Thrush, Mistle] Wait Hours: Per Job","[Grey, Lesser] Wait Hours: Per Job","[Plover, White-tailed] Wait Hours: Per Job","[Whimbrel] Wait Hours: Per Job","[Bunting, Yellow-breasted] Wait Hours: Per Job","[Sparrow, White-throated] Wait Hours: Per Job","[Honey-buzzard] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Crane] Wait Hours: Per Job","[Shag] Wait Hours: Per Job","[Grosbeak, Evening] Wait Hours: Per Job","[Grey, Great] Wait Hours: Per Job","[Warbler, Garden] Wait Hours: Per Job","[Warbler, Sardinian] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Warbler, Golden-winged] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gallinule, Allen's] Wait Hours: Per Job","[Stint, Little] Wait Hours: Per Job","[Grey, Southern] Wait Hours: Per Job","[Shearwater, Cory's] Wait Hours: Per Job","[Bunting, Reed] Wait Hours: Per Job","[Lapwing] Wait Hours: Per Job","[Oriole, Baltimore] Wait Hours: Per Job","[Roller] Wait Hours: Per Job","[Duck, Ferruginous] Wait Hours: Per Job","[Dove, Turtle] Wait Hours: Per Job","[Auk, Little] Wait Hours: Per Job","[Bunting, Black-headed] Wait Hours: Per Job","[Sparrow, Savannah] Wait Hours: Per Job","[Grebe, Pied-billed] Wait Hours: Per Job","[Gull, Ring-billed] Wait Hours: Per Job","[Shrike, Long-tailed] Wait Hours: Per Job","[Martin, Crag] Wait Hours: Per Job","[Goose, Egyptian] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Ibis, Glossy] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Swift, Alpine] Wait Hours: Per Job","[Coot] Wait Hours: Per Job","[Redpoll, Lesser] Wait Hours: Per Job","[Egret, Cattle] Wait Hours: Per Job","[Martin, Purple] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Partridge, Red-legged] Wait Hours: Per Job","[Warbler, Moltoni's] Wait Hours: Per Job" -2016,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 970a83c76e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Chaffinch,120.00722222, -"Tern, Sandwich",87.43875000, -Ovenbird,82.76488889, -"Warbler, Moltoni's",72.00694444, -"Scaup, Lesser",72.00432099, -Siskin,70.03500000, -"Duck, Ferruginous",70.00777778, -"Pipit, Meadow",63.57475694, -"Warbler, Garden",52.33125262, -Lapwing,49.85089556, -"Sapsucker, Yellow-bellied",49.75942901, -"Ibis, Glossy",48.00666667, -"Treecreeper, Short-toed",46.66083333, -"Plover, White-tailed",44.13648148, -"Thrush, Mistle",39.37916667, -"Bunting, Yellow-breasted",38.73828704, -"Scoter, Velvet",37.18166667, -Smew,36.49007937, -"Gull, Ring-billed",31.90972222, -"Shearwater, Cory's",27.37690972, -"Sparrow, White-throated",25.49490741, -Moorhen,25.48654262, -"Bunting, Yellow-browed",25.17486111, -Peregrine,24.84777778, -Jackdaw,21.84694444, -"Warbler, Hooded",21.83599206, -Shag,20.71641414, -"Redpoll, Lesser",18.89791667, -"Sandpiper, Spotted",16.91415278, -"Warbler, Booted",16.76537037, -"Goose, Egyptian",15.78250000, -"Warbler, Dusky",15.43750000,2.949516142225878 -Fieldfare,14.37398148, -Crane,12.67826389, -"Grosbeak, Evening",10.08083333,5.736664622204642 -"Grebe, Pied-billed",10.00406111, -"Warbler, Sardinian",9.41403086,1.0834302290958004 -"Oriole, Baltimore",9.12110185,1.9524242496702076 -"Grey, Lesser",8.59051583, -"Thrush, Grey-cheeked",7.94699670,0.252707620848999 -"Crane, Sandhill",7.43894097,0.6293211331105432 -"Auk, Little",7.02769444,1.7557857088278381 -Whimbrel,6.17696429,0.650411636248519 -"Bunting, Black-headed",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.412736659063767 -Roller,4.58416667,1.0571325984155044 -"Warbler, Yellow-browed",4.51402778,1.3866381241776238 -"Shrike, Long-tailed",3.89088542,1.5421931694132969 -"Plover, Caspian",2.10733760,0.04730850999433886 -"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 -"Warbler, Golden-winged",0.81574879,0.33900408606509713 -"Swift, Alpine",0.66013889,0.2379191991153246 -"Thrush, Swainson's",0.56853008,0.041637228742746606 -"Stint, Little",0.33320707,0.09324722160395126 -"Bunting, Reed",0.29758033,0.026000891408928004 -Honey-buzzard,0.28378820,0.002129439336752145 -"Gallinule, Allen's",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -"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/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 6eead250f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Chaffinch,120.00722222, -"Tern, Sandwich",87.43875000,49.35183032798893 -Ovenbird,82.76488889,11.31277811706417 -"Warbler, Moltoni's",72.00694444,0 -"Scaup, Lesser",72.00432099,0.0007574156507426745 -Siskin,70.03500000,0.00019641855032959655 -"Duck, Ferruginous",70.00777778, -"Pipit, Meadow",63.57475694,3.13824008219319 -"Warbler, Garden",52.33125262, -Lapwing,49.85089556,1.1100595034642202 -"Sapsucker, Yellow-bellied",49.75942901, -"Ibis, Glossy",48.00666667,0 -"Treecreeper, Short-toed",46.66083333,5.055266467272984 -"Plover, White-tailed",44.13648148,3.8863777173028686 -"Thrush, Mistle",39.37916667,3.5074678840012607 -"Bunting, Yellow-breasted",38.73828704,7.964502386031587 -"Scoter, Velvet",37.18166667,24.625975747573168 -Smew,36.49007937,2.407916402194818 -"Gull, Ring-billed",31.90972222,0 -"Shearwater, Cory's",27.37690972,4.572758943516918 -"Sparrow, White-throated",25.49490741, -Moorhen,25.48654262,0.09521527865289223 -"Bunting, Yellow-browed",25.17486111,17.80092216999551 -Peregrine,24.84777778,1.3792526019750193 -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 -"Goose, Egyptian",15.78250000,1.4182317241819407 -"Warbler, Dusky",15.43750000,9.334819660458281 -Fieldfare,14.37398148, -Crane,12.67826389,0.43082354975761517 -"Grosbeak, Evening",10.08083333,7.102298361367882 -"Grebe, Pied-billed",10.00406111,0.00040214624761869517 -"Warbler, Sardinian",9.41403086,1.7878256710905893 -"Oriole, Baltimore",9.12110185,7.611190913212397 -"Grey, Lesser",8.59051583,0.027937647321332644 -"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 -"Crane, Sandhill",7.43894097,1.2737613363617315 -"Auk, Little",7.02769444,2.431694700689441 -Whimbrel,6.17696429,0.6904442871805476 -"Bunting, Black-headed",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.9381499596292342 -Roller,4.58416667,1.606624250847252 -"Warbler, Yellow-browed",4.51402778,3.1765790052054 -"Shrike, Long-tailed",3.89088542,2.2654968346862243 -"Plover, Caspian",2.10733760,0.04730850999433886 -"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 -"Warbler, Golden-winged",0.81574879,0.33900408606509713 -"Swift, Alpine",0.66013889,0.2379191991153246 -"Thrush, Swainson's",0.56853008,0.0672666690107468 -"Stint, Little",0.33320707,0.09324722160395126 -"Bunting, Reed",0.29758033,0.0457046053323436 -Honey-buzzard,0.28378820,0.0027004215312930553 -"Gallinule, Allen's",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -"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/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 6eead250f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Chaffinch,120.00722222, -"Tern, Sandwich",87.43875000,49.35183032798893 -Ovenbird,82.76488889,11.31277811706417 -"Warbler, Moltoni's",72.00694444,0 -"Scaup, Lesser",72.00432099,0.0007574156507426745 -Siskin,70.03500000,0.00019641855032959655 -"Duck, Ferruginous",70.00777778, -"Pipit, Meadow",63.57475694,3.13824008219319 -"Warbler, Garden",52.33125262, -Lapwing,49.85089556,1.1100595034642202 -"Sapsucker, Yellow-bellied",49.75942901, -"Ibis, Glossy",48.00666667,0 -"Treecreeper, Short-toed",46.66083333,5.055266467272984 -"Plover, White-tailed",44.13648148,3.8863777173028686 -"Thrush, Mistle",39.37916667,3.5074678840012607 -"Bunting, Yellow-breasted",38.73828704,7.964502386031587 -"Scoter, Velvet",37.18166667,24.625975747573168 -Smew,36.49007937,2.407916402194818 -"Gull, Ring-billed",31.90972222,0 -"Shearwater, Cory's",27.37690972,4.572758943516918 -"Sparrow, White-throated",25.49490741, -Moorhen,25.48654262,0.09521527865289223 -"Bunting, Yellow-browed",25.17486111,17.80092216999551 -Peregrine,24.84777778,1.3792526019750193 -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 -"Goose, Egyptian",15.78250000,1.4182317241819407 -"Warbler, Dusky",15.43750000,9.334819660458281 -Fieldfare,14.37398148, -Crane,12.67826389,0.43082354975761517 -"Grosbeak, Evening",10.08083333,7.102298361367882 -"Grebe, Pied-billed",10.00406111,0.00040214624761869517 -"Warbler, Sardinian",9.41403086,1.7878256710905893 -"Oriole, Baltimore",9.12110185,7.611190913212397 -"Grey, Lesser",8.59051583,0.027937647321332644 -"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 -"Crane, Sandhill",7.43894097,1.2737613363617315 -"Auk, Little",7.02769444,2.431694700689441 -Whimbrel,6.17696429,0.6904442871805476 -"Bunting, Black-headed",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.9381499596292342 -Roller,4.58416667,1.606624250847252 -"Warbler, Yellow-browed",4.51402778,3.1765790052054 -"Shrike, Long-tailed",3.89088542,2.2654968346862243 -"Plover, Caspian",2.10733760,0.04730850999433886 -"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 -"Warbler, Golden-winged",0.81574879,0.33900408606509713 -"Swift, Alpine",0.66013889,0.2379191991153246 -"Thrush, Swainson's",0.56853008,0.0672666690107468 -"Stint, Little",0.33320707,0.09324722160395126 -"Bunting, Reed",0.29758033,0.0457046053323436 -Honey-buzzard,0.28378820,0.0027004215312930553 -"Gallinule, Allen's",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -"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/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 6eead250f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -Chaffinch,120.00722222, -"Tern, Sandwich",87.43875000,49.35183032798893 -Ovenbird,82.76488889,11.31277811706417 -"Warbler, Moltoni's",72.00694444,0 -"Scaup, Lesser",72.00432099,0.0007574156507426745 -Siskin,70.03500000,0.00019641855032959655 -"Duck, Ferruginous",70.00777778, -"Pipit, Meadow",63.57475694,3.13824008219319 -"Warbler, Garden",52.33125262, -Lapwing,49.85089556,1.1100595034642202 -"Sapsucker, Yellow-bellied",49.75942901, -"Ibis, Glossy",48.00666667,0 -"Treecreeper, Short-toed",46.66083333,5.055266467272984 -"Plover, White-tailed",44.13648148,3.8863777173028686 -"Thrush, Mistle",39.37916667,3.5074678840012607 -"Bunting, Yellow-breasted",38.73828704,7.964502386031587 -"Scoter, Velvet",37.18166667,24.625975747573168 -Smew,36.49007937,2.407916402194818 -"Gull, Ring-billed",31.90972222,0 -"Shearwater, Cory's",27.37690972,4.572758943516918 -"Sparrow, White-throated",25.49490741, -Moorhen,25.48654262,0.09521527865289223 -"Bunting, Yellow-browed",25.17486111,17.80092216999551 -Peregrine,24.84777778,1.3792526019750193 -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 -"Goose, Egyptian",15.78250000,1.4182317241819407 -"Warbler, Dusky",15.43750000,9.334819660458281 -Fieldfare,14.37398148, -Crane,12.67826389,0.43082354975761517 -"Grosbeak, Evening",10.08083333,7.102298361367882 -"Grebe, Pied-billed",10.00406111,0.00040214624761869517 -"Warbler, Sardinian",9.41403086,1.7878256710905893 -"Oriole, Baltimore",9.12110185,7.611190913212397 -"Grey, Lesser",8.59051583,0.027937647321332644 -"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 -"Crane, Sandhill",7.43894097,1.2737613363617315 -"Auk, Little",7.02769444,2.431694700689441 -Whimbrel,6.17696429,0.6904442871805476 -"Bunting, Black-headed",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.9381499596292342 -Roller,4.58416667,1.606624250847252 -"Warbler, Yellow-browed",4.51402778,3.1765790052054 -"Shrike, Long-tailed",3.89088542,2.2654968346862243 -"Plover, Caspian",2.10733760,0.04730850999433886 -"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 -"Warbler, Golden-winged",0.81574879,0.33900408606509713 -"Swift, Alpine",0.66013889,0.2379191991153246 -"Thrush, Swainson's",0.56853008,0.0672666690107468 -"Stint, Little",0.33320707,0.09324722160395126 -"Bunting, Reed",0.29758033,0.0457046053323436 -Honey-buzzard,0.28378820,0.0027004215312930553 -"Gallinule, Allen's",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -"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/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3bd3f41842..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall 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,16.74638889,0,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,0,0,0 -2016-12-23,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,0,0,0,0,0,0,0,0,24.00000000,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 -2016-12-24,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,0,0,0,0,0,0,0,0,24.00000000,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 -2016-12-25,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,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0,0,0 -2016-12-26,0,24.00000000,0,0,0,0,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,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0 -2016-12-27,3.79972222,24.00000000,4.93666667,4.72138889,0,20.66416667,0,12.98407407,24.00000000,0,0,0,13.96533333,0,0,8.54972222,20.81333333,0,0,0,0,0,0,0,0,0,0,0,0,19.90555556,0,0,0,0,0,0,0,24.00000000,0,0,20.33888889,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0,0,0 -2016-12-28,24.00000000,24.00000000,24.00000000,24.00000000,17.86320988,18.38902778,0,15.23050000,9.02631944,13.35268330,0,4.70055556,17.63833333,5.03972222,3.11533951,24.00000000,24.00000000,0,0,0,0,5.01598392,0,0,0,8.78983333,10.70500000,0,0,24.00000000,0,0,0,0,0,0,8.32944444,24.00000000,0,0,13.20166667,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0,0,0 -2016-12-29,24.00000000,19.56861111,24.00000000,24.00000000,24.00000000,24.00000000,3.00194444,23.45363636,23.88776389,16.60273286,19.85234127,24.00000000,20.53074074,24.00000000,24.00000000,8.50644444,24.00000000,11.55011905,0,4.96462963,0,13.10756221,18.97472222,23.43805556,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,3.66944444,0,0,6.36972222,1.92694444,4.66003889,16.72988095,24.00000000,0,3.62000000,13.84817130,10.40083333,0,0,2.01966667,0,6.48888889,22.24222222,0,3.53675439,0,0,0,0,0,0,0.76098291,0,14.25164444,0.65402610,0,0,0,0,0,0 -2016-12-30,24.00000000,3.56833333,24.00000000,19.28555556,24.00000000,12.68527778,24.00000000,22.20438131,18.92284722,21.71949405,19.44072222,19.30611111,12.82591049,15.09675926,14.55335859,18.07555556,2.77500000,21.78416667,17.79750000,17.98229167,0,13.31263065,12.00027778,8.15601852,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,10.28048611,9.78120370,8.00444444,7.97656250,9.11736111,5.34402222,3.83073016,24.00000000,4.25015531,16.84687500,4.13567080,13.60638889,9.48777778,3.48631944,4.10559722,1.45518519,2.51750000,3.96541667,0,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.48461111,0.13409722,0.53023103,0.43603175,0.13315301,0.32887293,0.26055556,0.14245370,0.08049603,0.06500000,0.02760417,0.02405133 -2016-12-31,24.00000000,0,16.57072222,0,6.14111111,9.25722222,24.00000000,12.06362573,23.17923611,10.83064379,19.04313725,0,14.97629630,0,24.00000000,16.29814815,0,22.09055556,14.11222222,24.00000000,16.61129630,12.53390738,7.37444444,24.00000000,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,7.33458333,16.96888889,19.78805556,10.17785714,0,0,14.33632716,4.84750000,5.54019436,7.28581633,1.97834003,6.47384921,4.70839506,7.65398148,8.63138889,4.84500000,0,1.29611111,0.19661458,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,1.49565171,2.06152778,17.41444444,0.15326389,0.13894731,0.36784723,0,0.14844444,0,0,0.02281046,0.01479010 -2017-01-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 4920817a67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall Hours: Per Job" -2016-12,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -2017-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 03cdcfdafe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall Hours: Per Job" -"2016 Q4",99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -"2017 Q1",20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index d3b24d6880..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chaffinch] Wall Hours: Per Job","[Tern, Sandwich] Wall Hours: Per Job","[Ovenbird] Wall Hours: Per Job","[Warbler, Moltoni's] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Siskin] Wall Hours: Per Job","[Duck, Ferruginous] Wall Hours: Per Job","[Pipit, Meadow] Wall Hours: Per Job","[Warbler, Garden] Wall Hours: Per Job","[Lapwing] Wall Hours: Per Job","[Sapsucker, Yellow-bellied] Wall Hours: Per Job","[Ibis, Glossy] Wall Hours: Per Job","[Treecreeper, Short-toed] Wall Hours: Per Job","[Plover, White-tailed] Wall Hours: Per Job","[Thrush, Mistle] Wall Hours: Per Job","[Bunting, Yellow-breasted] Wall Hours: Per Job","[Scoter, Velvet] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Gull, Ring-billed] Wall Hours: Per Job","[Shearwater, Cory's] Wall Hours: Per Job","[Sparrow, White-throated] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Bunting, Yellow-browed] Wall Hours: Per Job","[Peregrine] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Shag] Wall Hours: Per Job","[Redpoll, Lesser] Wall Hours: Per Job","[Sandpiper, Spotted] Wall Hours: Per Job","[Warbler, Booted] Wall Hours: Per Job","[Goose, Egyptian] Wall Hours: Per Job","[Warbler, Dusky] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Crane] Wall Hours: Per Job","[Grosbeak, Evening] Wall Hours: Per Job","[Grebe, Pied-billed] Wall Hours: Per Job","[Warbler, Sardinian] Wall Hours: Per Job","[Oriole, Baltimore] Wall Hours: Per Job","[Grey, Lesser] Wall Hours: Per Job","[Thrush, Grey-cheeked] Wall Hours: Per Job","[Crane, Sandhill] Wall Hours: Per Job","[Auk, Little] Wall Hours: Per Job","[Whimbrel] Wall Hours: Per Job","[Bunting, Black-headed] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Roller] Wall Hours: Per Job","[Warbler, Yellow-browed] Wall Hours: Per Job","[Shrike, Long-tailed] Wall Hours: Per Job","[Plover, Caspian] Wall Hours: Per Job","[Dove, Turtle] Wall Hours: Per Job","[Coot] Wall Hours: Per Job","[Martin, Purple] Wall Hours: Per Job","[Egret, Cattle] Wall Hours: Per Job","[Grey, Southern] Wall Hours: Per Job","[Warbler, Golden-winged] Wall Hours: Per Job","[Swift, Alpine] Wall Hours: Per Job","[Thrush, Swainson's] Wall Hours: Per Job","[Stint, Little] Wall Hours: Per Job","[Bunting, Reed] Wall Hours: Per Job","[Honey-buzzard] Wall Hours: Per Job","[Gallinule, Allen's] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Martin, Crag] Wall Hours: Per Job","[Partridge, Red-legged] Wall Hours: Per Job","[Sparrow, Savannah] Wall Hours: Per Job","[Grey, Great] Wall Hours: Per Job" -2016,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -2017,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 0f3cf94580..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"User Expansion Factor" -"Thrush, Swainson's",297.8504 -Dunlin,69.2703 -"Grey, Great",36.7227 -Honey-buzzard,8.0226 -"Warbler, Yellow-browed",7.8723 -"Treecreeper, Short-toed",6.0105 -"Crane, Sandhill",4.9154 -"Thrush, Grey-cheeked",4.3697 -"Plover, Caspian",3.5459 -"Pipit, Meadow",2.2845 -"Scoter, Velvet",2.0824 -"Bunting, Yellow-browed",2.0475 -Siskin,1.8065 -"Sparrow, Savannah",1.5760 -Peregrine,1.5251 -"Warbler, Booted",1.4886 -"Grey, Lesser",1.4572 -"Warbler, Golden-winged",1.4161 -Whimbrel,1.3852 -"Gallinule, Allen's",1.3753 -"Warbler, Dusky",1.3348 -"Sandpiper, Spotted",1.3167 -"Stint, Little",1.2706 -Ovenbird,1.2280 -"Bunting, Reed",1.2101 -"Tern, Sandwich",1.1633 -Crane,1.1487 -"Thrush, Mistle",1.1120 -"Sapsucker, Yellow-bellied",1.1023 -"Grosbeak, Evening",1.0980 -"Grey, Southern",1.0932 -"Warbler, Sardinian",1.0922 -"Plover, White-tailed",1.0844 -"Sparrow, White-throated",1.0844 -Shag,1.0658 -"Harrier, Hen",1.0642 -"Bunting, Yellow-breasted",1.0557 -Smew,1.0545 -"Dove, Turtle",1.0197 -Roller,1.0148 -"Warbler, Hooded",1.0142 -"Warbler, Garden",1.0132 -"Martin, Crag",1.0131 -Moorhen,1.0081 -"Oriole, Baltimore",1.0045 -"Shearwater, Cory's",1.0029 -"Auk, Little",1.0025 -"Bunting, Black-headed",1.0024 -Lapwing,1.0012 -"Grebe, Pied-billed",1.0011 -"Shrike, Long-tailed",1.0005 -"Duck, Ferruginous",1.0004 -Coot,1.0002 -"Gull, Ring-billed",1.0002 -"Swift, Alpine",1.0002 -"Egret, Cattle",1.0001 -"Martin, Purple",1.0001 -Chaffinch,1.0000 -Fieldfare,1.0000 -"Goose, Egyptian",1.0000 -"Ibis, Glossy",1.0000 -Jackdaw,1.0000 -"Partridge, Red-legged",1.0000 -"Redpoll, Lesser",1.0000 -"Scaup, Lesser",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 0f3cf94580..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"User Expansion Factor" -"Thrush, Swainson's",297.8504 -Dunlin,69.2703 -"Grey, Great",36.7227 -Honey-buzzard,8.0226 -"Warbler, Yellow-browed",7.8723 -"Treecreeper, Short-toed",6.0105 -"Crane, Sandhill",4.9154 -"Thrush, Grey-cheeked",4.3697 -"Plover, Caspian",3.5459 -"Pipit, Meadow",2.2845 -"Scoter, Velvet",2.0824 -"Bunting, Yellow-browed",2.0475 -Siskin,1.8065 -"Sparrow, Savannah",1.5760 -Peregrine,1.5251 -"Warbler, Booted",1.4886 -"Grey, Lesser",1.4572 -"Warbler, Golden-winged",1.4161 -Whimbrel,1.3852 -"Gallinule, Allen's",1.3753 -"Warbler, Dusky",1.3348 -"Sandpiper, Spotted",1.3167 -"Stint, Little",1.2706 -Ovenbird,1.2280 -"Bunting, Reed",1.2101 -"Tern, Sandwich",1.1633 -Crane,1.1487 -"Thrush, Mistle",1.1120 -"Sapsucker, Yellow-bellied",1.1023 -"Grosbeak, Evening",1.0980 -"Grey, Southern",1.0932 -"Warbler, Sardinian",1.0922 -"Plover, White-tailed",1.0844 -"Sparrow, White-throated",1.0844 -Shag,1.0658 -"Harrier, Hen",1.0642 -"Bunting, Yellow-breasted",1.0557 -Smew,1.0545 -"Dove, Turtle",1.0197 -Roller,1.0148 -"Warbler, Hooded",1.0142 -"Warbler, Garden",1.0132 -"Martin, Crag",1.0131 -Moorhen,1.0081 -"Oriole, Baltimore",1.0045 -"Shearwater, Cory's",1.0029 -"Auk, Little",1.0025 -"Bunting, Black-headed",1.0024 -Lapwing,1.0012 -"Grebe, Pied-billed",1.0011 -"Shrike, Long-tailed",1.0005 -"Duck, Ferruginous",1.0004 -Coot,1.0002 -"Gull, Ring-billed",1.0002 -"Swift, Alpine",1.0002 -"Egret, Cattle",1.0001 -"Martin, Purple",1.0001 -Chaffinch,1.0000 -Fieldfare,1.0000 -"Goose, Egyptian",1.0000 -"Ibis, Glossy",1.0000 -Jackdaw,1.0000 -"Partridge, Red-legged",1.0000 -"Redpoll, Lesser",1.0000 -"Scaup, Lesser",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 0f3cf94580..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"User Expansion Factor" -"Thrush, Swainson's",297.8504 -Dunlin,69.2703 -"Grey, Great",36.7227 -Honey-buzzard,8.0226 -"Warbler, Yellow-browed",7.8723 -"Treecreeper, Short-toed",6.0105 -"Crane, Sandhill",4.9154 -"Thrush, Grey-cheeked",4.3697 -"Plover, Caspian",3.5459 -"Pipit, Meadow",2.2845 -"Scoter, Velvet",2.0824 -"Bunting, Yellow-browed",2.0475 -Siskin,1.8065 -"Sparrow, Savannah",1.5760 -Peregrine,1.5251 -"Warbler, Booted",1.4886 -"Grey, Lesser",1.4572 -"Warbler, Golden-winged",1.4161 -Whimbrel,1.3852 -"Gallinule, Allen's",1.3753 -"Warbler, Dusky",1.3348 -"Sandpiper, Spotted",1.3167 -"Stint, Little",1.2706 -Ovenbird,1.2280 -"Bunting, Reed",1.2101 -"Tern, Sandwich",1.1633 -Crane,1.1487 -"Thrush, Mistle",1.1120 -"Sapsucker, Yellow-bellied",1.1023 -"Grosbeak, Evening",1.0980 -"Grey, Southern",1.0932 -"Warbler, Sardinian",1.0922 -"Plover, White-tailed",1.0844 -"Sparrow, White-throated",1.0844 -Shag,1.0658 -"Harrier, Hen",1.0642 -"Bunting, Yellow-breasted",1.0557 -Smew,1.0545 -"Dove, Turtle",1.0197 -Roller,1.0148 -"Warbler, Hooded",1.0142 -"Warbler, Garden",1.0132 -"Martin, Crag",1.0131 -Moorhen,1.0081 -"Oriole, Baltimore",1.0045 -"Shearwater, Cory's",1.0029 -"Auk, Little",1.0025 -"Bunting, Black-headed",1.0024 -Lapwing,1.0012 -"Grebe, Pied-billed",1.0011 -"Shrike, Long-tailed",1.0005 -"Duck, Ferruginous",1.0004 -Coot,1.0002 -"Gull, Ring-billed",1.0002 -"Swift, Alpine",1.0002 -"Egret, Cattle",1.0001 -"Martin, Purple",1.0001 -Chaffinch,1.0000 -Fieldfare,1.0000 -"Goose, Egyptian",1.0000 -"Ibis, Glossy",1.0000 -Jackdaw,1.0000 -"Partridge, Red-legged",1.0000 -"Redpoll, Lesser",1.0000 -"Scaup, Lesser",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 0f3cf94580..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"User Expansion Factor" -"Thrush, Swainson's",297.8504 -Dunlin,69.2703 -"Grey, Great",36.7227 -Honey-buzzard,8.0226 -"Warbler, Yellow-browed",7.8723 -"Treecreeper, Short-toed",6.0105 -"Crane, Sandhill",4.9154 -"Thrush, Grey-cheeked",4.3697 -"Plover, Caspian",3.5459 -"Pipit, Meadow",2.2845 -"Scoter, Velvet",2.0824 -"Bunting, Yellow-browed",2.0475 -Siskin,1.8065 -"Sparrow, Savannah",1.5760 -Peregrine,1.5251 -"Warbler, Booted",1.4886 -"Grey, Lesser",1.4572 -"Warbler, Golden-winged",1.4161 -Whimbrel,1.3852 -"Gallinule, Allen's",1.3753 -"Warbler, Dusky",1.3348 -"Sandpiper, Spotted",1.3167 -"Stint, Little",1.2706 -Ovenbird,1.2280 -"Bunting, Reed",1.2101 -"Tern, Sandwich",1.1633 -Crane,1.1487 -"Thrush, Mistle",1.1120 -"Sapsucker, Yellow-bellied",1.1023 -"Grosbeak, Evening",1.0980 -"Grey, Southern",1.0932 -"Warbler, Sardinian",1.0922 -"Plover, White-tailed",1.0844 -"Sparrow, White-throated",1.0844 -Shag,1.0658 -"Harrier, Hen",1.0642 -"Bunting, Yellow-breasted",1.0557 -Smew,1.0545 -"Dove, Turtle",1.0197 -Roller,1.0148 -"Warbler, Hooded",1.0142 -"Warbler, Garden",1.0132 -"Martin, Crag",1.0131 -Moorhen,1.0081 -"Oriole, Baltimore",1.0045 -"Shearwater, Cory's",1.0029 -"Auk, Little",1.0025 -"Bunting, Black-headed",1.0024 -Lapwing,1.0012 -"Grebe, Pied-billed",1.0011 -"Shrike, Long-tailed",1.0005 -"Duck, Ferruginous",1.0004 -Coot,1.0002 -"Gull, Ring-billed",1.0002 -"Swift, Alpine",1.0002 -"Egret, Cattle",1.0001 -"Martin, Purple",1.0001 -Chaffinch,1.0000 -Fieldfare,1.0000 -"Goose, Egyptian",1.0000 -"Ibis, Glossy",1.0000 -Jackdaw,1.0000 -"Partridge, Red-legged",1.0000 -"Redpoll, Lesser",1.0000 -"Scaup, Lesser",1.0000 -"Warbler, Moltoni's",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 26e4ccef61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" -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,1.0495,0,0,0,0,0,1.0000,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.6127,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0454,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,0,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,0,0,0,0,1.5220,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,1.0000,0,4.9152,1.6524,0,0,2.5533,2.0942,0,2.0864,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.3723,1.0610,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,1.0000 -2016-12-28,0,0,0,1.0000,0,4.8768,2.1450,0,0,2.5716,2.0942,0,1.8919,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.0942,1.0610,0,1.1095,0,0,0,1.0771,1.0866,0,1.1209,0,1.0000,0,1.0250,0,1.0107,1.0025,0,1.0010,1.0000,0,0,0,1.0013,0,0,0,0,0,0,0,0,1.0000,0,0,1.0000,0,0,0,1.0000,1.0000 -2016-12-29,42.4492,0,0,6.0683,3.8567,4.9177,3.0158,1.0001,0,2.3143,2.0942,1.0000,1.8065,0,1.3890,1.7260,0,0,0,0,0,1.0513,0,1.0000,1.1847,1.4529,1.2430,1.1207,1.0000,1.0394,0,1.0561,1.0866,0,1.0778,1.0011,1.0057,1.0379,1.0201,0,1.0101,1.0228,0,1.0011,1.0000,1.0071,1.0000,0,1.0011,1.0011,1.0006,1.0004,0,0,0,0,0,1.0000,0,1.0000,1.0000,0,0,1.0000,1.0000,1.0000 -2016-12-30,361.2347,82.2879,36.1385,5.3347,3.8567,5.2630,5.9186,1.8025,0,2.2784,1.8784,3.1975,1.5568,1.5748,1.7197,1.4078,1.1806,2.1933,2.7189,1.3753,1.4992,1.4642,1.0085,1.0000,1.2290,1.4170,1.1539,1.1173,1.0160,1.1042,1.1123,1.0488,1.0801,0,1.0671,1.0787,1.0778,1.0500,1.0094,1.0094,1.0112,1.0292,1.0131,1.0022,1.0000,1.0032,1.0000,1.0041,1.0011,1.0011,1.0008,1.0004,1.0001,1.0002,1.0014,1.0001,1.0001,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.9179,30.3841,38.4517,8.5117,0,7.3737,13.7412,4.7123,1.0162,1.9224,0,1.0000,1.5265,1.5974,1.4660,1.2386,1.6099,1.2202,1.1623,0,1.1213,1.1316,2.5754,1.2516,1.2538,0,1.0513,1.0205,1.2604,0,1.0199,1.1407,0,1.0760,1.0379,1.0006,1.0874,1.1462,1.0368,1.0172,1.0269,1.0100,0,1.0187,1.0002,1.0017,1.0039,1.0018,1.0012,0,1.0006,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0 -2017-01-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index a4ba6afd3d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" -2016-12,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index ae45fc0f00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" -"2016 Q4",297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 913a3054b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Thrush, Swainson's] User Expansion Factor","[Dunlin] User Expansion Factor","[Grey, Great] User Expansion Factor","[Honey-buzzard] User Expansion Factor","[Warbler, Yellow-browed] User Expansion Factor","[Treecreeper, Short-toed] User Expansion Factor","[Crane, Sandhill] User Expansion Factor","[Thrush, Grey-cheeked] User Expansion Factor","[Plover, Caspian] User Expansion Factor","[Pipit, Meadow] User Expansion Factor","[Scoter, Velvet] User Expansion Factor","[Bunting, Yellow-browed] User Expansion Factor","[Siskin] User Expansion Factor","[Sparrow, Savannah] User Expansion Factor","[Peregrine] User Expansion Factor","[Warbler, Booted] User Expansion Factor","[Grey, Lesser] User Expansion Factor","[Warbler, Golden-winged] User Expansion Factor","[Whimbrel] User Expansion Factor","[Gallinule, Allen's] User Expansion Factor","[Warbler, Dusky] User Expansion Factor","[Sandpiper, Spotted] User Expansion Factor","[Stint, Little] User Expansion Factor","[Ovenbird] User Expansion Factor","[Bunting, Reed] User Expansion Factor","[Tern, Sandwich] User Expansion Factor","[Crane] User Expansion Factor","[Thrush, Mistle] User Expansion Factor","[Sapsucker, Yellow-bellied] User Expansion Factor","[Grosbeak, Evening] User Expansion Factor","[Grey, Southern] User Expansion Factor","[Warbler, Sardinian] User Expansion Factor","[Plover, White-tailed] User Expansion Factor","[Sparrow, White-throated] User Expansion Factor","[Shag] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Bunting, Yellow-breasted] User Expansion Factor","[Smew] User Expansion Factor","[Dove, Turtle] User Expansion Factor","[Roller] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Warbler, Garden] User Expansion Factor","[Martin, Crag] User Expansion Factor","[Moorhen] User Expansion Factor","[Oriole, Baltimore] User Expansion Factor","[Shearwater, Cory's] User Expansion Factor","[Auk, Little] User Expansion Factor","[Bunting, Black-headed] User Expansion Factor","[Lapwing] User Expansion Factor","[Grebe, Pied-billed] User Expansion Factor","[Shrike, Long-tailed] User Expansion Factor","[Duck, Ferruginous] User Expansion Factor","[Coot] User Expansion Factor","[Gull, Ring-billed] User Expansion Factor","[Swift, Alpine] User Expansion Factor","[Egret, Cattle] User Expansion Factor","[Martin, Purple] User Expansion Factor","[Chaffinch] User Expansion Factor","[Fieldfare] User Expansion Factor","[Goose, Egyptian] User Expansion Factor","[Ibis, Glossy] User Expansion Factor","[Jackdaw] User Expansion Factor","[Partridge, Red-legged] User Expansion Factor","[Redpoll, Lesser] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Warbler, Moltoni's] User Expansion Factor" -2016,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0002,1.0001,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0002,0,1.0006,1.0002,1.0001,1.0000,1.0000,0,0,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 198bea0fbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Ended" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 198bea0fbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Ended" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 198bea0fbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Ended" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 198bea0fbd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Ended" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 7eae544e0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" -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,0,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,0,0,0,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-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,0,0,0,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-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,0,0,0,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-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,0,0,0,0,0,0,0,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-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19043,3457,1698,788,1,333,0,712,34,90,68,61,3,20,36,5,50,28,12,0,8,8,8,3,10,5,19,1,5,2,4,4,11,14,0,5,7,10,1,4,0,0,4,6,3,0,2,1,1,2,3,2,1,2,1,2,1,2,1,0,0,1,0,1,1,1 -2016-12-31,22020,2365,933,869,999,341,4,1,180,10,24,83,97,24,20,1,0,8,12,4,17,8,8,12,5,16,1,6,4,0,3,4,4,0,7,5,4,0,7,6,9,0,4,1,3,4,2,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0 -2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv deleted file mode 100644 index a731a32f28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" -2016-12,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,9,2,7,8,15,14,7,10,11,10,8,10,9,0,8,7,6,4,4,3,1,2,3,3,2,2,1,2,2,2,1,0,0,1,1,1,1,1 -2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index e73c6b3ee0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" -"2016 Q4",41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,9,2,7,8,15,14,7,10,11,10,8,10,9,0,8,7,6,4,4,3,1,2,3,3,2,2,1,2,2,2,1,0,0,1,1,1,1,1 -"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 31cdadaf84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Honey-buzzard] Number of Jobs Ended","[Bunting, Reed] Number of Jobs Ended","[Grey, Great] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Grey, Lesser] Number of Jobs Ended","[Dove, Turtle] Number of Jobs Ended","[Plover, Caspian] Number of Jobs Ended","[Thrush, Swainson's] Number of Jobs Ended","[Lapwing] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Grey, Southern] Number of Jobs Ended","[Crane, Sandhill] Number of Jobs Ended","[Thrush, Grey-cheeked] Number of Jobs Ended","[Warbler, Golden-winged] Number of Jobs Ended","[Sandpiper, Spotted] Number of Jobs Ended","[Warbler, Garden] Number of Jobs Ended","[Grebe, Pied-billed] Number of Jobs Ended","[Warbler, Sardinian] Number of Jobs Ended","[Martin, Purple] Number of Jobs Ended","[Oriole, Baltimore] Number of Jobs Ended","[Sparrow, Savannah] Number of Jobs Ended","[Coot] Number of Jobs Ended","[Egret, Cattle] Number of Jobs Ended","[Pipit, Meadow] Number of Jobs Ended","[Treecreeper, Short-toed] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[Sapsucker, Yellow-bellied] Number of Jobs Ended","[Crane] Number of Jobs Ended","[Shearwater, Cory's] Number of Jobs Ended","[Shrike, Long-tailed] Number of Jobs Ended","[Swift, Alpine] Number of Jobs Ended","[Warbler, Booted] Number of Jobs Ended","[Martin, Crag] Number of Jobs Ended","[Whimbrel] Number of Jobs Ended","[Shag] Number of Jobs Ended","[Stint, Little] Number of Jobs Ended","[Thrush, Mistle] Number of Jobs Ended","[Auk, Little] Number of Jobs Ended","[Bunting, Black-headed] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Sparrow, White-throated] Number of Jobs Ended","[Goose, Egyptian] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Bunting, Yellow-breasted] Number of Jobs Ended","[Ovenbird] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Roller] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Peregrine] Number of Jobs Ended","[Plover, White-tailed] Number of Jobs Ended","[Warbler, Dusky] Number of Jobs Ended","[Bunting, Yellow-browed] Number of Jobs Ended","[Grosbeak, Evening] Number of Jobs Ended","[Redpoll, Lesser] Number of Jobs Ended","[Scoter, Velvet] Number of Jobs Ended","[Siskin] Number of Jobs Ended","[Tern, Sandwich] Number of Jobs Ended","[Warbler, Yellow-browed] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Duck, Ferruginous] Number of Jobs Ended","[Gallinule, Allen's] Number of Jobs Ended","[Gull, Ring-billed] Number of Jobs Ended","[Ibis, Glossy] Number of Jobs Ended","[Partridge, Red-legged] Number of Jobs Ended","[Warbler, Moltoni's] Number of Jobs Ended" -2016,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,9,2,7,8,15,14,7,10,11,10,8,10,9,0,8,7,6,4,4,3,1,2,3,3,2,2,1,2,2,2,1,0,0,1,1,1,1,1 -2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 99b4151ade..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Max (Core Count)" -"Warbler, Dusky",336 -Dunlin,192 -"Scaup, Lesser",192 -"Warbler, Yellow-browed",160 -"Scoter, Velvet",144 -"Goose, Egyptian",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Warbler, Sardinian",96 -Siskin,72 -Smew,72 -Whimbrel,72 -Chaffinch,64 -"Swift, Alpine",64 -"Thrush, Swainson's",64 -"Duck, Ferruginous",60 -Peregrine,60 -Roller,60 -"Grosbeak, Evening",56 -"Warbler, Golden-winged",48 -"Bunting, Yellow-browed",40 -"Bunting, Reed",32 -"Crane, Sandhill",32 -"Oriole, Baltimore",32 -Shag,32 -"Treecreeper, Short-toed",32 -"Sparrow, White-throated",24 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Shrike, Long-tailed",20 -"Bunting, Yellow-breasted",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Stint, Little",16 -"Warbler, Garden",16 -"Auk, Little",12 -"Dove, Turtle",12 -Honey-buzzard,12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -"Thrush, Grey-cheeked",12 -"Thrush, Mistle",12 -"Warbler, Booted",12 -"Warbler, Hooded",12 -Fieldfare,8 -"Shearwater, Cory's",8 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 99b4151ade..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Max (Core Count)" -"Warbler, Dusky",336 -Dunlin,192 -"Scaup, Lesser",192 -"Warbler, Yellow-browed",160 -"Scoter, Velvet",144 -"Goose, Egyptian",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Warbler, Sardinian",96 -Siskin,72 -Smew,72 -Whimbrel,72 -Chaffinch,64 -"Swift, Alpine",64 -"Thrush, Swainson's",64 -"Duck, Ferruginous",60 -Peregrine,60 -Roller,60 -"Grosbeak, Evening",56 -"Warbler, Golden-winged",48 -"Bunting, Yellow-browed",40 -"Bunting, Reed",32 -"Crane, Sandhill",32 -"Oriole, Baltimore",32 -Shag,32 -"Treecreeper, Short-toed",32 -"Sparrow, White-throated",24 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Shrike, Long-tailed",20 -"Bunting, Yellow-breasted",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Stint, Little",16 -"Warbler, Garden",16 -"Auk, Little",12 -"Dove, Turtle",12 -Honey-buzzard,12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -"Thrush, Grey-cheeked",12 -"Thrush, Mistle",12 -"Warbler, Booted",12 -"Warbler, Hooded",12 -Fieldfare,8 -"Shearwater, Cory's",8 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 99b4151ade..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Max (Core Count)" -"Warbler, Dusky",336 -Dunlin,192 -"Scaup, Lesser",192 -"Warbler, Yellow-browed",160 -"Scoter, Velvet",144 -"Goose, Egyptian",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Warbler, Sardinian",96 -Siskin,72 -Smew,72 -Whimbrel,72 -Chaffinch,64 -"Swift, Alpine",64 -"Thrush, Swainson's",64 -"Duck, Ferruginous",60 -Peregrine,60 -Roller,60 -"Grosbeak, Evening",56 -"Warbler, Golden-winged",48 -"Bunting, Yellow-browed",40 -"Bunting, Reed",32 -"Crane, Sandhill",32 -"Oriole, Baltimore",32 -Shag,32 -"Treecreeper, Short-toed",32 -"Sparrow, White-throated",24 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Shrike, Long-tailed",20 -"Bunting, Yellow-breasted",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Stint, Little",16 -"Warbler, Garden",16 -"Auk, Little",12 -"Dove, Turtle",12 -Honey-buzzard,12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -"Thrush, Grey-cheeked",12 -"Thrush, Mistle",12 -"Warbler, Booted",12 -"Warbler, Hooded",12 -Fieldfare,8 -"Shearwater, Cory's",8 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 99b4151ade..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Max (Core Count)" -"Warbler, Dusky",336 -Dunlin,192 -"Scaup, Lesser",192 -"Warbler, Yellow-browed",160 -"Scoter, Velvet",144 -"Goose, Egyptian",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Warbler, Sardinian",96 -Siskin,72 -Smew,72 -Whimbrel,72 -Chaffinch,64 -"Swift, Alpine",64 -"Thrush, Swainson's",64 -"Duck, Ferruginous",60 -Peregrine,60 -Roller,60 -"Grosbeak, Evening",56 -"Warbler, Golden-winged",48 -"Bunting, Yellow-browed",40 -"Bunting, Reed",32 -"Crane, Sandhill",32 -"Oriole, Baltimore",32 -Shag,32 -"Treecreeper, Short-toed",32 -"Sparrow, White-throated",24 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Shrike, Long-tailed",20 -"Bunting, Yellow-breasted",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Stint, Little",16 -"Warbler, Garden",16 -"Auk, Little",12 -"Dove, Turtle",12 -Honey-buzzard,12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -"Thrush, Grey-cheeked",12 -"Thrush, Mistle",12 -"Warbler, Booted",12 -"Warbler, Hooded",12 -Fieldfare,8 -"Shearwater, Cory's",8 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 6ab8277472..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (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,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,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,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,24,0,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,24,0,12,0,0,0,0,0,0,0,0,0,0,16,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-27,0,0,0,0,144,0,0,0,96,0,72,0,0,64,0,0,0,0,0,0,0,0,32,32,12,0,8,0,0,0,0,16,16,0,0,16,0,12,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 -2016-12-28,0,0,192,0,144,0,0,0,96,32,72,0,0,64,0,0,0,0,0,0,0,0,32,32,12,32,8,0,20,0,0,16,16,0,0,16,0,12,1,0,12,0,0,12,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1 -2016-12-29,0,0,192,160,144,112,0,96,96,32,72,72,0,64,0,64,60,60,0,56,0,40,32,32,12,32,8,0,20,0,1,16,16,0,0,16,5,12,12,0,12,12,2,12,12,8,0,8,4,4,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,1 -2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,12,32,32,0,20,20,20,16,16,16,16,16,5,12,12,0,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,336,192,192,0,0,112,0,96,96,96,48,72,72,64,64,64,60,60,60,0,48,40,16,20,32,32,8,24,0,0,20,8,16,0,16,16,12,8,12,12,0,12,2,12,1,12,8,8,4,4,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0 -2017-01-01,0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 8f728da976..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (Core Count)" -2016-12,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index ae39be36a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 873052ebbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Warbler, Dusky] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Warbler, Yellow-browed] Job Size: Max (Core Count)","[Scoter, Velvet] Job Size: Max (Core Count)","[Goose, Egyptian] Job Size: Max (Core Count)","[Gallinule, Allen's] Job Size: Max (Core Count)","[Crane] Job Size: Max (Core Count)","[Pipit, Meadow] Job Size: Max (Core Count)","[Warbler, Sardinian] Job Size: Max (Core Count)","[Siskin] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[Whimbrel] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Swift, Alpine] Job Size: Max (Core Count)","[Thrush, Swainson's] Job Size: Max (Core Count)","[Duck, Ferruginous] Job Size: Max (Core Count)","[Peregrine] Job Size: Max (Core Count)","[Roller] Job Size: Max (Core Count)","[Grosbeak, Evening] Job Size: Max (Core Count)","[Warbler, Golden-winged] Job Size: Max (Core Count)","[Bunting, Yellow-browed] Job Size: Max (Core Count)","[Bunting, Reed] Job Size: Max (Core Count)","[Crane, Sandhill] Job Size: Max (Core Count)","[Oriole, Baltimore] Job Size: Max (Core Count)","[Shag] Job Size: Max (Core Count)","[Treecreeper, Short-toed] Job Size: Max (Core Count)","[Sparrow, White-throated] Job Size: Max (Core Count)","[Ibis, Glossy] Job Size: Max (Core Count)","[Martin, Crag] Job Size: Max (Core Count)","[Shrike, Long-tailed] Job Size: Max (Core Count)","[Bunting, Yellow-breasted] Job Size: Max (Core Count)","[Ovenbird] Job Size: Max (Core Count)","[Partridge, Red-legged] Job Size: Max (Core Count)","[Stint, Little] Job Size: Max (Core Count)","[Warbler, Garden] Job Size: Max (Core Count)","[Auk, Little] Job Size: Max (Core Count)","[Dove, Turtle] Job Size: Max (Core Count)","[Honey-buzzard] Job Size: Max (Core Count)","[Plover, Caspian] Job Size: Max (Core Count)","[Plover, White-tailed] Job Size: Max (Core Count)","[Sandpiper, Spotted] Job Size: Max (Core Count)","[Thrush, Grey-cheeked] Job Size: Max (Core Count)","[Thrush, Mistle] Job Size: Max (Core Count)","[Warbler, Booted] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Shearwater, Cory's] Job Size: Max (Core Count)","[Redpoll, Lesser] Job Size: Max (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Max (Core Count)","[Bunting, Black-headed] Job Size: Max (Core Count)","[Coot] Job Size: Max (Core Count)","[Egret, Cattle] Job Size: Max (Core Count)","[Grebe, Pied-billed] Job Size: Max (Core Count)","[Grey, Great] Job Size: Max (Core Count)","[Grey, Lesser] Job Size: Max (Core Count)","[Grey, Southern] Job Size: Max (Core Count)","[Gull, Ring-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Lapwing] Job Size: Max (Core Count)","[Martin, Purple] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Sparrow, Savannah] Job Size: Max (Core Count)","[Tern, Sandwich] Job Size: Max (Core Count)","[Warbler, Moltoni's] Job Size: Max (Core Count)" -2016,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,192,0,160,0,0,0,96,96,48,0,0,72,64,32,0,60,60,5,0,48,0,24,0,12,24,8,24,0,0,20,0,16,0,0,16,12,8,12,12,0,12,2,12,0,0,8,8,4,4,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 56c4f7af4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Min (Core Count)" -"Warbler, Yellow-browed",160 -"Goose, Egyptian",112 -"Scaup, Lesser",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Scoter, Velvet",80 -Smew,72 -Chaffinch,64 -"Duck, Ferruginous",60 -Peregrine,60 -"Grosbeak, Evening",56 -Siskin,48 -"Warbler, Dusky",48 -Whimbrel,36 -"Swift, Alpine",32 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Bunting, Yellow-browed",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Sparrow, White-throated",16 -"Crane, Sandhill",12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -Shag,12 -"Stint, Little",12 -"Thrush, Mistle",12 -"Warbler, Sardinian",12 -"Bunting, Reed",8 -"Bunting, Yellow-breasted",8 -"Dove, Turtle",8 -Dunlin,8 -Fieldfare,8 -"Shearwater, Cory's",8 -"Warbler, Hooded",8 -"Auk, Little",5 -Roller,5 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Thrush, Swainson's",4 -"Thrush, Grey-cheeked",2 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -"Shrike, Long-tailed",1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 56c4f7af4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Min (Core Count)" -"Warbler, Yellow-browed",160 -"Goose, Egyptian",112 -"Scaup, Lesser",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Scoter, Velvet",80 -Smew,72 -Chaffinch,64 -"Duck, Ferruginous",60 -Peregrine,60 -"Grosbeak, Evening",56 -Siskin,48 -"Warbler, Dusky",48 -Whimbrel,36 -"Swift, Alpine",32 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Bunting, Yellow-browed",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Sparrow, White-throated",16 -"Crane, Sandhill",12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -Shag,12 -"Stint, Little",12 -"Thrush, Mistle",12 -"Warbler, Sardinian",12 -"Bunting, Reed",8 -"Bunting, Yellow-breasted",8 -"Dove, Turtle",8 -Dunlin,8 -Fieldfare,8 -"Shearwater, Cory's",8 -"Warbler, Hooded",8 -"Auk, Little",5 -Roller,5 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Thrush, Swainson's",4 -"Thrush, Grey-cheeked",2 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -"Shrike, Long-tailed",1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 56c4f7af4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Min (Core Count)" -"Warbler, Yellow-browed",160 -"Goose, Egyptian",112 -"Scaup, Lesser",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Scoter, Velvet",80 -Smew,72 -Chaffinch,64 -"Duck, Ferruginous",60 -Peregrine,60 -"Grosbeak, Evening",56 -Siskin,48 -"Warbler, Dusky",48 -Whimbrel,36 -"Swift, Alpine",32 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Bunting, Yellow-browed",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Sparrow, White-throated",16 -"Crane, Sandhill",12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -Shag,12 -"Stint, Little",12 -"Thrush, Mistle",12 -"Warbler, Sardinian",12 -"Bunting, Reed",8 -"Bunting, Yellow-breasted",8 -"Dove, Turtle",8 -Dunlin,8 -Fieldfare,8 -"Shearwater, Cory's",8 -"Warbler, Hooded",8 -"Auk, Little",5 -Roller,5 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Thrush, Swainson's",4 -"Thrush, Grey-cheeked",2 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -"Shrike, Long-tailed",1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 56c4f7af4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Job Size: Min (Core Count)" -"Warbler, Yellow-browed",160 -"Goose, Egyptian",112 -"Scaup, Lesser",112 -"Gallinule, Allen's",108 -Crane,96 -"Pipit, Meadow",96 -"Scoter, Velvet",80 -Smew,72 -Chaffinch,64 -"Duck, Ferruginous",60 -Peregrine,60 -"Grosbeak, Evening",56 -Siskin,48 -"Warbler, Dusky",48 -Whimbrel,36 -"Swift, Alpine",32 -"Ibis, Glossy",20 -"Martin, Crag",20 -"Bunting, Yellow-browed",16 -Ovenbird,16 -"Partridge, Red-legged",16 -"Sparrow, White-throated",16 -"Crane, Sandhill",12 -"Plover, Caspian",12 -"Plover, White-tailed",12 -"Sandpiper, Spotted",12 -Shag,12 -"Stint, Little",12 -"Thrush, Mistle",12 -"Warbler, Sardinian",12 -"Bunting, Reed",8 -"Bunting, Yellow-breasted",8 -"Dove, Turtle",8 -Dunlin,8 -Fieldfare,8 -"Shearwater, Cory's",8 -"Warbler, Hooded",8 -"Auk, Little",5 -Roller,5 -"Redpoll, Lesser",4 -"Sapsucker, Yellow-bellied",4 -"Thrush, Swainson's",4 -"Thrush, Grey-cheeked",2 -"Bunting, Black-headed",1 -Coot,1 -"Egret, Cattle",1 -"Grebe, Pied-billed",1 -"Grey, Great",1 -"Grey, Lesser",1 -"Grey, Southern",1 -"Gull, Ring-billed",1 -"Harrier, Hen",1 -Honey-buzzard,1 -Jackdaw,1 -Lapwing,1 -"Martin, Purple",1 -Moorhen,1 -"Oriole, Baltimore",1 -"Shrike, Long-tailed",1 -"Sparrow, Savannah",1 -"Tern, Sandwich",1 -"Treecreeper, Short-toed",1 -"Warbler, Booted",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index e1cf15da7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (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,12,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,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,12,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,0,0,1,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,12,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,0,0,1,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,24,0,12,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,0,0,1,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,0,0,0,0,0,0,0,24,0,12,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,0,0,1,0,0,16,0,0 -2016-12-27,0,0,0,0,0,96,144,0,64,0,0,0,72,0,0,0,0,0,0,16,0,0,32,0,0,0,0,0,0,0,8,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,12,0,0,1,8,12,16,0,1 -2016-12-28,0,0,112,0,0,96,144,0,64,0,0,0,48,0,0,0,20,0,0,16,0,0,12,0,12,0,12,0,12,32,8,16,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,12,0,0,1,8,12,16,0,1 -2016-12-29,160,112,112,0,96,96,144,72,64,60,60,56,48,0,0,0,20,0,40,16,0,0,12,0,12,12,12,0,12,32,8,8,8,0,0,8,8,5,0,4,4,4,2,0,0,0,1,0,0,0,0,1,1,0,1,0,1,12,1,0,1,8,12,16,0,1 -2016-12-30,160,112,112,108,96,96,80,72,64,60,60,56,48,48,72,32,20,20,16,16,16,0,12,0,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,12,1,1,1,1,1,16,1,1 -2016-12-31,0,112,112,0,96,96,0,72,64,60,60,0,48,336,36,64,0,0,40,16,0,16,12,12,0,12,12,16,12,12,8,8,8,12,8,8,8,8,5,4,4,64,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,8,1,1,0,8,1,1,12,0 -2017-01-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index a2171a80e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (Core Count)" -2016-12,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -2017-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 1eba667a9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (Core Count)" -"2016 Q4",160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -"2017 Q1",160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index fea950c9bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Warbler, Yellow-browed] Job Size: Min (Core Count)","[Goose, Egyptian] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Gallinule, Allen's] Job Size: Min (Core Count)","[Crane] Job Size: Min (Core Count)","[Pipit, Meadow] Job Size: Min (Core Count)","[Scoter, Velvet] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Duck, Ferruginous] Job Size: Min (Core Count)","[Peregrine] Job Size: Min (Core Count)","[Grosbeak, Evening] Job Size: Min (Core Count)","[Siskin] Job Size: Min (Core Count)","[Warbler, Dusky] Job Size: Min (Core Count)","[Whimbrel] Job Size: Min (Core Count)","[Swift, Alpine] Job Size: Min (Core Count)","[Ibis, Glossy] Job Size: Min (Core Count)","[Martin, Crag] Job Size: Min (Core Count)","[Bunting, Yellow-browed] Job Size: Min (Core Count)","[Ovenbird] Job Size: Min (Core Count)","[Partridge, Red-legged] Job Size: Min (Core Count)","[Sparrow, White-throated] Job Size: Min (Core Count)","[Crane, Sandhill] Job Size: Min (Core Count)","[Plover, Caspian] Job Size: Min (Core Count)","[Plover, White-tailed] Job Size: Min (Core Count)","[Sandpiper, Spotted] Job Size: Min (Core Count)","[Shag] Job Size: Min (Core Count)","[Stint, Little] Job Size: Min (Core Count)","[Thrush, Mistle] Job Size: Min (Core Count)","[Warbler, Sardinian] Job Size: Min (Core Count)","[Bunting, Reed] Job Size: Min (Core Count)","[Bunting, Yellow-breasted] Job Size: Min (Core Count)","[Dove, Turtle] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Shearwater, Cory's] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Auk, Little] Job Size: Min (Core Count)","[Roller] Job Size: Min (Core Count)","[Redpoll, Lesser] Job Size: Min (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Min (Core Count)","[Thrush, Swainson's] Job Size: Min (Core Count)","[Thrush, Grey-cheeked] Job Size: Min (Core Count)","[Bunting, Black-headed] Job Size: Min (Core Count)","[Coot] Job Size: Min (Core Count)","[Egret, Cattle] Job Size: Min (Core Count)","[Grebe, Pied-billed] Job Size: Min (Core Count)","[Grey, Great] Job Size: Min (Core Count)","[Grey, Lesser] Job Size: Min (Core Count)","[Grey, Southern] Job Size: Min (Core Count)","[Gull, Ring-billed] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Honey-buzzard] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Lapwing] Job Size: Min (Core Count)","[Martin, Purple] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Oriole, Baltimore] Job Size: Min (Core Count)","[Shrike, Long-tailed] Job Size: Min (Core Count)","[Sparrow, Savannah] Job Size: Min (Core Count)","[Tern, Sandwich] Job Size: Min (Core Count)","[Treecreeper, Short-toed] Job Size: Min (Core Count)","[Warbler, Booted] Job Size: Min (Core Count)","[Warbler, Garden] Job Size: Min (Core Count)","[Warbler, Golden-winged] Job Size: Min (Core Count)","[Warbler, Moltoni's] Job Size: Min (Core Count)" -2016,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -2017,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,0,16,0,16,0,12,0,12,24,0,12,16,8,0,8,8,8,8,0,12,5,4,4,0,2,0,1,1,0,0,0,1,0,0,1,0,1,1,1,1,20,1,0,8,0,8,12,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index fa89dcf3f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -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/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index fa89dcf3f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -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/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index fa89dcf3f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -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/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index fa89dcf3f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -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/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 05724ffa9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -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)","[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/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 190efde6b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -2017-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/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 74aa57de96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -"2017 Q1",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/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 29802fd608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -2017,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/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index e4c71ffb55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Running" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index e4c71ffb55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Running" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e4c71ffb55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Running" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index e4c71ffb55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Running" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 682e448322..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-25,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-26,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -2016-12-27,1,12,0,0,0,2,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1 -2016-12-28,1,13,0,190,0,2,0,0,147,0,0,11,0,0,0,16,0,3,0,1,0,0,0,15,10,5,0,0,0,0,0,0,1,0,0,2,0,9,0,0,9,0,0,0,1,4,0,0,0,0,3,0,0,0,0,1,2,1,0,1,0,0,0,1,0,1 -2016-12-29,249,25,0,960,0,19,0,13,235,0,0,24,1,0,10,20,50,7,0,1,0,0,0,22,12,10,5,7,3,6,1,0,1,0,0,3,0,9,1,0,9,0,4,7,5,4,0,0,0,1,3,0,1,1,1,1,2,2,1,1,1,0,0,1,0,1 -2016-12-30,19298,3466,1698,1635,719,349,0,713,252,90,68,94,4,20,60,20,50,35,12,1,8,8,8,22,18,16,20,15,8,8,4,4,15,14,1,9,7,11,1,4,9,0,8,7,6,4,4,3,1,3,3,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1 -2016-12-31,22499,2368,933,1637,999,357,16,1,255,10,24,83,98,26,24,48,0,9,12,5,17,8,8,19,12,16,1,17,7,6,3,4,4,0,9,6,4,1,7,6,9,9,4,1,3,5,2,2,1,1,0,1,1,0,1,0,1,0,0,1,1,0,1,0,0,0 -2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 9951882fdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" -2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1f59300528..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" -"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index c5d2da1ea3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Honey-buzzard] Number of Jobs Running","[Bunting, Reed] Number of Jobs Running","[Grey, Great] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Grey, Lesser] Number of Jobs Running","[Dove, Turtle] Number of Jobs Running","[Plover, Caspian] Number of Jobs Running","[Thrush, Swainson's] Number of Jobs Running","[Lapwing] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Grey, Southern] Number of Jobs Running","[Crane, Sandhill] Number of Jobs Running","[Thrush, Grey-cheeked] Number of Jobs Running","[Warbler, Golden-winged] Number of Jobs Running","[Sandpiper, Spotted] Number of Jobs Running","[Warbler, Garden] Number of Jobs Running","[Grebe, Pied-billed] Number of Jobs Running","[Warbler, Sardinian] Number of Jobs Running","[Martin, Purple] Number of Jobs Running","[Oriole, Baltimore] Number of Jobs Running","[Sparrow, Savannah] Number of Jobs Running","[Coot] Number of Jobs Running","[Egret, Cattle] Number of Jobs Running","[Pipit, Meadow] Number of Jobs Running","[Treecreeper, Short-toed] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[Sapsucker, Yellow-bellied] Number of Jobs Running","[Crane] Number of Jobs Running","[Shearwater, Cory's] Number of Jobs Running","[Shrike, Long-tailed] Number of Jobs Running","[Swift, Alpine] Number of Jobs Running","[Warbler, Booted] Number of Jobs Running","[Martin, Crag] Number of Jobs Running","[Whimbrel] Number of Jobs Running","[Shag] Number of Jobs Running","[Stint, Little] Number of Jobs Running","[Thrush, Mistle] Number of Jobs Running","[Auk, Little] Number of Jobs Running","[Bunting, Black-headed] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Sparrow, White-throated] Number of Jobs Running","[Goose, Egyptian] Number of Jobs Running","[Smew] Number of Jobs Running","[Bunting, Yellow-breasted] Number of Jobs Running","[Ovenbird] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Roller] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Peregrine] Number of Jobs Running","[Plover, White-tailed] Number of Jobs Running","[Warbler, Dusky] Number of Jobs Running","[Bunting, Yellow-browed] Number of Jobs Running","[Grosbeak, Evening] Number of Jobs Running","[Redpoll, Lesser] Number of Jobs Running","[Scoter, Velvet] Number of Jobs Running","[Siskin] Number of Jobs Running","[Tern, Sandwich] Number of Jobs Running","[Warbler, Yellow-browed] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Duck, Ferruginous] Number of Jobs Running","[Gallinule, Allen's] Number of Jobs Running","[Gull, Ring-billed] Number of Jobs Running","[Ibis, Glossy] Number of Jobs Running","[Partridge, Red-legged] Number of Jobs Running","[Warbler, Moltoni's] Number of Jobs Running" -2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,7,14,9,8,0,0,7,1,0,1,2,0,0,9,0,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 9479d9ae94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Started" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 9479d9ae94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Started" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 9479d9ae94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Started" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 9479d9ae94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Started" -Honey-buzzard,54983 -"Bunting, Reed",5906 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Plover, Caspian",756 -"Thrush, Swainson's",713 -Lapwing,308 -Dunlin,239 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -"Warbler, Yellow-browed",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 09503ecc08..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1 -2016-12-28,0,1,0,190,0,0,0,0,147,0,0,9,0,0,0,11,0,3,0,0,0,0,0,12,5,5,0,0,0,0,0,0,0,0,0,2,0,9,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0 -2016-12-29,248,12,0,770,0,17,0,13,88,0,0,13,1,0,10,4,50,4,0,0,0,0,0,7,2,5,5,7,3,6,1,0,0,0,0,1,0,0,1,0,0,0,4,7,4,0,0,0,0,1,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0 -2016-12-30,19049,3441,1698,675,719,330,0,700,17,90,68,70,3,20,50,0,0,28,12,0,8,8,8,0,6,6,15,8,5,2,3,4,14,14,1,6,7,2,0,4,0,0,4,0,1,0,4,3,1,2,0,3,1,1,0,1,0,0,0,0,0,1,1,0,1,0 -2016-12-31,22244,2359,933,790,281,341,16,0,37,10,24,50,97,26,0,33,0,2,12,4,17,8,8,0,4,5,0,3,4,0,3,4,0,0,8,2,4,0,7,6,0,9,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 27a01f8ac0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" -2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 4a94877141..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" -"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 149e77edae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Honey-buzzard] Number of Jobs Started","[Bunting, Reed] Number of Jobs Started","[Grey, Great] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Grey, Lesser] Number of Jobs Started","[Dove, Turtle] Number of Jobs Started","[Plover, Caspian] Number of Jobs Started","[Thrush, Swainson's] Number of Jobs Started","[Lapwing] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Grey, Southern] Number of Jobs Started","[Crane, Sandhill] Number of Jobs Started","[Thrush, Grey-cheeked] Number of Jobs Started","[Warbler, Golden-winged] Number of Jobs Started","[Sandpiper, Spotted] Number of Jobs Started","[Warbler, Garden] Number of Jobs Started","[Grebe, Pied-billed] Number of Jobs Started","[Warbler, Sardinian] Number of Jobs Started","[Martin, Purple] Number of Jobs Started","[Oriole, Baltimore] Number of Jobs Started","[Sparrow, Savannah] Number of Jobs Started","[Coot] Number of Jobs Started","[Egret, Cattle] Number of Jobs Started","[Pipit, Meadow] Number of Jobs Started","[Treecreeper, Short-toed] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[Sapsucker, Yellow-bellied] Number of Jobs Started","[Crane] Number of Jobs Started","[Shearwater, Cory's] Number of Jobs Started","[Shrike, Long-tailed] Number of Jobs Started","[Swift, Alpine] Number of Jobs Started","[Warbler, Booted] Number of Jobs Started","[Martin, Crag] Number of Jobs Started","[Whimbrel] Number of Jobs Started","[Shag] Number of Jobs Started","[Stint, Little] Number of Jobs Started","[Thrush, Mistle] Number of Jobs Started","[Auk, Little] Number of Jobs Started","[Bunting, Black-headed] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Sparrow, White-throated] Number of Jobs Started","[Goose, Egyptian] Number of Jobs Started","[Smew] Number of Jobs Started","[Bunting, Yellow-breasted] Number of Jobs Started","[Ovenbird] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Roller] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Peregrine] Number of Jobs Started","[Plover, White-tailed] Number of Jobs Started","[Warbler, Dusky] Number of Jobs Started","[Bunting, Yellow-browed] Number of Jobs Started","[Grosbeak, Evening] Number of Jobs Started","[Redpoll, Lesser] Number of Jobs Started","[Scoter, Velvet] Number of Jobs Started","[Siskin] Number of Jobs Started","[Tern, Sandwich] Number of Jobs Started","[Warbler, Yellow-browed] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Duck, Ferruginous] Number of Jobs Started","[Gallinule, Allen's] Number of Jobs Started","[Gull, Ring-billed] Number of Jobs Started","[Ibis, Glossy] Number of Jobs Started","[Partridge, Red-legged] Number of Jobs Started","[Warbler, Moltoni's] Number of Jobs Started" -2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 844a1eed79..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Submitted" -Honey-buzzard,49649 -"Bunting, Reed",5892 -"Grey, Great",2631 -Moorhen,2586 -"Dove, Turtle",981 -"Grey, Lesser",719 -"Plover, Caspian",693 -Lapwing,308 -"Grey, Southern",154 -Dunlin,123 -"Warbler, Golden-winged",69 -"Grebe, Pied-billed",50 -"Warbler, Garden",49 -"Warbler, Sardinian",44 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -"Sandpiper, Spotted",25 -Coot,24 -"Egret, Cattle",24 -"Warbler, Hooded",21 -"Harrier, Hen",20 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Sapsucker, Yellow-bellied",15 -"Martin, Crag",14 -"Warbler, Booted",14 -"Crane, Sandhill",12 -Whimbrel,12 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -Shag,10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",5 -"Treecreeper, Short-toed",5 -Jackdaw,4 -Ovenbird,4 -Roller,4 -Fieldfare,3 -"Plover, White-tailed",3 -"Grosbeak, Evening",2 -"Pipit, Meadow",2 -"Redpoll, Lesser",2 -"Bunting, Yellow-browed",1 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -Peregrine,1 -"Scoter, Velvet",1 -"Tern, Sandwich",1 -"Thrush, Grey-cheeked",1 -"Warbler, Moltoni's",1 -Siskin,0 -"Thrush, Swainson's",0 -"Warbler, Dusky",0 -"Warbler, Yellow-browed",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index e25909404a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Submitted" -Honey-buzzard,53053 -"Bunting, Reed",5905 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Thrush, Swainson's",713 -"Plover, Caspian",693 -Lapwing,308 -Dunlin,164 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e25909404a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Submitted" -Honey-buzzard,53053 -"Bunting, Reed",5905 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Thrush, Swainson's",713 -"Plover, Caspian",693 -Lapwing,308 -Dunlin,164 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index e25909404a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Number of Jobs Submitted" -Honey-buzzard,53053 -"Bunting, Reed",5905 -"Grey, Great",2631 -Moorhen,2629 -"Grey, Lesser",1000 -"Dove, Turtle",982 -"Thrush, Swainson's",713 -"Plover, Caspian",693 -Lapwing,308 -Dunlin,164 -"Grey, Southern",154 -"Crane, Sandhill",144 -"Thrush, Grey-cheeked",101 -"Warbler, Golden-winged",69 -"Sandpiper, Spotted",60 -"Warbler, Garden",53 -"Grebe, Pied-billed",50 -"Warbler, Sardinian",45 -"Martin, Purple",36 -"Oriole, Baltimore",30 -"Sparrow, Savannah",26 -Coot,24 -"Egret, Cattle",24 -"Pipit, Meadow",24 -"Treecreeper, Short-toed",22 -"Warbler, Hooded",21 -"Harrier, Hen",20 -"Sapsucker, Yellow-bellied",18 -Crane,16 -"Shearwater, Cory's",16 -"Shrike, Long-tailed",16 -"Swift, Alpine",16 -"Warbler, Booted",15 -"Martin, Crag",14 -Whimbrel,14 -Shag,11 -"Stint, Little",11 -"Thrush, Mistle",11 -"Auk, Little",10 -"Bunting, Black-headed",10 -"Scaup, Lesser",9 -"Sparrow, White-throated",9 -"Goose, Egyptian",8 -Smew,7 -"Bunting, Yellow-breasted",6 -Ovenbird,5 -Jackdaw,4 -Roller,4 -Fieldfare,3 -Peregrine,3 -"Plover, White-tailed",3 -"Warbler, Dusky",3 -"Bunting, Yellow-browed",2 -"Grosbeak, Evening",2 -"Redpoll, Lesser",2 -"Scoter, Velvet",2 -Siskin,2 -"Tern, Sandwich",2 -Chaffinch,1 -"Duck, Ferruginous",1 -"Gallinule, Allen's",1 -"Gull, Ring-billed",1 -"Ibis, Glossy",1 -"Partridge, Red-legged",1 -"Warbler, Moltoni's",1 -"Warbler, Yellow-browed",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 0e8c629883..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -2016-12-28,0,0,0,190,0,0,0,147,0,0,0,0,11,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -2016-12-29,198,10,0,770,17,0,0,88,0,0,0,50,0,4,0,0,0,10,0,0,5,5,3,6,1,0,7,0,0,10,0,0,0,1,0,1,0,0,4,7,4,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 -2016-12-30,18454,3437,1698,675,330,719,0,17,68,50,20,0,0,28,12,0,8,15,8,8,6,15,5,2,3,4,8,14,14,0,0,7,2,0,4,6,0,0,4,0,0,5,4,0,3,1,0,1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0 -2016-12-31,19485,2355,933,747,341,0,16,37,24,9,26,0,33,1,12,4,17,0,8,8,5,0,4,0,3,4,0,0,0,2,7,4,0,7,6,2,0,9,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,11511,80,0,204,292,0,677,19,62,64,23,0,0,8,12,25,1,0,8,8,0,0,4,8,9,8,0,0,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 2cd8b98369..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" -2016-12,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index afb7a874ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" -"2016 Q4",41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 07d3307659..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Honey-buzzard] Number of Jobs Submitted","[Bunting, Reed] Number of Jobs Submitted","[Grey, Great] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Grey, Lesser] Number of Jobs Submitted","[Dove, Turtle] Number of Jobs Submitted","[Thrush, Swainson's] Number of Jobs Submitted","[Plover, Caspian] Number of Jobs Submitted","[Lapwing] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Grey, Southern] Number of Jobs Submitted","[Crane, Sandhill] Number of Jobs Submitted","[Thrush, Grey-cheeked] Number of Jobs Submitted","[Warbler, Golden-winged] Number of Jobs Submitted","[Sandpiper, Spotted] Number of Jobs Submitted","[Warbler, Garden] Number of Jobs Submitted","[Grebe, Pied-billed] Number of Jobs Submitted","[Warbler, Sardinian] Number of Jobs Submitted","[Martin, Purple] Number of Jobs Submitted","[Oriole, Baltimore] Number of Jobs Submitted","[Sparrow, Savannah] Number of Jobs Submitted","[Coot] Number of Jobs Submitted","[Egret, Cattle] Number of Jobs Submitted","[Pipit, Meadow] Number of Jobs Submitted","[Treecreeper, Short-toed] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Sapsucker, Yellow-bellied] Number of Jobs Submitted","[Crane] Number of Jobs Submitted","[Shearwater, Cory's] Number of Jobs Submitted","[Shrike, Long-tailed] Number of Jobs Submitted","[Swift, Alpine] Number of Jobs Submitted","[Warbler, Booted] Number of Jobs Submitted","[Martin, Crag] Number of Jobs Submitted","[Whimbrel] Number of Jobs Submitted","[Shag] Number of Jobs Submitted","[Stint, Little] Number of Jobs Submitted","[Thrush, Mistle] Number of Jobs Submitted","[Auk, Little] Number of Jobs Submitted","[Bunting, Black-headed] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Sparrow, White-throated] Number of Jobs Submitted","[Goose, Egyptian] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Bunting, Yellow-breasted] Number of Jobs Submitted","[Ovenbird] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Roller] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Peregrine] Number of Jobs Submitted","[Plover, White-tailed] Number of Jobs Submitted","[Warbler, Dusky] Number of Jobs Submitted","[Bunting, Yellow-browed] Number of Jobs Submitted","[Grosbeak, Evening] Number of Jobs Submitted","[Redpoll, Lesser] Number of Jobs Submitted","[Scoter, Velvet] Number of Jobs Submitted","[Siskin] Number of Jobs Submitted","[Tern, Sandwich] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Duck, Ferruginous] Number of Jobs Submitted","[Gallinule, Allen's] Number of Jobs Submitted","[Gull, Ring-billed] Number of Jobs Submitted","[Ibis, Glossy] Number of Jobs Submitted","[Partridge, Red-legged] Number of Jobs Submitted","[Warbler, Moltoni's] Number of Jobs Submitted","[Warbler, Yellow-browed] Number of Jobs Submitted" -2016,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,12,8,7,8,15,14,9,11,11,11,8,10,9,9,8,7,6,5,4,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,4,8,9,8,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 767ddd3c05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"CPU Hours: Total" -Honey-buzzard,157078.4431 -"Pipit, Meadow",146476.2400 -"Scaup, Lesser",118663.3556 -Moorhen,67004.1206 -"Bunting, Reed",35441.0778 -"Warbler, Garden",34825.7219 -"Crane, Sandhill",22888.9811 -Crane,19473.8133 -"Plover, Caspian",19117.7667 -Smew,18391.0000 -"Warbler, Sardinian",16661.9989 -Lapwing,15354.0758 -"Goose, Egyptian",14141.1200 -"Warbler, Dusky",13105.9733 -"Dove, Turtle",12550.4967 -"Sandpiper, Spotted",12178.1900 -"Scoter, Velvet",10557.5822 -"Grey, Lesser",8590.5158 -Siskin,8404.1933 -"Treecreeper, Short-toed",8206.8872 -Chaffinch,7680.4622 -Ovenbird,6621.1911 -"Sparrow, White-throated",5262.3156 -"Thrush, Mistle",5198.0500 -Whimbrel,4918.4700 -Shag,4577.8556 -"Thrush, Swainson's",4528.0644 -Peregrine,4472.6000 -"Duck, Ferruginous",4200.4667 -"Warbler, Hooded",3862.9211 -"Sapsucker, Yellow-bellied",3582.6789 -"Shearwater, Cory's",3504.2444 -"Oriole, Baltimore",3199.8106 -"Bunting, Yellow-breasted",2430.7267 -"Thrush, Grey-cheeked",2039.1683 -"Bunting, Yellow-browed",2013.9756 -"Plover, White-tailed",1588.9133 -Dunlin,1518.1478 -"Warbler, Golden-winged",1446.9428 -"Warbler, Yellow-browed",1444.4889 -"Grosbeak, Evening",1129.0533 -"Warbler, Booted",1021.5447 -"Ibis, Glossy",960.1333 -"Auk, Little",622.6494 -"Swift, Alpine",610.7733 -Roller,590.3347 -"Shrike, Long-tailed",521.3100 -"Grebe, Pied-billed",500.2031 -Fieldfare,344.9756 -"Tern, Sandwich",174.8775 -"Redpoll, Lesser",151.1833 -"Grey, Southern",135.7597 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -"Warbler, Moltoni's",72.0069 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -"Stint, Little",49.3589 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -"Gallinule, Allen's",28.1400 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Martin, Crag",22.5389 -"Partridge, Red-legged",1.0400 -"Sparrow, Savannah",0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 767ddd3c05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"CPU Hours: Total" -Honey-buzzard,157078.4431 -"Pipit, Meadow",146476.2400 -"Scaup, Lesser",118663.3556 -Moorhen,67004.1206 -"Bunting, Reed",35441.0778 -"Warbler, Garden",34825.7219 -"Crane, Sandhill",22888.9811 -Crane,19473.8133 -"Plover, Caspian",19117.7667 -Smew,18391.0000 -"Warbler, Sardinian",16661.9989 -Lapwing,15354.0758 -"Goose, Egyptian",14141.1200 -"Warbler, Dusky",13105.9733 -"Dove, Turtle",12550.4967 -"Sandpiper, Spotted",12178.1900 -"Scoter, Velvet",10557.5822 -"Grey, Lesser",8590.5158 -Siskin,8404.1933 -"Treecreeper, Short-toed",8206.8872 -Chaffinch,7680.4622 -Ovenbird,6621.1911 -"Sparrow, White-throated",5262.3156 -"Thrush, Mistle",5198.0500 -Whimbrel,4918.4700 -Shag,4577.8556 -"Thrush, Swainson's",4528.0644 -Peregrine,4472.6000 -"Duck, Ferruginous",4200.4667 -"Warbler, Hooded",3862.9211 -"Sapsucker, Yellow-bellied",3582.6789 -"Shearwater, Cory's",3504.2444 -"Oriole, Baltimore",3199.8106 -"Bunting, Yellow-breasted",2430.7267 -"Thrush, Grey-cheeked",2039.1683 -"Bunting, Yellow-browed",2013.9756 -"Plover, White-tailed",1588.9133 -Dunlin,1518.1478 -"Warbler, Golden-winged",1446.9428 -"Warbler, Yellow-browed",1444.4889 -"Grosbeak, Evening",1129.0533 -"Warbler, Booted",1021.5447 -"Ibis, Glossy",960.1333 -"Auk, Little",622.6494 -"Swift, Alpine",610.7733 -Roller,590.3347 -"Shrike, Long-tailed",521.3100 -"Grebe, Pied-billed",500.2031 -Fieldfare,344.9756 -"Tern, Sandwich",174.8775 -"Redpoll, Lesser",151.1833 -"Grey, Southern",135.7597 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -"Warbler, Moltoni's",72.0069 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -"Stint, Little",49.3589 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -"Gallinule, Allen's",28.1400 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Martin, Crag",22.5389 -"Partridge, Red-legged",1.0400 -"Sparrow, Savannah",0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 767ddd3c05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"CPU Hours: Total" -Honey-buzzard,157078.4431 -"Pipit, Meadow",146476.2400 -"Scaup, Lesser",118663.3556 -Moorhen,67004.1206 -"Bunting, Reed",35441.0778 -"Warbler, Garden",34825.7219 -"Crane, Sandhill",22888.9811 -Crane,19473.8133 -"Plover, Caspian",19117.7667 -Smew,18391.0000 -"Warbler, Sardinian",16661.9989 -Lapwing,15354.0758 -"Goose, Egyptian",14141.1200 -"Warbler, Dusky",13105.9733 -"Dove, Turtle",12550.4967 -"Sandpiper, Spotted",12178.1900 -"Scoter, Velvet",10557.5822 -"Grey, Lesser",8590.5158 -Siskin,8404.1933 -"Treecreeper, Short-toed",8206.8872 -Chaffinch,7680.4622 -Ovenbird,6621.1911 -"Sparrow, White-throated",5262.3156 -"Thrush, Mistle",5198.0500 -Whimbrel,4918.4700 -Shag,4577.8556 -"Thrush, Swainson's",4528.0644 -Peregrine,4472.6000 -"Duck, Ferruginous",4200.4667 -"Warbler, Hooded",3862.9211 -"Sapsucker, Yellow-bellied",3582.6789 -"Shearwater, Cory's",3504.2444 -"Oriole, Baltimore",3199.8106 -"Bunting, Yellow-breasted",2430.7267 -"Thrush, Grey-cheeked",2039.1683 -"Bunting, Yellow-browed",2013.9756 -"Plover, White-tailed",1588.9133 -Dunlin,1518.1478 -"Warbler, Golden-winged",1446.9428 -"Warbler, Yellow-browed",1444.4889 -"Grosbeak, Evening",1129.0533 -"Warbler, Booted",1021.5447 -"Ibis, Glossy",960.1333 -"Auk, Little",622.6494 -"Swift, Alpine",610.7733 -Roller,590.3347 -"Shrike, Long-tailed",521.3100 -"Grebe, Pied-billed",500.2031 -Fieldfare,344.9756 -"Tern, Sandwich",174.8775 -"Redpoll, Lesser",151.1833 -"Grey, Southern",135.7597 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -"Warbler, Moltoni's",72.0069 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -"Stint, Little",49.3589 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -"Gallinule, Allen's",28.1400 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Martin, Crag",22.5389 -"Partridge, Red-legged",1.0400 -"Sparrow, Savannah",0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 767ddd3c05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"CPU Hours: Total" -Honey-buzzard,157078.4431 -"Pipit, Meadow",146476.2400 -"Scaup, Lesser",118663.3556 -Moorhen,67004.1206 -"Bunting, Reed",35441.0778 -"Warbler, Garden",34825.7219 -"Crane, Sandhill",22888.9811 -Crane,19473.8133 -"Plover, Caspian",19117.7667 -Smew,18391.0000 -"Warbler, Sardinian",16661.9989 -Lapwing,15354.0758 -"Goose, Egyptian",14141.1200 -"Warbler, Dusky",13105.9733 -"Dove, Turtle",12550.4967 -"Sandpiper, Spotted",12178.1900 -"Scoter, Velvet",10557.5822 -"Grey, Lesser",8590.5158 -Siskin,8404.1933 -"Treecreeper, Short-toed",8206.8872 -Chaffinch,7680.4622 -Ovenbird,6621.1911 -"Sparrow, White-throated",5262.3156 -"Thrush, Mistle",5198.0500 -Whimbrel,4918.4700 -Shag,4577.8556 -"Thrush, Swainson's",4528.0644 -Peregrine,4472.6000 -"Duck, Ferruginous",4200.4667 -"Warbler, Hooded",3862.9211 -"Sapsucker, Yellow-bellied",3582.6789 -"Shearwater, Cory's",3504.2444 -"Oriole, Baltimore",3199.8106 -"Bunting, Yellow-breasted",2430.7267 -"Thrush, Grey-cheeked",2039.1683 -"Bunting, Yellow-browed",2013.9756 -"Plover, White-tailed",1588.9133 -Dunlin,1518.1478 -"Warbler, Golden-winged",1446.9428 -"Warbler, Yellow-browed",1444.4889 -"Grosbeak, Evening",1129.0533 -"Warbler, Booted",1021.5447 -"Ibis, Glossy",960.1333 -"Auk, Little",622.6494 -"Swift, Alpine",610.7733 -Roller,590.3347 -"Shrike, Long-tailed",521.3100 -"Grebe, Pied-billed",500.2031 -Fieldfare,344.9756 -"Tern, Sandwich",174.8775 -"Redpoll, Lesser",151.1833 -"Grey, Southern",135.7597 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -"Warbler, Moltoni's",72.0069 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -"Stint, Little",49.3589 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -"Gallinule, Allen's",28.1400 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Martin, Crag",22.5389 -"Partridge, Red-legged",1.0400 -"Sparrow, Savannah",0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index f7b0639ace..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0,0,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6036,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,152.3533,0,0,0,0,0,0,0,0,0,313.9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,1152.0000,216.3333,0,0,0,0,0,0,0,0,576.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,3.2167,3739.4133,0,0,1717.7600,1920.0000,1301.6889,0,0,0,0,0,0,0,576.0000,0,2997.1200,0,1487.8200,558.6133,243.1822,315.9467,0,0,0,0,0,0,0,0,0,0,288.0000,136.7956,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,24.0000,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,24.0000,21931.9200,29467.4711,953.0369,8192.9511,2310.7378,3131.9644,0,0,0,799.6267,1962.8444,0,0,576.0000,0,3456.0000,0,2341.3467,1411.0667,1536.0000,1536.0000,0,336.4567,0,386.2533,0,0,0,351.5933,0,0,288.0000,384.0000,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,1237.5364,49534.0800,39552.0000,12583.2597,10099.5600,7644.0844,8585.5822,1834.4800,0,5821.2600,3747.4933,3901.6422,1643.9111,0,729.5867,487.3967,3456.0000,0,2880.0000,1970.9511,1536.0000,1536.0000,0,2592.0000,0,1161.6300,461.3211,1406.2833,180.1167,1111.6444,555.8656,238.3022,288.0000,532.2578,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,22.2422,233.0019,0,39.1372,28.6944,0,10.0983,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,61332.1356,46895.6533,39552.0000,21766.1511,7632.3833,6055.3111,7303.0711,6126.0000,0,10979.2200,4526.2344,5473.3125,9211.3156,7404.4267,3076.4911,6875.1400,648.4622,3055.8617,1250.6800,1841.5117,1536.0000,1536.0000,0,1921.0433,683.1200,1564.5567,2952.2189,1468.0833,1440.0000,1479.8411,1166.4433,1150.8667,288.0000,986.5178,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1021.1444,198.9664,386.1222,68.0319,26.0711,65.9958,16.0939,267.2011,64.0356,7.1367,52.5422,108.1047,82.1119,43.3692,19.2856,13.9453,40.8392,39.5500,11.6692,17.7975,28.1400,7.7811,7.7806,22.5389,1.0400,0.2208 -2016-12-31,86581.6175,22004.0533,10091.8844,20518.0064,3452.2700,11780.8131,2566.6744,6839.5200,37.7500,1590.5200,6955.7733,2761.8142,3285.8933,5701.5467,2976.8089,4561.6667,0,5534.6542,444.3467,1437.7244,1536.0000,1325.6578,3473.9867,288.0000,2349.9100,1346.5222,1114.5244,1440.0000,1440.0000,919.8422,1294.9333,1152.0000,291.6067,391.1556,1428.0200,294.9778,0,125.4733,914.2433,0,0,7.7117,0,491.1800,527.7511,502.9333,77.7350,0,158.3044,0,23.9844,25.9131,8.6314,44.0186,0,45.9239,13.7992,9.8089,11.6819,14.1122,0,7.7850,7.7769,0,0,0.3878 -2017-01-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3280454e93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" -2016-12,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -2017-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1d3cb065a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" -"2016 Q4",149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -"2017 Q1",7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index dc5146c925..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Honey-buzzard] CPU Hours: Total","[Pipit, Meadow] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bunting, Reed] CPU Hours: Total","[Warbler, Garden] CPU Hours: Total","[Crane, Sandhill] CPU Hours: Total","[Crane] CPU Hours: Total","[Plover, Caspian] CPU Hours: Total","[Smew] CPU Hours: Total","[Warbler, Sardinian] CPU Hours: Total","[Lapwing] CPU Hours: Total","[Goose, Egyptian] CPU Hours: Total","[Warbler, Dusky] CPU Hours: Total","[Dove, Turtle] CPU Hours: Total","[Sandpiper, Spotted] CPU Hours: Total","[Scoter, Velvet] CPU Hours: Total","[Grey, Lesser] CPU Hours: Total","[Siskin] CPU Hours: Total","[Treecreeper, Short-toed] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Ovenbird] CPU Hours: Total","[Sparrow, White-throated] CPU Hours: Total","[Thrush, Mistle] CPU Hours: Total","[Whimbrel] CPU Hours: Total","[Shag] CPU Hours: Total","[Thrush, Swainson's] CPU Hours: Total","[Peregrine] CPU Hours: Total","[Duck, Ferruginous] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Sapsucker, Yellow-bellied] CPU Hours: Total","[Shearwater, Cory's] CPU Hours: Total","[Oriole, Baltimore] CPU Hours: Total","[Bunting, Yellow-breasted] CPU Hours: Total","[Thrush, Grey-cheeked] CPU Hours: Total","[Bunting, Yellow-browed] CPU Hours: Total","[Plover, White-tailed] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Warbler, Golden-winged] CPU Hours: Total","[Warbler, Yellow-browed] CPU Hours: Total","[Grosbeak, Evening] CPU Hours: Total","[Warbler, Booted] CPU Hours: Total","[Ibis, Glossy] CPU Hours: Total","[Auk, Little] CPU Hours: Total","[Swift, Alpine] CPU Hours: Total","[Roller] CPU Hours: Total","[Shrike, Long-tailed] CPU Hours: Total","[Grebe, Pied-billed] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Tern, Sandwich] CPU Hours: Total","[Redpoll, Lesser] CPU Hours: Total","[Grey, Southern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Warbler, Moltoni's] CPU Hours: Total","[Bunting, Black-headed] CPU Hours: Total","[Grey, Great] CPU Hours: Total","[Stint, Little] CPU Hours: Total","[Martin, Purple] CPU Hours: Total","[Gull, Ring-billed] CPU Hours: Total","[Gallinule, Allen's] CPU Hours: Total","[Coot] CPU Hours: Total","[Egret, Cattle] CPU Hours: Total","[Martin, Crag] CPU Hours: Total","[Partridge, Red-legged] CPU Hours: Total","[Sparrow, Savannah] CPU Hours: Total" -2016,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -2017,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 07be172767..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Total" -"Oriole, Baltimore",506.9128 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 07be172767..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Total" -"Oriole, Baltimore",506.9128 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 07be172767..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Total" -"Oriole, Baltimore",506.9128 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 07be172767..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"GPU Hours: Total" -"Oriole, Baltimore",506.9128 -"Auk, Little",0.0000 -"Bunting, Black-headed",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Yellow-breasted",0.0000 -"Bunting, Yellow-browed",0.0000 -Chaffinch,0.0000 -Coot,0.0000 -Crane,0.0000 -"Crane, Sandhill",0.0000 -"Dove, Turtle",0.0000 -"Duck, Ferruginous",0.0000 -Dunlin,0.0000 -"Egret, Cattle",0.0000 -Fieldfare,0.0000 -"Gallinule, Allen's",0.0000 -"Goose, Egyptian",0.0000 -"Grebe, Pied-billed",0.0000 -"Grey, Great",0.0000 -"Grey, Lesser",0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Gull, Ring-billed",0.0000 -"Harrier, Hen",0.0000 -Honey-buzzard,0.0000 -"Ibis, Glossy",0.0000 -Jackdaw,0.0000 -Lapwing,0.0000 -"Martin, Crag",0.0000 -"Martin, Purple",0.0000 -Moorhen,0.0000 -Ovenbird,0.0000 -"Partridge, Red-legged",0.0000 -Peregrine,0.0000 -"Pipit, Meadow",0.0000 -"Plover, Caspian",0.0000 -"Plover, White-tailed",0.0000 -"Redpoll, Lesser",0.0000 -Roller,0.0000 -"Sandpiper, Spotted",0.0000 -"Sapsucker, Yellow-bellied",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Shag,0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Long-tailed",0.0000 -Siskin,0.0000 -Smew,0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, White-throated",0.0000 -"Stint, Little",0.0000 -"Swift, Alpine",0.0000 -"Tern, Sandwich",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Mistle",0.0000 -"Thrush, Swainson's",0.0000 -"Treecreeper, Short-toed",0.0000 -"Warbler, Booted",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Moltoni's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Yellow-browed",0.0000 -Whimbrel,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index eb3ade498d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,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,48.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0.0000,0,0,0,0,0,0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 -2016-12-27,48.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 -2016-12-28,48.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 -2016-12-29,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 -2017-01-01,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index abc8dc0dd9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e572b45bf3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index cfa6ba8617..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 78fbf919ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Node Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Pipit, Meadow",12206.3533 -"Grey, Lesser",8590.5158 -"Scaup, Lesser",7416.4597 -"Warbler, Garden",2773.5564 -"Warbler, Sardinian",2004.2244 -"Bunting, Reed",1757.5094 -Crane,1622.8178 -"Plover, Caspian",1593.1472 -Smew,1532.5833 -"Crane, Sandhill",1494.1239 -"Dove, Turtle",1423.1372 -"Warbler, Dusky",1092.1644 -"Treecreeper, Short-toed",1026.5661 -"Sandpiper, Spotted",1014.8492 -Chaffinch,960.0578 -"Sapsucker, Yellow-bellied",895.6697 -"Goose, Egyptian",883.8200 -"Scoter, Velvet",873.5178 -Siskin,840.4200 -"Thrush, Grey-cheeked",802.6467 -"Thrush, Swainson's",550.6928 -"Grebe, Pied-billed",500.2031 -"Sparrow, White-throated",458.9083 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -Ovenbird,413.8244 -Whimbrel,409.8725 -Peregrine,372.7167 -"Duck, Ferruginous",350.0389 -"Grosbeak, Evening",282.2633 -"Oriole, Baltimore",273.8464 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -Shag,227.8806 -"Warbler, Yellow-browed",180.5611 -"Tern, Sandwich",174.8775 -Dunlin,150.5339 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Warbler, Golden-winged",120.6086 -"Harrier, Hen",100.8417 -"Bunting, Yellow-browed",100.6989 -Jackdaw,87.3878 -"Swift, Alpine",76.3467 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -Roller,54.6022 -"Ibis, Glossy",48.0067 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Stint, Little",3.6653 -"Gallinule, Allen's",2.3450 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 78fbf919ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Node Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Pipit, Meadow",12206.3533 -"Grey, Lesser",8590.5158 -"Scaup, Lesser",7416.4597 -"Warbler, Garden",2773.5564 -"Warbler, Sardinian",2004.2244 -"Bunting, Reed",1757.5094 -Crane,1622.8178 -"Plover, Caspian",1593.1472 -Smew,1532.5833 -"Crane, Sandhill",1494.1239 -"Dove, Turtle",1423.1372 -"Warbler, Dusky",1092.1644 -"Treecreeper, Short-toed",1026.5661 -"Sandpiper, Spotted",1014.8492 -Chaffinch,960.0578 -"Sapsucker, Yellow-bellied",895.6697 -"Goose, Egyptian",883.8200 -"Scoter, Velvet",873.5178 -Siskin,840.4200 -"Thrush, Grey-cheeked",802.6467 -"Thrush, Swainson's",550.6928 -"Grebe, Pied-billed",500.2031 -"Sparrow, White-throated",458.9083 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -Ovenbird,413.8244 -Whimbrel,409.8725 -Peregrine,372.7167 -"Duck, Ferruginous",350.0389 -"Grosbeak, Evening",282.2633 -"Oriole, Baltimore",273.8464 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -Shag,227.8806 -"Warbler, Yellow-browed",180.5611 -"Tern, Sandwich",174.8775 -Dunlin,150.5339 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Warbler, Golden-winged",120.6086 -"Harrier, Hen",100.8417 -"Bunting, Yellow-browed",100.6989 -Jackdaw,87.3878 -"Swift, Alpine",76.3467 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -Roller,54.6022 -"Ibis, Glossy",48.0067 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Stint, Little",3.6653 -"Gallinule, Allen's",2.3450 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 78fbf919ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Node Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Pipit, Meadow",12206.3533 -"Grey, Lesser",8590.5158 -"Scaup, Lesser",7416.4597 -"Warbler, Garden",2773.5564 -"Warbler, Sardinian",2004.2244 -"Bunting, Reed",1757.5094 -Crane,1622.8178 -"Plover, Caspian",1593.1472 -Smew,1532.5833 -"Crane, Sandhill",1494.1239 -"Dove, Turtle",1423.1372 -"Warbler, Dusky",1092.1644 -"Treecreeper, Short-toed",1026.5661 -"Sandpiper, Spotted",1014.8492 -Chaffinch,960.0578 -"Sapsucker, Yellow-bellied",895.6697 -"Goose, Egyptian",883.8200 -"Scoter, Velvet",873.5178 -Siskin,840.4200 -"Thrush, Grey-cheeked",802.6467 -"Thrush, Swainson's",550.6928 -"Grebe, Pied-billed",500.2031 -"Sparrow, White-throated",458.9083 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -Ovenbird,413.8244 -Whimbrel,409.8725 -Peregrine,372.7167 -"Duck, Ferruginous",350.0389 -"Grosbeak, Evening",282.2633 -"Oriole, Baltimore",273.8464 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -Shag,227.8806 -"Warbler, Yellow-browed",180.5611 -"Tern, Sandwich",174.8775 -Dunlin,150.5339 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Warbler, Golden-winged",120.6086 -"Harrier, Hen",100.8417 -"Bunting, Yellow-browed",100.6989 -Jackdaw,87.3878 -"Swift, Alpine",76.3467 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -Roller,54.6022 -"Ibis, Glossy",48.0067 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Stint, Little",3.6653 -"Gallinule, Allen's",2.3450 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 78fbf919ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Node Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Pipit, Meadow",12206.3533 -"Grey, Lesser",8590.5158 -"Scaup, Lesser",7416.4597 -"Warbler, Garden",2773.5564 -"Warbler, Sardinian",2004.2244 -"Bunting, Reed",1757.5094 -Crane,1622.8178 -"Plover, Caspian",1593.1472 -Smew,1532.5833 -"Crane, Sandhill",1494.1239 -"Dove, Turtle",1423.1372 -"Warbler, Dusky",1092.1644 -"Treecreeper, Short-toed",1026.5661 -"Sandpiper, Spotted",1014.8492 -Chaffinch,960.0578 -"Sapsucker, Yellow-bellied",895.6697 -"Goose, Egyptian",883.8200 -"Scoter, Velvet",873.5178 -Siskin,840.4200 -"Thrush, Grey-cheeked",802.6467 -"Thrush, Swainson's",550.6928 -"Grebe, Pied-billed",500.2031 -"Sparrow, White-throated",458.9083 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -Ovenbird,413.8244 -Whimbrel,409.8725 -Peregrine,372.7167 -"Duck, Ferruginous",350.0389 -"Grosbeak, Evening",282.2633 -"Oriole, Baltimore",273.8464 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -Shag,227.8806 -"Warbler, Yellow-browed",180.5611 -"Tern, Sandwich",174.8775 -Dunlin,150.5339 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Warbler, Golden-winged",120.6086 -"Harrier, Hen",100.8417 -"Bunting, Yellow-browed",100.6989 -Jackdaw,87.3878 -"Swift, Alpine",76.3467 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Grey, Great",54.6383 -Roller,54.6022 -"Ibis, Glossy",48.0067 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Stint, Little",3.6653 -"Gallinule, Allen's",2.3450 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index d1daa933ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,8.6036,0,0,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-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-25,0,0,0,0,0,0,0,0,6.3481,0,0,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-26,0,0,0,0,0,0,13.5208,0,48.0000,0,0,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-27,0,3.2167,0,311.6178,0,0,120.0000,0,67.3094,0,0,0,81.3556,48.0000,0,69.8267,0,30.3978,0,0,249.7600,123.9850,0,0,0,0,0,0,0,19.7467,0,0,0,0,24.0000,19.9056,8.5497,0,0,24.0000,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,144.4211,99.9533,292.0297,0,0,0,214.6856,48.0000,0,176.3833,0,192.0000,0,0,288.0000,220.6683,0,0,0,0,43.9492,0,28.0381,96.0000,0,0,0,0,24.0000,24.0000,24.0000,21.4100,0,24.0000,0,0,15.1192,0,0,0,0,0,24.0000,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,12583.2597,162.8525,3901.6422,4127.8400,0,2472.0000,477.7553,453.1217,356.2911,152.8733,0,485.1050,560.2247,67.1983,0,246.3689,40.6164,192.0000,138.9664,102.7444,288.0000,288.0000,3.6200,30.9803,233.0019,0,138.9556,29.7878,216.0000,96.0000,0,117.1903,15.0097,26.9772,24.0000,24.0000,42.5322,56.8025,129.7778,39.1372,0,0,72.0000,0,10.0983,37.9494,0,0,24.0000,10.4008,22.2422,0,0,0,24.0000,0,7.1736,0,0,0,0,0,0,0,0,0 -2016-12-30,21766.1511,6346.5897,5473.3125,3907.9711,3055.8617,2472.0000,378.4569,506.1717,461.5083,510.5000,0,914.9350,473.6558,380.4372,617.0356,230.8942,572.9283,192.0000,291.6108,575.7072,47.7578,152.2233,67.3875,450.0547,267.2011,0,178.1372,143.8583,160.0869,96.0000,56.9267,122.3403,120.0000,255.2861,24.0000,175.8633,108.4533,85.7392,50.3500,7.1367,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,43.3692,3.2589,19.2856,13.6064,15.8617,13.9453,40.8392,7.5778,19.3061,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,3.0522,2.3450,1.1269,0.2208,0.0650 -2016-12-31,20518.0064,8276.1947,2761.8142,1833.6711,5534.6542,630.7428,1112.6033,865.8689,329.0272,569.9600,3.1458,132.5433,164.2022,372.1011,475.1289,179.7156,380.1389,192.0000,323.7333,205.3683,0,55.5433,714.0100,69.6578,0,299.0033,97.5139,144.0000,24.0000,82.8536,195.8258,120.0000,120.0000,0,24.4508,7.7117,48.8944,58.9750,0,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,44.0186,65.9689,0,45.3169,3.8883,45.9239,13.7992,42.7433,0,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0.6131,0,0,0.3878,0 -2017-01-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 50d6a337d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" -2016-12,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -2017-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ad7892eceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" -"2016 Q4",55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -"2017 Q1",11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 322df961a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Moorhen] Node Hours: Total","[Honey-buzzard] Node Hours: Total","[Lapwing] Node Hours: Total","[Pipit, Meadow] Node Hours: Total","[Grey, Lesser] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Warbler, Garden] Node Hours: Total","[Warbler, Sardinian] Node Hours: Total","[Bunting, Reed] Node Hours: Total","[Crane] Node Hours: Total","[Plover, Caspian] Node Hours: Total","[Smew] Node Hours: Total","[Crane, Sandhill] Node Hours: Total","[Dove, Turtle] Node Hours: Total","[Warbler, Dusky] Node Hours: Total","[Treecreeper, Short-toed] Node Hours: Total","[Sandpiper, Spotted] Node Hours: Total","[Chaffinch] Node Hours: Total","[Sapsucker, Yellow-bellied] Node Hours: Total","[Goose, Egyptian] Node Hours: Total","[Scoter, Velvet] Node Hours: Total","[Siskin] Node Hours: Total","[Thrush, Grey-cheeked] Node Hours: Total","[Thrush, Swainson's] Node Hours: Total","[Grebe, Pied-billed] Node Hours: Total","[Sparrow, White-throated] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Shearwater, Cory's] Node Hours: Total","[Thrush, Mistle] Node Hours: Total","[Ovenbird] Node Hours: Total","[Whimbrel] Node Hours: Total","[Peregrine] Node Hours: Total","[Duck, Ferruginous] Node Hours: Total","[Grosbeak, Evening] Node Hours: Total","[Oriole, Baltimore] Node Hours: Total","[Warbler, Booted] Node Hours: Total","[Bunting, Yellow-breasted] Node Hours: Total","[Shag] Node Hours: Total","[Warbler, Yellow-browed] Node Hours: Total","[Tern, Sandwich] Node Hours: Total","[Dunlin] Node Hours: Total","[Grey, Southern] Node Hours: Total","[Plover, White-tailed] Node Hours: Total","[Warbler, Golden-winged] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Bunting, Yellow-browed] Node Hours: Total","[Jackdaw] Node Hours: Total","[Swift, Alpine] Node Hours: Total","[Warbler, Moltoni's] Node Hours: Total","[Auk, Little] Node Hours: Total","[Shrike, Long-tailed] Node Hours: Total","[Bunting, Black-headed] Node Hours: Total","[Grey, Great] Node Hours: Total","[Roller] Node Hours: Total","[Ibis, Glossy] Node Hours: Total","[Fieldfare] Node Hours: Total","[Redpoll, Lesser] Node Hours: Total","[Martin, Purple] Node Hours: Total","[Gull, Ring-billed] Node Hours: Total","[Coot] Node Hours: Total","[Egret, Cattle] Node Hours: Total","[Stint, Little] Node Hours: Total","[Gallinule, Allen's] Node Hours: Total","[Martin, Crag] Node Hours: Total","[Sparrow, Savannah] Node Hours: Total","[Partridge, Red-legged] Node Hours: Total" -2016,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -2017,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c3f627dba2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Total" -"Thrush, Swainson's",163339.9808 -Honey-buzzard,112848.1472 -"Treecreeper, Short-toed",5136.3181 -"Crane, Sandhill",5049.6606 -"Plover, Caspian",4056.0075 -"Grey, Lesser",3927.5247 -Dunlin,3030.4719 -"Thrush, Grey-cheeked",2704.6794 -"Pipit, Meadow",1959.9103 -"Grey, Great",1951.8286 -Moorhen,544.5967 -"Bunting, Reed",369.2550 -"Sandpiper, Spotted",321.4444 -"Warbler, Booted",122.8625 -Siskin,112.9622 -"Bunting, Yellow-browed",105.4822 -Ovenbird,94.3467 -"Sapsucker, Yellow-bellied",91.5858 -"Scoter, Velvet",78.7900 -"Warbler, Yellow-browed",62.0436 -"Thrush, Mistle",48.5308 -Peregrine,39.1408 -"Warbler, Garden",36.5339 -Whimbrel,32.1656 -"Warbler, Sardinian",30.8219 -Crane,30.1542 -"Tern, Sandwich",28.5511 -"Dove, Turtle",28.0833 -"Warbler, Golden-winged",20.6675 -"Warbler, Dusky",20.0331 -"Sparrow, White-throated",19.3700 -Lapwing,17.6803 -Shag,14.9994 -Smew,13.9250 -"Bunting, Yellow-breasted",12.9547 -"Grey, Southern",12.6592 -"Plover, White-tailed",11.1744 -"Warbler, Hooded",6.4889 -"Harrier, Hen",6.4781 -"Grosbeak, Evening",1.9761 -"Shearwater, Cory's",1.2531 -"Oriole, Baltimore",1.2361 -"Stint, Little",0.9917 -"Grebe, Pied-billed",0.5497 -"Sparrow, Savannah",0.3653 -"Auk, Little",0.1747 -Roller,0.1614 -"Bunting, Black-headed",0.1408 -"Gallinule, Allen's",0.0978 -"Duck, Ferruginous",0.0311 -"Shrike, Long-tailed",0.0286 -"Martin, Crag",0.0147 -"Gull, Ring-billed",0.0075 -"Goose, Egyptian",0.0047 -"Martin, Purple",0.0039 -Coot,0.0036 -"Egret, Cattle",0.0031 -"Swift, Alpine",0.0025 -Fieldfare,0.0017 -"Scaup, Lesser",0.0017 -"Ibis, Glossy",0.0003 -"Redpoll, Lesser",0.0003 -Chaffinch,0.0000 -Jackdaw,0.0000 -"Partridge, Red-legged",0.0000 -"Warbler, Moltoni's",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c3f627dba2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Total" -"Thrush, Swainson's",163339.9808 -Honey-buzzard,112848.1472 -"Treecreeper, Short-toed",5136.3181 -"Crane, Sandhill",5049.6606 -"Plover, Caspian",4056.0075 -"Grey, Lesser",3927.5247 -Dunlin,3030.4719 -"Thrush, Grey-cheeked",2704.6794 -"Pipit, Meadow",1959.9103 -"Grey, Great",1951.8286 -Moorhen,544.5967 -"Bunting, Reed",369.2550 -"Sandpiper, Spotted",321.4444 -"Warbler, Booted",122.8625 -Siskin,112.9622 -"Bunting, Yellow-browed",105.4822 -Ovenbird,94.3467 -"Sapsucker, Yellow-bellied",91.5858 -"Scoter, Velvet",78.7900 -"Warbler, Yellow-browed",62.0436 -"Thrush, Mistle",48.5308 -Peregrine,39.1408 -"Warbler, Garden",36.5339 -Whimbrel,32.1656 -"Warbler, Sardinian",30.8219 -Crane,30.1542 -"Tern, Sandwich",28.5511 -"Dove, Turtle",28.0833 -"Warbler, Golden-winged",20.6675 -"Warbler, Dusky",20.0331 -"Sparrow, White-throated",19.3700 -Lapwing,17.6803 -Shag,14.9994 -Smew,13.9250 -"Bunting, Yellow-breasted",12.9547 -"Grey, Southern",12.6592 -"Plover, White-tailed",11.1744 -"Warbler, Hooded",6.4889 -"Harrier, Hen",6.4781 -"Grosbeak, Evening",1.9761 -"Shearwater, Cory's",1.2531 -"Oriole, Baltimore",1.2361 -"Stint, Little",0.9917 -"Grebe, Pied-billed",0.5497 -"Sparrow, Savannah",0.3653 -"Auk, Little",0.1747 -Roller,0.1614 -"Bunting, Black-headed",0.1408 -"Gallinule, Allen's",0.0978 -"Duck, Ferruginous",0.0311 -"Shrike, Long-tailed",0.0286 -"Martin, Crag",0.0147 -"Gull, Ring-billed",0.0075 -"Goose, Egyptian",0.0047 -"Martin, Purple",0.0039 -Coot,0.0036 -"Egret, Cattle",0.0031 -"Swift, Alpine",0.0025 -Fieldfare,0.0017 -"Scaup, Lesser",0.0017 -"Ibis, Glossy",0.0003 -"Redpoll, Lesser",0.0003 -Chaffinch,0.0000 -Jackdaw,0.0000 -"Partridge, Red-legged",0.0000 -"Warbler, Moltoni's",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c3f627dba2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Total" -"Thrush, Swainson's",163339.9808 -Honey-buzzard,112848.1472 -"Treecreeper, Short-toed",5136.3181 -"Crane, Sandhill",5049.6606 -"Plover, Caspian",4056.0075 -"Grey, Lesser",3927.5247 -Dunlin,3030.4719 -"Thrush, Grey-cheeked",2704.6794 -"Pipit, Meadow",1959.9103 -"Grey, Great",1951.8286 -Moorhen,544.5967 -"Bunting, Reed",369.2550 -"Sandpiper, Spotted",321.4444 -"Warbler, Booted",122.8625 -Siskin,112.9622 -"Bunting, Yellow-browed",105.4822 -Ovenbird,94.3467 -"Sapsucker, Yellow-bellied",91.5858 -"Scoter, Velvet",78.7900 -"Warbler, Yellow-browed",62.0436 -"Thrush, Mistle",48.5308 -Peregrine,39.1408 -"Warbler, Garden",36.5339 -Whimbrel,32.1656 -"Warbler, Sardinian",30.8219 -Crane,30.1542 -"Tern, Sandwich",28.5511 -"Dove, Turtle",28.0833 -"Warbler, Golden-winged",20.6675 -"Warbler, Dusky",20.0331 -"Sparrow, White-throated",19.3700 -Lapwing,17.6803 -Shag,14.9994 -Smew,13.9250 -"Bunting, Yellow-breasted",12.9547 -"Grey, Southern",12.6592 -"Plover, White-tailed",11.1744 -"Warbler, Hooded",6.4889 -"Harrier, Hen",6.4781 -"Grosbeak, Evening",1.9761 -"Shearwater, Cory's",1.2531 -"Oriole, Baltimore",1.2361 -"Stint, Little",0.9917 -"Grebe, Pied-billed",0.5497 -"Sparrow, Savannah",0.3653 -"Auk, Little",0.1747 -Roller,0.1614 -"Bunting, Black-headed",0.1408 -"Gallinule, Allen's",0.0978 -"Duck, Ferruginous",0.0311 -"Shrike, Long-tailed",0.0286 -"Martin, Crag",0.0147 -"Gull, Ring-billed",0.0075 -"Goose, Egyptian",0.0047 -"Martin, Purple",0.0039 -Coot,0.0036 -"Egret, Cattle",0.0031 -"Swift, Alpine",0.0025 -Fieldfare,0.0017 -"Scaup, Lesser",0.0017 -"Ibis, Glossy",0.0003 -"Redpoll, Lesser",0.0003 -Chaffinch,0.0000 -Jackdaw,0.0000 -"Partridge, Red-legged",0.0000 -"Warbler, Moltoni's",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c3f627dba2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wait Hours: Total" -"Thrush, Swainson's",163339.9808 -Honey-buzzard,112848.1472 -"Treecreeper, Short-toed",5136.3181 -"Crane, Sandhill",5049.6606 -"Plover, Caspian",4056.0075 -"Grey, Lesser",3927.5247 -Dunlin,3030.4719 -"Thrush, Grey-cheeked",2704.6794 -"Pipit, Meadow",1959.9103 -"Grey, Great",1951.8286 -Moorhen,544.5967 -"Bunting, Reed",369.2550 -"Sandpiper, Spotted",321.4444 -"Warbler, Booted",122.8625 -Siskin,112.9622 -"Bunting, Yellow-browed",105.4822 -Ovenbird,94.3467 -"Sapsucker, Yellow-bellied",91.5858 -"Scoter, Velvet",78.7900 -"Warbler, Yellow-browed",62.0436 -"Thrush, Mistle",48.5308 -Peregrine,39.1408 -"Warbler, Garden",36.5339 -Whimbrel,32.1656 -"Warbler, Sardinian",30.8219 -Crane,30.1542 -"Tern, Sandwich",28.5511 -"Dove, Turtle",28.0833 -"Warbler, Golden-winged",20.6675 -"Warbler, Dusky",20.0331 -"Sparrow, White-throated",19.3700 -Lapwing,17.6803 -Shag,14.9994 -Smew,13.9250 -"Bunting, Yellow-breasted",12.9547 -"Grey, Southern",12.6592 -"Plover, White-tailed",11.1744 -"Warbler, Hooded",6.4889 -"Harrier, Hen",6.4781 -"Grosbeak, Evening",1.9761 -"Shearwater, Cory's",1.2531 -"Oriole, Baltimore",1.2361 -"Stint, Little",0.9917 -"Grebe, Pied-billed",0.5497 -"Sparrow, Savannah",0.3653 -"Auk, Little",0.1747 -Roller,0.1614 -"Bunting, Black-headed",0.1408 -"Gallinule, Allen's",0.0978 -"Duck, Ferruginous",0.0311 -"Shrike, Long-tailed",0.0286 -"Martin, Crag",0.0147 -"Gull, Ring-billed",0.0075 -"Goose, Egyptian",0.0047 -"Martin, Purple",0.0039 -Coot,0.0036 -"Egret, Cattle",0.0031 -"Swift, Alpine",0.0025 -Fieldfare,0.0017 -"Scaup, Lesser",0.0017 -"Ibis, Glossy",0.0003 -"Redpoll, Lesser",0.0003 -Chaffinch,0.0000 -Jackdaw,0.0000 -"Partridge, Red-legged",0.0000 -"Warbler, Moltoni's",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3e7248b2d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" -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,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,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,9.5964,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-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.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-25,0,0,0,0,0,0,0,0,0,0,0,110.8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0633,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-26,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0033,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-27,0,0.0000,1367.4053,93.9833,0,0,0,0,311.1344,0,0,0.0289,0,50.8225,76.0861,0,0.0025,0,78.7886,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0.0000 -2016-12-28,0,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,20.5744,0,0.0000,36.8761,0,0.0000,0,0.0000,0,47.7519,0,18.4800,0,8.2136,0,0.0000,0.0000,0,0,0,10.5775,13.6594,0,0.0000,0,11.1744,2.3317,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0003,0,0.0000,0,0,0.0000 -2016-12-29,2680.9856,1973.6483,626.5147,288.5578,0,0,0,0.0044,334.2142,0,32.6300,43.9522,9.5844,0.0000,0.0000,0.0017,0.0000,0.0014,0.0000,25.7286,0.0000,11.6853,17.8439,0,1.1997,10.4372,18.9547,0.2917,0,0,0,3.9286,0.0011,13.9250,4.8561,0,0.0000,0.3786,0.0894,0.7922,1.0583,0.0000,0,0.5497,0,0.0000,0,0,0,0.0311,0.0225,0,0,0.0025,0,0,0,0,0,0.0000,0.0000,0.0003,0.0000,0,0,0.0000 -2016-12-30,160658.9953,26564.1575,331.7789,2269.2953,0,1857.6733,1170.3947,54.0756,0.0000,1435.0258,221.0947,77.6936,311.8600,72.0400,0.0000,105.4806,0.0000,14.4292,0.0014,0.0000,0.7789,27.4556,0.0000,17.2619,15.6439,7.3803,0.0000,3.3314,11.9272,20.0331,0,2.2686,1.3369,0.0000,8.0983,12.1381,0.0000,2.4739,6.3886,1.1839,0.0400,0.0000,0.0258,0.0000,0.1269,0.0000,0.1611,0.0575,0.0978,0.0000,0.0028,0.0147,0.0075,0.0022,0.0014,0.0008,0.0006,0.0008,0.0008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,64478.3575,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0000,516.8028,277.8381,83.4647,0.0000,0.0000,0.0000,0.0000,94.3442,77.1553,0,0,0.0000,0.0000,0.2067,7.6042,3.4903,0.3128,0,13.7414,8.7356,0.0000,19.3700,0.5711,0.0019,0.0000,0.0000,0.5147,0,1.3047,0.0000,0,0.0000,0.0011,0.9658,0,0.2317,0.1747,0.0000,0.0833,0,0.0000,0.0022,0,0.0000,0.0000,0.0011,0.0011,0.0008,0.0006,0.0008,0.0000,0,0.0000,0.0000,0.0000,0,0 -2017-01-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3969ec0577..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" -2016-12,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -2017-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c2c82ffcaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" -"2016 Q4",163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7570145c53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Thrush, Swainson's] Wait Hours: Total","[Honey-buzzard] Wait Hours: Total","[Treecreeper, Short-toed] Wait Hours: Total","[Crane, Sandhill] Wait Hours: Total","[Plover, Caspian] Wait Hours: Total","[Grey, Lesser] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Thrush, Grey-cheeked] Wait Hours: Total","[Pipit, Meadow] Wait Hours: Total","[Grey, Great] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Bunting, Reed] Wait Hours: Total","[Sandpiper, Spotted] Wait Hours: Total","[Warbler, Booted] Wait Hours: Total","[Siskin] Wait Hours: Total","[Bunting, Yellow-browed] Wait Hours: Total","[Ovenbird] Wait Hours: Total","[Sapsucker, Yellow-bellied] Wait Hours: Total","[Scoter, Velvet] Wait Hours: Total","[Warbler, Yellow-browed] Wait Hours: Total","[Thrush, Mistle] Wait Hours: Total","[Peregrine] Wait Hours: Total","[Warbler, Garden] Wait Hours: Total","[Whimbrel] Wait Hours: Total","[Warbler, Sardinian] Wait Hours: Total","[Crane] Wait Hours: Total","[Tern, Sandwich] Wait Hours: Total","[Dove, Turtle] Wait Hours: Total","[Warbler, Golden-winged] Wait Hours: Total","[Warbler, Dusky] Wait Hours: Total","[Sparrow, White-throated] Wait Hours: Total","[Lapwing] Wait Hours: Total","[Shag] Wait Hours: Total","[Smew] Wait Hours: Total","[Bunting, Yellow-breasted] Wait Hours: Total","[Grey, Southern] Wait Hours: Total","[Plover, White-tailed] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Grosbeak, Evening] Wait Hours: Total","[Shearwater, Cory's] Wait Hours: Total","[Oriole, Baltimore] Wait Hours: Total","[Stint, Little] Wait Hours: Total","[Grebe, Pied-billed] Wait Hours: Total","[Sparrow, Savannah] Wait Hours: Total","[Auk, Little] Wait Hours: Total","[Roller] Wait Hours: Total","[Bunting, Black-headed] Wait Hours: Total","[Gallinule, Allen's] Wait Hours: Total","[Duck, Ferruginous] Wait Hours: Total","[Shrike, Long-tailed] Wait Hours: Total","[Martin, Crag] Wait Hours: Total","[Gull, Ring-billed] Wait Hours: Total","[Goose, Egyptian] Wait Hours: Total","[Martin, Purple] Wait Hours: Total","[Coot] Wait Hours: Total","[Egret, Cattle] Wait Hours: Total","[Swift, Alpine] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Ibis, Glossy] Wait Hours: Total","[Redpoll, Lesser] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[Partridge, Red-legged] Wait Hours: Total","[Warbler, Moltoni's] Wait Hours: Total" -2016,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -2017,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0.0000,0,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3f9df8cba8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Grey, Lesser",8590.5158 -"Warbler, Garden",2773.5564 -"Bunting, Reed",1757.5094 -"Plover, Caspian",1593.1472 -"Pipit, Meadow",1525.7942 -"Dove, Turtle",1423.1372 -"Crane, Sandhill",1071.2075 -"Treecreeper, Short-toed",1026.5383 -"Sandpiper, Spotted",1014.8492 -"Sapsucker, Yellow-bellied",895.6697 -"Thrush, Grey-cheeked",802.6467 -"Scaup, Lesser",648.0389 -"Grebe, Pied-billed",500.2031 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -"Warbler, Sardinian",423.6314 -Ovenbird,413.8244 -"Thrush, Swainson's",405.3619 -"Oriole, Baltimore",273.6331 -Smew,255.4306 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -"Sparrow, White-throated",229.4542 -Shag,227.8806 -Crane,202.8522 -"Tern, Sandwich",174.8775 -Siskin,140.0700 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Goose, Egyptian",126.2600 -Chaffinch,120.0072 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -Whimbrel,86.4775 -Peregrine,74.5433 -"Scoter, Velvet",74.3633 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Duck, Ferruginous",70.0078 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Warbler, Golden-winged",56.2867 -"Grey, Great",54.6383 -"Bunting, Yellow-browed",50.3497 -"Ibis, Glossy",48.0067 -"Warbler, Dusky",46.3125 -Dunlin,45.2333 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Grosbeak, Evening",20.1617 -Roller,18.3367 -"Swift, Alpine",10.5622 -"Warbler, Yellow-browed",9.0281 -"Stint, Little",3.6653 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Gallinule, Allen's",0.2606 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 3f9df8cba8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Grey, Lesser",8590.5158 -"Warbler, Garden",2773.5564 -"Bunting, Reed",1757.5094 -"Plover, Caspian",1593.1472 -"Pipit, Meadow",1525.7942 -"Dove, Turtle",1423.1372 -"Crane, Sandhill",1071.2075 -"Treecreeper, Short-toed",1026.5383 -"Sandpiper, Spotted",1014.8492 -"Sapsucker, Yellow-bellied",895.6697 -"Thrush, Grey-cheeked",802.6467 -"Scaup, Lesser",648.0389 -"Grebe, Pied-billed",500.2031 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -"Warbler, Sardinian",423.6314 -Ovenbird,413.8244 -"Thrush, Swainson's",405.3619 -"Oriole, Baltimore",273.6331 -Smew,255.4306 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -"Sparrow, White-throated",229.4542 -Shag,227.8806 -Crane,202.8522 -"Tern, Sandwich",174.8775 -Siskin,140.0700 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Goose, Egyptian",126.2600 -Chaffinch,120.0072 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -Whimbrel,86.4775 -Peregrine,74.5433 -"Scoter, Velvet",74.3633 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Duck, Ferruginous",70.0078 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Warbler, Golden-winged",56.2867 -"Grey, Great",54.6383 -"Bunting, Yellow-browed",50.3497 -"Ibis, Glossy",48.0067 -"Warbler, Dusky",46.3125 -Dunlin,45.2333 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Grosbeak, Evening",20.1617 -Roller,18.3367 -"Swift, Alpine",10.5622 -"Warbler, Yellow-browed",9.0281 -"Stint, Little",3.6653 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Gallinule, Allen's",0.2606 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3f9df8cba8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Grey, Lesser",8590.5158 -"Warbler, Garden",2773.5564 -"Bunting, Reed",1757.5094 -"Plover, Caspian",1593.1472 -"Pipit, Meadow",1525.7942 -"Dove, Turtle",1423.1372 -"Crane, Sandhill",1071.2075 -"Treecreeper, Short-toed",1026.5383 -"Sandpiper, Spotted",1014.8492 -"Sapsucker, Yellow-bellied",895.6697 -"Thrush, Grey-cheeked",802.6467 -"Scaup, Lesser",648.0389 -"Grebe, Pied-billed",500.2031 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -"Warbler, Sardinian",423.6314 -Ovenbird,413.8244 -"Thrush, Swainson's",405.3619 -"Oriole, Baltimore",273.6331 -Smew,255.4306 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -"Sparrow, White-throated",229.4542 -Shag,227.8806 -Crane,202.8522 -"Tern, Sandwich",174.8775 -Siskin,140.0700 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Goose, Egyptian",126.2600 -Chaffinch,120.0072 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -Whimbrel,86.4775 -Peregrine,74.5433 -"Scoter, Velvet",74.3633 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Duck, Ferruginous",70.0078 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Warbler, Golden-winged",56.2867 -"Grey, Great",54.6383 -"Bunting, Yellow-browed",50.3497 -"Ibis, Glossy",48.0067 -"Warbler, Dusky",46.3125 -Dunlin,45.2333 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Grosbeak, Evening",20.1617 -Roller,18.3367 -"Swift, Alpine",10.5622 -"Warbler, Yellow-browed",9.0281 -"Stint, Little",3.6653 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Gallinule, Allen's",0.2606 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 3f9df8cba8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Wall Hours: Total" -Moorhen,67004.1206 -Honey-buzzard,15603.5267 -Lapwing,15354.0758 -"Grey, Lesser",8590.5158 -"Warbler, Garden",2773.5564 -"Bunting, Reed",1757.5094 -"Plover, Caspian",1593.1472 -"Pipit, Meadow",1525.7942 -"Dove, Turtle",1423.1372 -"Crane, Sandhill",1071.2075 -"Treecreeper, Short-toed",1026.5383 -"Sandpiper, Spotted",1014.8492 -"Sapsucker, Yellow-bellied",895.6697 -"Thrush, Grey-cheeked",802.6467 -"Scaup, Lesser",648.0389 -"Grebe, Pied-billed",500.2031 -"Warbler, Hooded",458.5558 -"Shearwater, Cory's",438.0306 -"Thrush, Mistle",433.1708 -"Warbler, Sardinian",423.6314 -Ovenbird,413.8244 -"Thrush, Swainson's",405.3619 -"Oriole, Baltimore",273.6331 -Smew,255.4306 -"Warbler, Booted",251.4806 -"Bunting, Yellow-breasted",232.4297 -"Sparrow, White-throated",229.4542 -Shag,227.8806 -Crane,202.8522 -"Tern, Sandwich",174.8775 -Siskin,140.0700 -"Grey, Southern",135.7597 -"Plover, White-tailed",132.4094 -"Goose, Egyptian",126.2600 -Chaffinch,120.0072 -"Harrier, Hen",100.8417 -Jackdaw,87.3878 -Whimbrel,86.4775 -Peregrine,74.5433 -"Scoter, Velvet",74.3633 -"Warbler, Moltoni's",72.0069 -"Auk, Little",70.2769 -"Duck, Ferruginous",70.0078 -"Shrike, Long-tailed",62.2542 -"Bunting, Black-headed",59.8692 -"Warbler, Golden-winged",56.2867 -"Grey, Great",54.6383 -"Bunting, Yellow-browed",50.3497 -"Ibis, Glossy",48.0067 -"Warbler, Dusky",46.3125 -Dunlin,45.2333 -Fieldfare,43.1219 -"Redpoll, Lesser",37.7958 -"Martin, Purple",34.9861 -"Gull, Ring-billed",31.9097 -Coot,23.3244 -"Egret, Cattle",23.3156 -"Grosbeak, Evening",20.1617 -Roller,18.3367 -"Swift, Alpine",10.5622 -"Warbler, Yellow-browed",9.0281 -"Stint, Little",3.6653 -"Martin, Crag",1.1269 -"Sparrow, Savannah",0.6342 -"Gallinule, Allen's",0.2606 -"Partridge, Red-legged",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 50106c38a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,8.6036,0,0,0,0,0,0,0,0,0,0,0,0,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-24,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,6.3481,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,13.5208,48.0000,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.2167,0,0,120.0000,67.3094,0,38.9522,48.0000,40.6778,69.8267,0,0,0,0,0,0,0,0,0,19.7467,0,24.0000,0,19.9056,8.5497,0,0,0,24.0000,20.6642,0,0,0,3.7997,0,0,0,0,20.8133,4.7214,0,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-28,953.0369,24.0000,1962.8444,0,144.4211,292.0297,0,228.4575,48.0000,145.2183,176.3833,0,0,0,160.7689,0,43.9492,0,28.0381,24.9883,96.0000,0,24.0000,0,24.0000,24.0000,0,21.4100,0,24.0000,36.7781,0,15.1192,0,24.0000,0,0,0,0,24.0000,24.0000,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,12583.2597,162.8525,3901.6422,0,477.7553,356.2911,0,515.9800,67.1983,332.3561,246.3689,40.6164,138.9664,3.6200,216.0000,233.0019,138.9556,29.7878,216.0000,117.1092,96.0000,9.8928,24.0000,80.8508,24.0000,42.5322,0,56.8025,19.1092,39.1372,48.0000,0,72.0000,14.6778,24.0000,10.0983,0,0,23.4381,24.0000,24.0000,10.4008,3.0019,22.2422,0,0,0,18.9747,24.0000,0,0,0,7.1736,0,0,0,0,1.9269,0,0,6.4889,0,0,0,0,0 -2016-12-30,21766.1511,6346.5897,5473.3125,3055.8617,378.4569,461.5083,0,488.4964,380.4372,388.7531,230.8664,572.9283,291.6108,67.3875,216.0000,267.2011,178.1372,143.8583,160.0869,134.0756,96.0000,378.0547,24.0000,152.4892,175.8633,108.4533,0,85.7392,63.8125,7.1367,25.3706,108.1047,45.2903,82.2439,24.0000,82.1119,43.3692,9.4878,24.4681,5.5500,19.2856,13.6064,24.0000,15.8617,13.9453,9.6922,40.8392,24.0006,19.3061,29.3436,12.8208,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,18.2347,4.3656,0.5364,2.5175,3.0522,1.1269,0.2208,0.2606,0.0650 -2016-12-31,20518.0064,8276.1947,2761.8142,5534.6542,1112.6033,329.0272,3.1458,229.2089,372.1011,164.2022,179.7156,380.1389,323.7333,714.0100,55.2700,0,97.5139,144.0000,24.0000,129.0269,82.8536,17.4144,24.2375,22.0906,7.7117,48.8944,149.5017,58.9750,71.2450,0,9.2572,25.9131,0,29.3383,24.0000,8.6314,44.0186,42.3756,24.0000,0,0,45.3169,24.0000,3.8883,45.9239,38.8869,13.7992,7.3744,0,16.9689,1.4844,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0,9.6900,8.2461,0,0.6131,0,0.3878,0,0 -2017-01-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index b048801e89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" -2016-12,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -2017-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ad774b9a8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" -"2016 Q4",55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -"2017 Q1",11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 69c58688c0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Moorhen] Wall Hours: Total","[Honey-buzzard] Wall Hours: Total","[Lapwing] Wall Hours: Total","[Grey, Lesser] Wall Hours: Total","[Warbler, Garden] Wall Hours: Total","[Bunting, Reed] Wall Hours: Total","[Plover, Caspian] Wall Hours: Total","[Pipit, Meadow] Wall Hours: Total","[Dove, Turtle] Wall Hours: Total","[Crane, Sandhill] Wall Hours: Total","[Treecreeper, Short-toed] Wall Hours: Total","[Sandpiper, Spotted] Wall Hours: Total","[Sapsucker, Yellow-bellied] Wall Hours: Total","[Thrush, Grey-cheeked] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Grebe, Pied-billed] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Shearwater, Cory's] Wall Hours: Total","[Thrush, Mistle] Wall Hours: Total","[Warbler, Sardinian] Wall Hours: Total","[Ovenbird] Wall Hours: Total","[Thrush, Swainson's] Wall Hours: Total","[Oriole, Baltimore] Wall Hours: Total","[Smew] Wall Hours: Total","[Warbler, Booted] Wall Hours: Total","[Bunting, Yellow-breasted] Wall Hours: Total","[Sparrow, White-throated] Wall Hours: Total","[Shag] Wall Hours: Total","[Crane] Wall Hours: Total","[Tern, Sandwich] Wall Hours: Total","[Siskin] Wall Hours: Total","[Grey, Southern] Wall Hours: Total","[Plover, White-tailed] Wall Hours: Total","[Goose, Egyptian] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Whimbrel] Wall Hours: Total","[Peregrine] Wall Hours: Total","[Scoter, Velvet] Wall Hours: Total","[Warbler, Moltoni's] Wall Hours: Total","[Auk, Little] Wall Hours: Total","[Duck, Ferruginous] Wall Hours: Total","[Shrike, Long-tailed] Wall Hours: Total","[Bunting, Black-headed] Wall Hours: Total","[Warbler, Golden-winged] Wall Hours: Total","[Grey, Great] Wall Hours: Total","[Bunting, Yellow-browed] Wall Hours: Total","[Ibis, Glossy] Wall Hours: Total","[Warbler, Dusky] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Redpoll, Lesser] Wall Hours: Total","[Martin, Purple] Wall Hours: Total","[Gull, Ring-billed] Wall Hours: Total","[Coot] Wall Hours: Total","[Egret, Cattle] Wall Hours: Total","[Grosbeak, Evening] Wall Hours: Total","[Roller] Wall Hours: Total","[Swift, Alpine] Wall Hours: Total","[Warbler, Yellow-browed] Wall Hours: Total","[Stint, Little] Wall Hours: Total","[Martin, Crag] Wall Hours: Total","[Sparrow, Savannah] Wall Hours: Total","[Gallinule, Allen's] Wall Hours: Total","[Partridge, Red-legged] Wall Hours: Total" -2016,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -2017,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 9f54471983..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Screwdriver CPU Utilization (%)" -"Scaup, Lesser",20.6013 -"Pipit, Meadow",13.8709 -Moorhen,6.3451 -"Warbler, Garden",5.1824 -Honey-buzzard,3.5570 -"Goose, Egyptian",2.4551 -Crane,1.8441 -Smew,1.7416 -Lapwing,1.4540 -"Bunting, Reed",1.3185 -"Warbler, Dusky",1.2411 -"Dove, Turtle",1.1885 -"Sandpiper, Spotted",1.1532 -"Plover, Caspian",1.1064 -"Crane, Sandhill",0.8515 -"Grey, Lesser",0.8135 -Siskin,0.7959 -"Warbler, Sardinian",0.7889 -"Treecreeper, Short-toed",0.7772 -Chaffinch,0.7273 -Ovenbird,0.6270 -"Scoter, Velvet",0.4999 -"Sparrow, White-throated",0.4983 -"Thrush, Mistle",0.4922 -Whimbrel,0.4658 -Peregrine,0.4235 -"Duck, Ferruginous",0.3978 -"Warbler, Hooded",0.3658 -"Sapsucker, Yellow-bellied",0.3393 -"Shearwater, Cory's",0.3318 -"Oriole, Baltimore",0.3030 -Shag,0.2168 -"Thrush, Swainson's",0.2144 -"Plover, White-tailed",0.1505 -"Bunting, Yellow-breasted",0.1489 -Dunlin,0.1438 -"Ibis, Glossy",0.1429 -"Warbler, Golden-winged",0.1370 -"Warbler, Yellow-browed",0.1368 -"Grosbeak, Evening",0.1069 -"Warbler, Booted",0.0967 -"Thrush, Grey-cheeked",0.0966 -"Bunting, Yellow-browed",0.0954 -"Auk, Little",0.0590 -"Swift, Alpine",0.0578 -Roller,0.0559 -"Grebe, Pied-billed",0.0474 -Fieldfare,0.0327 -"Shrike, Long-tailed",0.0247 -"Redpoll, Lesser",0.0225 -"Tern, Sandwich",0.0166 -Jackdaw,0.0130 -"Grey, Southern",0.0129 -"Harrier, Hen",0.0095 -"Warbler, Moltoni's",0.0068 -"Martin, Purple",0.0061 -"Bunting, Black-headed",0.0057 -"Grey, Great",0.0052 -Coot,0.0040 -"Egret, Cattle",0.0040 -"Martin, Crag",0.0034 -"Gull, Ring-billed",0.0030 -"Gallinule, Allen's",0.0027 -"Stint, Little",0.0023 -"Partridge, Red-legged",0.0001 -"Sparrow, Savannah",0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 14e9e7db5e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Screwdriver CPU Utilization (%)" -"Scaup, Lesser",3.4335 -"Pipit, Meadow",2.9918 -Moorhen,1.3685 -"Warbler, Garden",0.9805 -Honey-buzzard,0.7905 -"Goose, Egyptian",0.4092 -Crane,0.3977 -Smew,0.3756 -Lapwing,0.3136 -"Dove, Turtle",0.3113 -"Bunting, Reed",0.2862 -"Warbler, Dusky",0.2677 -"Sandpiper, Spotted",0.2487 -"Plover, Caspian",0.2263 -Chaffinch,0.1951 -"Warbler, Sardinian",0.1866 -"Crane, Sandhill",0.1848 -"Grey, Lesser",0.1755 -Siskin,0.1717 -"Treecreeper, Short-toed",0.1676 -Ovenbird,0.1642 -"Scoter, Velvet",0.1183 -"Sparrow, White-throated",0.1075 -"Thrush, Mistle",0.1062 -Whimbrel,0.1005 -Peregrine,0.0914 -"Sapsucker, Yellow-bellied",0.0889 -"Duck, Ferruginous",0.0858 -"Oriole, Baltimore",0.0813 -"Warbler, Hooded",0.0789 -"Shearwater, Cory's",0.0716 -Shag,0.0513 -"Thrush, Swainson's",0.0507 -"Bunting, Yellow-breasted",0.0325 -"Plover, White-tailed",0.0325 -Dunlin,0.0310 -"Warbler, Golden-winged",0.0296 -"Warbler, Yellow-browed",0.0295 -"Ibis, Glossy",0.0270 -"Grosbeak, Evening",0.0231 -"Thrush, Grey-cheeked",0.0228 -"Bunting, Yellow-browed",0.0226 -"Warbler, Booted",0.0209 -"Swift, Alpine",0.0155 -"Auk, Little",0.0127 -Roller,0.0121 -"Grebe, Pied-billed",0.0102 -Fieldfare,0.0086 -"Shrike, Long-tailed",0.0058 -"Redpoll, Lesser",0.0043 -"Tern, Sandwich",0.0043 -"Grey, Southern",0.0028 -Jackdaw,0.0025 -"Harrier, Hen",0.0021 -"Warbler, Moltoni's",0.0015 -"Bunting, Black-headed",0.0012 -"Grey, Great",0.0011 -"Martin, Purple",0.0010 -Coot,0.0007 -"Egret, Cattle",0.0007 -"Gull, Ring-billed",0.0007 -"Gallinule, Allen's",0.0006 -"Martin, Crag",0.0006 -"Stint, Little",0.0006 -"Partridge, Red-legged",0.0000 -"Sparrow, Savannah",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index c715ff32ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Screwdriver CPU Utilization (%)" -"Pipit, Meadow",1.3871 -"Scaup, Lesser",1.3011 -Moorhen,0.6345 -"Warbler, Garden",0.3779 -Honey-buzzard,0.3259 -Crane,0.1844 -Smew,0.1742 -"Goose, Egyptian",0.1551 -Lapwing,0.1454 -"Dove, Turtle",0.1294 -"Warbler, Dusky",0.1241 -"Bunting, Reed",0.1206 -"Sandpiper, Spotted",0.1153 -"Plover, Caspian",0.0967 -"Warbler, Sardinian",0.0823 -"Grey, Lesser",0.0813 -Chaffinch,0.0800 -Siskin,0.0796 -"Crane, Sandhill",0.0779 -"Treecreeper, Short-toed",0.0777 -Ovenbird,0.0683 -"Scoter, Velvet",0.0521 -"Sparrow, White-throated",0.0498 -"Thrush, Mistle",0.0492 -Whimbrel,0.0466 -Peregrine,0.0424 -"Duck, Ferruginous",0.0398 -"Sapsucker, Yellow-bellied",0.0370 -"Warbler, Hooded",0.0366 -"Oriole, Baltimore",0.0333 -"Shearwater, Cory's",0.0332 -Shag,0.0226 -"Thrush, Swainson's",0.0224 -"Plover, White-tailed",0.0150 -Dunlin,0.0144 -"Warbler, Golden-winged",0.0137 -"Warbler, Yellow-browed",0.0137 -"Bunting, Yellow-breasted",0.0129 -"Grosbeak, Evening",0.0107 -"Ibis, Glossy",0.0104 -"Thrush, Grey-cheeked",0.0101 -"Bunting, Yellow-browed",0.0099 -"Warbler, Booted",0.0097 -"Swift, Alpine",0.0064 -"Auk, Little",0.0059 -Roller,0.0056 -"Grebe, Pied-billed",0.0047 -Fieldfare,0.0036 -"Shrike, Long-tailed",0.0026 -"Tern, Sandwich",0.0018 -"Redpoll, Lesser",0.0016 -"Grey, Southern",0.0013 -"Harrier, Hen",0.0010 -Jackdaw,0.0009 -"Warbler, Moltoni's",0.0007 -"Bunting, Black-headed",0.0006 -"Grey, Great",0.0005 -"Martin, Purple",0.0004 -Coot,0.0003 -"Egret, Cattle",0.0003 -"Gallinule, Allen's",0.0003 -"Gull, Ring-billed",0.0003 -"Martin, Crag",0.0002 -"Stint, Little",0.0002 -"Partridge, Red-legged",0.0000 -"Sparrow, Savannah",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv deleted file mode 100644 index d284e672b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -User,"Screwdriver CPU Utilization (%)" -"Pipit, Meadow",0.3963 -"Scaup, Lesser",0.3341 -Moorhen,0.1813 -"Warbler, Garden",0.0978 -Honey-buzzard,0.0872 -Crane,0.0527 -Smew,0.0498 -Lapwing,0.0415 -"Goose, Egyptian",0.0398 -"Warbler, Dusky",0.0355 -"Dove, Turtle",0.0348 -"Sandpiper, Spotted",0.0329 -"Bunting, Reed",0.0326 -"Plover, Caspian",0.0263 -"Grey, Lesser",0.0232 -"Warbler, Sardinian",0.0228 -Siskin,0.0227 -"Treecreeper, Short-toed",0.0222 -Chaffinch,0.0213 -"Crane, Sandhill",0.0211 -Ovenbird,0.0183 -"Scoter, Velvet",0.0145 -"Sparrow, White-throated",0.0142 -"Thrush, Mistle",0.0141 -Whimbrel,0.0133 -Peregrine,0.0121 -"Duck, Ferruginous",0.0114 -"Warbler, Hooded",0.0105 -"Sapsucker, Yellow-bellied",0.0099 -"Shearwater, Cory's",0.0095 -"Oriole, Baltimore",0.0089 -Shag,0.0063 -"Thrush, Swainson's",0.0062 -"Plover, White-tailed",0.0043 -Dunlin,0.0041 -"Warbler, Golden-winged",0.0039 -"Warbler, Yellow-browed",0.0039 -"Bunting, Yellow-breasted",0.0034 -"Grosbeak, Evening",0.0031 -"Bunting, Yellow-browed",0.0028 -"Thrush, Grey-cheeked",0.0028 -"Warbler, Booted",0.0028 -"Ibis, Glossy",0.0027 -"Auk, Little",0.0017 -"Swift, Alpine",0.0017 -Roller,0.0016 -"Grebe, Pied-billed",0.0014 -Fieldfare,0.0010 -"Shrike, Long-tailed",0.0007 -"Tern, Sandwich",0.0005 -"Grey, Southern",0.0004 -"Redpoll, Lesser",0.0004 -"Harrier, Hen",0.0003 -"Bunting, Black-headed",0.0002 -Jackdaw,0.0002 -"Warbler, Moltoni's",0.0002 -Coot,0.0001 -"Egret, Cattle",0.0001 -"Gallinule, Allen's",0.0001 -"Grey, Great",0.0001 -"Gull, Ring-billed",0.0001 -"Martin, Crag",0.0001 -"Martin, Purple",0.0001 -"Stint, Little",0.0001 -"Partridge, Red-legged",0.0000 -"Sparrow, Savannah",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 54fac44cac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0090,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,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.1587,0,0.3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.2253,0,0,0,0,0,1.2000,0,0.6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.8952,0,2.0000,0.0034,0,0,0,0,0.8947,0,0.6000,0,0,1.3559,0,1.5498,0,0.5819,0.2533,0.3291,3.1220,0,0,0,0,0,0,0,0,0.3000,0,0,0,0.1425,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0049,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,0,0,0,2.0446,4.2672,0,0.6000,0,0,1.6312,0,2.4389,0.8329,1.4699,1.6000,1.6000,3.6000,0,0.3505,0,0,0,0.3662,0,0,0.3000,0.2012,0,0.1890,0.4000,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,41.2000,51.5980,13.1076,7.9626,0.3223,1.7124,1.9109,6.0638,4.0642,3.5068,0,0.7600,0.5077,0,2.9811,0,3.0000,3.9036,2.0531,1.6000,1.6000,3.6000,0,2.7000,0,1.4649,0.1876,1.1580,0.5790,0.2482,0.3000,0.6050,0.2403,0.9000,0.2772,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0.2427,0,0.0232,0.0299,0.0408,0,0,0.0105,0.0250,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,41.2000,48.8496,22.6731,6.3076,12.7775,9.5951,6.3813,11.4367,5.7014,2.6501,7.7129,3.2047,7.1616,0,2.5358,3.1832,1.3028,2.3574,1.9182,1.6000,1.6000,0.3377,0,2.0011,0.7116,1.5293,1.5000,1.5415,1.2150,1.1988,0.3000,0.8149,1.5376,0.5661,0.5138,0.5439,0.4022,0.3402,0.4196,1.0637,0.2073,0.2962,0.5000,0.0709,0.0272,0.0687,0.2783,0.0667,0.0084,0.0547,0.0074,0.0452,0.1126,0.0855,0.0201,0.0122,0.0145,0.0425,0.0081,0.0081,0.0235,0.0185,0.0293,0.0206,0.0011,0.0002 -2016-12-31,10.5124,22.9209,21.3729,12.2717,18.0378,3.4228,7.1245,1.6568,2.8769,1.1987,5.9391,3.1008,4.7517,0.0393,1.3368,5.7653,0.4629,3.6228,1.4976,1.6000,1.3809,0,3.6187,0.3000,2.4478,1.5000,1.5000,0.9582,1.3489,1.2000,0.3038,0.7013,1.1610,0,0.4075,0.1307,0,0.9523,0,0,0.0080,0.7438,0.3073,0.5116,0.5497,0.5239,0,0.1649,0.0405,0.0250,0,0.0459,0.0270,0.0090,0,0.0122,0.0478,0.0144,0.0081,0.0081,0,0.0147,0,0.0102,0,0.0004 -2017-01-01,0,2.4699,11.6497,5.1025,1.6458,0,4.8686,0,1.3067,1.5843,0,3.0692,0.2646,9.9375,0,0,0,0.6592,1.0281,1.3472,0.3871,0,1.8628,0.0631,1.9640,0.1648,1.1879,0,0.5890,1.0032,0.4200,0.1238,0,0,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0593,0.0223,0,0.1277,0.4221,0.0479,0,0,0.0018,0,0,0.0121,0,0,0.0081,0.0081,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv deleted file mode 100644 index cfd245d179..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" -2016-12,24.7215,7.5055,2.9073,5.1957,2.9884,2.9461,0.7708,0.9579,0.7344,0.9095,0.9375,0.6826,0.6211,0.0066,0.6653,0.5386,0.6623,0.4474,0.4377,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.2857,0.1594,0.2913,0.2012,0.1324,0.1498,0.1522,0.1583,0.0828,0.0337,0.0646,0.0751,0.1667,0.0588,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0183,0.0166,0.0070,0.0152,0.0053,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0017,0.0015,0.0039,0.0017,0.0001,0.0001 -2017-01,0,0.0797,0.3758,0.1646,0.0531,0,0.1571,0,0.0422,0.0990,0.0511,0,0.0085,0.3206,0.0435,0.0213,0,0,0,0.0332,0.0125,0,0.0601,0.0020,0.0634,0.0053,0.0190,0.0383,0.0135,0,0.0324,0.0040,0,0,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0019,0.0004,0.0007,0,0.0041,0.0136,0.0015,0,0.0001,0,0,0,0,0,0.0004,0.0003,0.0003,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 53e5a6ff38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" -"2016 Q4",7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,2.9461,0.7344,0.9095,0.6826,0.9375,0.6211,0.0066,0.5386,0.4474,0.6653,0.4377,0.6623,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2857,0.2012,0.2913,0.1324,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.1667,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0152,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0015,0.0017,0.0039,0.0017,0.0001,0.0001 -"2017 Q1",0.0274,0,0.1294,0.0567,0.0183,0.0541,0,0,0.0145,0.0341,0,0.0176,0.0029,0.1104,0.0073,0,0.0150,0,0,0.0114,0.0043,0,0.0207,0.0007,0.0218,0.0018,0.0132,0.0065,0,0.0047,0.0111,0.0014,0,0,0.0101,0.0024,0.0000,0,0,0,0.0004,0,0,0.0007,0.0001,0.0002,0,0.0014,0.0047,0,0.0005,0.0000,0,0,0,0,0,0.0001,0.0001,0.0001,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 8b47ca7e29..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/person/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by User" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Pipit, Meadow] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Warbler, Garden] Screwdriver CPU Utilization (%)","[Honey-buzzard] Screwdriver CPU Utilization (%)","[Crane] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Lapwing] Screwdriver CPU Utilization (%)","[Goose, Egyptian] Screwdriver CPU Utilization (%)","[Warbler, Dusky] Screwdriver CPU Utilization (%)","[Dove, Turtle] Screwdriver CPU Utilization (%)","[Sandpiper, Spotted] Screwdriver CPU Utilization (%)","[Bunting, Reed] Screwdriver CPU Utilization (%)","[Plover, Caspian] Screwdriver CPU Utilization (%)","[Grey, Lesser] Screwdriver CPU Utilization (%)","[Warbler, Sardinian] Screwdriver CPU Utilization (%)","[Siskin] Screwdriver CPU Utilization (%)","[Treecreeper, Short-toed] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Crane, Sandhill] Screwdriver CPU Utilization (%)","[Ovenbird] Screwdriver CPU Utilization (%)","[Scoter, Velvet] Screwdriver CPU Utilization (%)","[Sparrow, White-throated] Screwdriver CPU Utilization (%)","[Thrush, Mistle] Screwdriver CPU Utilization (%)","[Whimbrel] Screwdriver CPU Utilization (%)","[Peregrine] Screwdriver CPU Utilization (%)","[Duck, Ferruginous] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Sapsucker, Yellow-bellied] Screwdriver CPU Utilization (%)","[Shearwater, Cory's] Screwdriver CPU Utilization (%)","[Oriole, Baltimore] Screwdriver CPU Utilization (%)","[Shag] Screwdriver CPU Utilization (%)","[Thrush, Swainson's] Screwdriver CPU Utilization (%)","[Plover, White-tailed] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Warbler, Golden-winged] Screwdriver CPU Utilization (%)","[Warbler, Yellow-browed] Screwdriver CPU Utilization (%)","[Bunting, Yellow-breasted] Screwdriver CPU Utilization (%)","[Grosbeak, Evening] Screwdriver CPU Utilization (%)","[Bunting, Yellow-browed] Screwdriver CPU Utilization (%)","[Thrush, Grey-cheeked] Screwdriver CPU Utilization (%)","[Warbler, Booted] Screwdriver CPU Utilization (%)","[Ibis, Glossy] Screwdriver CPU Utilization (%)","[Auk, Little] Screwdriver CPU Utilization (%)","[Swift, Alpine] Screwdriver CPU Utilization (%)","[Roller] Screwdriver CPU Utilization (%)","[Grebe, Pied-billed] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Shrike, Long-tailed] Screwdriver CPU Utilization (%)","[Tern, Sandwich] Screwdriver CPU Utilization (%)","[Grey, Southern] Screwdriver CPU Utilization (%)","[Redpoll, Lesser] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Bunting, Black-headed] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Warbler, Moltoni's] Screwdriver CPU Utilization (%)","[Coot] Screwdriver CPU Utilization (%)","[Egret, Cattle] Screwdriver CPU Utilization (%)","[Gallinule, Allen's] Screwdriver CPU Utilization (%)","[Grey, Great] Screwdriver CPU Utilization (%)","[Gull, Ring-billed] Screwdriver CPU Utilization (%)","[Martin, Crag] Screwdriver CPU Utilization (%)","[Martin, Purple] Screwdriver CPU Utilization (%)","[Stint, Little] Screwdriver CPU Utilization (%)","[Partridge, Red-legged] Screwdriver CPU Utilization (%)","[Sparrow, Savannah] Screwdriver CPU Utilization (%)" -2016,7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,0.7344,2.9461,0.6826,0.9095,0.6211,0.9375,0.0066,0.4474,0.5386,0.4377,0.3760,0.6653,0.6623,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2012,0.2857,0.1324,0.2913,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.0677,0.0673,0.0532,0.1667,0.0318,0.0577,0.0296,0.0261,0.0211,0.0039,0.0166,0.0070,0.0183,0.0053,0.0031,0.0152,0.0038,0.0032,0.0032,0.0015,0.0028,0.0017,0.0039,0.0049,0.0017,0.0001,0.0001 -2017,0.0068,0,0.0319,0.0140,0.0045,0.0133,0,0.0036,0,0,0.0084,0.0007,0.0043,0.0272,0,0.0018,0,0.0028,0.0037,0,0.0011,0,0.0051,0.0002,0.0054,0.0005,0.0033,0,0.0016,0.0027,0.0012,0.0003,0,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0,0.0000,0.0002,0.0001,0,0.0003,0.0012,0,0.0000,0.0001,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 3b8da22250..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Users: Active" -"Tern, Caspian",6 -Fieldfare,4 -"Lark, Calandra",4 -"White, Great",4 -"Dowitcher, Short-billed",3 -Jackdaw,3 -Chaffinch,2 -"Flycatcher, Taiga",2 -Fulmar,2 -"Scaup, Lesser",2 -"Shearwater, Balearic",2 -"Warbler, Cetti's",2 -"Warbler, Hooded",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -"Chiffchaff, Iberian",1 -Dotterel,1 -Dunlin,1 -"Egret, Snowy",1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Savi's",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 3b8da22250..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Users: Active" -"Tern, Caspian",6 -Fieldfare,4 -"Lark, Calandra",4 -"White, Great",4 -"Dowitcher, Short-billed",3 -Jackdaw,3 -Chaffinch,2 -"Flycatcher, Taiga",2 -Fulmar,2 -"Scaup, Lesser",2 -"Shearwater, Balearic",2 -"Warbler, Cetti's",2 -"Warbler, Hooded",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -"Chiffchaff, Iberian",1 -Dotterel,1 -Dunlin,1 -"Egret, Snowy",1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Savi's",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 3b8da22250..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Users: Active" -"Tern, Caspian",6 -Fieldfare,4 -"Lark, Calandra",4 -"White, Great",4 -"Dowitcher, Short-billed",3 -Jackdaw,3 -Chaffinch,2 -"Flycatcher, Taiga",2 -Fulmar,2 -"Scaup, Lesser",2 -"Shearwater, Balearic",2 -"Warbler, Cetti's",2 -"Warbler, Hooded",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -"Chiffchaff, Iberian",1 -Dotterel,1 -Dunlin,1 -"Egret, Snowy",1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Savi's",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 3b8da22250..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Users: Active" -"Tern, Caspian",6 -Fieldfare,4 -"Lark, Calandra",4 -"White, Great",4 -"Dowitcher, Short-billed",3 -Jackdaw,3 -Chaffinch,2 -"Flycatcher, Taiga",2 -Fulmar,2 -"Scaup, Lesser",2 -"Shearwater, Balearic",2 -"Warbler, Cetti's",2 -"Warbler, Hooded",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -"Chiffchaff, Iberian",1 -Dotterel,1 -Dunlin,1 -"Egret, Snowy",1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Savi's",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index f7f42c9d17..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" -2016-12-22,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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-24,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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-25,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,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-26,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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-27,3,1,2,1,0,0,2,1,1,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -2016-12-28,3,1,4,1,0,0,2,1,1,1,2,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0 -2016-12-29,4,2,4,3,0,2,2,2,2,1,2,1,2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,0 -2016-12-30,6,4,4,4,3,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,5,4,4,4,3,3,2,2,1,2,1,1,2,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0 -2017-01-01,2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 92714cc6ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" -2016-12,6,4,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 67bb6dff7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" -"2016 Q4",6,4,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index c9cccea98e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Tern, Caspian] Number of Users: Active","[Fieldfare] Number of Users: Active","[Lark, Calandra] Number of Users: Active","[White, Great] Number of Users: Active","[Dowitcher, Short-billed] Number of Users: Active","[Jackdaw] Number of Users: Active","[Chaffinch] Number of Users: Active","[Flycatcher, Taiga] Number of Users: Active","[Fulmar] Number of Users: Active","[Scaup, Lesser] Number of Users: Active","[Shearwater, Balearic] Number of Users: Active","[Warbler, Cetti's] Number of Users: Active","[Warbler, Hooded] Number of Users: Active","[Accentor, Alpine] Number of Users: Active","[Bittern] Number of Users: Active","[Blackbird] Number of Users: Active","[Bluetail, Red-flanked] Number of Users: Active","[Bufflehead] Number of Users: Active","[Bunting, Ortolan] Number of Users: Active","[Chiffchaff, Iberian] Number of Users: Active","[Dotterel] Number of Users: Active","[Dunlin] Number of Users: Active","[Egret, Snowy] Number of Users: Active","[Goose, Red-breasted] Number of Users: Active","[Gull, Glaucous-winged] Number of Users: Active","[Gull, Yellow-legged] Number of Users: Active","[Harrier, Hen] Number of Users: Active","[Kestrel, Lesser] Number of Users: Active","[Martin, Sand] Number of Users: Active","[Moorhen] Number of Users: Active","[Nuthatch] Number of Users: Active","[Petrel, Fea's] Number of Users: Active","[Shearwater, Great] Number of Users: Active","[Shearwater, Macaronesian] Number of Users: Active","[Smew] Number of Users: Active","[Spotted, Great] Number of Users: Active","[Swift, Little] Number of Users: Active","[Thrush, Hermit] Number of Users: Active","[Warbler, Blackpoll] Number of Users: Active","[Warbler, Savi's] Number of Users: Active","[Yellowthroat, Common] Number of Users: Active" -2016,6,4,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,2,3,4,3,3,2,2,2,1,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index e455ac4021..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of PIs: Active" -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -"Egret, Snowy",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -Jackdaw,1 -"Kestrel, Lesser",1 -"Lark, Calandra",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Scaup, Lesser",1 -"Shearwater, Balearic",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Tern, Caspian",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"Warbler, Savi's",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index e455ac4021..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of PIs: Active" -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -"Egret, Snowy",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -Jackdaw,1 -"Kestrel, Lesser",1 -"Lark, Calandra",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Scaup, Lesser",1 -"Shearwater, Balearic",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Tern, Caspian",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"Warbler, Savi's",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e455ac4021..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of PIs: Active" -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -"Egret, Snowy",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -Jackdaw,1 -"Kestrel, Lesser",1 -"Lark, Calandra",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Scaup, Lesser",1 -"Shearwater, Balearic",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Tern, Caspian",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"Warbler, Savi's",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index e455ac4021..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of PIs: Active" -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -"Egret, Snowy",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -Jackdaw,1 -"Kestrel, Lesser",1 -"Lark, Calandra",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Scaup, Lesser",1 -"Shearwater, Balearic",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Tern, Caspian",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"Warbler, Savi's",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 038e25221b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" -2016-12-22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-26,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -2016-12-27,0,0,0,1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0 -2016-12-28,0,0,0,1,1,0,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0,0,1,0,1,0,1,0,1,0 -2016-12-29,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,1,1,1,1,1,0 -2016-12-30,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0 -2017-01-01,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index a7eca33768..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d602b03ef2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 6fe65e0f29..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Accentor, Alpine] Number of PIs: Active","[Bittern] Number of PIs: Active","[Blackbird] Number of PIs: Active","[Bluetail, Red-flanked] Number of PIs: Active","[Bufflehead] Number of PIs: Active","[Bunting, Ortolan] Number of PIs: Active","[Chaffinch] Number of PIs: Active","[Chiffchaff, Iberian] Number of PIs: Active","[Dotterel] Number of PIs: Active","[Dowitcher, Short-billed] Number of PIs: Active","[Dunlin] Number of PIs: Active","[Egret, Snowy] Number of PIs: Active","[Fieldfare] Number of PIs: Active","[Flycatcher, Taiga] Number of PIs: Active","[Fulmar] Number of PIs: Active","[Goose, Red-breasted] Number of PIs: Active","[Gull, Glaucous-winged] Number of PIs: Active","[Gull, Yellow-legged] Number of PIs: Active","[Harrier, Hen] Number of PIs: Active","[Jackdaw] Number of PIs: Active","[Kestrel, Lesser] Number of PIs: Active","[Lark, Calandra] Number of PIs: Active","[Martin, Sand] Number of PIs: Active","[Moorhen] Number of PIs: Active","[Nuthatch] Number of PIs: Active","[Petrel, Fea's] Number of PIs: Active","[Scaup, Lesser] Number of PIs: Active","[Shearwater, Balearic] Number of PIs: Active","[Shearwater, Great] Number of PIs: Active","[Shearwater, Macaronesian] Number of PIs: Active","[Smew] Number of PIs: Active","[Spotted, Great] Number of PIs: Active","[Swift, Little] Number of PIs: Active","[Tern, Caspian] Number of PIs: Active","[Thrush, Hermit] Number of PIs: Active","[Warbler, Blackpoll] Number of PIs: Active","[Warbler, Cetti's] Number of PIs: Active","[Warbler, Hooded] Number of PIs: Active","[Warbler, Savi's] Number of PIs: Active","[White, Great] Number of PIs: Active","[Yellowthroat, Common] Number of PIs: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index eb064633d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Resources: Active" -"Flycatcher, Taiga",5 -"Lark, Calandra",3 -"Shearwater, Balearic",3 -"Tern, Caspian",3 -"Chiffchaff, Iberian",2 -"Egret, Snowy",2 -Fieldfare,2 -Jackdaw,2 -"Scaup, Lesser",2 -"Warbler, Savi's",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index eb064633d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Resources: Active" -"Flycatcher, Taiga",5 -"Lark, Calandra",3 -"Shearwater, Balearic",3 -"Tern, Caspian",3 -"Chiffchaff, Iberian",2 -"Egret, Snowy",2 -Fieldfare,2 -Jackdaw,2 -"Scaup, Lesser",2 -"Warbler, Savi's",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index eb064633d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Resources: Active" -"Flycatcher, Taiga",5 -"Lark, Calandra",3 -"Shearwater, Balearic",3 -"Tern, Caspian",3 -"Chiffchaff, Iberian",2 -"Egret, Snowy",2 -Fieldfare,2 -Jackdaw,2 -"Scaup, Lesser",2 -"Warbler, Savi's",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index eb064633d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Resources: Active" -"Flycatcher, Taiga",5 -"Lark, Calandra",3 -"Shearwater, Balearic",3 -"Tern, Caspian",3 -"Chiffchaff, Iberian",2 -"Egret, Snowy",2 -Fieldfare,2 -Jackdaw,2 -"Scaup, Lesser",2 -"Warbler, Savi's",2 -"Accentor, Alpine",1 -Bittern,1 -Blackbird,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -"Bunting, Ortolan",1 -Chaffinch,1 -Dotterel,1 -"Dowitcher, Short-billed",1 -Dunlin,1 -Fulmar,1 -"Goose, Red-breasted",1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Harrier, Hen",1 -"Kestrel, Lesser",1 -"Martin, Sand",1 -Moorhen,1 -Nuthatch,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -Smew,1 -"Spotted, Great",1 -"Swift, Little",1 -"Thrush, Hermit",1 -"Warbler, Blackpoll",1 -"Warbler, Cetti's",1 -"Warbler, Hooded",1 -"White, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 841756a8ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" -2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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-24,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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-25,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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-26,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,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-27,1,2,1,2,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0 -2016-12-28,1,2,2,2,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,1,1,0 -2016-12-29,4,3,3,3,1,0,1,2,1,1,0,0,0,1,1,1,1,1,0,0,1,0,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,0 -2016-12-30,5,3,3,3,2,0,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,5,3,2,1,2,1,2,2,2,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0 -2017-01-01,5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 0934adec46..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" -2016-12,5,3,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 019f435643..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" -"2016 Q4",5,3,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index ba808d85f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Flycatcher, Taiga] Number of Resources: Active","[Lark, Calandra] Number of Resources: Active","[Shearwater, Balearic] Number of Resources: Active","[Tern, Caspian] Number of Resources: Active","[Chiffchaff, Iberian] Number of Resources: Active","[Egret, Snowy] Number of Resources: Active","[Fieldfare] Number of Resources: Active","[Jackdaw] Number of Resources: Active","[Scaup, Lesser] Number of Resources: Active","[Warbler, Savi's] Number of Resources: Active","[Accentor, Alpine] Number of Resources: Active","[Bittern] Number of Resources: Active","[Blackbird] Number of Resources: Active","[Bluetail, Red-flanked] Number of Resources: Active","[Bufflehead] Number of Resources: Active","[Bunting, Ortolan] Number of Resources: Active","[Chaffinch] Number of Resources: Active","[Dotterel] Number of Resources: Active","[Dowitcher, Short-billed] Number of Resources: Active","[Dunlin] Number of Resources: Active","[Fulmar] Number of Resources: Active","[Goose, Red-breasted] Number of Resources: Active","[Gull, Glaucous-winged] Number of Resources: Active","[Gull, Yellow-legged] Number of Resources: Active","[Harrier, Hen] Number of Resources: Active","[Kestrel, Lesser] Number of Resources: Active","[Martin, Sand] Number of Resources: Active","[Moorhen] Number of Resources: Active","[Nuthatch] Number of Resources: Active","[Petrel, Fea's] Number of Resources: Active","[Shearwater, Great] Number of Resources: Active","[Shearwater, Macaronesian] Number of Resources: Active","[Smew] Number of Resources: Active","[Spotted, Great] Number of Resources: Active","[Swift, Little] Number of Resources: Active","[Thrush, Hermit] Number of Resources: Active","[Warbler, Blackpoll] Number of Resources: Active","[Warbler, Cetti's] Number of Resources: Active","[Warbler, Hooded] Number of Resources: Active","[White, Great] Number of Resources: Active","[Yellowthroat, Common] Number of Resources: Active" -2016,5,3,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,5,3,0,1,1,2,2,2,1,0,1,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index f9704fd048..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index c016061023..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c016061023..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index c016061023..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 2be4ccf74c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index faf832d7d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 38748cc48e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 31e4e04cbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 13ebc96448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Per Job" -Chaffinch,16.35202509 -"Accentor, Alpine",0.00000000 -Bittern,0.00000000 -Blackbird,0.00000000 -"Bluetail, Red-flanked",0.00000000 -Bufflehead,0.00000000 -"Bunting, Ortolan",0.00000000 -"Chiffchaff, Iberian",0.00000000 -Dotterel,0.00000000 -"Dowitcher, Short-billed",0.00000000 -Dunlin,0.00000000 -"Egret, Snowy",0.00000000 -Fieldfare,0.00000000 -"Flycatcher, Taiga",0.00000000 -Fulmar,0.00000000 -"Goose, Red-breasted",0.00000000 -"Gull, Glaucous-winged",0.00000000 -"Gull, Yellow-legged",0.00000000 -"Harrier, Hen",0.00000000 -Jackdaw,0.00000000 -"Kestrel, Lesser",0.00000000 -"Lark, Calandra",0.00000000 -"Martin, Sand",0.00000000 -Moorhen,0.00000000 -Nuthatch,0.00000000 -"Petrel, Fea's",0.00000000 -"Scaup, Lesser",0.00000000 -"Shearwater, Balearic",0.00000000 -"Shearwater, Great",0.00000000 -"Shearwater, Macaronesian",0.00000000 -Smew,0.00000000 -"Spotted, Great",0.00000000 -"Swift, Little",0.00000000 -"Tern, Caspian",0.00000000 -"Thrush, Hermit",0.00000000 -"Warbler, Blackpoll",0.00000000 -"Warbler, Cetti's",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Savi's",0.00000000 -"White, Great",0.00000000 -"Yellowthroat, Common",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 13ebc96448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Per Job" -Chaffinch,16.35202509 -"Accentor, Alpine",0.00000000 -Bittern,0.00000000 -Blackbird,0.00000000 -"Bluetail, Red-flanked",0.00000000 -Bufflehead,0.00000000 -"Bunting, Ortolan",0.00000000 -"Chiffchaff, Iberian",0.00000000 -Dotterel,0.00000000 -"Dowitcher, Short-billed",0.00000000 -Dunlin,0.00000000 -"Egret, Snowy",0.00000000 -Fieldfare,0.00000000 -"Flycatcher, Taiga",0.00000000 -Fulmar,0.00000000 -"Goose, Red-breasted",0.00000000 -"Gull, Glaucous-winged",0.00000000 -"Gull, Yellow-legged",0.00000000 -"Harrier, Hen",0.00000000 -Jackdaw,0.00000000 -"Kestrel, Lesser",0.00000000 -"Lark, Calandra",0.00000000 -"Martin, Sand",0.00000000 -Moorhen,0.00000000 -Nuthatch,0.00000000 -"Petrel, Fea's",0.00000000 -"Scaup, Lesser",0.00000000 -"Shearwater, Balearic",0.00000000 -"Shearwater, Great",0.00000000 -"Shearwater, Macaronesian",0.00000000 -Smew,0.00000000 -"Spotted, Great",0.00000000 -"Swift, Little",0.00000000 -"Tern, Caspian",0.00000000 -"Thrush, Hermit",0.00000000 -"Warbler, Blackpoll",0.00000000 -"Warbler, Cetti's",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Savi's",0.00000000 -"White, Great",0.00000000 -"Yellowthroat, Common",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 13ebc96448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Per Job" -Chaffinch,16.35202509 -"Accentor, Alpine",0.00000000 -Bittern,0.00000000 -Blackbird,0.00000000 -"Bluetail, Red-flanked",0.00000000 -Bufflehead,0.00000000 -"Bunting, Ortolan",0.00000000 -"Chiffchaff, Iberian",0.00000000 -Dotterel,0.00000000 -"Dowitcher, Short-billed",0.00000000 -Dunlin,0.00000000 -"Egret, Snowy",0.00000000 -Fieldfare,0.00000000 -"Flycatcher, Taiga",0.00000000 -Fulmar,0.00000000 -"Goose, Red-breasted",0.00000000 -"Gull, Glaucous-winged",0.00000000 -"Gull, Yellow-legged",0.00000000 -"Harrier, Hen",0.00000000 -Jackdaw,0.00000000 -"Kestrel, Lesser",0.00000000 -"Lark, Calandra",0.00000000 -"Martin, Sand",0.00000000 -Moorhen,0.00000000 -Nuthatch,0.00000000 -"Petrel, Fea's",0.00000000 -"Scaup, Lesser",0.00000000 -"Shearwater, Balearic",0.00000000 -"Shearwater, Great",0.00000000 -"Shearwater, Macaronesian",0.00000000 -Smew,0.00000000 -"Spotted, Great",0.00000000 -"Swift, Little",0.00000000 -"Tern, Caspian",0.00000000 -"Thrush, Hermit",0.00000000 -"Warbler, Blackpoll",0.00000000 -"Warbler, Cetti's",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Savi's",0.00000000 -"White, Great",0.00000000 -"Yellowthroat, Common",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 13ebc96448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Per Job" -Chaffinch,16.35202509 -"Accentor, Alpine",0.00000000 -Bittern,0.00000000 -Blackbird,0.00000000 -"Bluetail, Red-flanked",0.00000000 -Bufflehead,0.00000000 -"Bunting, Ortolan",0.00000000 -"Chiffchaff, Iberian",0.00000000 -Dotterel,0.00000000 -"Dowitcher, Short-billed",0.00000000 -Dunlin,0.00000000 -"Egret, Snowy",0.00000000 -Fieldfare,0.00000000 -"Flycatcher, Taiga",0.00000000 -Fulmar,0.00000000 -"Goose, Red-breasted",0.00000000 -"Gull, Glaucous-winged",0.00000000 -"Gull, Yellow-legged",0.00000000 -"Harrier, Hen",0.00000000 -Jackdaw,0.00000000 -"Kestrel, Lesser",0.00000000 -"Lark, Calandra",0.00000000 -"Martin, Sand",0.00000000 -Moorhen,0.00000000 -Nuthatch,0.00000000 -"Petrel, Fea's",0.00000000 -"Scaup, Lesser",0.00000000 -"Shearwater, Balearic",0.00000000 -"Shearwater, Great",0.00000000 -"Shearwater, Macaronesian",0.00000000 -Smew,0.00000000 -"Spotted, Great",0.00000000 -"Swift, Little",0.00000000 -"Tern, Caspian",0.00000000 -"Thrush, Hermit",0.00000000 -"Warbler, Blackpoll",0.00000000 -"Warbler, Cetti's",0.00000000 -"Warbler, Hooded",0.00000000 -"Warbler, Savi's",0.00000000 -"White, Great",0.00000000 -"Yellowthroat, Common",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 957bf7aa23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 -2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 -2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 -2016-12-27,24.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0.00000000,0 -2016-12-28,24.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0 -2016-12-29,24.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0 -2016-12-30,24.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,8.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 -2017-01-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5cdf865fd6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" -2016-12,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index eb7dda2139..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" -"2016 Q4",77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index a9dcf360a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" -2016,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index babaa61035..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Chaffinch,0.1290,0.08824730508988667 -"Accentor, Alpine",0.0000,0 -Bittern,0.0000,0 -Blackbird,0.0000,0 -"Bluetail, Red-flanked",0.0000,0 -Bufflehead,0.0000,0 -"Bunting, Ortolan",0.0000,0 -"Chiffchaff, Iberian",0.0000,0 -Dotterel,0.0000,0 -"Dowitcher, Short-billed",0.0000,0 -Dunlin,0.0000,0 -"Egret, Snowy",0.0000,0 -Fieldfare,0.0000,0 -"Flycatcher, Taiga",0.0000,0 -Fulmar,0.0000,0 -"Goose, Red-breasted",0.0000,0 -"Gull, Glaucous-winged",0.0000,0 -"Gull, Yellow-legged",0.0000,0 -"Harrier, Hen",0.0000,0 -Jackdaw,0.0000,0 -"Kestrel, Lesser",0.0000,0 -"Lark, Calandra",0.0000,0 -"Martin, Sand",0.0000,0 -Moorhen,0.0000,0 -Nuthatch,0.0000,0 -"Petrel, Fea's",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Shearwater, Balearic",0.0000,0 -"Shearwater, Great",0.0000,0 -"Shearwater, Macaronesian",0.0000,0 -Smew,0.0000,0 -"Spotted, Great",0.0000,0 -"Swift, Little",0.0000,0 -"Tern, Caspian",0.0000,0 -"Thrush, Hermit",0.0000,0 -"Warbler, Blackpoll",0.0000,0 -"Warbler, Cetti's",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Savi's",0.0000,0 -"White, Great",0.0000,0 -"Yellowthroat, Common",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index babaa61035..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Chaffinch,0.1290,0.08824730508988667 -"Accentor, Alpine",0.0000,0 -Bittern,0.0000,0 -Blackbird,0.0000,0 -"Bluetail, Red-flanked",0.0000,0 -Bufflehead,0.0000,0 -"Bunting, Ortolan",0.0000,0 -"Chiffchaff, Iberian",0.0000,0 -Dotterel,0.0000,0 -"Dowitcher, Short-billed",0.0000,0 -Dunlin,0.0000,0 -"Egret, Snowy",0.0000,0 -Fieldfare,0.0000,0 -"Flycatcher, Taiga",0.0000,0 -Fulmar,0.0000,0 -"Goose, Red-breasted",0.0000,0 -"Gull, Glaucous-winged",0.0000,0 -"Gull, Yellow-legged",0.0000,0 -"Harrier, Hen",0.0000,0 -Jackdaw,0.0000,0 -"Kestrel, Lesser",0.0000,0 -"Lark, Calandra",0.0000,0 -"Martin, Sand",0.0000,0 -Moorhen,0.0000,0 -Nuthatch,0.0000,0 -"Petrel, Fea's",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Shearwater, Balearic",0.0000,0 -"Shearwater, Great",0.0000,0 -"Shearwater, Macaronesian",0.0000,0 -Smew,0.0000,0 -"Spotted, Great",0.0000,0 -"Swift, Little",0.0000,0 -"Tern, Caspian",0.0000,0 -"Thrush, Hermit",0.0000,0 -"Warbler, Blackpoll",0.0000,0 -"Warbler, Cetti's",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Savi's",0.0000,0 -"White, Great",0.0000,0 -"Yellowthroat, Common",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index babaa61035..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Chaffinch,0.1290,0.08824730508988667 -"Accentor, Alpine",0.0000,0 -Bittern,0.0000,0 -Blackbird,0.0000,0 -"Bluetail, Red-flanked",0.0000,0 -Bufflehead,0.0000,0 -"Bunting, Ortolan",0.0000,0 -"Chiffchaff, Iberian",0.0000,0 -Dotterel,0.0000,0 -"Dowitcher, Short-billed",0.0000,0 -Dunlin,0.0000,0 -"Egret, Snowy",0.0000,0 -Fieldfare,0.0000,0 -"Flycatcher, Taiga",0.0000,0 -Fulmar,0.0000,0 -"Goose, Red-breasted",0.0000,0 -"Gull, Glaucous-winged",0.0000,0 -"Gull, Yellow-legged",0.0000,0 -"Harrier, Hen",0.0000,0 -Jackdaw,0.0000,0 -"Kestrel, Lesser",0.0000,0 -"Lark, Calandra",0.0000,0 -"Martin, Sand",0.0000,0 -Moorhen,0.0000,0 -Nuthatch,0.0000,0 -"Petrel, Fea's",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Shearwater, Balearic",0.0000,0 -"Shearwater, Great",0.0000,0 -"Shearwater, Macaronesian",0.0000,0 -Smew,0.0000,0 -"Spotted, Great",0.0000,0 -"Swift, Little",0.0000,0 -"Tern, Caspian",0.0000,0 -"Thrush, Hermit",0.0000,0 -"Warbler, Blackpoll",0.0000,0 -"Warbler, Cetti's",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Savi's",0.0000,0 -"White, Great",0.0000,0 -"Yellowthroat, Common",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index babaa61035..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -Chaffinch,0.1290,0.08824730508988667 -"Accentor, Alpine",0.0000,0 -Bittern,0.0000,0 -Blackbird,0.0000,0 -"Bluetail, Red-flanked",0.0000,0 -Bufflehead,0.0000,0 -"Bunting, Ortolan",0.0000,0 -"Chiffchaff, Iberian",0.0000,0 -Dotterel,0.0000,0 -"Dowitcher, Short-billed",0.0000,0 -Dunlin,0.0000,0 -"Egret, Snowy",0.0000,0 -Fieldfare,0.0000,0 -"Flycatcher, Taiga",0.0000,0 -Fulmar,0.0000,0 -"Goose, Red-breasted",0.0000,0 -"Gull, Glaucous-winged",0.0000,0 -"Gull, Yellow-legged",0.0000,0 -"Harrier, Hen",0.0000,0 -Jackdaw,0.0000,0 -"Kestrel, Lesser",0.0000,0 -"Lark, Calandra",0.0000,0 -"Martin, Sand",0.0000,0 -Moorhen,0.0000,0 -Nuthatch,0.0000,0 -"Petrel, Fea's",0.0000,0 -"Scaup, Lesser",0.0000,0 -"Shearwater, Balearic",0.0000,0 -"Shearwater, Great",0.0000,0 -"Shearwater, Macaronesian",0.0000,0 -Smew,0.0000,0 -"Spotted, Great",0.0000,0 -"Swift, Little",0.0000,0 -"Tern, Caspian",0.0000,0 -"Thrush, Hermit",0.0000,0 -"Warbler, Blackpoll",0.0000,0 -"Warbler, Cetti's",0.0000,0 -"Warbler, Hooded",0.0000,0 -"Warbler, Savi's",0.0000,0 -"White, Great",0.0000,0 -"Yellowthroat, Common",0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index fd03339839..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-27,1.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 -2016-12-28,1.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 -2016-12-29,1.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,1.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.3333,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index d8b9a8d88a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" -2016-12,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 9b14168029..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" -"2016 Q4",0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 0f968e56a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" -2016,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 2831b2f07c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By CPU Hours (Core Count)" -"Thrush, Hermit",326.9898 -"Scaup, Lesser",185.9182 -"Gull, Yellow-legged",160.0000 -Nuthatch,112.0000 -"Gull, Glaucous-winged",108.0000 -"Bunting, Ortolan",96.0000 -Fieldfare,95.4997 -Smew,72.0000 -"Shearwater, Balearic",62.2411 -"White, Great",61.4597 -Dunlin,57.7053 -"Swift, Little",55.6816 -"Warbler, Cetti's",53.4612 -Chaffinch,48.6577 -"Warbler, Savi's",39.9999 -"Goose, Red-breasted",29.2166 -"Lark, Calandra",28.9482 -"Tern, Caspian",24.5939 -"Accentor, Alpine",23.2563 -Blackbird,20.0000 -Dotterel,20.0000 -"Yellowthroat, Common",16.0000 -"Bluetail, Red-flanked",13.8060 -"Egret, Snowy",12.0000 -"Kestrel, Lesser",12.0000 -"Warbler, Blackpoll",12.0000 -Jackdaw,11.8252 -"Flycatcher, Taiga",10.3886 -"Petrel, Fea's",10.0459 -"Martin, Sand",9.9744 -"Warbler, Hooded",8.3168 -Fulmar,7.5996 -"Chiffchaff, Iberian",4.5532 -Bittern,1.0000 -Bufflehead,1.0000 -"Dowitcher, Short-billed",1.0000 -"Harrier, Hen",1.0000 -Moorhen,1.0000 -"Shearwater, Great",1.0000 -"Shearwater, Macaronesian",1.0000 -"Spotted, Great",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 2831b2f07c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By CPU Hours (Core Count)" -"Thrush, Hermit",326.9898 -"Scaup, Lesser",185.9182 -"Gull, Yellow-legged",160.0000 -Nuthatch,112.0000 -"Gull, Glaucous-winged",108.0000 -"Bunting, Ortolan",96.0000 -Fieldfare,95.4997 -Smew,72.0000 -"Shearwater, Balearic",62.2411 -"White, Great",61.4597 -Dunlin,57.7053 -"Swift, Little",55.6816 -"Warbler, Cetti's",53.4612 -Chaffinch,48.6577 -"Warbler, Savi's",39.9999 -"Goose, Red-breasted",29.2166 -"Lark, Calandra",28.9482 -"Tern, Caspian",24.5939 -"Accentor, Alpine",23.2563 -Blackbird,20.0000 -Dotterel,20.0000 -"Yellowthroat, Common",16.0000 -"Bluetail, Red-flanked",13.8060 -"Egret, Snowy",12.0000 -"Kestrel, Lesser",12.0000 -"Warbler, Blackpoll",12.0000 -Jackdaw,11.8252 -"Flycatcher, Taiga",10.3886 -"Petrel, Fea's",10.0459 -"Martin, Sand",9.9744 -"Warbler, Hooded",8.3168 -Fulmar,7.5996 -"Chiffchaff, Iberian",4.5532 -Bittern,1.0000 -Bufflehead,1.0000 -"Dowitcher, Short-billed",1.0000 -"Harrier, Hen",1.0000 -Moorhen,1.0000 -"Shearwater, Great",1.0000 -"Shearwater, Macaronesian",1.0000 -"Spotted, Great",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 2831b2f07c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By CPU Hours (Core Count)" -"Thrush, Hermit",326.9898 -"Scaup, Lesser",185.9182 -"Gull, Yellow-legged",160.0000 -Nuthatch,112.0000 -"Gull, Glaucous-winged",108.0000 -"Bunting, Ortolan",96.0000 -Fieldfare,95.4997 -Smew,72.0000 -"Shearwater, Balearic",62.2411 -"White, Great",61.4597 -Dunlin,57.7053 -"Swift, Little",55.6816 -"Warbler, Cetti's",53.4612 -Chaffinch,48.6577 -"Warbler, Savi's",39.9999 -"Goose, Red-breasted",29.2166 -"Lark, Calandra",28.9482 -"Tern, Caspian",24.5939 -"Accentor, Alpine",23.2563 -Blackbird,20.0000 -Dotterel,20.0000 -"Yellowthroat, Common",16.0000 -"Bluetail, Red-flanked",13.8060 -"Egret, Snowy",12.0000 -"Kestrel, Lesser",12.0000 -"Warbler, Blackpoll",12.0000 -Jackdaw,11.8252 -"Flycatcher, Taiga",10.3886 -"Petrel, Fea's",10.0459 -"Martin, Sand",9.9744 -"Warbler, Hooded",8.3168 -Fulmar,7.5996 -"Chiffchaff, Iberian",4.5532 -Bittern,1.0000 -Bufflehead,1.0000 -"Dowitcher, Short-billed",1.0000 -"Harrier, Hen",1.0000 -Moorhen,1.0000 -"Shearwater, Great",1.0000 -"Shearwater, Macaronesian",1.0000 -"Spotted, Great",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 2831b2f07c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By CPU Hours (Core Count)" -"Thrush, Hermit",326.9898 -"Scaup, Lesser",185.9182 -"Gull, Yellow-legged",160.0000 -Nuthatch,112.0000 -"Gull, Glaucous-winged",108.0000 -"Bunting, Ortolan",96.0000 -Fieldfare,95.4997 -Smew,72.0000 -"Shearwater, Balearic",62.2411 -"White, Great",61.4597 -Dunlin,57.7053 -"Swift, Little",55.6816 -"Warbler, Cetti's",53.4612 -Chaffinch,48.6577 -"Warbler, Savi's",39.9999 -"Goose, Red-breasted",29.2166 -"Lark, Calandra",28.9482 -"Tern, Caspian",24.5939 -"Accentor, Alpine",23.2563 -Blackbird,20.0000 -Dotterel,20.0000 -"Yellowthroat, Common",16.0000 -"Bluetail, Red-flanked",13.8060 -"Egret, Snowy",12.0000 -"Kestrel, Lesser",12.0000 -"Warbler, Blackpoll",12.0000 -Jackdaw,11.8252 -"Flycatcher, Taiga",10.3886 -"Petrel, Fea's",10.0459 -"Martin, Sand",9.9744 -"Warbler, Hooded",8.3168 -Fulmar,7.5996 -"Chiffchaff, Iberian",4.5532 -Bittern,1.0000 -Bufflehead,1.0000 -"Dowitcher, Short-billed",1.0000 -"Harrier, Hen",1.0000 -Moorhen,1.0000 -"Shearwater, Great",1.0000 -"Shearwater, Macaronesian",1.0000 -"Spotted, Great",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 71d523e4bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,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,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,12.0000,0,0,12.0000,1.0000,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-24,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,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,12.0000,0,0,15.9210,1.0000,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,20.0000,1.0000,0,0,0,0,16.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,96.0000,0,110.0862,72.0000,0,0,0,35.8063,0,0,22.5565,15.2449,0,0,0,0,16.0000,0,0,0,0,1.0000,12.0000,0,0,8.0000,0,0,0,0,0,0,1.0000,0,0 -2016-12-28,0,186.6783,0,0,0,0,96.0000,0,87.9948,65.7129,0,0,0,55.7895,0,0,28.6309,15.8148,0,0,20.0000,0,16.0000,0,12.0000,12.0000,0,1.0000,12.0000,0,8.0000,8.0000,0,0,1.0000,0,0,1.0000,1.0000,0,0 -2016-12-29,0,186.5631,160.0000,112.0000,0,96.0000,95.9574,72.0000,62.0528,61.5476,0,0,56.0000,55.7895,40.0000,0,29.2190,23.6626,0,0,20.0000,0,16.0000,0,12.0000,12.0000,11.5552,7.4478,12.0000,5.0000,8.0000,7.2600,2.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0 -2016-12-30,320.0517,186.4757,160.0000,112.0000,108.0000,96.0000,95.8117,72.0000,30.0833,59.0825,65.8038,45.1553,53.8849,55.7895,39.9998,41.1565,27.0648,25.1498,0,20.0000,20.0000,16.0000,16.0000,0,12.0000,12.0000,11.8713,10.0119,2.3934,5.0000,8.2497,7.1202,11.1559,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,180.1552,0,112.0000,0,96.0000,95.0483,72.0000,16.5130,59.5816,95.7214,59.2199,1.0000,55.7250,40.0000,24.3207,41.0622,33.7236,23.4747,0,0,0,11.9114,12.0000,12.0000,0,11.8540,10.7516,1.0000,11.1429,8.8093,8.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000 -2017-01-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7ff15cee6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3905,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f0492198ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3905,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index bf88faf116..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Thrush, Hermit] Job Size: Weighted By CPU Hours (Core Count)","[Scaup, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Yellow-legged] Job Size: Weighted By CPU Hours (Core Count)","[Nuthatch] Job Size: Weighted By CPU Hours (Core Count)","[Gull, Glaucous-winged] Job Size: Weighted By CPU Hours (Core Count)","[Bunting, Ortolan] Job Size: Weighted By CPU Hours (Core Count)","[Fieldfare] Job Size: Weighted By CPU Hours (Core Count)","[Smew] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Balearic] Job Size: Weighted By CPU Hours (Core Count)","[White, Great] Job Size: Weighted By CPU Hours (Core Count)","[Dunlin] Job Size: Weighted By CPU Hours (Core Count)","[Swift, Little] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Cetti's] Job Size: Weighted By CPU Hours (Core Count)","[Chaffinch] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Savi's] Job Size: Weighted By CPU Hours (Core Count)","[Goose, Red-breasted] Job Size: Weighted By CPU Hours (Core Count)","[Lark, Calandra] Job Size: Weighted By CPU Hours (Core Count)","[Tern, Caspian] Job Size: Weighted By CPU Hours (Core Count)","[Accentor, Alpine] Job Size: Weighted By CPU Hours (Core Count)","[Blackbird] Job Size: Weighted By CPU Hours (Core Count)","[Dotterel] Job Size: Weighted By CPU Hours (Core Count)","[Yellowthroat, Common] Job Size: Weighted By CPU Hours (Core Count)","[Bluetail, Red-flanked] Job Size: Weighted By CPU Hours (Core Count)","[Egret, Snowy] Job Size: Weighted By CPU Hours (Core Count)","[Kestrel, Lesser] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Blackpoll] Job Size: Weighted By CPU Hours (Core Count)","[Jackdaw] Job Size: Weighted By CPU Hours (Core Count)","[Flycatcher, Taiga] Job Size: Weighted By CPU Hours (Core Count)","[Petrel, Fea's] Job Size: Weighted By CPU Hours (Core Count)","[Martin, Sand] Job Size: Weighted By CPU Hours (Core Count)","[Warbler, Hooded] Job Size: Weighted By CPU Hours (Core Count)","[Fulmar] Job Size: Weighted By CPU Hours (Core Count)","[Chiffchaff, Iberian] Job Size: Weighted By CPU Hours (Core Count)","[Bittern] Job Size: Weighted By CPU Hours (Core Count)","[Bufflehead] Job Size: Weighted By CPU Hours (Core Count)","[Dowitcher, Short-billed] Job Size: Weighted By CPU Hours (Core Count)","[Harrier, Hen] Job Size: Weighted By CPU Hours (Core Count)","[Moorhen] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Great] Job Size: Weighted By CPU Hours (Core Count)","[Shearwater, Macaronesian] Job Size: Weighted By CPU Hours (Core Count)","[Spotted, Great] Job Size: Weighted By CPU Hours (Core Count)" -2016,326.9898,185.9918,160.0000,112.0000,108.0000,96.0000,95.7775,72.0000,62.2411,61.6652,71.6000,57.5884,53.4612,48.1697,39.9999,28.7519,30.5247,24.8317,23.4747,20.0000,20.0000,16.0000,14.3905,12.0000,12.0000,12.0000,11.8512,10.4072,10.0459,9.9365,8.3644,7.5484,4.5982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,32.0000,160.0000,0,0,96.0000,81.6536,0,0,60.2453,47.3679,5.0000,0,51.2991,0,32.0142,14.3317,15.9990,22.8322,0,0,0,10.2343,12.0000,12.0000,0,10.7741,10.0543,0,12.0000,8.0000,8.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6c6f5b07df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By GPU Hours (GPU Count)" -Chaffinch,12.0000 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 6c6f5b07df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By GPU Hours (GPU Count)" -Chaffinch,12.0000 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 6c6f5b07df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By GPU Hours (GPU Count)" -Chaffinch,12.0000 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 6c6f5b07df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Weighted By GPU Hours (GPU Count)" -Chaffinch,12.0000 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index bf7a94f2e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-27,12.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 -2016-12-28,12.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 -2016-12-29,12.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3e46c255dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b18c5cbffa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 811df61f07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1d4d778b92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 09e9ca6b34..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 09e9ca6b34..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 09e9ca6b34..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Per Job: by PI" -parameters - -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/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b63a6c9e30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index e9a4d89d9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7e6d8f3b8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index c864b6cd37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by PI" -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","[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/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 1dd643cf93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -parameters - -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/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 1dd643cf93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -parameters - -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/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 1dd643cf93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -parameters - -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/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 1dd643cf93..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -parameters - -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/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index bdcbce68f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -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)","[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/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 39cdd700ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -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)","[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/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 0859fff7c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -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)","[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/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index c11f491dc4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by PI" -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)","[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/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index a428ee0418..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Tern, Caspian",214.25581950,2.0529931333004057 -Fulmar,71.34538580,15.241596218036447 -"Warbler, Savi's",52.74111111,37.29241880267786 -Fieldfare,44.54427399,7.275316793106799 -"Shearwater, Balearic",35.12637367,1.715055012550036 -"Gull, Yellow-legged",31.02180556,3.7428536858056267 -"Chiffchaff, Iberian",26.77900440,0.3093136712992847 -Dunlin,12.67979893,0.790292910753799 -"White, Great",9.21498611,3.9691829026306045 -"Petrel, Fea's",8.19083333,2.9697909176657884 -"Thrush, Hermit",6.67768519,0.98851049021015 -"Egret, Snowy",5.36508929,0.1678514684969954 -Jackdaw,4.87037458,0.44747381160758987 -"Kestrel, Lesser",4.41189394,0.6571458545780616 -"Shearwater, Macaronesian",3.92752472,0.08635320372070841 -"Warbler, Blackpoll",3.72481481,0.0007211928415468717 -"Accentor, Alpine",2.15222222,0.6988290975119311 -"Flycatcher, Taiga",2.05341236,0.02664920179778262 -Smew,1.98928571,0.9136179906052265 -"Bunting, Ortolan",1.88463542,0.5086144929601321 -"Warbler, Cetti's",0.74204509,0.007451042072537693 -"Bluetail, Red-flanked",0.68931866,0.18792064181649992 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Goose, Red-breasted",0.29952899,0.12719098377944033 -"Warbler, Hooded",0.20924174,0.04281469020992288 -Moorhen,0.20714974,0.015675479418422043 -"Gull, Glaucous-winged",0.09777778,0 -Bittern,0.08220238,0.011574714004551338 -"Lark, Calandra",0.06381908,0.014079147600380438 -Bufflehead,0.05740350,0.004593062258338075 -"Swift, Little",0.04034722,0.034861577990454876 -Chaffinch,0.03987455,0.015476567200768681 -"Martin, Sand",0.01747222,0.00747562396751627 -"Spotted, Great",0.01408333,0.0026920235401535287 -Blackbird,0.00105159,0.00005735857833479565 -Nuthatch,0.00059028,0.000142636082683637 -Dotterel,0.00027778,0 -"Scaup, Lesser",0.00016667,0.00003513641844631532 -"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 -"Shearwater, Great",0.00000000,0 -"Yellowthroat, Common",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index a428ee0418..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Tern, Caspian",214.25581950,2.0529931333004057 -Fulmar,71.34538580,15.241596218036447 -"Warbler, Savi's",52.74111111,37.29241880267786 -Fieldfare,44.54427399,7.275316793106799 -"Shearwater, Balearic",35.12637367,1.715055012550036 -"Gull, Yellow-legged",31.02180556,3.7428536858056267 -"Chiffchaff, Iberian",26.77900440,0.3093136712992847 -Dunlin,12.67979893,0.790292910753799 -"White, Great",9.21498611,3.9691829026306045 -"Petrel, Fea's",8.19083333,2.9697909176657884 -"Thrush, Hermit",6.67768519,0.98851049021015 -"Egret, Snowy",5.36508929,0.1678514684969954 -Jackdaw,4.87037458,0.44747381160758987 -"Kestrel, Lesser",4.41189394,0.6571458545780616 -"Shearwater, Macaronesian",3.92752472,0.08635320372070841 -"Warbler, Blackpoll",3.72481481,0.0007211928415468717 -"Accentor, Alpine",2.15222222,0.6988290975119311 -"Flycatcher, Taiga",2.05341236,0.02664920179778262 -Smew,1.98928571,0.9136179906052265 -"Bunting, Ortolan",1.88463542,0.5086144929601321 -"Warbler, Cetti's",0.74204509,0.007451042072537693 -"Bluetail, Red-flanked",0.68931866,0.18792064181649992 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Goose, Red-breasted",0.29952899,0.12719098377944033 -"Warbler, Hooded",0.20924174,0.04281469020992288 -Moorhen,0.20714974,0.015675479418422043 -"Gull, Glaucous-winged",0.09777778,0 -Bittern,0.08220238,0.011574714004551338 -"Lark, Calandra",0.06381908,0.014079147600380438 -Bufflehead,0.05740350,0.004593062258338075 -"Swift, Little",0.04034722,0.034861577990454876 -Chaffinch,0.03987455,0.015476567200768681 -"Martin, Sand",0.01747222,0.00747562396751627 -"Spotted, Great",0.01408333,0.0026920235401535287 -Blackbird,0.00105159,0.00005735857833479565 -Nuthatch,0.00059028,0.000142636082683637 -Dotterel,0.00027778,0 -"Scaup, Lesser",0.00016667,0.00003513641844631532 -"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 -"Shearwater, Great",0.00000000,0 -"Yellowthroat, Common",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index a428ee0418..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Tern, Caspian",214.25581950,2.0529931333004057 -Fulmar,71.34538580,15.241596218036447 -"Warbler, Savi's",52.74111111,37.29241880267786 -Fieldfare,44.54427399,7.275316793106799 -"Shearwater, Balearic",35.12637367,1.715055012550036 -"Gull, Yellow-legged",31.02180556,3.7428536858056267 -"Chiffchaff, Iberian",26.77900440,0.3093136712992847 -Dunlin,12.67979893,0.790292910753799 -"White, Great",9.21498611,3.9691829026306045 -"Petrel, Fea's",8.19083333,2.9697909176657884 -"Thrush, Hermit",6.67768519,0.98851049021015 -"Egret, Snowy",5.36508929,0.1678514684969954 -Jackdaw,4.87037458,0.44747381160758987 -"Kestrel, Lesser",4.41189394,0.6571458545780616 -"Shearwater, Macaronesian",3.92752472,0.08635320372070841 -"Warbler, Blackpoll",3.72481481,0.0007211928415468717 -"Accentor, Alpine",2.15222222,0.6988290975119311 -"Flycatcher, Taiga",2.05341236,0.02664920179778262 -Smew,1.98928571,0.9136179906052265 -"Bunting, Ortolan",1.88463542,0.5086144929601321 -"Warbler, Cetti's",0.74204509,0.007451042072537693 -"Bluetail, Red-flanked",0.68931866,0.18792064181649992 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Goose, Red-breasted",0.29952899,0.12719098377944033 -"Warbler, Hooded",0.20924174,0.04281469020992288 -Moorhen,0.20714974,0.015675479418422043 -"Gull, Glaucous-winged",0.09777778,0 -Bittern,0.08220238,0.011574714004551338 -"Lark, Calandra",0.06381908,0.014079147600380438 -Bufflehead,0.05740350,0.004593062258338075 -"Swift, Little",0.04034722,0.034861577990454876 -Chaffinch,0.03987455,0.015476567200768681 -"Martin, Sand",0.01747222,0.00747562396751627 -"Spotted, Great",0.01408333,0.0026920235401535287 -Blackbird,0.00105159,0.00005735857833479565 -Nuthatch,0.00059028,0.000142636082683637 -Dotterel,0.00027778,0 -"Scaup, Lesser",0.00016667,0.00003513641844631532 -"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 -"Shearwater, Great",0.00000000,0 -"Yellowthroat, Common",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index a428ee0418..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"Tern, Caspian",214.25581950,2.0529931333004057 -Fulmar,71.34538580,15.241596218036447 -"Warbler, Savi's",52.74111111,37.29241880267786 -Fieldfare,44.54427399,7.275316793106799 -"Shearwater, Balearic",35.12637367,1.715055012550036 -"Gull, Yellow-legged",31.02180556,3.7428536858056267 -"Chiffchaff, Iberian",26.77900440,0.3093136712992847 -Dunlin,12.67979893,0.790292910753799 -"White, Great",9.21498611,3.9691829026306045 -"Petrel, Fea's",8.19083333,2.9697909176657884 -"Thrush, Hermit",6.67768519,0.98851049021015 -"Egret, Snowy",5.36508929,0.1678514684969954 -Jackdaw,4.87037458,0.44747381160758987 -"Kestrel, Lesser",4.41189394,0.6571458545780616 -"Shearwater, Macaronesian",3.92752472,0.08635320372070841 -"Warbler, Blackpoll",3.72481481,0.0007211928415468717 -"Accentor, Alpine",2.15222222,0.6988290975119311 -"Flycatcher, Taiga",2.05341236,0.02664920179778262 -Smew,1.98928571,0.9136179906052265 -"Bunting, Ortolan",1.88463542,0.5086144929601321 -"Warbler, Cetti's",0.74204509,0.007451042072537693 -"Bluetail, Red-flanked",0.68931866,0.18792064181649992 -"Harrier, Hen",0.32390278,0.2312398274998169 -"Goose, Red-breasted",0.29952899,0.12719098377944033 -"Warbler, Hooded",0.20924174,0.04281469020992288 -Moorhen,0.20714974,0.015675479418422043 -"Gull, Glaucous-winged",0.09777778,0 -Bittern,0.08220238,0.011574714004551338 -"Lark, Calandra",0.06381908,0.014079147600380438 -Bufflehead,0.05740350,0.004593062258338075 -"Swift, Little",0.04034722,0.034861577990454876 -Chaffinch,0.03987455,0.015476567200768681 -"Martin, Sand",0.01747222,0.00747562396751627 -"Spotted, Great",0.01408333,0.0026920235401535287 -Blackbird,0.00105159,0.00005735857833479565 -Nuthatch,0.00059028,0.000142636082683637 -Dotterel,0.00027778,0 -"Scaup, Lesser",0.00016667,0.00003513641844631532 -"Dowitcher, Short-billed",0.00012566,0.000016471282949086855 -"Shearwater, Great",0.00000000,0 -"Yellowthroat, Common",0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index b6c55758f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait 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,9.33222222,0,0,0.00027778,0,0,0,0,0,0,0,0,0 -2016-12-23,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-24,0.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,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-25,0.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,36.96185185,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-26,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-27,0.00055556,273.48105556,0,103.71148148,57.59064815,0,0,0,76.08611111,50.82250000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0.00288889,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0 -2016-12-28,0.00000000,280.72700000,0,108.01750000,80.35419753,0,0,0,36.87611111,0.00000000,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0,0,1.68000000,0,0,0.46633333,0.02977924,0,0,7.07458333,0.07195578,0,0.00000000,0,0,0,0,0.00027778,0.00018519,0,0.00000000,0 -2016-12-29,150.26646605,12.05893162,0.00166667,41.77958333,22.19675214,25.72861111,0.00444444,0,5.85819444,0.00000000,0,0,0.87133838,0.00000000,0,0.00000000,0,7.73980283,1.98928571,3.47907407,0.79222222,4.46097222,0.01788889,0,0.13063131,0.04237662,0,0,1.33660948,0.04464331,0,0.00000000,0.00000000,0,0,0.00062500,0.00000000,0.00000000,0,0.00000000,0 -2016-12-30,224.39559552,55.29648148,105.48055556,0.00222222,31.96192488,0.00000000,18.02518519,13.00438580,14.90583333,5.14571429,6.67768519,0,5.77518519,0.38944444,2.58369031,0.00000000,0,1.39468892,0.00000000,1.47605556,0.84532650,0.00000000,0.42590741,0.59636111,0.31423611,0.32754774,0.09777778,0.17850082,0.02575712,0.13344771,0.05370370,0.00000000,0.00000000,0.01437500,0.00105159,0.00055556,0.00000000,0.00020833,0.00009921,0.00000000,0.00000000 -2016-12-31,4.34280303,351.74604167,0.00000000,0.00076389,33.49272778,0,27.32576747,3.35838889,0.95052083,0.00000000,0.00000000,0.02019097,0.00000000,0.00000000,7.36601918,0,2.15222222,2.90176261,0.00000000,0.07819444,0.55391509,0.00626263,0.00000000,0.33598291,0.26094444,0.35169374,0,0.02144676,0.03724051,0.01543544,0.00000000,0.00027778,0.02496032,0.01388889,0,0.00000000,0,0.00013889,0.00010913,0,0 -2017-01-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 6369dd72af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait Hours: Per Job" -2016-12,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.68931866,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000,0.00000000 -2017-01,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index aad85fbe0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait Hours: Per Job" -"2016 Q4",214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.68931866,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000,0.00000000 -"2017 Q1",0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index c7bc4611a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Tern, Caspian] Wait Hours: Per Job","[Fulmar] Wait Hours: Per Job","[Warbler, Savi's] Wait Hours: Per Job","[Fieldfare] Wait Hours: Per Job","[Shearwater, Balearic] Wait Hours: Per Job","[Gull, Yellow-legged] Wait Hours: Per Job","[Chiffchaff, Iberian] Wait Hours: Per Job","[Dunlin] Wait Hours: Per Job","[White, Great] Wait Hours: Per Job","[Petrel, Fea's] Wait Hours: Per Job","[Thrush, Hermit] Wait Hours: Per Job","[Egret, Snowy] Wait Hours: Per Job","[Jackdaw] Wait Hours: Per Job","[Kestrel, Lesser] Wait Hours: Per Job","[Shearwater, Macaronesian] Wait Hours: Per Job","[Warbler, Blackpoll] Wait Hours: Per Job","[Accentor, Alpine] Wait Hours: Per Job","[Flycatcher, Taiga] Wait Hours: Per Job","[Smew] Wait Hours: Per Job","[Bunting, Ortolan] Wait Hours: Per Job","[Warbler, Cetti's] Wait Hours: Per Job","[Bluetail, Red-flanked] Wait Hours: Per Job","[Harrier, Hen] Wait Hours: Per Job","[Goose, Red-breasted] Wait Hours: Per Job","[Warbler, Hooded] Wait Hours: Per Job","[Moorhen] Wait Hours: Per Job","[Gull, Glaucous-winged] Wait Hours: Per Job","[Bittern] Wait Hours: Per Job","[Lark, Calandra] Wait Hours: Per Job","[Bufflehead] Wait Hours: Per Job","[Swift, Little] Wait Hours: Per Job","[Chaffinch] Wait Hours: Per Job","[Martin, Sand] Wait Hours: Per Job","[Spotted, Great] Wait Hours: Per Job","[Blackbird] Wait Hours: Per Job","[Nuthatch] Wait Hours: Per Job","[Dotterel] Wait Hours: Per Job","[Scaup, Lesser] Wait Hours: Per Job","[Dowitcher, Short-billed] Wait Hours: Per Job","[Shearwater, Great] Wait Hours: Per Job","[Yellowthroat, Common] Wait Hours: Per Job" -2016,214.53698637,71.34538580,52.74111111,60.67485243,35.12637367,25.72861111,26.77900440,12.03978611,11.80001852,8.19083333,6.67768519,0.02019097,4.87037458,4.41189394,3.92752472,3.72481481,2.15222222,2.24032120,1.98928571,1.51085648,0.74204509,0.68931866,0.32390278,0.44919082,0.26162835,0.22153436,0.09777778,0.13753019,0.06199041,0.06002018,0.05370370,0.00023148,0.02184028,0.01408333,0.00105159,0.00059028,0.00027778,0.00017974,0.00010417,0.00000000,0.00000000 -2017,0.00666667,0.00000000,0,1.52939815,0,36.31500000,0.00000000,13.14023981,1.45988889,0,0,5.48065465,0.00000000,0.00000000,0,0,0.00000000,1.47548426,0,3.00597222,0,0.00000000,0,0.00020531,0.01934028,0.03615605,0,0.00010305,0.09531934,0.01760234,0.00027778,0.04938889,0.00000000,0,0,0,0,0.00013889,0.00016865,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index ae1368a45f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Shearwater, Great",72.00694444, -"Bluetail, Red-flanked",52.33125262, -Bufflehead,49.85089556, -Dotterel,48.00666667, -"Warbler, Blackpoll",44.13648148, -"Kestrel, Lesser",39.37916667, -Fieldfare,37.79727273, -Smew,36.49007937, -"Scaup, Lesser",26.34404444, -"Accentor, Alpine",25.49490741, -Moorhen,25.48654262, -"Warbler, Savi's",25.17486111, -"Warbler, Hooded",24.23206456, -Fulmar,21.20474151, -"White, Great",18.55493056, -Jackdaw,17.27322391, -"Petrel, Fea's",16.76537037, -Nuthatch,15.78250000, -"Thrush, Hermit",15.43750000,2.949516142225878 -Chaffinch,12.69807348,1.9501880028878633 -"Bunting, Ortolan",12.67826389, -"Shearwater, Macaronesian",8.59051583, -"Chiffchaff, Iberian",7.94699670,0.252707620848999 -"Shearwater, Balearic",7.84637557,0.6422820715080719 -"Martin, Sand",7.02769444,1.7557857088278381 -"Spotted, Great",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.412736659063767 -"Swift, Little",4.58416667,1.0571325984155044 -"Gull, Yellow-legged",4.51402778,1.3866381241776238 -"Egret, Snowy",2.10733760,0.04730850999433886 -"Tern, Caspian",1.61309706,0.16764615169441738 -"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 -Bittern,0.88155664,0.09909785167735996 -"Goose, Red-breasted",0.81574879,0.33900408606509713 -"Lark, Calandra",0.55186616,0.029985935034615736 -"Flycatcher, Taiga",0.29997993,0.003221245083552797 -"Gull, Glaucous-winged",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -Blackbird,0.08049603,0.022331879009996006 -"Yellowthroat, Common",0.06500000,0 -"Warbler, Cetti's",0.02840866,0.006969739306507408 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 39e75564b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Shearwater, Great",72.00694444,0 -"Bluetail, Red-flanked",52.33125262, -Bufflehead,49.85089556,1.1100595034642202 -Dotterel,48.00666667,0 -"Warbler, Blackpoll",44.13648148,3.8863777173028686 -"Kestrel, Lesser",39.37916667,3.5074678840012607 -Fieldfare,37.79727273,4.7120666811720895 -Smew,36.49007937,2.407916402194818 -"Scaup, Lesser",26.34404444,6.8507338965077675 -"Accentor, Alpine",25.49490741, -Moorhen,25.48654262,0.09521527865289223 -"Warbler, Savi's",25.17486111,17.80092216999551 -"Warbler, Hooded",24.23206456,3.046402847031802 -Fulmar,21.20474151,2.519140001248213 -"White, Great",18.55493056,4.578065909633193 -Jackdaw,17.27322391,1.2812633375632778 -"Petrel, Fea's",16.76537037,3.911305555603074 -Nuthatch,15.78250000,1.4182317241819407 -"Thrush, Hermit",15.43750000,9.334819660458281 -Chaffinch,12.69807348,7.9017703608261565 -"Bunting, Ortolan",12.67826389,0.43082354975761517 -"Shearwater, Macaronesian",8.59051583,0.027937647321332644 -"Chiffchaff, Iberian",7.94699670,0.4591933087881705 -"Shearwater, Balearic",7.84637557,1.3319104362573686 -"Martin, Sand",7.02769444,2.431694700689441 -"Spotted, Great",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.9381499596292342 -"Swift, Little",4.58416667,1.606624250847252 -"Gull, Yellow-legged",4.51402778,3.1765790052054 -"Egret, Snowy",2.10733760,0.04730850999433886 -"Tern, Caspian",1.61309706,0.3572919275210631 -"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 -Bittern,0.88155664,0.09909785167735996 -"Goose, Red-breasted",0.81574879,0.33900408606509713 -"Lark, Calandra",0.55186616,0.0548134687339129 -"Flycatcher, Taiga",0.29997993,0.00460726351698731 -"Gull, Glaucous-winged",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -Blackbird,0.08049603,0.022331879009996006 -"Yellowthroat, Common",0.06500000,0 -"Warbler, Cetti's",0.02840866,0.007661173777721356 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 39e75564b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Shearwater, Great",72.00694444,0 -"Bluetail, Red-flanked",52.33125262, -Bufflehead,49.85089556,1.1100595034642202 -Dotterel,48.00666667,0 -"Warbler, Blackpoll",44.13648148,3.8863777173028686 -"Kestrel, Lesser",39.37916667,3.5074678840012607 -Fieldfare,37.79727273,4.7120666811720895 -Smew,36.49007937,2.407916402194818 -"Scaup, Lesser",26.34404444,6.8507338965077675 -"Accentor, Alpine",25.49490741, -Moorhen,25.48654262,0.09521527865289223 -"Warbler, Savi's",25.17486111,17.80092216999551 -"Warbler, Hooded",24.23206456,3.046402847031802 -Fulmar,21.20474151,2.519140001248213 -"White, Great",18.55493056,4.578065909633193 -Jackdaw,17.27322391,1.2812633375632778 -"Petrel, Fea's",16.76537037,3.911305555603074 -Nuthatch,15.78250000,1.4182317241819407 -"Thrush, Hermit",15.43750000,9.334819660458281 -Chaffinch,12.69807348,7.9017703608261565 -"Bunting, Ortolan",12.67826389,0.43082354975761517 -"Shearwater, Macaronesian",8.59051583,0.027937647321332644 -"Chiffchaff, Iberian",7.94699670,0.4591933087881705 -"Shearwater, Balearic",7.84637557,1.3319104362573686 -"Martin, Sand",7.02769444,2.431694700689441 -"Spotted, Great",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.9381499596292342 -"Swift, Little",4.58416667,1.606624250847252 -"Gull, Yellow-legged",4.51402778,3.1765790052054 -"Egret, Snowy",2.10733760,0.04730850999433886 -"Tern, Caspian",1.61309706,0.3572919275210631 -"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 -Bittern,0.88155664,0.09909785167735996 -"Goose, Red-breasted",0.81574879,0.33900408606509713 -"Lark, Calandra",0.55186616,0.0548134687339129 -"Flycatcher, Taiga",0.29997993,0.00460726351698731 -"Gull, Glaucous-winged",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -Blackbird,0.08049603,0.022331879009996006 -"Yellowthroat, Common",0.06500000,0 -"Warbler, Cetti's",0.02840866,0.007661173777721356 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 39e75564b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"Shearwater, Great",72.00694444,0 -"Bluetail, Red-flanked",52.33125262, -Bufflehead,49.85089556,1.1100595034642202 -Dotterel,48.00666667,0 -"Warbler, Blackpoll",44.13648148,3.8863777173028686 -"Kestrel, Lesser",39.37916667,3.5074678840012607 -Fieldfare,37.79727273,4.7120666811720895 -Smew,36.49007937,2.407916402194818 -"Scaup, Lesser",26.34404444,6.8507338965077675 -"Accentor, Alpine",25.49490741, -Moorhen,25.48654262,0.09521527865289223 -"Warbler, Savi's",25.17486111,17.80092216999551 -"Warbler, Hooded",24.23206456,3.046402847031802 -Fulmar,21.20474151,2.519140001248213 -"White, Great",18.55493056,4.578065909633193 -Jackdaw,17.27322391,1.2812633375632778 -"Petrel, Fea's",16.76537037,3.911305555603074 -Nuthatch,15.78250000,1.4182317241819407 -"Thrush, Hermit",15.43750000,9.334819660458281 -Chaffinch,12.69807348,7.9017703608261565 -"Bunting, Ortolan",12.67826389,0.43082354975761517 -"Shearwater, Macaronesian",8.59051583,0.027937647321332644 -"Chiffchaff, Iberian",7.94699670,0.4591933087881705 -"Shearwater, Balearic",7.84637557,1.3319104362573686 -"Martin, Sand",7.02769444,2.431694700689441 -"Spotted, Great",5.98691667,0.9781127830854605 -"Harrier, Hen",5.04208333,1.9381499596292342 -"Swift, Little",4.58416667,1.606624250847252 -"Gull, Yellow-legged",4.51402778,3.1765790052054 -"Egret, Snowy",2.10733760,0.04730850999433886 -"Tern, Caspian",1.61309706,0.3572919275210631 -"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 -Bittern,0.88155664,0.09909785167735996 -"Goose, Red-breasted",0.81574879,0.33900408606509713 -"Lark, Calandra",0.55186616,0.0548134687339129 -"Flycatcher, Taiga",0.29997993,0.00460726351698731 -"Gull, Glaucous-winged",0.26055556,0 -Dunlin,0.18926081,0.027954377835160745 -Blackbird,0.08049603,0.022331879009996006 -"Yellowthroat, Common",0.06500000,0 -"Warbler, Cetti's",0.02840866,0.007661173777721356 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 27a7c4e4e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall 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,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.94166667,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,24.00000000,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,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,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,8.12694444,0,0,0,0,0,0 -2016-12-26,0,2.70416667,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,24.00000000,0,0,0,0,0,0 -2016-12-27,4.72138889,24.00000000,0,0,0,0,12.98407407,0,0,0,0,0,0,13.96533333,20.66416667,0,19.90555556,0,0,13.89986111,0,0,0,20.49703704,0,0,0,0,0,0,8.71606481,0,0,0,8.23638889,3.21666667,0,0,0,0,0 -2016-12-28,24.00000000,9.02631944,13.35268330,4.70055556,5.03972222,3.11533951,15.23050000,0,17.86320988,0,5.01598392,0,8.78983333,17.63833333,18.38902778,0,24.00000000,0,0,24.00000000,0,0,0,14.10152778,0,0,0,0,0,0,24.00000000,0,0,0,19.32140278,24.00000000,0,0,0,0,0 -2016-12-29,24.00000000,23.88776389,16.60273286,24.00000000,24.00000000,24.00000000,23.40096618,11.55011905,24.00000000,0,13.10756221,18.97472222,10.54645833,7.73178763,18.61000000,4.34454545,24.00000000,3.66944444,0,24.00000000,6.36972222,0,3.62000000,14.25424444,10.40083333,0,2.01966667,0,6.48888889,0,7.81509259,0,0,0,11.06298354,1.17898003,0,0,0,0,1.92694444 -2016-12-30,19.28555556,18.92284722,21.71949405,19.30611111,15.09675926,14.55335859,18.93428571,21.78416667,16.65664530,0,13.31263065,12.00027778,13.41648148,7.32452206,11.90376984,9.68358547,11.72422222,10.28048611,9.78120370,24.00000000,7.97656250,4.25015531,16.84687500,4.10732350,13.60638889,3.48631944,4.10559722,1.45518519,2.51750000,0,0.80124024,0.97252976,1.58977533,0.48461111,0.27513871,0.34371670,0.26055556,0.14245370,0.08049603,0.06500000,0.03474935 -2016-12-31,0,23.17923611,10.83064379,0,0,24.00000000,11.12489583,22.09055556,4.88585470,16.61129630,12.53390738,7.37444444,10.97790404,14.97629630,8.30273148,15.93161523,1.92791667,7.33458333,16.96888889,8.03958333,10.17785714,5.54019436,7.28581633,1.97834003,6.47384921,7.65398148,8.63138889,4.84500000,0,0.19661458,5.00544444,0.97299603,1.07971065,1.49565171,0.32450010,0.38194742,0,0.14844444,0,0,0.01479010 -2017-01-01,0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 05be93a7d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall Hours: Per Job" -2016-12,72.00694444,42.39165094,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 -2017-01,0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9ed33072b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall Hours: Per Job" -"2016 Q4",72.00694444,42.39165094,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 -"2017 Q1",0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7c29e0c227..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Shearwater, Great] Wall Hours: Per Job","[Bluetail, Red-flanked] Wall Hours: Per Job","[Bufflehead] Wall Hours: Per Job","[Dotterel] Wall Hours: Per Job","[Warbler, Blackpoll] Wall Hours: Per Job","[Kestrel, Lesser] Wall Hours: Per Job","[Fieldfare] Wall Hours: Per Job","[Smew] Wall Hours: Per Job","[Scaup, Lesser] Wall Hours: Per Job","[Accentor, Alpine] Wall Hours: Per Job","[Moorhen] Wall Hours: Per Job","[Warbler, Savi's] Wall Hours: Per Job","[Warbler, Hooded] Wall Hours: Per Job","[Fulmar] Wall Hours: Per Job","[White, Great] Wall Hours: Per Job","[Jackdaw] Wall Hours: Per Job","[Petrel, Fea's] Wall Hours: Per Job","[Nuthatch] Wall Hours: Per Job","[Thrush, Hermit] Wall Hours: Per Job","[Chaffinch] Wall Hours: Per Job","[Bunting, Ortolan] Wall Hours: Per Job","[Shearwater, Macaronesian] Wall Hours: Per Job","[Chiffchaff, Iberian] Wall Hours: Per Job","[Shearwater, Balearic] Wall Hours: Per Job","[Martin, Sand] Wall Hours: Per Job","[Spotted, Great] Wall Hours: Per Job","[Harrier, Hen] Wall Hours: Per Job","[Swift, Little] Wall Hours: Per Job","[Gull, Yellow-legged] Wall Hours: Per Job","[Egret, Snowy] Wall Hours: Per Job","[Tern, Caspian] Wall Hours: Per Job","[Dowitcher, Short-billed] Wall Hours: Per Job","[Bittern] Wall Hours: Per Job","[Goose, Red-breasted] Wall Hours: Per Job","[Lark, Calandra] Wall Hours: Per Job","[Flycatcher, Taiga] Wall Hours: Per Job","[Gull, Glaucous-winged] Wall Hours: Per Job","[Dunlin] Wall Hours: Per Job","[Blackbird] Wall Hours: Per Job","[Yellowthroat, Common] Wall Hours: Per Job","[Warbler, Cetti's] Wall Hours: Per Job" -2016,72.00694444,42.39165094,48.78758939,48.00666667,44.13648148,38.92045455,50.08717014,36.49007937,38.63655229,16.61129630,23.01874399,25.17486111,26.76558429,19.49116512,20.98942593,16.77843434,16.76537037,15.78250000,15.43750000,55.46393519,12.84722222,8.59051583,7.77245050,7.84637557,8.66552083,5.98691667,5.04208333,4.68518519,9.00638889,0.19661458,1.58470254,0.97276290,1.45671498,1.05606884,0.49420671,0.37457084,0.26055556,0.14305278,0.08049603,0.06500000,0.02840866 -2017,0,11.20848700,13.34534574,0,0,5.04583333,3.01452778,0,0.22246528,8.88361111,11.50582962,0,8.59888889,17.62535714,6.25080247,6.53122222,0,0,0,2.25395062,6.95507937,0,17.62916667,0,0.47638889,0,0,4.28111111,0.02166667,2.11436355,11.62486111,0.96969246,0.02809588,0.30830000,1.46437811,0.06690347,0,0.22250400,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 51f2ad05f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"User Expansion Factor" -"Tern, Caspian",119.8923 -Dunlin,69.2703 -"Gull, Yellow-legged",7.8723 -"Flycatcher, Taiga",7.6469 -"Warbler, Cetti's",6.8756 -"Chiffchaff, Iberian",4.3697 -Fulmar,4.3693 -"Shearwater, Balearic",3.8702 -"Egret, Snowy",3.5459 -Fieldfare,2.2702 -"Warbler, Savi's",2.0475 -"White, Great",1.5228 -"Petrel, Fea's",1.4886 -"Shearwater, Macaronesian",1.4572 -"Goose, Red-breasted",1.4161 -"Gull, Glaucous-winged",1.3753 -"Thrush, Hermit",1.3348 -Jackdaw,1.2820 -"Bunting, Ortolan",1.1487 -"Kestrel, Lesser",1.1120 -"Lark, Calandra",1.1103 -Bittern,1.0932 -"Accentor, Alpine",1.0844 -"Warbler, Blackpoll",1.0844 -"Harrier, Hen",1.0642 -Smew,1.0545 -"Swift, Little",1.0148 -"Bluetail, Red-flanked",1.0132 -Blackbird,1.0131 -"Warbler, Hooded",1.0086 -Moorhen,1.0081 -"Martin, Sand",1.0025 -"Spotted, Great",1.0024 -Bufflehead,1.0012 -Chaffinch,1.0010 -"Dowitcher, Short-billed",1.0001 -Dotterel,1.0000 -Nuthatch,1.0000 -"Scaup, Lesser",1.0000 -"Shearwater, Great",1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 51f2ad05f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"User Expansion Factor" -"Tern, Caspian",119.8923 -Dunlin,69.2703 -"Gull, Yellow-legged",7.8723 -"Flycatcher, Taiga",7.6469 -"Warbler, Cetti's",6.8756 -"Chiffchaff, Iberian",4.3697 -Fulmar,4.3693 -"Shearwater, Balearic",3.8702 -"Egret, Snowy",3.5459 -Fieldfare,2.2702 -"Warbler, Savi's",2.0475 -"White, Great",1.5228 -"Petrel, Fea's",1.4886 -"Shearwater, Macaronesian",1.4572 -"Goose, Red-breasted",1.4161 -"Gull, Glaucous-winged",1.3753 -"Thrush, Hermit",1.3348 -Jackdaw,1.2820 -"Bunting, Ortolan",1.1487 -"Kestrel, Lesser",1.1120 -"Lark, Calandra",1.1103 -Bittern,1.0932 -"Accentor, Alpine",1.0844 -"Warbler, Blackpoll",1.0844 -"Harrier, Hen",1.0642 -Smew,1.0545 -"Swift, Little",1.0148 -"Bluetail, Red-flanked",1.0132 -Blackbird,1.0131 -"Warbler, Hooded",1.0086 -Moorhen,1.0081 -"Martin, Sand",1.0025 -"Spotted, Great",1.0024 -Bufflehead,1.0012 -Chaffinch,1.0010 -"Dowitcher, Short-billed",1.0001 -Dotterel,1.0000 -Nuthatch,1.0000 -"Scaup, Lesser",1.0000 -"Shearwater, Great",1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 51f2ad05f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"User Expansion Factor" -"Tern, Caspian",119.8923 -Dunlin,69.2703 -"Gull, Yellow-legged",7.8723 -"Flycatcher, Taiga",7.6469 -"Warbler, Cetti's",6.8756 -"Chiffchaff, Iberian",4.3697 -Fulmar,4.3693 -"Shearwater, Balearic",3.8702 -"Egret, Snowy",3.5459 -Fieldfare,2.2702 -"Warbler, Savi's",2.0475 -"White, Great",1.5228 -"Petrel, Fea's",1.4886 -"Shearwater, Macaronesian",1.4572 -"Goose, Red-breasted",1.4161 -"Gull, Glaucous-winged",1.3753 -"Thrush, Hermit",1.3348 -Jackdaw,1.2820 -"Bunting, Ortolan",1.1487 -"Kestrel, Lesser",1.1120 -"Lark, Calandra",1.1103 -Bittern,1.0932 -"Accentor, Alpine",1.0844 -"Warbler, Blackpoll",1.0844 -"Harrier, Hen",1.0642 -Smew,1.0545 -"Swift, Little",1.0148 -"Bluetail, Red-flanked",1.0132 -Blackbird,1.0131 -"Warbler, Hooded",1.0086 -Moorhen,1.0081 -"Martin, Sand",1.0025 -"Spotted, Great",1.0024 -Bufflehead,1.0012 -Chaffinch,1.0010 -"Dowitcher, Short-billed",1.0001 -Dotterel,1.0000 -Nuthatch,1.0000 -"Scaup, Lesser",1.0000 -"Shearwater, Great",1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 51f2ad05f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"User Expansion Factor" -"Tern, Caspian",119.8923 -Dunlin,69.2703 -"Gull, Yellow-legged",7.8723 -"Flycatcher, Taiga",7.6469 -"Warbler, Cetti's",6.8756 -"Chiffchaff, Iberian",4.3697 -Fulmar,4.3693 -"Shearwater, Balearic",3.8702 -"Egret, Snowy",3.5459 -Fieldfare,2.2702 -"Warbler, Savi's",2.0475 -"White, Great",1.5228 -"Petrel, Fea's",1.4886 -"Shearwater, Macaronesian",1.4572 -"Goose, Red-breasted",1.4161 -"Gull, Glaucous-winged",1.3753 -"Thrush, Hermit",1.3348 -Jackdaw,1.2820 -"Bunting, Ortolan",1.1487 -"Kestrel, Lesser",1.1120 -"Lark, Calandra",1.1103 -Bittern,1.0932 -"Accentor, Alpine",1.0844 -"Warbler, Blackpoll",1.0844 -"Harrier, Hen",1.0642 -Smew,1.0545 -"Swift, Little",1.0148 -"Bluetail, Red-flanked",1.0132 -Blackbird,1.0131 -"Warbler, Hooded",1.0086 -Moorhen,1.0081 -"Martin, Sand",1.0025 -"Spotted, Great",1.0024 -Bufflehead,1.0012 -Chaffinch,1.0010 -"Dowitcher, Short-billed",1.0001 -Dotterel,1.0000 -Nuthatch,1.0000 -"Scaup, Lesser",1.0000 -"Shearwater, Great",1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index d0aff40064..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 -2016-12-23,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 -2016-12-24,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 -2016-12-25,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 -2016-12-26,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2735,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,1.0000,0,0,0,0,0,0 -2016-12-27,1.0280,0,0,1.0000,0,0,4.9152,1.9856,0,2.5533,0,2.0864,1.7260,0,0,0,0,0,0,0,1.2277,0,0,0,0,0,0,1.0000,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0 -2016-12-28,1.0102,0,0,1.0000,0,0,4.8768,2.1159,0,2.5716,0,1.8919,1.7260,0,0,0,0,0,0,1.1095,1.0845,0,0,1.0866,0,0,0,1.0025,0,1.0107,1.0010,0,0,1.0013,1.0000,0,1.0000,0,1.0000,1.0000,0 -2016-12-29,7.2405,0,3.8567,3.7347,1.0394,1.0001,3.0140,2.7029,0,2.3072,1.0000,1.6613,1.7260,0,0,0,0,1.0436,1.2430,1.1207,1.1039,0,0,1.0866,1.0011,1.0379,0,1.0228,0,1.0095,1.0011,1.0000,0,1.0011,1.0000,0,1.0000,1.0000,1.0000,1.0000,0 -2016-12-30,244.8450,82.2879,3.8567,5.1450,5.9358,1.8025,2.9767,5.5485,0,2.2649,3.1975,1.5996,1.4078,1.1806,2.1933,1.3753,1.4992,1.4225,1.1539,1.1173,1.0974,1.1123,0,1.0801,1.0787,1.0500,1.0094,1.0292,1.0131,1.0076,1.0022,1.0000,1.0041,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.4459,30.3841,0,8.2387,38.4517,4.7123,7.3737,13.7412,1.0162,1.9038,1.0000,1.2381,1.2386,1.6099,1.2202,0,1.1213,1.1163,1.0513,1.0205,1.1361,1.0199,1.0760,0,1.0006,1.1462,1.0172,1.0100,0,1.0119,1.0187,1.0039,1.0018,1.0012,1.0000,1.0001,0,1.0000,1.0000,0,0 -2017-01-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 58455365bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" -2016-12,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0149,1.0131,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 36608a2b07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" -"2016 Q4",121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0149,1.0131,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 73da6e6fb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Tern, Caspian] User Expansion Factor","[Dunlin] User Expansion Factor","[Gull, Yellow-legged] User Expansion Factor","[Flycatcher, Taiga] User Expansion Factor","[Warbler, Cetti's] User Expansion Factor","[Chiffchaff, Iberian] User Expansion Factor","[Fulmar] User Expansion Factor","[Shearwater, Balearic] User Expansion Factor","[Egret, Snowy] User Expansion Factor","[Fieldfare] User Expansion Factor","[Warbler, Savi's] User Expansion Factor","[White, Great] User Expansion Factor","[Petrel, Fea's] User Expansion Factor","[Shearwater, Macaronesian] User Expansion Factor","[Goose, Red-breasted] User Expansion Factor","[Gull, Glaucous-winged] User Expansion Factor","[Thrush, Hermit] User Expansion Factor","[Jackdaw] User Expansion Factor","[Bunting, Ortolan] User Expansion Factor","[Kestrel, Lesser] User Expansion Factor","[Lark, Calandra] User Expansion Factor","[Bittern] User Expansion Factor","[Accentor, Alpine] User Expansion Factor","[Warbler, Blackpoll] User Expansion Factor","[Harrier, Hen] User Expansion Factor","[Smew] User Expansion Factor","[Swift, Little] User Expansion Factor","[Bluetail, Red-flanked] User Expansion Factor","[Blackbird] User Expansion Factor","[Warbler, Hooded] User Expansion Factor","[Moorhen] User Expansion Factor","[Martin, Sand] User Expansion Factor","[Spotted, Great] User Expansion Factor","[Bufflehead] User Expansion Factor","[Chaffinch] User Expansion Factor","[Dowitcher, Short-billed] User Expansion Factor","[Dotterel] User Expansion Factor","[Nuthatch] User Expansion Factor","[Scaup, Lesser] User Expansion Factor","[Shearwater, Great] User Expansion Factor","[Yellowthroat, Common] User Expansion Factor" -2016,121.8812,73.4926,3.8567,6.8195,6.8756,4.4454,3.8878,3.8702,1.0162,2.2773,2.0475,1.5839,1.4886,1.4572,1.4765,1.3753,1.3348,1.2872,1.1175,1.1131,1.1171,1.0944,1.0760,1.0844,1.0642,1.0545,1.0160,1.0149,1.0131,1.0095,1.0080,1.0025,1.0024,1.0011,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,4.1617,66.3373,1677.0769,21.4660,0,1.0001,9.8468,0,3.5509,1.9022,0,1.1298,0,0,1.0524,0,0,1.1040,1.2473,1.0205,1.0606,1.0037,1.1002,0,0,0,1.0001,1.0058,0,1.0029,1.0088,1.0000,0,1.0013,1.0061,1.0002,0,0,1.0006,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv deleted file mode 100644 index b8870b2ad2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Ended" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv deleted file mode 100644 index b8870b2ad2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Ended" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b8870b2ad2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Ended" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv deleted file mode 100644 index b8870b2ad2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Ended" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 5cfc83369a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" -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 -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,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,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,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,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19044,3823,1700,788,1,732,0,34,90,68,63,3,28,60,20,39,5,8,7,0,4,19,3,5,11,14,10,1,4,0,4,6,1,2,3,1,1,1,1,1,1 -2016-12-31,22026,2719,933,869,999,29,4,180,10,24,83,97,28,5,24,22,1,16,16,4,13,1,8,4,4,0,0,7,6,0,4,1,2,1,0,0,1,0,0,0,0 -2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 239642d795..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" -2016-12,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,6,24,23,4,17,20,11,9,15,14,10,8,10,0,8,7,3,3,3,1,2,1,1,1,1 -2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 62a6e142b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" -"2016 Q4",41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,6,24,23,4,17,20,11,9,15,14,10,8,10,0,8,7,3,3,3,1,2,1,1,1,1 -"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 0269e78f9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Flycatcher, Taiga] Number of Jobs Ended","[Lark, Calandra] Number of Jobs Ended","[Warbler, Cetti's] Number of Jobs Ended","[Moorhen] Number of Jobs Ended","[Shearwater, Macaronesian] Number of Jobs Ended","[Tern, Caspian] Number of Jobs Ended","[Egret, Snowy] Number of Jobs Ended","[Bufflehead] Number of Jobs Ended","[Dunlin] Number of Jobs Ended","[Bittern] Number of Jobs Ended","[Shearwater, Balearic] Number of Jobs Ended","[Chiffchaff, Iberian] Number of Jobs Ended","[Dowitcher, Short-billed] Number of Jobs Ended","[Fulmar] Number of Jobs Ended","[Goose, Red-breasted] Number of Jobs Ended","[Jackdaw] Number of Jobs Ended","[Bluetail, Red-flanked] Number of Jobs Ended","[Fieldfare] Number of Jobs Ended","[Warbler, Hooded] Number of Jobs Ended","[Chaffinch] Number of Jobs Ended","[Scaup, Lesser] Number of Jobs Ended","[Harrier, Hen] Number of Jobs Ended","[White, Great] Number of Jobs Ended","[Bunting, Ortolan] Number of Jobs Ended","[Petrel, Fea's] Number of Jobs Ended","[Blackbird] Number of Jobs Ended","[Kestrel, Lesser] Number of Jobs Ended","[Martin, Sand] Number of Jobs Ended","[Spotted, Great] Number of Jobs Ended","[Accentor, Alpine] Number of Jobs Ended","[Nuthatch] Number of Jobs Ended","[Smew] Number of Jobs Ended","[Swift, Little] Number of Jobs Ended","[Thrush, Hermit] Number of Jobs Ended","[Warbler, Blackpoll] Number of Jobs Ended","[Gull, Yellow-legged] Number of Jobs Ended","[Warbler, Savi's] Number of Jobs Ended","[Dotterel] Number of Jobs Ended","[Gull, Glaucous-winged] Number of Jobs Ended","[Shearwater, Great] Number of Jobs Ended","[Yellowthroat, Common] Number of Jobs Ended" -2016,41070,6542,2633,1657,1000,761,4,214,100,92,146,100,56,65,44,61,6,24,23,4,17,20,11,9,15,14,10,8,10,0,8,7,3,3,3,1,2,1,1,1,1 -2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 86310dfaf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Max (Core Count)" -"Thrush, Hermit",336 -Dunlin,192 -"Scaup, Lesser",192 -"Gull, Yellow-legged",160 -"Shearwater, Balearic",144 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Fieldfare,96 -"Lark, Calandra",96 -Smew,72 -"White, Great",72 -Chaffinch,64 -"Tern, Caspian",64 -"Swift, Little",60 -"Warbler, Cetti's",56 -"Goose, Red-breasted",48 -"Warbler, Savi's",40 -Fulmar,32 -"Accentor, Alpine",24 -Blackbird,20 -Dotterel,20 -"Bluetail, Red-flanked",16 -"Yellowthroat, Common",16 -"Chiffchaff, Iberian",12 -"Egret, Snowy",12 -"Flycatcher, Taiga",12 -Jackdaw,12 -"Kestrel, Lesser",12 -"Martin, Sand",12 -"Petrel, Fea's",12 -"Warbler, Blackpoll",12 -"Warbler, Hooded",12 -Bittern,1 -Bufflehead,1 -"Dowitcher, Short-billed",1 -"Harrier, Hen",1 -Moorhen,1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 86310dfaf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Max (Core Count)" -"Thrush, Hermit",336 -Dunlin,192 -"Scaup, Lesser",192 -"Gull, Yellow-legged",160 -"Shearwater, Balearic",144 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Fieldfare,96 -"Lark, Calandra",96 -Smew,72 -"White, Great",72 -Chaffinch,64 -"Tern, Caspian",64 -"Swift, Little",60 -"Warbler, Cetti's",56 -"Goose, Red-breasted",48 -"Warbler, Savi's",40 -Fulmar,32 -"Accentor, Alpine",24 -Blackbird,20 -Dotterel,20 -"Bluetail, Red-flanked",16 -"Yellowthroat, Common",16 -"Chiffchaff, Iberian",12 -"Egret, Snowy",12 -"Flycatcher, Taiga",12 -Jackdaw,12 -"Kestrel, Lesser",12 -"Martin, Sand",12 -"Petrel, Fea's",12 -"Warbler, Blackpoll",12 -"Warbler, Hooded",12 -Bittern,1 -Bufflehead,1 -"Dowitcher, Short-billed",1 -"Harrier, Hen",1 -Moorhen,1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 86310dfaf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Max (Core Count)" -"Thrush, Hermit",336 -Dunlin,192 -"Scaup, Lesser",192 -"Gull, Yellow-legged",160 -"Shearwater, Balearic",144 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Fieldfare,96 -"Lark, Calandra",96 -Smew,72 -"White, Great",72 -Chaffinch,64 -"Tern, Caspian",64 -"Swift, Little",60 -"Warbler, Cetti's",56 -"Goose, Red-breasted",48 -"Warbler, Savi's",40 -Fulmar,32 -"Accentor, Alpine",24 -Blackbird,20 -Dotterel,20 -"Bluetail, Red-flanked",16 -"Yellowthroat, Common",16 -"Chiffchaff, Iberian",12 -"Egret, Snowy",12 -"Flycatcher, Taiga",12 -Jackdaw,12 -"Kestrel, Lesser",12 -"Martin, Sand",12 -"Petrel, Fea's",12 -"Warbler, Blackpoll",12 -"Warbler, Hooded",12 -Bittern,1 -Bufflehead,1 -"Dowitcher, Short-billed",1 -"Harrier, Hen",1 -Moorhen,1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 86310dfaf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Max (Core Count)" -"Thrush, Hermit",336 -Dunlin,192 -"Scaup, Lesser",192 -"Gull, Yellow-legged",160 -"Shearwater, Balearic",144 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Fieldfare,96 -"Lark, Calandra",96 -Smew,72 -"White, Great",72 -Chaffinch,64 -"Tern, Caspian",64 -"Swift, Little",60 -"Warbler, Cetti's",56 -"Goose, Red-breasted",48 -"Warbler, Savi's",40 -Fulmar,32 -"Accentor, Alpine",24 -Blackbird,20 -Dotterel,20 -"Bluetail, Red-flanked",16 -"Yellowthroat, Common",16 -"Chiffchaff, Iberian",12 -"Egret, Snowy",12 -"Flycatcher, Taiga",12 -Jackdaw,12 -"Kestrel, Lesser",12 -"Martin, Sand",12 -"Petrel, Fea's",12 -"Warbler, Blackpoll",12 -"Warbler, Hooded",12 -Bittern,1 -Bufflehead,1 -"Dowitcher, Short-billed",1 -"Harrier, Hen",1 -Moorhen,1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index f9ebe97923..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,12,0,0,12,0,0,0,0,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,12,0,0,12,1,0,0,0,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-24,0,0,0,0,0,0,0,0,0,12,0,0,12,1,0,0,0,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-25,0,0,0,0,0,0,0,0,0,24,0,0,12,1,0,0,0,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-26,0,0,0,0,0,0,0,0,0,24,0,0,12,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,144,0,0,0,96,32,0,72,64,16,0,0,0,0,8,0,0,0,16,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,1,0,0 -2016-12-28,0,0,192,0,144,0,0,0,96,32,0,72,64,16,0,0,0,0,8,0,0,20,16,0,0,0,1,0,12,0,12,12,8,0,1,0,0,1,1,0,0 -2016-12-29,0,0,192,160,144,112,0,96,96,32,72,72,64,64,0,56,0,40,8,0,0,20,16,0,2,0,12,12,12,5,12,12,8,0,1,0,1,1,1,0,0 -2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,0,20,20,16,16,12,0,12,12,12,5,12,12,12,1,1,1,1,1,1,1,1 -2016-12-31,336,192,192,0,20,112,0,96,96,96,72,72,64,64,60,1,48,40,8,24,0,0,16,0,2,12,12,12,12,12,1,0,12,1,1,1,1,1,0,1,1 -2017-01-01,0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 42ce9d8049..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" -2016-12,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1,1 -2017-01,0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index db9aad794b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1,1 -"2017 Q1",0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 630f396bc5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Thrush, Hermit] Job Size: Max (Core Count)","[Dunlin] Job Size: Max (Core Count)","[Scaup, Lesser] Job Size: Max (Core Count)","[Gull, Yellow-legged] Job Size: Max (Core Count)","[Shearwater, Balearic] Job Size: Max (Core Count)","[Nuthatch] Job Size: Max (Core Count)","[Gull, Glaucous-winged] Job Size: Max (Core Count)","[Bunting, Ortolan] Job Size: Max (Core Count)","[Fieldfare] Job Size: Max (Core Count)","[Lark, Calandra] Job Size: Max (Core Count)","[Smew] Job Size: Max (Core Count)","[White, Great] Job Size: Max (Core Count)","[Chaffinch] Job Size: Max (Core Count)","[Tern, Caspian] Job Size: Max (Core Count)","[Swift, Little] Job Size: Max (Core Count)","[Warbler, Cetti's] Job Size: Max (Core Count)","[Goose, Red-breasted] Job Size: Max (Core Count)","[Warbler, Savi's] Job Size: Max (Core Count)","[Fulmar] Job Size: Max (Core Count)","[Accentor, Alpine] Job Size: Max (Core Count)","[Blackbird] Job Size: Max (Core Count)","[Dotterel] Job Size: Max (Core Count)","[Bluetail, Red-flanked] Job Size: Max (Core Count)","[Yellowthroat, Common] Job Size: Max (Core Count)","[Chiffchaff, Iberian] Job Size: Max (Core Count)","[Egret, Snowy] Job Size: Max (Core Count)","[Flycatcher, Taiga] Job Size: Max (Core Count)","[Jackdaw] Job Size: Max (Core Count)","[Kestrel, Lesser] Job Size: Max (Core Count)","[Martin, Sand] Job Size: Max (Core Count)","[Petrel, Fea's] Job Size: Max (Core Count)","[Warbler, Blackpoll] Job Size: Max (Core Count)","[Warbler, Hooded] Job Size: Max (Core Count)","[Bittern] Job Size: Max (Core Count)","[Bufflehead] Job Size: Max (Core Count)","[Dowitcher, Short-billed] Job Size: Max (Core Count)","[Harrier, Hen] Job Size: Max (Core Count)","[Moorhen] Job Size: Max (Core Count)","[Shearwater, Great] Job Size: Max (Core Count)","[Shearwater, Macaronesian] Job Size: Max (Core Count)","[Spotted, Great] Job Size: Max (Core Count)" -2016,336,192,192,160,144,112,108,96,96,96,72,72,64,64,60,56,48,40,32,24,20,20,16,16,12,12,12,12,12,12,12,12,12,1,1,1,1,1,1,1,1 -2017,0,192,32,160,0,0,0,96,96,48,0,72,64,16,5,0,48,0,8,24,0,0,16,0,2,12,12,12,12,12,0,0,8,1,1,1,0,1,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 88243657d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Min (Core Count)" -"Gull, Yellow-legged",160 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Smew,72 -"Thrush, Hermit",48 -"White, Great",36 -"Scaup, Lesser",32 -Blackbird,20 -Dotterel,20 -"Accentor, Alpine",16 -"Warbler, Savi's",16 -"Yellowthroat, Common",16 -"Egret, Snowy",12 -"Kestrel, Lesser",12 -"Shearwater, Balearic",12 -"Warbler, Blackpoll",12 -Dunlin,8 -"Lark, Calandra",8 -"Warbler, Hooded",8 -"Martin, Sand",5 -"Swift, Little",5 -"Chiffchaff, Iberian",2 -Bittern,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -Chaffinch,1 -"Dowitcher, Short-billed",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Harrier, Hen",1 -Jackdaw,1 -Moorhen,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 -"Tern, Caspian",1 -"Warbler, Cetti's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 88243657d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Min (Core Count)" -"Gull, Yellow-legged",160 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Smew,72 -"Thrush, Hermit",48 -"White, Great",36 -"Scaup, Lesser",32 -Blackbird,20 -Dotterel,20 -"Accentor, Alpine",16 -"Warbler, Savi's",16 -"Yellowthroat, Common",16 -"Egret, Snowy",12 -"Kestrel, Lesser",12 -"Shearwater, Balearic",12 -"Warbler, Blackpoll",12 -Dunlin,8 -"Lark, Calandra",8 -"Warbler, Hooded",8 -"Martin, Sand",5 -"Swift, Little",5 -"Chiffchaff, Iberian",2 -Bittern,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -Chaffinch,1 -"Dowitcher, Short-billed",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Harrier, Hen",1 -Jackdaw,1 -Moorhen,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 -"Tern, Caspian",1 -"Warbler, Cetti's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 88243657d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Min (Core Count)" -"Gull, Yellow-legged",160 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Smew,72 -"Thrush, Hermit",48 -"White, Great",36 -"Scaup, Lesser",32 -Blackbird,20 -Dotterel,20 -"Accentor, Alpine",16 -"Warbler, Savi's",16 -"Yellowthroat, Common",16 -"Egret, Snowy",12 -"Kestrel, Lesser",12 -"Shearwater, Balearic",12 -"Warbler, Blackpoll",12 -Dunlin,8 -"Lark, Calandra",8 -"Warbler, Hooded",8 -"Martin, Sand",5 -"Swift, Little",5 -"Chiffchaff, Iberian",2 -Bittern,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -Chaffinch,1 -"Dowitcher, Short-billed",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Harrier, Hen",1 -Jackdaw,1 -Moorhen,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 -"Tern, Caspian",1 -"Warbler, Cetti's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 88243657d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Job Size: Min (Core Count)" -"Gull, Yellow-legged",160 -Nuthatch,112 -"Gull, Glaucous-winged",108 -"Bunting, Ortolan",96 -Smew,72 -"Thrush, Hermit",48 -"White, Great",36 -"Scaup, Lesser",32 -Blackbird,20 -Dotterel,20 -"Accentor, Alpine",16 -"Warbler, Savi's",16 -"Yellowthroat, Common",16 -"Egret, Snowy",12 -"Kestrel, Lesser",12 -"Shearwater, Balearic",12 -"Warbler, Blackpoll",12 -Dunlin,8 -"Lark, Calandra",8 -"Warbler, Hooded",8 -"Martin, Sand",5 -"Swift, Little",5 -"Chiffchaff, Iberian",2 -Bittern,1 -"Bluetail, Red-flanked",1 -Bufflehead,1 -Chaffinch,1 -"Dowitcher, Short-billed",1 -Fieldfare,1 -"Flycatcher, Taiga",1 -Fulmar,1 -"Goose, Red-breasted",1 -"Harrier, Hen",1 -Jackdaw,1 -Moorhen,1 -"Petrel, Fea's",1 -"Shearwater, Great",1 -"Shearwater, Macaronesian",1 -"Spotted, Great",1 -"Tern, Caspian",1 -"Warbler, Cetti's",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index e97206aa0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,16,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-27,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,32,0,0,8,0,0,0,0,0,16,0,12,0,96,1,8,0,0,0,0,12,1,0,0,1,0 -2016-12-28,0,0,0,0,0,0,48,112,0,20,0,0,0,0,12,12,12,0,8,8,0,0,0,0,16,1,12,0,96,1,8,0,0,0,1,12,1,0,0,1,0 -2016-12-29,160,112,0,96,72,0,48,112,0,20,0,40,0,0,12,12,12,0,8,8,5,0,2,0,16,1,12,0,1,1,1,0,1,4,1,12,1,0,0,1,56 -2016-12-30,160,112,108,96,72,48,48,32,20,20,0,16,16,0,12,12,12,8,8,8,5,5,2,1,16,1,12,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,0,112,0,96,72,336,36,64,0,0,16,40,0,12,12,12,0,12,8,8,8,5,2,1,1,1,8,1,1,1,8,12,1,1,1,1,0,1,1,1,1 -2017-01-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 10b6971082..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" -2016-12,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 6020f1c54e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" -"2016 Q4",160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index d5b1590fd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Gull, Yellow-legged] Job Size: Min (Core Count)","[Nuthatch] Job Size: Min (Core Count)","[Gull, Glaucous-winged] Job Size: Min (Core Count)","[Bunting, Ortolan] Job Size: Min (Core Count)","[Smew] Job Size: Min (Core Count)","[Thrush, Hermit] Job Size: Min (Core Count)","[White, Great] Job Size: Min (Core Count)","[Scaup, Lesser] Job Size: Min (Core Count)","[Blackbird] Job Size: Min (Core Count)","[Dotterel] Job Size: Min (Core Count)","[Accentor, Alpine] Job Size: Min (Core Count)","[Warbler, Savi's] Job Size: Min (Core Count)","[Yellowthroat, Common] Job Size: Min (Core Count)","[Egret, Snowy] Job Size: Min (Core Count)","[Kestrel, Lesser] Job Size: Min (Core Count)","[Shearwater, Balearic] Job Size: Min (Core Count)","[Warbler, Blackpoll] Job Size: Min (Core Count)","[Dunlin] Job Size: Min (Core Count)","[Lark, Calandra] Job Size: Min (Core Count)","[Warbler, Hooded] Job Size: Min (Core Count)","[Martin, Sand] Job Size: Min (Core Count)","[Swift, Little] Job Size: Min (Core Count)","[Chiffchaff, Iberian] Job Size: Min (Core Count)","[Bittern] Job Size: Min (Core Count)","[Bluetail, Red-flanked] Job Size: Min (Core Count)","[Bufflehead] Job Size: Min (Core Count)","[Chaffinch] Job Size: Min (Core Count)","[Dowitcher, Short-billed] Job Size: Min (Core Count)","[Fieldfare] Job Size: Min (Core Count)","[Flycatcher, Taiga] Job Size: Min (Core Count)","[Fulmar] Job Size: Min (Core Count)","[Goose, Red-breasted] Job Size: Min (Core Count)","[Harrier, Hen] Job Size: Min (Core Count)","[Jackdaw] Job Size: Min (Core Count)","[Moorhen] Job Size: Min (Core Count)","[Petrel, Fea's] Job Size: Min (Core Count)","[Shearwater, Great] Job Size: Min (Core Count)","[Shearwater, Macaronesian] Job Size: Min (Core Count)","[Spotted, Great] Job Size: Min (Core Count)","[Tern, Caspian] Job Size: Min (Core Count)","[Warbler, Cetti's] Job Size: Min (Core Count)" -2016,160,112,108,96,72,48,36,32,20,20,16,16,16,12,12,12,12,8,8,8,5,5,2,1,1,1,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,160,0,0,96,0,0,36,32,0,0,16,0,0,12,12,0,0,8,8,8,12,5,2,1,8,1,1,1,8,1,8,12,0,4,1,0,0,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv deleted file mode 100644 index 4554f84b36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -parameters - -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 -"Tern, Caspian",0.052948886 -"Flycatcher, Taiga",0.047068235 -"Petrel, Fea's",0.043333333 -"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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv deleted file mode 100644 index 4554f84b36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-pi.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -parameters - -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 -"Tern, Caspian",0.052948886 -"Flycatcher, Taiga",0.047068235 -"Petrel, Fea's",0.043333333 -"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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 5b29d9d5c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -parameters - -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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 5b29d9d5c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -parameters - -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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 5b29d9d5c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -parameters - -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/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 5b29d9d5c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -parameters - -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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv deleted file mode 100644 index a1d0049831..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv deleted file mode 100644 index a1d0049831..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index bb80fe4441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] 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.025000000,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.300000000,0,0,0,0,0,0.300000000,0.025000000,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.300000000,0,0,0,0,0,0.450000000,0.025000000,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.400000000,0.300000000,0,0,0,0,0,0.450000000,0.025000000,0,0,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.168750000,0.025000000,0.300000000,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.168750000,0.025000000,0.300000000,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.078472222,0.058544922,0.300000000,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.035292793,0.045443743,0.043333333,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.207500000,0.049394653,0.025000000,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.212500000,0.045675831,0,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv deleted file mode 100644 index a1d0049831..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Day-usr.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 8b11ff2b1a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 025a28c0a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 60f78f7194..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by PI" -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)","[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/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 4731c2fcf6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Running" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 4731c2fcf6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Running" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 4731c2fcf6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Running" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 4731c2fcf6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Running" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 74f76d749d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" -2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1,14,0,0,0,6,0,0,0,0,3,0,0,5,0,0,5,3,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-28,1,20,0,190,0,6,0,147,0,0,12,0,0,10,0,0,16,15,5,2,9,0,2,0,1,0,9,0,0,0,0,0,0,0,3,0,0,1,0,1,0 -2016-12-29,256,54,1,960,0,24,0,235,0,0,25,1,0,62,0,11,20,23,16,2,9,5,4,3,1,0,9,1,0,0,4,7,0,0,3,1,1,1,0,1,0 -2016-12-30,19313,3859,1700,1635,719,740,0,252,90,68,96,4,28,68,20,65,20,28,24,2,13,20,7,8,15,14,11,1,4,0,8,7,3,3,3,1,2,1,1,1,1 -2016-12-31,22516,2740,933,1637,999,30,16,255,10,24,83,98,28,12,26,27,48,24,22,6,13,1,12,7,4,0,1,7,6,9,4,1,2,1,0,0,1,0,0,0,0 -2017-01-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index cc1a3f12e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" -2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 -2017-01,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 2216e5dfbb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" -"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 -"2017 Q1",13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 632873edd8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Flycatcher, Taiga] Number of Jobs Running","[Lark, Calandra] Number of Jobs Running","[Warbler, Cetti's] Number of Jobs Running","[Moorhen] Number of Jobs Running","[Shearwater, Macaronesian] Number of Jobs Running","[Tern, Caspian] Number of Jobs Running","[Egret, Snowy] Number of Jobs Running","[Bufflehead] Number of Jobs Running","[Dunlin] Number of Jobs Running","[Bittern] Number of Jobs Running","[Shearwater, Balearic] Number of Jobs Running","[Chiffchaff, Iberian] Number of Jobs Running","[Dowitcher, Short-billed] Number of Jobs Running","[Fulmar] Number of Jobs Running","[Goose, Red-breasted] Number of Jobs Running","[Jackdaw] Number of Jobs Running","[Bluetail, Red-flanked] Number of Jobs Running","[Fieldfare] Number of Jobs Running","[Warbler, Hooded] Number of Jobs Running","[Chaffinch] Number of Jobs Running","[Scaup, Lesser] Number of Jobs Running","[Harrier, Hen] Number of Jobs Running","[White, Great] Number of Jobs Running","[Bunting, Ortolan] Number of Jobs Running","[Petrel, Fea's] Number of Jobs Running","[Blackbird] Number of Jobs Running","[Kestrel, Lesser] Number of Jobs Running","[Martin, Sand] Number of Jobs Running","[Spotted, Great] Number of Jobs Running","[Accentor, Alpine] Number of Jobs Running","[Nuthatch] Number of Jobs Running","[Smew] Number of Jobs Running","[Swift, Little] Number of Jobs Running","[Thrush, Hermit] Number of Jobs Running","[Warbler, Blackpoll] Number of Jobs Running","[Gull, Yellow-legged] Number of Jobs Running","[Warbler, Savi's] Number of Jobs Running","[Dotterel] Number of Jobs Running","[Gull, Glaucous-winged] Number of Jobs Running","[Shearwater, Great] Number of Jobs Running","[Yellowthroat, Common] Number of Jobs Running" -2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 -2017,13931,402,0,972,0,2,752,94,139,62,0,1,28,7,25,5,47,20,14,27,8,0,9,7,0,0,1,2,0,9,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 5cb4bb7075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Started" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 5cb4bb7075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Started" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 5cb4bb7075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Started" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 5cb4bb7075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Started" -"Flycatcher, Taiga",55001 -"Lark, Calandra",6944 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",756 -Bufflehead,308 -Dunlin,239 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Gull, Yellow-legged",2 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 2037232cca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" -2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,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-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,0,0 -2016-12-25,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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-27,1,10,0,0,0,5,0,0,0,0,3,0,0,5,0,0,0,3,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2016-12-28,0,6,0,190,0,0,0,147,0,0,9,0,0,5,0,0,11,12,5,0,9,0,1,0,0,0,9,0,0,0,0,0,0,0,3,0,0,1,0,0,0 -2016-12-29,255,34,1,770,0,18,0,88,0,0,13,1,0,52,0,11,4,8,11,0,0,5,2,3,0,0,0,1,0,0,4,7,0,0,0,1,1,0,0,0,0 -2016-12-30,19057,3805,1699,675,719,716,0,17,90,68,71,3,28,6,20,54,0,5,8,0,4,15,3,5,14,14,2,0,4,0,4,0,3,3,0,0,1,0,1,0,1 -2016-12-31,22247,2704,933,790,281,22,16,37,10,24,50,97,28,4,26,1,33,4,5,4,4,0,8,4,0,0,0,7,6,9,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index d22e29878e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" -2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 -2017-01,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 7cf458b486..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" -"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 -"2017 Q1",13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 6e19f5ccd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Flycatcher, Taiga] Number of Jobs Started","[Lark, Calandra] Number of Jobs Started","[Warbler, Cetti's] Number of Jobs Started","[Moorhen] Number of Jobs Started","[Shearwater, Macaronesian] Number of Jobs Started","[Tern, Caspian] Number of Jobs Started","[Egret, Snowy] Number of Jobs Started","[Bufflehead] Number of Jobs Started","[Dunlin] Number of Jobs Started","[Bittern] Number of Jobs Started","[Shearwater, Balearic] Number of Jobs Started","[Chiffchaff, Iberian] Number of Jobs Started","[Dowitcher, Short-billed] Number of Jobs Started","[Fulmar] Number of Jobs Started","[Goose, Red-breasted] Number of Jobs Started","[Jackdaw] Number of Jobs Started","[Bluetail, Red-flanked] Number of Jobs Started","[Fieldfare] Number of Jobs Started","[Warbler, Hooded] Number of Jobs Started","[Chaffinch] Number of Jobs Started","[Scaup, Lesser] Number of Jobs Started","[Harrier, Hen] Number of Jobs Started","[White, Great] Number of Jobs Started","[Bunting, Ortolan] Number of Jobs Started","[Petrel, Fea's] Number of Jobs Started","[Blackbird] Number of Jobs Started","[Kestrel, Lesser] Number of Jobs Started","[Martin, Sand] Number of Jobs Started","[Spotted, Great] Number of Jobs Started","[Accentor, Alpine] Number of Jobs Started","[Nuthatch] Number of Jobs Started","[Smew] Number of Jobs Started","[Swift, Little] Number of Jobs Started","[Thrush, Hermit] Number of Jobs Started","[Warbler, Blackpoll] Number of Jobs Started","[Gull, Yellow-legged] Number of Jobs Started","[Warbler, Savi's] Number of Jobs Started","[Dotterel] Number of Jobs Started","[Gull, Glaucous-winged] Number of Jobs Started","[Shearwater, Great] Number of Jobs Started","[Yellowthroat, Common] Number of Jobs Started" -2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,1,2,1,1,1,1 -2017,13441,381,0,204,0,1,740,19,139,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index dcdb976ad5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Submitted" -"Flycatcher, Taiga",49664 -"Lark, Calandra",6927 -"Warbler, Cetti's",2633 -Moorhen,2586 -"Shearwater, Macaronesian",719 -"Egret, Snowy",693 -Bufflehead,308 -Bittern,154 -Dunlin,123 -"Dowitcher, Short-billed",84 -"Goose, Red-breasted",69 -Fulmar,55 -"Bluetail, Red-flanked",49 -"Tern, Caspian",47 -"Warbler, Hooded",37 -Chaffinch,31 -Jackdaw,31 -"Scaup, Lesser",25 -Fieldfare,22 -"Harrier, Hen",20 -"Bunting, Ortolan",16 -Blackbird,14 -"Petrel, Fea's",14 -"White, Great",14 -"Shearwater, Balearic",13 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Warbler, Blackpoll",3 -"Chiffchaff, Iberian",1 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Shearwater, Great",1 -"Warbler, Savi's",1 -"Yellowthroat, Common",1 -"Gull, Yellow-legged",0 -"Thrush, Hermit",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 79a9351968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Submitted" -"Flycatcher, Taiga",53071 -"Lark, Calandra",6943 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",693 -Bufflehead,308 -Dunlin,164 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 79a9351968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Submitted" -"Flycatcher, Taiga",53071 -"Lark, Calandra",6943 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",693 -Bufflehead,308 -Dunlin,164 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 79a9351968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Number of Jobs Submitted" -"Flycatcher, Taiga",53071 -"Lark, Calandra",6943 -"Warbler, Cetti's",2633 -Moorhen,2629 -"Shearwater, Macaronesian",1000 -"Tern, Caspian",763 -"Egret, Snowy",693 -Bufflehead,308 -Dunlin,164 -Bittern,154 -"Shearwater, Balearic",146 -"Chiffchaff, Iberian",101 -"Dowitcher, Short-billed",84 -Fulmar,72 -"Goose, Red-breasted",69 -Jackdaw,66 -"Bluetail, Red-flanked",53 -Fieldfare,44 -"Warbler, Hooded",37 -Chaffinch,31 -"Scaup, Lesser",25 -"Harrier, Hen",20 -"White, Great",20 -"Bunting, Ortolan",16 -"Petrel, Fea's",15 -Blackbird,14 -"Kestrel, Lesser",11 -"Martin, Sand",10 -"Spotted, Great",10 -"Accentor, Alpine",9 -Nuthatch,8 -Smew,7 -"Swift, Little",4 -"Thrush, Hermit",3 -"Warbler, Blackpoll",3 -"Warbler, Savi's",2 -Dotterel,1 -"Gull, Glaucous-winged",1 -"Gull, Yellow-legged",1 -"Shearwater, Great",1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 3d01428008..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,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,1,0,0,0,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-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,0,0 -2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -2016-12-28,0,4,0,190,0,0,147,0,0,0,0,0,11,0,5,0,0,9,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -2016-12-29,205,32,1,770,0,0,88,0,0,0,0,50,0,4,11,0,11,0,1,5,3,0,0,1,10,0,1,0,0,4,7,0,0,1,0,0,0,1,0,0,0 -2016-12-30,18462,3801,1699,675,719,0,17,68,50,28,20,5,0,15,8,0,19,4,5,15,5,14,14,1,1,2,0,4,0,4,0,3,0,0,0,1,0,0,1,0,0 -2016-12-31,19485,2699,933,747,0,16,37,24,9,28,26,0,33,21,5,4,1,4,4,0,4,0,0,7,2,0,7,6,9,0,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,11511,380,0,204,0,677,19,62,64,28,23,0,0,1,8,25,0,8,12,0,4,0,0,5,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 393d97df8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted" -2016-12,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,2,1,1,1,1,1 -2017-01,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9bd6093b42..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted" -"2016 Q4",41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,2,1,1,1,1,1 -"2017 Q1",11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index e24af7e8f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Flycatcher, Taiga] Number of Jobs Submitted","[Lark, Calandra] Number of Jobs Submitted","[Warbler, Cetti's] Number of Jobs Submitted","[Moorhen] Number of Jobs Submitted","[Shearwater, Macaronesian] Number of Jobs Submitted","[Tern, Caspian] Number of Jobs Submitted","[Egret, Snowy] Number of Jobs Submitted","[Bufflehead] Number of Jobs Submitted","[Dunlin] Number of Jobs Submitted","[Bittern] Number of Jobs Submitted","[Shearwater, Balearic] Number of Jobs Submitted","[Chiffchaff, Iberian] Number of Jobs Submitted","[Dowitcher, Short-billed] Number of Jobs Submitted","[Fulmar] Number of Jobs Submitted","[Goose, Red-breasted] Number of Jobs Submitted","[Jackdaw] Number of Jobs Submitted","[Bluetail, Red-flanked] Number of Jobs Submitted","[Fieldfare] Number of Jobs Submitted","[Warbler, Hooded] Number of Jobs Submitted","[Chaffinch] Number of Jobs Submitted","[Scaup, Lesser] Number of Jobs Submitted","[Harrier, Hen] Number of Jobs Submitted","[White, Great] Number of Jobs Submitted","[Bunting, Ortolan] Number of Jobs Submitted","[Petrel, Fea's] Number of Jobs Submitted","[Blackbird] Number of Jobs Submitted","[Kestrel, Lesser] Number of Jobs Submitted","[Martin, Sand] Number of Jobs Submitted","[Spotted, Great] Number of Jobs Submitted","[Accentor, Alpine] Number of Jobs Submitted","[Nuthatch] Number of Jobs Submitted","[Smew] Number of Jobs Submitted","[Swift, Little] Number of Jobs Submitted","[Thrush, Hermit] Number of Jobs Submitted","[Warbler, Blackpoll] Number of Jobs Submitted","[Warbler, Savi's] Number of Jobs Submitted","[Dotterel] Number of Jobs Submitted","[Gull, Glaucous-winged] Number of Jobs Submitted","[Gull, Yellow-legged] Number of Jobs Submitted","[Shearwater, Great] Number of Jobs Submitted","[Yellowthroat, Common] Number of Jobs Submitted" -2016,41560,6563,2633,2425,1000,762,16,289,100,92,146,101,56,72,46,66,53,32,29,6,17,20,15,12,15,14,11,8,10,9,8,7,3,3,3,2,1,1,1,1,1 -2017,11511,380,0,204,0,1,677,19,64,62,0,0,28,0,23,0,0,12,8,25,8,0,5,4,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index f1b003775c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"CPU Hours: Total" -"Flycatcher, Taiga",160661.1219 -Fieldfare,147374.4353 -"Scaup, Lesser",119274.1289 -"Lark, Calandra",69231.4289 -Moorhen,67004.1206 -"Bluetail, Red-flanked",34825.7219 -"Shearwater, Balearic",33446.5633 -"White, Great",21995.7300 -"Bunting, Ortolan",19473.8133 -"Egret, Snowy",19117.7667 -Smew,18391.0000 -Bufflehead,15354.0758 -Nuthatch,14141.1200 -"Tern, Caspian",13804.8528 -"Thrush, Hermit",13105.9733 -Jackdaw,12416.7611 -Chaffinch,10880.2728 -Fulmar,8707.0903 -"Shearwater, Macaronesian",8590.5158 -"Warbler, Hooded",7367.1656 -"Accentor, Alpine",5262.3156 -"Kestrel, Lesser",5198.0500 -"Chiffchaff, Iberian",2039.1683 -"Warbler, Savi's",2013.9756 -"Warbler, Blackpoll",1588.9133 -Dunlin,1518.1478 -"Goose, Red-breasted",1446.9428 -"Gull, Yellow-legged",1444.4889 -"Warbler, Cetti's",1183.6917 -"Petrel, Fea's",1021.5447 -Dotterel,960.1333 -"Martin, Sand",622.6494 -"Swift, Little",590.3347 -Bittern,135.7597 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Spotted, Great",59.8692 -"Gull, Glaucous-winged",28.1400 -Blackbird,22.5389 -"Yellowthroat, Common",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index f1b003775c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"CPU Hours: Total" -"Flycatcher, Taiga",160661.1219 -Fieldfare,147374.4353 -"Scaup, Lesser",119274.1289 -"Lark, Calandra",69231.4289 -Moorhen,67004.1206 -"Bluetail, Red-flanked",34825.7219 -"Shearwater, Balearic",33446.5633 -"White, Great",21995.7300 -"Bunting, Ortolan",19473.8133 -"Egret, Snowy",19117.7667 -Smew,18391.0000 -Bufflehead,15354.0758 -Nuthatch,14141.1200 -"Tern, Caspian",13804.8528 -"Thrush, Hermit",13105.9733 -Jackdaw,12416.7611 -Chaffinch,10880.2728 -Fulmar,8707.0903 -"Shearwater, Macaronesian",8590.5158 -"Warbler, Hooded",7367.1656 -"Accentor, Alpine",5262.3156 -"Kestrel, Lesser",5198.0500 -"Chiffchaff, Iberian",2039.1683 -"Warbler, Savi's",2013.9756 -"Warbler, Blackpoll",1588.9133 -Dunlin,1518.1478 -"Goose, Red-breasted",1446.9428 -"Gull, Yellow-legged",1444.4889 -"Warbler, Cetti's",1183.6917 -"Petrel, Fea's",1021.5447 -Dotterel,960.1333 -"Martin, Sand",622.6494 -"Swift, Little",590.3347 -Bittern,135.7597 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Spotted, Great",59.8692 -"Gull, Glaucous-winged",28.1400 -Blackbird,22.5389 -"Yellowthroat, Common",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f1b003775c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"CPU Hours: Total" -"Flycatcher, Taiga",160661.1219 -Fieldfare,147374.4353 -"Scaup, Lesser",119274.1289 -"Lark, Calandra",69231.4289 -Moorhen,67004.1206 -"Bluetail, Red-flanked",34825.7219 -"Shearwater, Balearic",33446.5633 -"White, Great",21995.7300 -"Bunting, Ortolan",19473.8133 -"Egret, Snowy",19117.7667 -Smew,18391.0000 -Bufflehead,15354.0758 -Nuthatch,14141.1200 -"Tern, Caspian",13804.8528 -"Thrush, Hermit",13105.9733 -Jackdaw,12416.7611 -Chaffinch,10880.2728 -Fulmar,8707.0903 -"Shearwater, Macaronesian",8590.5158 -"Warbler, Hooded",7367.1656 -"Accentor, Alpine",5262.3156 -"Kestrel, Lesser",5198.0500 -"Chiffchaff, Iberian",2039.1683 -"Warbler, Savi's",2013.9756 -"Warbler, Blackpoll",1588.9133 -Dunlin,1518.1478 -"Goose, Red-breasted",1446.9428 -"Gull, Yellow-legged",1444.4889 -"Warbler, Cetti's",1183.6917 -"Petrel, Fea's",1021.5447 -Dotterel,960.1333 -"Martin, Sand",622.6494 -"Swift, Little",590.3347 -Bittern,135.7597 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Spotted, Great",59.8692 -"Gull, Glaucous-winged",28.1400 -Blackbird,22.5389 -"Yellowthroat, Common",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index f1b003775c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"CPU Hours: Total" -"Flycatcher, Taiga",160661.1219 -Fieldfare,147374.4353 -"Scaup, Lesser",119274.1289 -"Lark, Calandra",69231.4289 -Moorhen,67004.1206 -"Bluetail, Red-flanked",34825.7219 -"Shearwater, Balearic",33446.5633 -"White, Great",21995.7300 -"Bunting, Ortolan",19473.8133 -"Egret, Snowy",19117.7667 -Smew,18391.0000 -Bufflehead,15354.0758 -Nuthatch,14141.1200 -"Tern, Caspian",13804.8528 -"Thrush, Hermit",13105.9733 -Jackdaw,12416.7611 -Chaffinch,10880.2728 -Fulmar,8707.0903 -"Shearwater, Macaronesian",8590.5158 -"Warbler, Hooded",7367.1656 -"Accentor, Alpine",5262.3156 -"Kestrel, Lesser",5198.0500 -"Chiffchaff, Iberian",2039.1683 -"Warbler, Savi's",2013.9756 -"Warbler, Blackpoll",1588.9133 -Dunlin,1518.1478 -"Goose, Red-breasted",1446.9428 -"Gull, Yellow-legged",1444.4889 -"Warbler, Cetti's",1183.6917 -"Petrel, Fea's",1021.5447 -Dotterel,960.1333 -"Martin, Sand",622.6494 -"Swift, Little",590.3347 -Bittern,135.7597 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Spotted, Great",59.8692 -"Gull, Glaucous-winged",28.1400 -Blackbird,22.5389 -"Yellowthroat, Common",1.0400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index ea76832671..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" -2016-12-22,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,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,288.0000,0,0,0,0,0,0,0,0,0,8.6036,0,0,288.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-24,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.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-25,0,0,0,466.2700,0,0,0,0,0,0,0,0,0,24.0000,0,0,288.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-26,0,0,0,1728.0000,0,216.3333,0,0,0,0,0,0,0,24.0000,0,0,288.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-27,3.2167,3739.4133,0,2293.7600,0,1920.0000,4298.8089,1487.8200,0,0,0,0,0,476.7422,0,0,531.1822,558.6133,0,0,0,0,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,4.7214,0,0,0,0 -2016-12-28,24.0000,21931.9200,29467.4711,9954.8311,953.0369,2310.7378,6587.9644,2341.3467,0,0,0,1962.8444,0,1944.0000,0,0,1824.0000,1411.0667,0,351.5933,0,336.4567,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,24.0000,0,0,0,0 -2016-12-29,1793.4019,49556.3222,39552.0000,15738.2700,12583.2597,7644.0844,12041.5822,4466.4000,1834.4800,0,5821.2600,3901.6422,1643.9111,2568.7161,0,516.0911,1824.0000,2203.9531,0,1349.9467,0,2592.0000,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,10.0983,0,24.0000,0,0,0,0 -2016-12-30,62498.5789,46993.5803,39578.0711,16799.6656,21766.1511,6055.3111,7951.5333,4841.8833,6126.0000,0,10979.2200,5473.3125,9211.3156,5521.6442,7404.4267,6971.0514,1824.0000,2108.7128,3055.8617,2630.7078,0,1921.0433,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1061.9836,198.9664,386.1222,68.0319,65.9958,108.1047,82.1119,27.2308,19.2856,13.9453,28.1400,22.5389,1.0400 -2016-12-31,87876.5508,22254.2050,10619.6356,14731.3744,20518.0064,11780.8131,2566.6744,5674.2567,6839.5200,37.7500,1590.5200,2761.8142,3285.8933,2841.5344,5701.5467,4629.6697,1827.6067,1437.7244,5534.6542,2071.8422,3473.9867,288.0000,1428.0200,294.9778,0,125.4733,914.2433,0,13.7992,7.7117,0,491.1800,502.9333,25.9131,8.6314,27.2439,0,45.9239,0,0,0 -2017-01-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 543e3c423f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" -2016-12,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29927.2797,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,72.0069,59.8692,28.1400,22.5389,1.0400 -2017-01,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 69dcb5c4c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" -"2016 Q4",152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29927.2797,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,72.0069,59.8692,28.1400,22.5389,1.0400 -"2017 Q1",8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index bc16870a39..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Flycatcher, Taiga] CPU Hours: Total","[Fieldfare] CPU Hours: Total","[Scaup, Lesser] CPU Hours: Total","[Lark, Calandra] CPU Hours: Total","[Moorhen] CPU Hours: Total","[Bluetail, Red-flanked] CPU Hours: Total","[Shearwater, Balearic] CPU Hours: Total","[White, Great] CPU Hours: Total","[Bunting, Ortolan] CPU Hours: Total","[Egret, Snowy] CPU Hours: Total","[Smew] CPU Hours: Total","[Bufflehead] CPU Hours: Total","[Nuthatch] CPU Hours: Total","[Tern, Caspian] CPU Hours: Total","[Thrush, Hermit] CPU Hours: Total","[Jackdaw] CPU Hours: Total","[Chaffinch] CPU Hours: Total","[Fulmar] CPU Hours: Total","[Shearwater, Macaronesian] CPU Hours: Total","[Warbler, Hooded] CPU Hours: Total","[Accentor, Alpine] CPU Hours: Total","[Kestrel, Lesser] CPU Hours: Total","[Chiffchaff, Iberian] CPU Hours: Total","[Warbler, Savi's] CPU Hours: Total","[Warbler, Blackpoll] CPU Hours: Total","[Dunlin] CPU Hours: Total","[Goose, Red-breasted] CPU Hours: Total","[Gull, Yellow-legged] CPU Hours: Total","[Warbler, Cetti's] CPU Hours: Total","[Petrel, Fea's] CPU Hours: Total","[Dotterel] CPU Hours: Total","[Martin, Sand] CPU Hours: Total","[Swift, Little] CPU Hours: Total","[Bittern] CPU Hours: Total","[Harrier, Hen] CPU Hours: Total","[Dowitcher, Short-billed] CPU Hours: Total","[Shearwater, Great] CPU Hours: Total","[Spotted, Great] CPU Hours: Total","[Gull, Glaucous-winged] CPU Hours: Total","[Blackbird] CPU Hours: Total","[Yellowthroat, Common] CPU Hours: Total" -2016,152195.7483,144475.4408,119217.1778,62491.4711,55820.4542,29927.2797,33446.5633,18811.7067,14800.0000,37.7500,18391.0000,14099.6133,14141.1200,13433.2406,13105.9733,12116.8122,9183.7456,7720.0703,8590.5158,6404.0900,3473.9867,5137.5000,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1183.6917,1021.5447,960.1333,611.2161,568.9292,134.0178,100.8417,54.4747,72.0069,59.8692,28.1400,22.5389,1.0400 -2017,8465.3736,2898.9944,56.9511,6739.9578,11183.6664,4898.4422,0,3184.0233,4673.8133,19080.0167,0,1254.4625,0,371.6122,0,299.9489,1696.5272,987.0200,0,963.0756,1788.3289,60.5500,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,21.4056,1.7419,0,27.1514,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 115ea81b9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Total" -Chaffinch,506.9128 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 115ea81b9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Total" -Chaffinch,506.9128 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 115ea81b9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Total" -Chaffinch,506.9128 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 115ea81b9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"GPU Hours: Total" -Chaffinch,506.9128 -"Accentor, Alpine",0.0000 -Bittern,0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bufflehead,0.0000 -"Bunting, Ortolan",0.0000 -"Chiffchaff, Iberian",0.0000 -Dotterel,0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -"Egret, Snowy",0.0000 -Fieldfare,0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -"Goose, Red-breasted",0.0000 -"Gull, Glaucous-winged",0.0000 -"Gull, Yellow-legged",0.0000 -"Harrier, Hen",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -"Lark, Calandra",0.0000 -"Martin, Sand",0.0000 -Moorhen,0.0000 -Nuthatch,0.0000 -"Petrel, Fea's",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Great",0.0000 -"Shearwater, Macaronesian",0.0000 -Smew,0.0000 -"Spotted, Great",0.0000 -"Swift, Little",0.0000 -"Tern, Caspian",0.0000 -"Thrush, Hermit",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -"White, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 80ae6f827e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 -2016-12-27,48.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 -2016-12-28,48.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 -2016-12-29,48.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5ca06d97ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e369e84cf6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 9ae7b0c790..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1955f6ed5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Node Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -Fieldfare,12343.6392 -"Shearwater, Macaronesian",8590.5158 -"Scaup, Lesser",7492.8064 -"Lark, Calandra",5412.7517 -"Bluetail, Red-flanked",2773.5564 -"Shearwater, Balearic",2367.6417 -"White, Great",1973.0481 -"Bunting, Ortolan",1622.8178 -"Egret, Snowy",1593.1472 -Smew,1532.5833 -Fulmar,1526.7692 -"Tern, Caspian",1376.1239 -Chaffinch,1233.9042 -Jackdaw,1140.0328 -"Thrush, Hermit",1092.1644 -"Warbler, Hooded",896.5864 -Nuthatch,883.8200 -"Chiffchaff, Iberian",802.6467 -"Accentor, Alpine",458.9083 -"Kestrel, Lesser",433.1708 -"Warbler, Cetti's",336.9017 -"Petrel, Fea's",251.4806 -"Gull, Yellow-legged",180.5611 -Dunlin,150.5339 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -"Goose, Red-breasted",120.6086 -"Harrier, Hen",100.8417 -"Warbler, Savi's",100.6989 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Swift, Little",54.6022 -Dotterel,48.0067 -"Gull, Glaucous-winged",2.3450 -Blackbird,1.1269 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1955f6ed5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Node Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -Fieldfare,12343.6392 -"Shearwater, Macaronesian",8590.5158 -"Scaup, Lesser",7492.8064 -"Lark, Calandra",5412.7517 -"Bluetail, Red-flanked",2773.5564 -"Shearwater, Balearic",2367.6417 -"White, Great",1973.0481 -"Bunting, Ortolan",1622.8178 -"Egret, Snowy",1593.1472 -Smew,1532.5833 -Fulmar,1526.7692 -"Tern, Caspian",1376.1239 -Chaffinch,1233.9042 -Jackdaw,1140.0328 -"Thrush, Hermit",1092.1644 -"Warbler, Hooded",896.5864 -Nuthatch,883.8200 -"Chiffchaff, Iberian",802.6467 -"Accentor, Alpine",458.9083 -"Kestrel, Lesser",433.1708 -"Warbler, Cetti's",336.9017 -"Petrel, Fea's",251.4806 -"Gull, Yellow-legged",180.5611 -Dunlin,150.5339 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -"Goose, Red-breasted",120.6086 -"Harrier, Hen",100.8417 -"Warbler, Savi's",100.6989 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Swift, Little",54.6022 -Dotterel,48.0067 -"Gull, Glaucous-winged",2.3450 -Blackbird,1.1269 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1955f6ed5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Node Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -Fieldfare,12343.6392 -"Shearwater, Macaronesian",8590.5158 -"Scaup, Lesser",7492.8064 -"Lark, Calandra",5412.7517 -"Bluetail, Red-flanked",2773.5564 -"Shearwater, Balearic",2367.6417 -"White, Great",1973.0481 -"Bunting, Ortolan",1622.8178 -"Egret, Snowy",1593.1472 -Smew,1532.5833 -Fulmar,1526.7692 -"Tern, Caspian",1376.1239 -Chaffinch,1233.9042 -Jackdaw,1140.0328 -"Thrush, Hermit",1092.1644 -"Warbler, Hooded",896.5864 -Nuthatch,883.8200 -"Chiffchaff, Iberian",802.6467 -"Accentor, Alpine",458.9083 -"Kestrel, Lesser",433.1708 -"Warbler, Cetti's",336.9017 -"Petrel, Fea's",251.4806 -"Gull, Yellow-legged",180.5611 -Dunlin,150.5339 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -"Goose, Red-breasted",120.6086 -"Harrier, Hen",100.8417 -"Warbler, Savi's",100.6989 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Swift, Little",54.6022 -Dotterel,48.0067 -"Gull, Glaucous-winged",2.3450 -Blackbird,1.1269 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1955f6ed5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Node Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -Fieldfare,12343.6392 -"Shearwater, Macaronesian",8590.5158 -"Scaup, Lesser",7492.8064 -"Lark, Calandra",5412.7517 -"Bluetail, Red-flanked",2773.5564 -"Shearwater, Balearic",2367.6417 -"White, Great",1973.0481 -"Bunting, Ortolan",1622.8178 -"Egret, Snowy",1593.1472 -Smew,1532.5833 -Fulmar,1526.7692 -"Tern, Caspian",1376.1239 -Chaffinch,1233.9042 -Jackdaw,1140.0328 -"Thrush, Hermit",1092.1644 -"Warbler, Hooded",896.5864 -Nuthatch,883.8200 -"Chiffchaff, Iberian",802.6467 -"Accentor, Alpine",458.9083 -"Kestrel, Lesser",433.1708 -"Warbler, Cetti's",336.9017 -"Petrel, Fea's",251.4806 -"Gull, Yellow-legged",180.5611 -Dunlin,150.5339 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -"Goose, Red-breasted",120.6086 -"Harrier, Hen",100.8417 -"Warbler, Savi's",100.6989 -"Dowitcher, Short-billed",81.6261 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Swift, Little",54.6022 -Dotterel,48.0067 -"Gull, Glaucous-winged",2.3450 -Blackbird,1.1269 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0ff6d7828e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" -2016-12-22,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,16.7464,0,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,24.0000,0,0,0,0,0,0,0,8.6036,24.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,0 -2016-12-24,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,24.0000,24.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,0 -2016-12-25,0,0,0,0,0,0,32.5078,0,0,0,0,0,0,0,24.0000,24.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,0 -2016-12-26,0,0,0,0,0,0,96.0000,13.5208,0,0,0,0,0,0,24.0000,24.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,0 -2016-12-27,0,3.2167,0,311.6178,0,0,115.3094,120.0000,331.1156,123.9850,0,0,0,69.8267,52.2964,54.3978,0,0,0,0,0,0,0,0,19.9056,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,461.3931,144.4211,502.6856,220.6683,0,0,0,176.3833,144.0000,216.0000,0,0,43.9492,0,0,0,28.0381,0,24.0000,0,0,0,15.1192,0,0,0,0,24.0000,0,0,0,4.7006,0,0,0 -2016-12-29,12583.2597,301.8189,3901.6422,4150.0822,0,2472.0000,933.4136,477.7553,848.2247,420.2000,152.8733,0,485.1050,479.3708,208.6497,216.0000,47.7900,0,168.7433,102.7444,3.6200,0,216.0000,26.9772,24.0000,129.7778,0,0,72.0000,0,10.0983,37.9494,0,24.0000,10.4008,0,0,24.0000,0,0,0 -2016-12-30,21766.1511,6638.2006,5473.3125,3949.6347,3055.8617,2475.2589,1433.8564,378.4569,521.4136,451.4903,510.5000,0,914.9350,498.0953,664.9178,216.0000,629.4331,617.0356,321.9956,575.7072,67.3875,0,160.0869,296.1253,175.8633,50.3500,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,27.2308,19.2856,13.6064,13.9453,7.5778,19.3061,2.3450,1.1269,0.0650 -2016-12-31,20518.0064,8599.9281,2761.8142,1871.4597,5534.6542,696.7117,1625.9722,1112.6033,164.2022,491.3692,569.9600,3.1458,132.5433,179.7156,202.4067,216.4508,430.1536,475.1289,241.5139,205.3683,714.0100,299.0033,24.0000,13.7992,7.7117,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,27.2439,0,45.3169,45.9239,42.7433,0,0,0,0 -2017-01-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7c27d60e9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" -2016-12,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2246.7575,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,72.0069,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 -2017-01,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2a507195cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" -"2016 Q4",55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2246.7575,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,72.0069,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 -"2017 Q1",11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index de3e92b9db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Moorhen] Node Hours: Total","[Flycatcher, Taiga] Node Hours: Total","[Bufflehead] Node Hours: Total","[Fieldfare] Node Hours: Total","[Shearwater, Macaronesian] Node Hours: Total","[Scaup, Lesser] Node Hours: Total","[Lark, Calandra] Node Hours: Total","[Bluetail, Red-flanked] Node Hours: Total","[Shearwater, Balearic] Node Hours: Total","[White, Great] Node Hours: Total","[Bunting, Ortolan] Node Hours: Total","[Egret, Snowy] Node Hours: Total","[Smew] Node Hours: Total","[Fulmar] Node Hours: Total","[Tern, Caspian] Node Hours: Total","[Chaffinch] Node Hours: Total","[Jackdaw] Node Hours: Total","[Thrush, Hermit] Node Hours: Total","[Warbler, Hooded] Node Hours: Total","[Nuthatch] Node Hours: Total","[Chiffchaff, Iberian] Node Hours: Total","[Accentor, Alpine] Node Hours: Total","[Kestrel, Lesser] Node Hours: Total","[Warbler, Cetti's] Node Hours: Total","[Petrel, Fea's] Node Hours: Total","[Gull, Yellow-legged] Node Hours: Total","[Dunlin] Node Hours: Total","[Bittern] Node Hours: Total","[Warbler, Blackpoll] Node Hours: Total","[Goose, Red-breasted] Node Hours: Total","[Harrier, Hen] Node Hours: Total","[Warbler, Savi's] Node Hours: Total","[Dowitcher, Short-billed] Node Hours: Total","[Shearwater, Great] Node Hours: Total","[Martin, Sand] Node Hours: Total","[Spotted, Great] Node Hours: Total","[Swift, Little] Node Hours: Total","[Dotterel] Node Hours: Total","[Gull, Glaucous-winged] Node Hours: Total","[Blackbird] Node Hours: Total","[Yellowthroat, Common] Node Hours: Total" -2016,55820.4542,15567.1642,14099.6133,12110.4544,8590.5158,7485.6875,4763.3942,2246.7575,2367.6417,1707.7128,1233.3333,3.1458,1532.5833,1403.3917,1352.8742,1031.5950,1107.3767,1092.1644,776.2019,883.8200,785.0175,299.0033,428.1250,336.9017,251.4806,180.1278,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,54.4747,72.0069,69.3242,59.8692,50.3211,48.0067,2.3450,1.1269,0.0650 -2017,11183.6664,932.0322,1254.4625,233.1847,0,7.1189,649.3575,526.7989,0,265.3353,389.4844,1590.0014,0,123.3775,23.2497,202.3092,32.6561,0,120.3844,0,17.6292,159.9050,5.0458,0,0,0.4333,88.8292,1.7419,0,17.1758,0,0,27.1514,0,0.9528,0,4.2811,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index bedc0ad261..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Total" -"Tern, Caspian",163477.1903 -"Flycatcher, Taiga",112939.7331 -Fulmar,5136.8678 -"Shearwater, Balearic",5128.4506 -"Egret, Snowy",4056.0075 -"Shearwater, Macaronesian",3927.5247 -Dunlin,3030.4719 -"Chiffchaff, Iberian",2704.6794 -Fieldfare,1959.9481 -"Warbler, Cetti's",1953.8047 -Moorhen,544.5967 -"Lark, Calandra",443.1597 -Jackdaw,321.4447 -"White, Great",184.2997 -"Petrel, Fea's",122.8625 -"Warbler, Savi's",105.4822 -"Gull, Yellow-legged",62.0436 -"Kestrel, Lesser",48.5308 -"Bluetail, Red-flanked",36.5339 -"Bunting, Ortolan",30.1542 -"Goose, Red-breasted",20.6675 -"Thrush, Hermit",20.0331 -"Accentor, Alpine",19.3700 -Bufflehead,17.6803 -Smew,13.9250 -Bittern,12.6592 -"Warbler, Blackpoll",11.1744 -"Warbler, Hooded",7.7419 -"Harrier, Hen",6.4781 -Chaffinch,1.2361 -"Martin, Sand",0.1747 -"Swift, Little",0.1614 -"Spotted, Great",0.1408 -"Gull, Glaucous-winged",0.0978 -Blackbird,0.0147 -"Dowitcher, Short-billed",0.0106 -Nuthatch,0.0047 -"Scaup, Lesser",0.0042 -Dotterel,0.0003 -"Shearwater, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index bedc0ad261..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Total" -"Tern, Caspian",163477.1903 -"Flycatcher, Taiga",112939.7331 -Fulmar,5136.8678 -"Shearwater, Balearic",5128.4506 -"Egret, Snowy",4056.0075 -"Shearwater, Macaronesian",3927.5247 -Dunlin,3030.4719 -"Chiffchaff, Iberian",2704.6794 -Fieldfare,1959.9481 -"Warbler, Cetti's",1953.8047 -Moorhen,544.5967 -"Lark, Calandra",443.1597 -Jackdaw,321.4447 -"White, Great",184.2997 -"Petrel, Fea's",122.8625 -"Warbler, Savi's",105.4822 -"Gull, Yellow-legged",62.0436 -"Kestrel, Lesser",48.5308 -"Bluetail, Red-flanked",36.5339 -"Bunting, Ortolan",30.1542 -"Goose, Red-breasted",20.6675 -"Thrush, Hermit",20.0331 -"Accentor, Alpine",19.3700 -Bufflehead,17.6803 -Smew,13.9250 -Bittern,12.6592 -"Warbler, Blackpoll",11.1744 -"Warbler, Hooded",7.7419 -"Harrier, Hen",6.4781 -Chaffinch,1.2361 -"Martin, Sand",0.1747 -"Swift, Little",0.1614 -"Spotted, Great",0.1408 -"Gull, Glaucous-winged",0.0978 -Blackbird,0.0147 -"Dowitcher, Short-billed",0.0106 -Nuthatch,0.0047 -"Scaup, Lesser",0.0042 -Dotterel,0.0003 -"Shearwater, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index bedc0ad261..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Total" -"Tern, Caspian",163477.1903 -"Flycatcher, Taiga",112939.7331 -Fulmar,5136.8678 -"Shearwater, Balearic",5128.4506 -"Egret, Snowy",4056.0075 -"Shearwater, Macaronesian",3927.5247 -Dunlin,3030.4719 -"Chiffchaff, Iberian",2704.6794 -Fieldfare,1959.9481 -"Warbler, Cetti's",1953.8047 -Moorhen,544.5967 -"Lark, Calandra",443.1597 -Jackdaw,321.4447 -"White, Great",184.2997 -"Petrel, Fea's",122.8625 -"Warbler, Savi's",105.4822 -"Gull, Yellow-legged",62.0436 -"Kestrel, Lesser",48.5308 -"Bluetail, Red-flanked",36.5339 -"Bunting, Ortolan",30.1542 -"Goose, Red-breasted",20.6675 -"Thrush, Hermit",20.0331 -"Accentor, Alpine",19.3700 -Bufflehead,17.6803 -Smew,13.9250 -Bittern,12.6592 -"Warbler, Blackpoll",11.1744 -"Warbler, Hooded",7.7419 -"Harrier, Hen",6.4781 -Chaffinch,1.2361 -"Martin, Sand",0.1747 -"Swift, Little",0.1614 -"Spotted, Great",0.1408 -"Gull, Glaucous-winged",0.0978 -Blackbird,0.0147 -"Dowitcher, Short-billed",0.0106 -Nuthatch,0.0047 -"Scaup, Lesser",0.0042 -Dotterel,0.0003 -"Shearwater, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index bedc0ad261..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wait Hours: Total" -"Tern, Caspian",163477.1903 -"Flycatcher, Taiga",112939.7331 -Fulmar,5136.8678 -"Shearwater, Balearic",5128.4506 -"Egret, Snowy",4056.0075 -"Shearwater, Macaronesian",3927.5247 -Dunlin,3030.4719 -"Chiffchaff, Iberian",2704.6794 -Fieldfare,1959.9481 -"Warbler, Cetti's",1953.8047 -Moorhen,544.5967 -"Lark, Calandra",443.1597 -Jackdaw,321.4447 -"White, Great",184.2997 -"Petrel, Fea's",122.8625 -"Warbler, Savi's",105.4822 -"Gull, Yellow-legged",62.0436 -"Kestrel, Lesser",48.5308 -"Bluetail, Red-flanked",36.5339 -"Bunting, Ortolan",30.1542 -"Goose, Red-breasted",20.6675 -"Thrush, Hermit",20.0331 -"Accentor, Alpine",19.3700 -Bufflehead,17.6803 -Smew,13.9250 -Bittern,12.6592 -"Warbler, Blackpoll",11.1744 -"Warbler, Hooded",7.7419 -"Harrier, Hen",6.4781 -Chaffinch,1.2361 -"Martin, Sand",0.1747 -"Swift, Little",0.1614 -"Spotted, Great",0.1408 -"Gull, Glaucous-winged",0.0978 -Blackbird,0.0147 -"Dowitcher, Short-billed",0.0106 -Nuthatch,0.0047 -"Scaup, Lesser",0.0042 -Dotterel,0.0003 -"Shearwater, Great",0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index b77a145a84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,9.5964,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0.0000,0,0,0,0,0,0,0,0,0,0,110.8856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0033,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0.0028,0.0000,1367.4053,172.7719,0,0,0,0,311.1344,0,0,0.0289,0,76.0861,50.8225,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0 -2016-12-28,0.0000,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,42.4475,0,36.8761,0.0000,0,0,47.7519,18.4800,0,0,0,0,10.5775,0,0,11.1744,2.3317,0,0.0000,0,0,0,0,0,0,0,0.0017,0.0003,0.0000,0 -2016-12-29,2704.7964,1973.6497,627.0644,288.5578,0,0,0,0.0044,334.2367,0.7922,32.6300,45.4447,9.5847,11.7164,0.0000,0.0017,25.7286,0.0000,17.8439,10.4372,0,0,0,3.9286,13.9250,0,0.0000,1.4369,0.0894,0.0000,0.0000,0,0,0,0,0,0.0025,0.0000,0.0000,0.0000,0 -2016-12-30,160667.2464,26578.5867,331.7789,2269.2967,0,1857.6733,1170.3947,54.0756,0.0111,1436.2097,221.0947,98.0058,311.8600,44.7175,72.0400,105.4806,0.0000,0.7789,0.0000,7.3803,11.9272,20.0331,0,2.2686,0.0000,12.1381,0.0000,2.5139,6.3886,0.0000,0.0000,0.1611,0.0575,0.0978,0.0147,0.0028,0.0022,0.0008,0.0000,0.0000,0.0000 -2016-12-31,95.5417,64555.5128,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0031,516.8028,277.8381,100.6983,0.0000,7.6042,0.0000,0.0000,0,0.0000,0.2067,0.3128,8.7356,0.0000,19.3700,0.5711,0.0000,0.5147,0,1.3047,0.0000,0.0011,0.1747,0.0000,0.0833,0,0,0.0031,0.0000,0.0006,0,0,0 -2017-01-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 553876a783..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" -2016-12,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000,0.0000 -2017-01,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1fe9eb6188..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" -"2016 Q4",163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000,0.0000 -"2017 Q1",0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6752fb069a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Tern, Caspian] Wait Hours: Total","[Flycatcher, Taiga] Wait Hours: Total","[Fulmar] Wait Hours: Total","[Shearwater, Balearic] Wait Hours: Total","[Egret, Snowy] Wait Hours: Total","[Shearwater, Macaronesian] Wait Hours: Total","[Dunlin] Wait Hours: Total","[Chiffchaff, Iberian] Wait Hours: Total","[Fieldfare] Wait Hours: Total","[Warbler, Cetti's] Wait Hours: Total","[Moorhen] Wait Hours: Total","[Lark, Calandra] Wait Hours: Total","[Jackdaw] Wait Hours: Total","[White, Great] Wait Hours: Total","[Petrel, Fea's] Wait Hours: Total","[Warbler, Savi's] Wait Hours: Total","[Gull, Yellow-legged] Wait Hours: Total","[Kestrel, Lesser] Wait Hours: Total","[Bluetail, Red-flanked] Wait Hours: Total","[Bunting, Ortolan] Wait Hours: Total","[Goose, Red-breasted] Wait Hours: Total","[Thrush, Hermit] Wait Hours: Total","[Accentor, Alpine] Wait Hours: Total","[Bufflehead] Wait Hours: Total","[Smew] Wait Hours: Total","[Bittern] Wait Hours: Total","[Warbler, Blackpoll] Wait Hours: Total","[Warbler, Hooded] Wait Hours: Total","[Harrier, Hen] Wait Hours: Total","[Chaffinch] Wait Hours: Total","[Martin, Sand] Wait Hours: Total","[Swift, Little] Wait Hours: Total","[Spotted, Great] Wait Hours: Total","[Gull, Glaucous-winged] Wait Hours: Total","[Blackbird] Wait Hours: Total","[Dowitcher, Short-billed] Wait Hours: Total","[Nuthatch] Wait Hours: Total","[Scaup, Lesser] Wait Hours: Total","[Dotterel] Wait Hours: Total","[Shearwater, Great] Wait Hours: Total","[Yellowthroat, Common] Wait Hours: Total" -2016,163477.1836,93107.7492,5136.8678,5128.4506,0.3231,3927.5247,1203.9786,2704.6794,1941.5953,1953.8047,537.2208,406.8431,321.4447,177.0003,122.8625,105.4822,25.7286,48.5308,36.5339,18.1303,20.6628,20.0331,19.3700,17.3458,13.9250,12.6528,11.1744,7.5872,6.4781,0.0014,0.1747,0.1611,0.1408,0.0978,0.0147,0.0058,0.0047,0.0031,0.0003,0.0000,0.0000 -2017,0.0067,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3528,0,7.3758,36.3167,0.0000,7.2994,0,0,36.3150,0.0000,0.0000,12.0239,0.0047,0,0.0000,0.3344,0,0.0064,0,0.1547,0,1.2347,0.0000,0.0003,0,0,0,0.0047,0,0.0011,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index d7d78f8c8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -"Shearwater, Macaronesian",8590.5158 -"Lark, Calandra",3832.1586 -"Bluetail, Red-flanked",2773.5564 -Fieldfare,1663.0800 -"Egret, Snowy",1593.1472 -Fulmar,1526.7414 -"Tern, Caspian",1230.7931 -"Shearwater, Balearic",1145.5708 -Jackdaw,1140.0328 -"Warbler, Hooded",896.5864 -"Chiffchaff, Iberian",802.6467 -"Scaup, Lesser",658.6011 -"Kestrel, Lesser",433.1708 -Chaffinch,393.6403 -"White, Great",371.0986 -Smew,255.4306 -"Petrel, Fea's",251.4806 -"Accentor, Alpine",229.4542 -"Bunting, Ortolan",202.8522 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -Nuthatch,126.2600 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Warbler, Cetti's",74.8000 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Goose, Red-breasted",56.2867 -"Warbler, Savi's",50.3497 -Dotterel,48.0067 -"Thrush, Hermit",46.3125 -Dunlin,45.2333 -"Swift, Little",18.3367 -"Gull, Yellow-legged",9.0281 -Blackbird,1.1269 -"Gull, Glaucous-winged",0.2606 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index d7d78f8c8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -"Shearwater, Macaronesian",8590.5158 -"Lark, Calandra",3832.1586 -"Bluetail, Red-flanked",2773.5564 -Fieldfare,1663.0800 -"Egret, Snowy",1593.1472 -Fulmar,1526.7414 -"Tern, Caspian",1230.7931 -"Shearwater, Balearic",1145.5708 -Jackdaw,1140.0328 -"Warbler, Hooded",896.5864 -"Chiffchaff, Iberian",802.6467 -"Scaup, Lesser",658.6011 -"Kestrel, Lesser",433.1708 -Chaffinch,393.6403 -"White, Great",371.0986 -Smew,255.4306 -"Petrel, Fea's",251.4806 -"Accentor, Alpine",229.4542 -"Bunting, Ortolan",202.8522 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -Nuthatch,126.2600 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Warbler, Cetti's",74.8000 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Goose, Red-breasted",56.2867 -"Warbler, Savi's",50.3497 -Dotterel,48.0067 -"Thrush, Hermit",46.3125 -Dunlin,45.2333 -"Swift, Little",18.3367 -"Gull, Yellow-legged",9.0281 -Blackbird,1.1269 -"Gull, Glaucous-winged",0.2606 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index d7d78f8c8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -"Shearwater, Macaronesian",8590.5158 -"Lark, Calandra",3832.1586 -"Bluetail, Red-flanked",2773.5564 -Fieldfare,1663.0800 -"Egret, Snowy",1593.1472 -Fulmar,1526.7414 -"Tern, Caspian",1230.7931 -"Shearwater, Balearic",1145.5708 -Jackdaw,1140.0328 -"Warbler, Hooded",896.5864 -"Chiffchaff, Iberian",802.6467 -"Scaup, Lesser",658.6011 -"Kestrel, Lesser",433.1708 -Chaffinch,393.6403 -"White, Great",371.0986 -Smew,255.4306 -"Petrel, Fea's",251.4806 -"Accentor, Alpine",229.4542 -"Bunting, Ortolan",202.8522 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -Nuthatch,126.2600 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Warbler, Cetti's",74.8000 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Goose, Red-breasted",56.2867 -"Warbler, Savi's",50.3497 -Dotterel,48.0067 -"Thrush, Hermit",46.3125 -Dunlin,45.2333 -"Swift, Little",18.3367 -"Gull, Yellow-legged",9.0281 -Blackbird,1.1269 -"Gull, Glaucous-winged",0.2606 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index d7d78f8c8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Wall Hours: Total" -Moorhen,67004.1206 -"Flycatcher, Taiga",16499.1964 -Bufflehead,15354.0758 -"Shearwater, Macaronesian",8590.5158 -"Lark, Calandra",3832.1586 -"Bluetail, Red-flanked",2773.5564 -Fieldfare,1663.0800 -"Egret, Snowy",1593.1472 -Fulmar,1526.7414 -"Tern, Caspian",1230.7931 -"Shearwater, Balearic",1145.5708 -Jackdaw,1140.0328 -"Warbler, Hooded",896.5864 -"Chiffchaff, Iberian",802.6467 -"Scaup, Lesser",658.6011 -"Kestrel, Lesser",433.1708 -Chaffinch,393.6403 -"White, Great",371.0986 -Smew,255.4306 -"Petrel, Fea's",251.4806 -"Accentor, Alpine",229.4542 -"Bunting, Ortolan",202.8522 -Bittern,135.7597 -"Warbler, Blackpoll",132.4094 -Nuthatch,126.2600 -"Harrier, Hen",100.8417 -"Dowitcher, Short-billed",81.6261 -"Warbler, Cetti's",74.8000 -"Shearwater, Great",72.0069 -"Martin, Sand",70.2769 -"Spotted, Great",59.8692 -"Goose, Red-breasted",56.2867 -"Warbler, Savi's",50.3497 -Dotterel,48.0067 -"Thrush, Hermit",46.3125 -Dunlin,45.2333 -"Swift, Little",18.3367 -"Gull, Yellow-legged",9.0281 -Blackbird,1.1269 -"Gull, Glaucous-winged",0.2606 -"Yellowthroat, Common",0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 01b7bba8da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" -2016-12-22,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,16.7464,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,24.0000,0,0,0,0,8.6036,0,0,0,0,0,0,24.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-24,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,24.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-25,0,0,0,0,32.5078,0,0,0,0,24.0000,0,0,0,0,0,0,24.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-26,0,0,0,0,96.0000,13.5208,0,0,0,24.0000,0,0,0,0,0,0,24.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-27,0,3.2167,0,0,115.3094,120.0000,38.9522,0,69.8267,52.2964,61.4911,0,0,0,0,0,27.7997,20.6642,0,19.9056,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,0,386.4281,144.4211,228.4575,0,176.3833,144.0000,169.2183,0,43.9492,0,160.7689,28.0381,48.0000,36.7781,0,24.0000,0,0,0,15.1192,0,0,0,0,24.0000,0,0,0,0,4.7006,0,0,0,0,0,0,0 -2016-12-29,12583.2597,301.8189,3901.6422,0,597.4011,477.7553,538.2222,0,479.3708,187.5622,356.3561,47.7900,168.7433,3.6200,216.0000,216.0000,48.0000,74.4400,80.8508,24.0000,0,19.1092,0,72.0000,14.6778,10.0983,0,1.9269,24.0000,10.4008,0,0,18.9747,24.0000,0,0,0,6.4889,0,0,0 -2016-12-30,21766.1511,6638.2006,5473.3125,3055.8617,1061.7603,378.4569,530.1600,0,498.0675,592.9178,394.3031,629.4331,321.9956,67.3875,216.5364,160.0869,48.0000,83.3264,152.4892,175.8633,0,63.8125,108.1047,45.2903,82.2439,82.1119,27.2308,59.0739,19.2856,13.6064,13.9453,9.6922,24.0006,19.3061,29.3436,12.8208,4.3656,2.5175,1.1269,0.2606,0.0650 -2016-12-31,20518.0064,8599.9281,2761.8142,5534.6542,889.1303,1112.6033,266.9975,3.1458,179.7156,150.1633,164.2022,430.1536,241.5139,714.0100,63.5161,24.0000,48.2375,99.6328,22.0906,7.7117,149.5017,71.2450,25.9131,0,29.3383,8.6314,27.2439,13.7992,0,45.3169,45.9239,38.8869,7.3744,0,16.9689,1.4844,9.6900,0,0,0,0 -2017-01-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index e3dfe5528b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" -2016-12,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2246.7575,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,72.0069,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 -2017-01,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 469abad582..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" -"2016 Q4",55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2246.7575,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,72.0069,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 -"2017 Q1",11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8ad8ad3af8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Moorhen] Wall Hours: Total","[Flycatcher, Taiga] Wall Hours: Total","[Bufflehead] Wall Hours: Total","[Shearwater, Macaronesian] Wall Hours: Total","[Lark, Calandra] Wall Hours: Total","[Bluetail, Red-flanked] Wall Hours: Total","[Fieldfare] Wall Hours: Total","[Egret, Snowy] Wall Hours: Total","[Fulmar] Wall Hours: Total","[Tern, Caspian] Wall Hours: Total","[Shearwater, Balearic] Wall Hours: Total","[Jackdaw] Wall Hours: Total","[Warbler, Hooded] Wall Hours: Total","[Chiffchaff, Iberian] Wall Hours: Total","[Scaup, Lesser] Wall Hours: Total","[Kestrel, Lesser] Wall Hours: Total","[Chaffinch] Wall Hours: Total","[White, Great] Wall Hours: Total","[Smew] Wall Hours: Total","[Petrel, Fea's] Wall Hours: Total","[Accentor, Alpine] Wall Hours: Total","[Bunting, Ortolan] Wall Hours: Total","[Bittern] Wall Hours: Total","[Warbler, Blackpoll] Wall Hours: Total","[Nuthatch] Wall Hours: Total","[Harrier, Hen] Wall Hours: Total","[Dowitcher, Short-billed] Wall Hours: Total","[Warbler, Cetti's] Wall Hours: Total","[Shearwater, Great] Wall Hours: Total","[Martin, Sand] Wall Hours: Total","[Spotted, Great] Wall Hours: Total","[Goose, Red-breasted] Wall Hours: Total","[Warbler, Savi's] Wall Hours: Total","[Dotterel] Wall Hours: Total","[Thrush, Hermit] Wall Hours: Total","[Dunlin] Wall Hours: Total","[Swift, Little] Wall Hours: Total","[Gull, Yellow-legged] Wall Hours: Total","[Blackbird] Wall Hours: Total","[Gull, Glaucous-winged] Wall Hours: Total","[Yellowthroat, Common] Wall Hours: Total" -2016,55820.4542,15567.1642,14099.6133,8590.5158,3243.4786,2246.7575,1602.7894,3.1458,1403.3639,1207.5433,1145.5708,1107.3767,776.2019,785.0175,656.8214,428.1250,332.7836,314.8414,255.4306,251.4806,149.5017,154.1667,134.0178,132.4094,126.2600,100.8417,54.4747,74.8000,72.0069,69.3242,59.8692,48.5792,50.3497,48.0067,46.3125,14.3053,14.0556,9.0064,1.1269,0.2606,0.0650 -2017,11183.6664,932.0322,1254.4625,0,588.6800,526.7989,60.2906,1590.0014,123.3775,23.2497,0,32.6561,120.3844,17.6292,1.7797,5.0458,60.8567,56.2572,0,0,79.9525,48.6856,1.7419,0,0,0,27.1514,0,0,0.9528,0,7.7075,0,0,0,30.9281,4.2811,0.0217,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 2808649565..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Screwdriver CPU Utilization (%)" -"Scaup, Lesser",7.3085 -Fieldfare,6.9780 -Moorhen,6.3451 -"Bluetail, Red-flanked",5.1824 -"Flycatcher, Taiga",3.6382 -"Lark, Calandra",2.5756 -Nuthatch,2.4551 -"White, Great",2.0829 -"Bunting, Ortolan",1.8441 -Smew,1.7416 -Bufflehead,1.4540 -"Shearwater, Balearic",1.2443 -"Thrush, Hermit",1.2411 -"Egret, Snowy",1.1064 -Chaffinch,1.0303 -Fulmar,0.8245 -"Shearwater, Macaronesian",0.8135 -Jackdaw,0.7186 -"Warbler, Hooded",0.6976 -"Tern, Caspian",0.5136 -"Accentor, Alpine",0.4983 -"Kestrel, Lesser",0.4922 -"Warbler, Blackpoll",0.1505 -Dunlin,0.1438 -Dotterel,0.1429 -"Goose, Red-breasted",0.1370 -"Gull, Yellow-legged",0.1368 -"Warbler, Cetti's",0.1121 -"Petrel, Fea's",0.0967 -"Chiffchaff, Iberian",0.0966 -"Warbler, Savi's",0.0954 -"Martin, Sand",0.0590 -"Swift, Little",0.0559 -"Dowitcher, Short-billed",0.0142 -Bittern,0.0129 -"Harrier, Hen",0.0095 -"Shearwater, Great",0.0068 -"Spotted, Great",0.0057 -Blackbird,0.0034 -"Gull, Glaucous-winged",0.0027 -"Yellowthroat, Common",0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 5bc1f2548d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Screwdriver CPU Utilization (%)" -Fieldfare,1.6507 -"Scaup, Lesser",1.6136 -Moorhen,1.3685 -"Bluetail, Red-flanked",0.9805 -"Flycatcher, Taiga",0.8085 -"Lark, Calandra",0.5590 -"White, Great",0.4493 -Nuthatch,0.4092 -"Bunting, Ortolan",0.3977 -Smew,0.3756 -Bufflehead,0.3136 -Chaffinch,0.2764 -"Shearwater, Balearic",0.2701 -"Thrush, Hermit",0.2677 -"Egret, Snowy",0.2263 -Fulmar,0.1778 -"Shearwater, Macaronesian",0.1755 -"Warbler, Hooded",0.1505 -Jackdaw,0.1470 -"Tern, Caspian",0.1115 -"Accentor, Alpine",0.1075 -"Kestrel, Lesser",0.1062 -"Warbler, Blackpoll",0.0325 -Dunlin,0.0310 -"Goose, Red-breasted",0.0296 -"Gull, Yellow-legged",0.0295 -Dotterel,0.0270 -"Warbler, Cetti's",0.0242 -"Chiffchaff, Iberian",0.0228 -"Warbler, Savi's",0.0226 -"Petrel, Fea's",0.0209 -"Martin, Sand",0.0127 -"Swift, Little",0.0121 -Bittern,0.0028 -"Dowitcher, Short-billed",0.0024 -"Harrier, Hen",0.0021 -"Shearwater, Great",0.0015 -"Spotted, Great",0.0012 -Blackbird,0.0006 -"Gull, Glaucous-winged",0.0006 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index ea47a6b24d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Screwdriver CPU Utilization (%)" -Fieldfare,0.7276 -"Scaup, Lesser",0.6371 -Moorhen,0.6345 -"Bluetail, Red-flanked",0.3779 -"Flycatcher, Taiga",0.3334 -"Lark, Calandra",0.2357 -"White, Great",0.2083 -"Bunting, Ortolan",0.1844 -Smew,0.1742 -Nuthatch,0.1551 -Bufflehead,0.1454 -"Thrush, Hermit",0.1241 -"Shearwater, Balearic",0.1139 -Chaffinch,0.1133 -"Egret, Snowy",0.0967 -Fulmar,0.0825 -"Shearwater, Macaronesian",0.0813 -"Warbler, Hooded",0.0698 -Jackdaw,0.0628 -"Accentor, Alpine",0.0498 -"Kestrel, Lesser",0.0492 -"Tern, Caspian",0.0470 -"Warbler, Blackpoll",0.0150 -Dunlin,0.0144 -"Goose, Red-breasted",0.0137 -"Gull, Yellow-legged",0.0137 -"Warbler, Cetti's",0.0112 -Dotterel,0.0104 -"Chiffchaff, Iberian",0.0101 -"Warbler, Savi's",0.0099 -"Petrel, Fea's",0.0097 -"Martin, Sand",0.0059 -"Swift, Little",0.0056 -Bittern,0.0013 -"Harrier, Hen",0.0010 -"Dowitcher, Short-billed",0.0009 -"Shearwater, Great",0.0007 -"Spotted, Great",0.0006 -"Gull, Glaucous-winged",0.0003 -Blackbird,0.0002 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv deleted file mode 100644 index d122526ba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,50 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -PI,"Screwdriver CPU Utilization (%)" -Fieldfare,0.2017 -Moorhen,0.1813 -"Scaup, Lesser",0.1668 -"Bluetail, Red-flanked",0.0978 -"Flycatcher, Taiga",0.0892 -"Lark, Calandra",0.0638 -"White, Great",0.0595 -"Bunting, Ortolan",0.0527 -Smew,0.0498 -Bufflehead,0.0415 -Nuthatch,0.0398 -"Thrush, Hermit",0.0355 -"Shearwater, Balearic",0.0308 -Chaffinch,0.0302 -"Egret, Snowy",0.0263 -Fulmar,0.0236 -"Shearwater, Macaronesian",0.0232 -"Warbler, Hooded",0.0199 -Jackdaw,0.0171 -"Accentor, Alpine",0.0142 -"Kestrel, Lesser",0.0141 -"Tern, Caspian",0.0127 -"Warbler, Blackpoll",0.0043 -Dunlin,0.0041 -"Goose, Red-breasted",0.0039 -"Gull, Yellow-legged",0.0039 -"Warbler, Cetti's",0.0032 -"Chiffchaff, Iberian",0.0028 -"Petrel, Fea's",0.0028 -"Warbler, Savi's",0.0028 -Dotterel,0.0027 -"Martin, Sand",0.0017 -"Swift, Little",0.0016 -Bittern,0.0004 -"Harrier, Hen",0.0003 -"Dowitcher, Short-billed",0.0002 -"Shearwater, Great",0.0002 -"Spotted, Great",0.0002 -Blackbird,0.0001 -"Gull, Glaucous-winged",0.0001 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv deleted file mode 100644 index e5c3882489..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Fieldfare] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0.2093,0,0,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.3000,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0090,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,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.4857,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.2253,0,1.8000,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.8952,0,2.0000,0.0034,1.1947,0,1.5498,0,0,0,4.4779,0,0,0.5533,0.5819,0,0,0,0.2483,0,0,0,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0.0049,0,0,0,0 -2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,5.1848,0,2.4389,0,0,2.0446,3.4312,0,0,1.9000,1.4699,0,0,0.3662,1.0125,0,0.3505,0.1890,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0.0250,0,0,0,0 -2016-12-29,41.2000,51.6212,13.1076,7.9626,0.4670,5.4647,1.7124,4.6525,1.9109,6.0638,4.0642,4.1811,0,0,1.9000,2.2958,0,0.2688,1.4062,0.8919,0,2.7000,0.9000,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0,0.0105,0.0250,0,0,0,0 -2016-12-30,20.6136,24.4758,22.6731,6.3076,13.0205,5.8332,9.5951,5.0436,6.3813,11.4367,5.7014,2.7609,7.7129,0,1.9000,2.1966,3.1832,3.6308,2.7403,1.9172,0,2.0011,0.5661,0.5439,0.4022,0.3402,0.4196,1.1062,0.2073,0.2962,0.5000,0.0709,0.0687,0.0284,0.1126,0.0855,0.0201,0.0145,0.0235,0.0293,0.0011 -2016-12-31,5.5311,11.5907,21.3729,12.2717,18.3076,5.1151,3.4228,5.9107,7.1245,1.6568,2.8769,1.3368,5.9391,0.0393,1.9038,1.4976,5.7653,2.4113,2.1582,2.9599,3.6187,0.3000,0,0.1307,0,0.9523,0,0.0144,0.0080,0.7438,0.3073,0.5116,0.5239,0.0284,0.0270,0.0090,0,0.0478,0,0,0 -2017-01-01,0.0593,1.5099,11.6497,5.1025,1.7636,2.3403,0,3.3167,4.8686,0,1.3067,0,0,9.9375,1.7672,1.0281,0,0.1562,1.0032,0.3871,1.8628,0.0631,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0223,0.0283,0.0018,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 742b149ee6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[Fieldfare] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" -2016-12,4.8547,8.2790,2.9073,5.1957,3.0488,1.8082,0.9798,2.9461,0.7708,0.9579,0.7344,0.9566,0.9678,0.6826,0.0066,0.4021,0.4474,0.3335,0.4854,0.3887,0.1809,0.2676,0.0828,0.0337,0.0646,0.0751,0.1667,0.0617,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0113,0.0053,0.0038,0.0031,0.0039,0.0015,0.0001 -2017-01,0.0487,0.0019,0.3758,0.1646,0.0569,0.0755,0.1070,0,0.1571,0,0.0422,0.0570,0,0,0.3206,0.0332,0,0.0324,0.0050,0.0125,0.0601,0.0020,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0004,0.0007,0.0001,0.0009,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index bc74591966..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[Fieldfare] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" -"2016 Q4",4.8547,8.2790,2.9073,5.1957,3.0488,1.8082,0.9798,0.7708,0.9579,2.9461,0.7344,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.1667,0.0673,0.0677,0.0532,0.0318,0.0296,0.0070,0.0053,0.0113,0.0038,0.0031,0.0015,0.0039,0.0001 -"2017 Q1",0.0168,0.0007,0.1294,0.0567,0.0196,0.0260,0.0369,0.0541,0,0,0.0145,0,0,0.0196,0.1104,0.0114,0,0.0111,0.0017,0.0207,0.0007,0.0043,0,0.0101,0.0024,0.0000,0,0,0.0004,0,0,0.0001,0.0002,0.0000,0,0.0003,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 71c667bf9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/pi/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by PI" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[Fieldfare] Screwdriver CPU Utilization (%)","[Moorhen] Screwdriver CPU Utilization (%)","[Scaup, Lesser] Screwdriver CPU Utilization (%)","[Bluetail, Red-flanked] Screwdriver CPU Utilization (%)","[Flycatcher, Taiga] Screwdriver CPU Utilization (%)","[Lark, Calandra] Screwdriver CPU Utilization (%)","[White, Great] Screwdriver CPU Utilization (%)","[Bunting, Ortolan] Screwdriver CPU Utilization (%)","[Smew] Screwdriver CPU Utilization (%)","[Bufflehead] Screwdriver CPU Utilization (%)","[Nuthatch] Screwdriver CPU Utilization (%)","[Thrush, Hermit] Screwdriver CPU Utilization (%)","[Shearwater, Balearic] Screwdriver CPU Utilization (%)","[Chaffinch] Screwdriver CPU Utilization (%)","[Egret, Snowy] Screwdriver CPU Utilization (%)","[Fulmar] Screwdriver CPU Utilization (%)","[Shearwater, Macaronesian] Screwdriver CPU Utilization (%)","[Warbler, Hooded] Screwdriver CPU Utilization (%)","[Jackdaw] Screwdriver CPU Utilization (%)","[Accentor, Alpine] Screwdriver CPU Utilization (%)","[Kestrel, Lesser] Screwdriver CPU Utilization (%)","[Tern, Caspian] Screwdriver CPU Utilization (%)","[Warbler, Blackpoll] Screwdriver CPU Utilization (%)","[Dunlin] Screwdriver CPU Utilization (%)","[Goose, Red-breasted] Screwdriver CPU Utilization (%)","[Gull, Yellow-legged] Screwdriver CPU Utilization (%)","[Warbler, Cetti's] Screwdriver CPU Utilization (%)","[Chiffchaff, Iberian] Screwdriver CPU Utilization (%)","[Petrel, Fea's] Screwdriver CPU Utilization (%)","[Warbler, Savi's] Screwdriver CPU Utilization (%)","[Dotterel] Screwdriver CPU Utilization (%)","[Martin, Sand] Screwdriver CPU Utilization (%)","[Swift, Little] Screwdriver CPU Utilization (%)","[Bittern] Screwdriver CPU Utilization (%)","[Harrier, Hen] Screwdriver CPU Utilization (%)","[Dowitcher, Short-billed] Screwdriver CPU Utilization (%)","[Shearwater, Great] Screwdriver CPU Utilization (%)","[Spotted, Great] Screwdriver CPU Utilization (%)","[Blackbird] Screwdriver CPU Utilization (%)","[Gull, Glaucous-winged] Screwdriver CPU Utilization (%)","[Yellowthroat, Common] Screwdriver CPU Utilization (%)" -2016,4.8547,2.9073,8.2790,5.1957,3.0488,1.8082,0.9798,0.7708,0.9579,0.7344,2.9461,0.6826,0.9678,0.9566,0.0066,0.4021,0.4474,0.3335,0.4854,0.1809,0.2676,0.3887,0.0828,0.0337,0.0646,0.0751,0.0617,0.0673,0.0532,0.0677,0.1667,0.0318,0.0296,0.0070,0.0053,0.0113,0.0038,0.0031,0.0039,0.0015,0.0001 -2017,0.0041,0.0319,0.0002,0.0140,0.0048,0.0064,0.0091,0.0133,0,0.0036,0,0,0,0.0048,0.0272,0.0028,0,0.0027,0.0004,0.0051,0.0002,0.0011,0,0.0025,0.0006,0.0000,0,0.0001,0,0,0,0.0000,0.0001,0.0000,0,0.0001,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 5d1cc19bb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Users: Active" -screw,60 -wrench,18 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 5d1cc19bb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Users: Active" -screw,60 -wrench,18 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 5d1cc19bb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Users: Active" -screw,60 -wrench,18 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 5d1cc19bb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Users: Active" -screw,60 -wrench,18 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index b262d02d20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of Users: Active","[wrench] Number of Users: Active" -2016-12-22,1,1 -2016-12-23,1,2 -2016-12-24,1,2 -2016-12-25,1,3 -2016-12-26,2,3 -2016-12-27,12,5 -2016-12-28,21,7 -2016-12-29,37,12 -2016-12-30,58,18 -2016-12-31,46,16 -2017-01-01,30,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 77ec7bf230..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of Users: Active","[wrench] Number of Users: Active" -2016-12,60,18 -2017-01,30,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index a9c2ed9857..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of Users: Active","[wrench] Number of Users: Active" -"2016 Q4",60,18 -"2017 Q1",30,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 06dcbd7b00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of Users: Active","[wrench] Number of Users: Active" -2016,60,18 -2017,30,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 6539adc578..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of PIs: Active" -screw,41 -wrench,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 6539adc578..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of PIs: Active" -screw,41 -wrench,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 6539adc578..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of PIs: Active" -screw,41 -wrench,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 6539adc578..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of PIs: Active" -screw,41 -wrench,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index cc15b79ca2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" -2016-12-22,1,1 -2016-12-23,1,2 -2016-12-24,1,2 -2016-12-25,1,2 -2016-12-26,2,2 -2016-12-27,10,3 -2016-12-28,17,4 -2016-12-29,26,6 -2016-12-30,39,7 -2016-12-31,32,7 -2017-01-01,23,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index f1d7ab89a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" -2016-12,41,7 -2017-01,23,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 8182dc92d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" -"2016 Q4",41,7 -"2017 Q1",23,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 7c745e364f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of PIs: Active","[wrench] Number of PIs: Active" -2016,41,7 -2017,23,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index d33d0f370d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Resources: Active" -screw,4 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index d33d0f370d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Resources: Active" -screw,4 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index d33d0f370d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Resources: Active" -screw,4 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index d33d0f370d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Resources: Active" -screw,4 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 1a97e29cd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" -2016-12-22,1,1 -2016-12-23,1,1 -2016-12-24,1,1 -2016-12-25,1,1 -2016-12-26,2,1 -2016-12-27,4,1 -2016-12-28,4,1 -2016-12-29,4,1 -2016-12-30,4,1 -2016-12-31,4,1 -2017-01-01,4,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 75c5b82e6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" -2016-12,4,1 -2017-01,4,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d15f4318be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" -"2016 Q4",4,1 -"2017 Q1",4,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index ba50ff8ef0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of Resources: Active","[wrench] Number of Resources: Active" -2016,4,1 -2017,4,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index cdd29ad603..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -screw,12.80355102,0.5348933947643199 -wrench,6.37875732,0.33815435199138116 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index adabc0faaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -screw,12.80355102,0.9353503198676139 -wrench,6.37875732,0.6324232167493075 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index adabc0faaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -screw,12.80355102,0.9353503198676139 -wrench,6.37875732,0.6324232167493075 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index adabc0faaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -screw,12.80355102,0.9353503198676139 -wrench,6.37875732,0.6324232167493075 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index bc63a775e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" -2016-12-22,200.95666667,203.30000000 -2016-12-23,288.00000000,148.30180556 -2016-12-24,288.00000000,156.00000000 -2016-12-25,288.00000000,98.05400000 -2016-12-26,84.05555556,350.40000000 -2016-12-27,445.99730556,181.10212963 -2016-12-28,177.41426546,304.01960784 -2016-12-29,98.91927680,89.17202336 -2016-12-30,10.64677666,4.48561843 -2016-12-31,7.95729740,5.16445323 -2017-01-01,4.24817309,3.84804043 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 2dc9cc0e1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" -2016-12,15.20749469,6.70495772 -2017-01,4.24817309,3.84804043 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3a90e576a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" -"2016 Q4",15.20749469,6.70495772 -"2017 Q1",4.24817309,3.84804043 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 800b79d904..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] CPU Hours: Per Job","[wrench] CPU Hours: Per Job" -2016,15.20749469,6.70495772 -2017,4.24817309,3.84804043 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index bfcf15b116..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Per Job" -screw,0.00844461 -wrench,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index bfcf15b116..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Per Job" -screw,0.00844461 -wrench,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index bfcf15b116..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Per Job" -screw,0.00844461 -wrench,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index bfcf15b116..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Per Job" -screw,0.00844461 -wrench,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5d5517d04d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" -2016-12-22,33.49277778,0.00000000 -2016-12-23,48.00000000,0.00000000 -2016-12-24,48.00000000,0.00000000 -2016-12-25,48.00000000,0.00000000 -2016-12-26,8.00000000,0.00000000 -2016-12-27,1.60000000,0.00000000 -2016-12-28,0.11085450,0.00000000 -2016-12-29,0.02905569,0.00000000 -2016-12-30,0.00202994,0.00000000 -2016-12-31,0.00193315,0.00000000 -2017-01-01,0.00274705,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 16fe5ed9aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" -2016-12,0.01004798,0.00000000 -2017-01,0.00274705,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 294cb01d03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" -"2016 Q4",0.01004798,0.00000000 -"2017 Q1",0.00274705,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index f7956011f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] GPU Hours: Per Job","[wrench] GPU Hours: Per Job" -2016,0.01004798,0.00000000 -2017,0.00274705,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index f5a008f909..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -screw,0.0001,0.00004711767852829441 -wrench,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index f5a008f909..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -screw,0.0001,0.00004711767852829441 -wrench,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index f5a008f909..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -screw,0.0001,0.00004711767852829441 -wrench,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index f5a008f909..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -screw,0.0001,0.00004711767852829441 -wrench,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 3ff71ca297..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" -2016-12-22,2.0000,0.0000 -2016-12-23,2.0000,0.0000 -2016-12-24,2.0000,0.0000 -2016-12-25,2.0000,0.0000 -2016-12-26,0.3333,0.0000 -2016-12-27,0.0667,0.0000 -2016-12-28,0.0046,0.0000 -2016-12-29,0.0012,0.0000 -2016-12-30,0.0001,0.0000 -2016-12-31,0.0001,0.0000 -2017-01-01,0.0003,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 3662102434..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" -2016-12,0.0000,0.0000 -2017-01,0.0003,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index c0c13ddfed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" -"2016 Q4",0.0000,0.0000 -"2017 Q1",0.0003,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 9b30204edf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] GPU Count: Per Job","[wrench] GPU Count: Per Job" -2016,0.0000,0.0000 -2017,0.0003,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index fed03ea6cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" -screw,70.2878 -wrench,15.7368 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index fed03ea6cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" -screw,70.2878 -wrench,15.7368 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fed03ea6cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" -screw,70.2878 -wrench,15.7368 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index fed03ea6cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By CPU Hours (Core Count)" -screw,70.2878 -wrench,15.7368 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index a8da70d219..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,12.0000,12.0000 -2016-12-23,12.0000,11.6809 -2016-12-24,12.0000,11.1538 -2016-12-25,12.0000,15.1906 -2016-12-26,13.7158,19.7397 -2016-12-27,75.7443,19.3183 -2016-12-28,113.7129,16.9501 -2016-12-29,90.8222,20.2231 -2016-12-30,74.0078,16.4023 -2016-12-31,46.9788,14.3031 -2017-01-01,23.3724,10.0052 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index c2f3d72b86..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,74.5533,16.2321 -2017-01,23.3724,10.0052 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1b6111e7f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",74.5533,16.2321 -"2017 Q1",23.3724,10.0052 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 469f59cdc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Job Size: Weighted By CPU Hours (Core Count)","[wrench] Job Size: Weighted By CPU Hours (Core Count)" -2016,74.5533,16.2321 -2017,23.3724,10.0052 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0d48b88a9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" -screw,12.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0d48b88a9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" -screw,12.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0d48b88a9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" -screw,12.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0d48b88a9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Weighted By GPU Hours (GPU Count)" -screw,12.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 834d774101..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0.0000 -2016-12-23,12.0000,0.0000 -2016-12-24,12.0000,0.0000 -2016-12-25,12.0000,0.0000 -2016-12-26,12.0000,0.0000 -2016-12-27,12.0000,0.0000 -2016-12-28,12.0000,0.0000 -2016-12-29,12.0000,0.0000 -2016-12-30,12.0000,0.0000 -2016-12-31,12.0000,0.0000 -2017-01-01,12.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 25ff87f94e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000 -2017-01,12.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9026d0e6f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000 -"2017 Q1",12.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 4cf7105be3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Job Size: Weighted By GPU Hours (GPU Count)","[wrench] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000 -2017,12.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 66c2152f6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -screw,2.48851983,0.04455091706245642 -wrench,0.61345852,0.025732433486385795 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index c8c13e13ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -screw,2.48851983,0.0741899583245457 -wrench,0.61345852,0.04722314464546534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c8c13e13ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -screw,2.48851983,0.0741899583245457 -wrench,0.61345852,0.04722314464546534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index c8c13e13ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Per Job","Std Dev: Node Hours: Per Job" -screw,2.48851983,0.0741899583245457 -wrench,0.61345852,0.04722314464546534 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 00470bafe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" -2016-12-22,16.74638889,16.94166667 -2016-12-23,24.00000000,16.30180556 -2016-12-24,24.00000000,24.00000000 -2016-12-25,24.00000000,11.30155556 -2016-12-26,6.25347222,24.00000000 -2016-12-27,35.28700000,12.31518519 -2016-12-28,19.02060559,22.27614379 -2016-12-29,16.85101493,7.84795770 -2016-12-30,2.11411709,0.44502730 -2016-12-31,1.81136856,0.50545051 -2017-01-01,1.13778338,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index bc2f6a5419..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" -2016-12,2.85417511,0.62961066 -2017-01,1.13778338,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 91cd37f741..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" -"2016 Q4",2.85417511,0.62961066 -"2017 Q1",1.13778338,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index ec4e09f13b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Node Hours: Per Job","[wrench] Node Hours: Per Job" -2016,2.85417511,0.62961066 -2017,1.13778338,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 707aff0b18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -wrench,9.6298,0.022205555738387606 -screw,8.5663,0.0252154090432755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 707aff0b18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -wrench,9.6298,0.022205555738387606 -screw,8.5663,0.0252154090432755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 707aff0b18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -wrench,9.6298,0.022205555738387606 -screw,8.5663,0.0252154090432755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 707aff0b18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -wrench,9.6298,0.022205555738387606 -screw,8.5663,0.0252154090432755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index ec58a4b078..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" -2016-12-22,12.0000,12.0000 -2016-12-23,6.5000,12.0000 -2016-12-24,6.5000,12.0000 -2016-12-25,14.6000,12.0000 -2016-12-26,14.6000,15.3333 -2016-12-27,14.1667,34.9667 -2016-12-28,13.5294,11.4873 -2016-12-29,10.9773,6.6447 -2016-12-30,9.1123,7.7748 -2016-12-31,9.7568,8.5991 -2017-01-01,11.1505,8.9335 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 8dc4ffb9fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" -2016-12,9.4049,8.3542 -2017-01,11.1505,8.9335 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8fb364722f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" -"2016 Q4",9.4049,8.3542 -"2017 Q1",11.1505,8.9335 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 45952361dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[wrench] Job Size: Per Job (Core Count)","[screw] Job Size: Per Job (Core Count)" -2016,9.4049,8.3542 -2017,11.1505,8.9335 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0460f2425c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -screw,4.75413280,0.10600976285407 -wrench,1.85771176,0.04173360028194275 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0460f2425c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -screw,4.75413280,0.10600976285407 -wrench,1.85771176,0.04173360028194275 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0460f2425c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -screw,4.75413280,0.10600976285407 -wrench,1.85771176,0.04173360028194275 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0460f2425c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -screw,4.75413280,0.10600976285407 -wrench,1.85771176,0.04173360028194275 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index c169576945..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" -2016-12-22,0.00027778,9.33222222 -2016-12-23,0.00000000,9.59638889 -2016-12-24,0.00000000,0.00000000 -2016-12-25,0.00000000,36.96185185 -2016-12-26,0.00066667,0.00000000 -2016-12-27,82.42593750,0.00420635 -2016-12-28,8.18370003,60.06016667 -2016-12-29,4.90283019,1.76508998 -2016-12-30,8.72268458,0.67086751 -2016-12-31,2.76399096,2.29642170 -2017-01-01,1.42993013,4.44912351 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d23d9b27ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" -2016-12,5.73725065,1.48979528 -2017-01,1.42993013,4.44912351 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 81b34de797..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" -"2016 Q4",5.73725065,1.48979528 -"2017 Q1",1.42993013,4.44912351 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7d94312d73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Wait Hours: Per Job","[wrench] Wait Hours: Per Job" -2016,5.73725065,1.48979528 -2017,1.42993013,4.44912351 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index b3c78bc8d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -screw,2.02003765,0.02072668503313302 -wrench,0.59530227,0.023036904042316335 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0ff1bb18b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -screw,2.02003765,0.029573871735368337 -wrench,0.59530227,0.043533301064325194 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0ff1bb18b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -screw,2.02003765,0.029573871735368337 -wrench,0.59530227,0.043533301064325194 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0ff1bb18b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -screw,2.02003765,0.029573871735368337 -wrench,0.59530227,0.043533301064325194 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 36b6a068a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" -2016-12-22,16.74638889,16.94166667 -2016-12-23,24.00000000,16.30180556 -2016-12-24,24.00000000,24.00000000 -2016-12-25,24.00000000,11.30155556 -2016-12-26,6.25347222,24.00000000 -2016-12-27,12.88003704,12.31518519 -2016-12-28,9.68925905,22.27614379 -2016-12-29,12.01813038,7.39270518 -2016-12-30,1.71908906,0.42482893 -2016-12-31,1.60973208,0.49295988 -2017-01-01,1.06629022,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index a2f09c1e9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" -2016-12,2.27041027,0.60887666 -2017-01,1.06629022,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d5e5544ca6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" -"2016 Q4",2.27041027,0.60887666 -"2017 Q1",1.06629022,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 878a774d4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Wall Hours: Per Job","[wrench] Wall Hours: Per Job" -2016,2.27041027,0.60887666 -2017,1.06629022,0.47114714 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 4907b73246..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","User Expansion Factor" -wrench,3.6177 -screw,3.0793 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 4907b73246..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","User Expansion Factor" -wrench,3.6177 -screw,3.0793 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 4907b73246..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","User Expansion Factor" -wrench,3.6177 -screw,3.0793 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 4907b73246..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","User Expansion Factor" -wrench,3.6177 -screw,3.0793 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 2b488da0bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[wrench] User Expansion Factor","[screw] User Expansion Factor" -2016-12-22,1.0495,1.0000 -2016-12-23,1.0525,1.0000 -2016-12-24,1.0552,1.0000 -2016-12-25,1.1158,1.0000 -2016-12-26,1.2310,1.0000 -2016-12-27,1.1876,2.1647 -2016-12-28,1.3009,1.5180 -2016-12-29,1.3071,1.3820 -2016-12-30,2.4490,5.0498 -2016-12-31,5.4420,2.4306 -2017-01-01,6.2105,2.6134 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 524ba71204..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[wrench] User Expansion Factor","[screw] User Expansion Factor" -2016-12,3.3255,3.1398 -2017-01,6.2105,2.6134 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 91d2cf695b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[wrench] User Expansion Factor","[screw] User Expansion Factor" -"2016 Q4",3.3255,3.1398 -"2017 Q1",6.2105,2.6134 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 278b3f46e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[wrench] User Expansion Factor","[screw] User Expansion Factor" -2016,3.3255,3.1398 -2017,6.2105,2.6134 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 907540d96d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Ended" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 907540d96d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Ended" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 907540d96d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Ended" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 907540d96d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Ended" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv deleted file mode 100644 index f2620c918a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" -2016-12-22,0,0 -2016-12-23,0,0 -2016-12-24,0,0 -2016-12-25,0,0 -2016-12-26,0,0 -2016-12-27,0,0 -2016-12-28,0,0 -2016-12-29,0,0 -2016-12-30,21497,5109 -2016-12-31,23453,4688 -2017-01-01,15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 97a6121e48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" -2016-12,44950,9797 -2017-01,15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 7d3591b1db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" -"2016 Q4",44950,9797 -"2017 Q1",15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv deleted file mode 100644 index a6ef651aa4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of Jobs Ended","[wrench] Number of Jobs Ended" -2016,44950,9797 -2017,15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 1620b4236f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Max (Core Count)" -screw,336 -wrench,80 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 1620b4236f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Max (Core Count)" -screw,336 -wrench,80 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 1620b4236f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Max (Core Count)" -screw,336 -wrench,80 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 1620b4236f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Max (Core Count)" -screw,336 -wrench,80 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index f7d4ab96c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" -2016-12-22,12,12 -2016-12-23,12,12 -2016-12-24,12,12 -2016-12-25,12,24 -2016-12-26,16,24 -2016-12-27,144,24 -2016-12-28,192,24 -2016-12-29,192,64 -2016-12-30,336,80 -2016-12-31,336,64 -2017-01-01,192,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index f0b569eadb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" -2016-12,336,80 -2017-01,192,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index a13b5d9043..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" -"2016 Q4",336,80 -"2017 Q1",192,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index de508d5f77..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Job Size: Max (Core Count)","[wrench] Job Size: Max (Core Count)" -2016,336,80 -2017,192,24 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 861986f9cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Min (Core Count)" -screw,1 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 861986f9cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Min (Core Count)" -screw,1 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 861986f9cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Min (Core Count)" -screw,1 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 861986f9cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Min (Core Count)" -screw,1 -wrench,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 9870c198fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" -2016-12-22,12,12 -2016-12-23,12,1 -2016-12-24,12,1 -2016-12-25,12,1 -2016-12-26,12,1 -2016-12-27,1,1 -2016-12-28,1,1 -2016-12-29,1,1 -2016-12-30,1,1 -2016-12-31,1,1 -2017-01-01,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 98d9fb0f92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" -2016-12,1,1 -2017-01,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 37be86e3e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" -"2016 Q4",1,1 -"2017 Q1",1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index fbe82bbb40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Job Size: Min (Core Count)","[wrench] Job Size: Min (Core Count)" -2016,1,1 -2017,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index ea4e72b90d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Normalized (% of Total Cores)" -wrench,0.240744351 -screw,0.053539078 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index ea4e72b90d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Normalized (% of Total Cores)" -wrench,0.240744351 -screw,0.053539078 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index ea4e72b90d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Normalized (% of Total Cores)" -wrench,0.240744351 -screw,0.053539078 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index ea4e72b90d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Job Size: Normalized (% of Total Cores)" -wrench,0.240744351 -screw,0.053539078 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 9df0b057aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" -2016-12-22,0.300000000,0.300000000 -2016-12-23,0.162500000,0.300000000 -2016-12-24,0.162500000,0.300000000 -2016-12-25,0.365000000,0.300000000 -2016-12-26,0.365000000,0.191666667 -2016-12-27,0.354166667,0.218541667 -2016-12-28,0.338235294,0.071795612 -2016-12-29,0.274431818,0.041529207 -2016-12-30,0.227807641,0.048592785 -2016-12-31,0.243918919,0.053744211 -2017-01-01,0.278763441,0.055834245 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index c70a2294c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" -2016-12,0.235121939,0.052214017 -2017-01,0.278763441,0.055834245 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index cd2914679c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.235121939,0.052214017 -"2017 Q1",0.278763441,0.055834245 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index f335a8799e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[wrench] Job Size: Normalized (% of Total Cores)","[screw] Job Size: Normalized (% of Total Cores)" -2016,0.235121939,0.052214017 -2017,0.278763441,0.055834245 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 862a3e5fd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Running" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 862a3e5fd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Running" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 862a3e5fd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Running" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 862a3e5fd4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Running" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index b1996f3b3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" -2016-12-22,1,1 -2016-12-23,1,2 -2016-12-24,1,2 -2016-12-25,1,5 -2016-12-26,6,5 -2016-12-27,30,12 -2016-12-28,433,17 -2016-12-29,1652,88 -2016-12-30,23646,5209 -2016-12-31,24830,4773 -2017-01-01,15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 56496f59bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" -2016-12,46327,9882 -2017-01,15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 2412733f20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" -"2016 Q4",46327,9882 -"2017 Q1",15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 056f15571d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of Jobs Running","[wrench] Number of Jobs Running" -2016,46327,9882 -2017,15078,1488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 25307c5608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Started" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 25307c5608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Started" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 25307c5608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Started" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 25307c5608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Started" -screw,60028 -wrench,11285 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 8137f2ebc6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" -2016-12-22,1,1 -2016-12-23,0,1 -2016-12-24,0,0 -2016-12-25,0,3 -2016-12-26,5,0 -2016-12-27,24,7 -2016-12-28,403,5 -2016-12-29,1219,71 -2016-12-30,21994,5121 -2016-12-31,22681,4673 -2017-01-01,13701,1403 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index b581f76050..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" -2016-12,46327,9882 -2017-01,13701,1403 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index ae996b5f7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" -"2016 Q4",46327,9882 -"2017 Q1",13701,1403 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 2035379683..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of Jobs Started","[wrench] Number of Jobs Started" -2016,46327,9882 -2017,13701,1403 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index cff1ff9538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Submitted" -screw,54454 -wrench,9962 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index ff871053f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Submitted" -screw,58906 -wrench,10337 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index ff871053f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Submitted" -screw,58906 -wrench,10337 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index ff871053f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Number of Jobs Submitted" -screw,58906 -wrench,10337 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index b27fe4f753..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" -2016-12-22,1,0 -2016-12-23,0,1 -2016-12-24,0,0 -2016-12-25,0,1 -2016-12-26,5,0 -2016-12-27,11,7 -2016-12-28,379,0 -2016-12-29,1137,69 -2016-12-30,20666,4994 -2016-12-31,19676,4435 -2017-01-01,12579,455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 75aee5b02a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" -2016-12,46327,9882 -2017-01,12579,455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index c4ab16d768..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" -"2016 Q4",46327,9882 -"2017 Q1",12579,455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index c11c0685de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Number of Jobs Submitted","[wrench] Number of Jobs Submitted" -2016,46327,9882 -2017,12579,455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9750d8b3e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Total" -screw,768571.5606 -wrench,71984.2764 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9750d8b3e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Total" -screw,768571.5606 -wrench,71984.2764 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9750d8b3e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Total" -screw,768571.5606 -wrench,71984.2764 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9750d8b3e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","CPU Hours: Total" -screw,768571.5606 -wrench,71984.2764 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7c3bb31f28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -2016-12-22,200.9567,203.3000 -2016-12-23,288.0000,296.6036 -2016-12-24,288.0000,312.0000 -2016-12-25,288.0000,490.2700 -2016-12-26,504.3333,1752.0000 -2016-12-27,13379.9192,2173.2256 -2016-12-28,76820.3769,5168.3333 -2016-12-29,163414.6453,7847.1381 -2016-12-30,251753.6808,23365.5864 -2016-12-31,197579.6944,24649.9353 -2017-01-01,64053.9539,5725.8842 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 82d7293d09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -2016-12,704517.6067,66258.3922 -2017-01,64053.9539,5725.8842 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1a2905f80b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -"2016 Q4",704517.6067,66258.3922 -"2017 Q1",64053.9539,5725.8842 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 9365c86fd3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -2016,704517.6067,66258.3922 -2017,64053.9539,5725.8842 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index a850fa8ba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Total" -screw,506.9128 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index a850fa8ba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Total" -screw,506.9128 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index a850fa8ba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Total" -screw,506.9128 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index a850fa8ba3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","GPU Hours: Total" -screw,506.9128 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 599db839ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -2016-12-22,33.4928,0.0000 -2016-12-23,48.0000,0.0000 -2016-12-24,48.0000,0.0000 -2016-12-25,48.0000,0.0000 -2016-12-26,48.0000,0.0000 -2016-12-27,48.0000,0.0000 -2016-12-28,48.0000,0.0000 -2016-12-29,48.0000,0.0000 -2016-12-30,48.0000,0.0000 -2016-12-31,48.0000,0.0000 -2017-01-01,41.4200,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 2354954c1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -2016-12,465.4928,0.0000 -2017-01,41.4200,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 309be30ddb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -"2016 Q4",465.4928,0.0000 -"2017 Q1",41.4200,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5475270a20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -2016,465.4928,0.0000 -2017,41.4200,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1b82a6851d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Total" -screw,149380.8681 -wrench,6922.8794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1b82a6851d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Total" -screw,149380.8681 -wrench,6922.8794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1b82a6851d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Total" -screw,149380.8681 -wrench,6922.8794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1b82a6851d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Node Hours: Total" -screw,149380.8681 -wrench,6922.8794 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 946f39179f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Node Hours: Total","[wrench] Node Hours: Total" -2016-12-22,16.7464,16.9417 -2016-12-23,24.0000,32.6036 -2016-12-24,24.0000,48.0000 -2016-12-25,24.0000,56.5078 -2016-12-26,37.5208,120.0000 -2016-12-27,1058.6100,147.7822 -2016-12-28,8235.9222,378.6944 -2016-12-29,27837.8767,690.6203 -2016-12-30,49990.4128,2318.1472 -2016-12-31,44976.2814,2412.5153 -2017-01-01,17155.4978,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3c3edc70fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Node Hours: Total","[wrench] Node Hours: Total" -2016-12,132225.3703,6221.8125 -2017-01,17155.4978,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 17d18afedc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Node Hours: Total","[wrench] Node Hours: Total" -"2016 Q4",132225.3703,6221.8125 -"2017 Q1",17155.4978,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7b6f9777fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Node Hours: Total","[wrench] Node Hours: Total" -2016,132225.3703,6221.8125 -2017,17155.4978,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4aa1fe2d6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Total" -screw,285381.0836 -wrench,20964.2772 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4aa1fe2d6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Total" -screw,285381.0836 -wrench,20964.2772 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4aa1fe2d6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Total" -screw,285381.0836 -wrench,20964.2772 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4aa1fe2d6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wait Hours: Total" -screw,285381.0836 -wrench,20964.2772 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 61526ae1ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" -2016-12-22,0.0003,9.3322 -2016-12-23,0.0000,9.5964 -2016-12-24,0.0000,0.0000 -2016-12-25,0.0000,110.8856 -2016-12-26,0.0033,0.0000 -2016-12-27,1978.2225,0.0294 -2016-12-28,3298.0311,300.3008 -2016-12-29,5976.5500,125.3214 -2016-12-30,191846.7247,3435.5125 -2016-12-31,62690.0789,10731.1786 -2017-01-01,19591.4728,6242.1203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 1313bd7cdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" -2016-12,265789.6108,14722.1569 -2017-01,19591.4728,6242.1203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 17edbfa719..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" -"2016 Q4",265789.6108,14722.1569 -"2017 Q1",19591.4728,6242.1203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index eb989ed7ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Wait Hours: Total","[wrench] Wait Hours: Total" -2016,265789.6108,14722.1569 -2017,19591.4728,6242.1203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c0d74c357a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Total" -screw,121258.8203 -wrench,6717.9861 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c0d74c357a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Total" -screw,121258.8203 -wrench,6717.9861 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c0d74c357a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Total" -screw,121258.8203 -wrench,6717.9861 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c0d74c357a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Wall Hours: Total" -screw,121258.8203 -wrench,6717.9861 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3e4f3b3c3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" -2016-12-22,16.7464,16.9417 -2016-12-23,24.0000,32.6036 -2016-12-24,24.0000,48.0000 -2016-12-25,24.0000,56.5078 -2016-12-26,37.5208,120.0000 -2016-12-27,386.4011,147.7822 -2016-12-28,4195.4492,378.6944 -2016-12-29,19853.9514,650.5581 -2016-12-30,40649.5800,2212.9339 -2016-12-31,39969.6475,2352.8975 -2017-01-01,16077.5239,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5ff5e141c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" -2016-12,105181.2964,6016.9192 -2017-01,16077.5239,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 32e42a678d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" -"2016 Q4",105181.2964,6016.9192 -"2017 Q1",16077.5239,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8559bbfe58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Wall Hours: Total","[wrench] Wall Hours: Total" -2016,105181.2964,6016.9192 -2017,16077.5239,701.0669 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv deleted file mode 100644 index f43bfe6732..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Screwdriver CPU Utilization (%)" -screw,22.8742 -wrench,6.8167 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv deleted file mode 100644 index a0fe5e5f0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Screwdriver CPU Utilization (%)" -screw,4.8521 -wrench,1.7853 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 499430cf7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Screwdriver CPU Utilization (%)" -screw,1.9965 -wrench,0.7424 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv deleted file mode 100644 index fe30df1685..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Service Provider","Screwdriver CPU Utilization (%)" -screw,0.5334 -wrench,0.1994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv deleted file mode 100644 index a9bab51521..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" -2016-12-22,0.2093,0.2118 -2016-12-23,0.3000,0.3090 -2016-12-24,0.3000,0.3250 -2016-12-25,0.3000,0.5107 -2016-12-26,0.2627,1.8250 -2016-12-27,3.4844,2.2638 -2016-12-28,20.0053,5.3837 -2016-12-29,42.5559,8.1741 -2016-12-30,65.5609,24.3392 -2016-12-31,51.4530,25.6770 -2017-01-01,16.6807,5.9645 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 14e18a970e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" -2016-12,17.8993,6.2745 -2017-01,0.5381,0.1924 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 5ad03bc9f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" -"2016 Q4",17.8993,6.2745 -"2017 Q1",0.1853,0.0663 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 7b1e6cbddd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/provider/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[screw] Screwdriver CPU Utilization (%)","[wrench] Screwdriver CPU Utilization (%)" -2016,17.8993,6.2745 -2017,0.0457,0.0163 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 401ff26320..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Users: Active" -curry,31 -banana-cream,15 -derby,11 -green-grape,8 -bavarian-cream,7 -apple,5 -buttermilk,4 -bumbleberry,3 -butter,3 -coconut-cream,3 -blackberry,2 -boysenberry,2 -cheese,2 -cherry,2 -fish,2 -flapper,2 -blueberry,1 -cashew,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 401ff26320..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Users: Active" -curry,31 -banana-cream,15 -derby,11 -green-grape,8 -bavarian-cream,7 -apple,5 -buttermilk,4 -bumbleberry,3 -butter,3 -coconut-cream,3 -blackberry,2 -boysenberry,2 -cheese,2 -cherry,2 -fish,2 -flapper,2 -blueberry,1 -cashew,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 401ff26320..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Users: Active" -curry,31 -banana-cream,15 -derby,11 -green-grape,8 -bavarian-cream,7 -apple,5 -buttermilk,4 -bumbleberry,3 -butter,3 -coconut-cream,3 -blackberry,2 -boysenberry,2 -cheese,2 -cherry,2 -fish,2 -flapper,2 -blueberry,1 -cashew,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 401ff26320..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Users: Active" -curry,31 -banana-cream,15 -derby,11 -green-grape,8 -bavarian-cream,7 -apple,5 -buttermilk,4 -bumbleberry,3 -butter,3 -coconut-cream,3 -blackberry,2 -boysenberry,2 -cheese,2 -cherry,2 -fish,2 -flapper,2 -blueberry,1 -cashew,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index af7617fbdf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-23,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-24,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-25,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-26,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1 -2016-12-27,2,3,4,0,2,2,0,0,0,1,1,0,0,0,2,0,0,1,1 -2016-12-28,7,6,6,0,2,2,0,0,0,1,1,0,1,0,2,0,0,1,1 -2016-12-29,17,10,9,0,4,2,1,0,0,1,2,1,1,1,2,1,1,1,1 -2016-12-30,28,15,11,7,6,5,4,2,2,2,2,1,2,2,2,2,1,1,1 -2016-12-31,24,14,9,4,6,5,4,1,1,3,2,2,0,2,0,1,1,1,1 -2017-01-01,16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 05cdb62457..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" -2016-12,30,15,11,8,7,5,4,3,3,3,2,2,2,2,2,2,1,1,1 -2017-01,16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9dcdbb1070..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" -"2016 Q4",30,15,11,8,7,5,4,3,3,3,2,2,2,2,2,2,1,1,1 -"2017 Q1",16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 6ab2bf9cec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Number of Users: Active","[banana-cream] Number of Users: Active","[derby] Number of Users: Active","[green-grape] Number of Users: Active","[bavarian-cream] Number of Users: Active","[apple] Number of Users: Active","[buttermilk] Number of Users: Active","[bumbleberry] Number of Users: Active","[butter] Number of Users: Active","[coconut-cream] Number of Users: Active","[blackberry] Number of Users: Active","[boysenberry] Number of Users: Active","[cheese] Number of Users: Active","[cherry] Number of Users: Active","[fish] Number of Users: Active","[flapper] Number of Users: Active","[blueberry] Number of Users: Active","[cashew] Number of Users: Active","[chestnut] Number of Users: Active" -2016,30,15,11,8,7,5,4,3,3,3,2,2,2,2,2,2,1,1,1 -2017,16,6,4,1,2,3,3,1,2,3,2,1,0,1,0,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index bb0a1e0a47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of PIs: Active" -curry,27 -banana-cream,7 -green-grape,7 -derby,6 -bumbleberry,3 -apple,2 -bavarian-cream,2 -boysenberry,2 -butter,2 -buttermilk,2 -cheese,2 -coconut-cream,2 -fish,2 -flapper,2 -blackberry,1 -blueberry,1 -cashew,1 -cherry,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index bb0a1e0a47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of PIs: Active" -curry,27 -banana-cream,7 -green-grape,7 -derby,6 -bumbleberry,3 -apple,2 -bavarian-cream,2 -boysenberry,2 -butter,2 -buttermilk,2 -cheese,2 -coconut-cream,2 -fish,2 -flapper,2 -blackberry,1 -blueberry,1 -cashew,1 -cherry,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index bb0a1e0a47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of PIs: Active" -curry,27 -banana-cream,7 -green-grape,7 -derby,6 -bumbleberry,3 -apple,2 -bavarian-cream,2 -boysenberry,2 -butter,2 -buttermilk,2 -cheese,2 -coconut-cream,2 -fish,2 -flapper,2 -blackberry,1 -blueberry,1 -cashew,1 -cherry,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index bb0a1e0a47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of PIs: Active" -curry,27 -banana-cream,7 -green-grape,7 -derby,6 -bumbleberry,3 -apple,2 -bavarian-cream,2 -boysenberry,2 -butter,2 -buttermilk,2 -cheese,2 -coconut-cream,2 -fish,2 -flapper,2 -blackberry,1 -blueberry,1 -cashew,1 -cherry,1 -chestnut,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 3d749ff31c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-25,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1 -2016-12-26,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1 -2016-12-27,2,2,0,3,0,1,1,0,0,0,0,1,2,0,1,0,1,0,1 -2016-12-28,7,4,0,4,0,1,1,0,0,0,1,1,2,0,1,0,1,0,1 -2016-12-29,15,6,0,5,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1 -2016-12-30,24,7,6,6,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1 -2016-12-31,21,7,4,5,1,2,2,2,1,2,0,2,0,1,1,1,1,1,1 -2017-01-01,16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index a51ca6e6a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" -2016-12,26,7,7,6,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2017-01,16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d3c8fc8267..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" -"2016 Q4",26,7,7,6,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -"2017 Q1",16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index a37904cede..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Number of PIs: Active","[banana-cream] Number of PIs: Active","[green-grape] Number of PIs: Active","[derby] Number of PIs: Active","[bumbleberry] Number of PIs: Active","[apple] Number of PIs: Active","[bavarian-cream] Number of PIs: Active","[boysenberry] Number of PIs: Active","[butter] Number of PIs: Active","[buttermilk] Number of PIs: Active","[cheese] Number of PIs: Active","[coconut-cream] Number of PIs: Active","[fish] Number of PIs: Active","[flapper] Number of PIs: Active","[blackberry] Number of PIs: Active","[blueberry] Number of PIs: Active","[cashew] Number of PIs: Active","[cherry] Number of PIs: Active","[chestnut] Number of PIs: Active" -2016,26,7,7,6,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2017,16,3,1,2,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 16f15b3194..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Resources: Active" -banana-cream,4 -apple,2 -bavarian-cream,2 -blackberry,2 -boysenberry,2 -bumbleberry,2 -blueberry,1 -butter,1 -buttermilk,1 -cashew,1 -cheese,1 -cherry,1 -chestnut,1 -coconut-cream,1 -curry,1 -derby,1 -fish,1 -flapper,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 16f15b3194..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Resources: Active" -banana-cream,4 -apple,2 -bavarian-cream,2 -blackberry,2 -boysenberry,2 -bumbleberry,2 -blueberry,1 -butter,1 -buttermilk,1 -cashew,1 -cheese,1 -cherry,1 -chestnut,1 -coconut-cream,1 -curry,1 -derby,1 -fish,1 -flapper,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 16f15b3194..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Resources: Active" -banana-cream,4 -apple,2 -bavarian-cream,2 -blackberry,2 -boysenberry,2 -bumbleberry,2 -blueberry,1 -butter,1 -buttermilk,1 -cashew,1 -cheese,1 -cherry,1 -chestnut,1 -coconut-cream,1 -curry,1 -derby,1 -fish,1 -flapper,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 16f15b3194..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Resources: Active" -banana-cream,4 -apple,2 -bavarian-cream,2 -blackberry,2 -boysenberry,2 -bumbleberry,2 -blueberry,1 -butter,1 -buttermilk,1 -cashew,1 -cheese,1 -cherry,1 -chestnut,1 -coconut-cream,1 -curry,1 -derby,1 -fish,1 -flapper,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index f863fbbb14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" -2016-12-22,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-23,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-24,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-25,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-26,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -2016-12-27,2,1,1,1,0,0,0,0,0,1,0,0,1,1,1,1,1,0,0 -2016-12-28,2,1,1,1,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0 -2016-12-29,3,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0 -2016-12-30,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,4,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1 -2017-01-01,4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 37ce9ef7bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" -2016-12,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 6a74ab1509..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" -"2016 Q4",4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 5a008b60b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[banana-cream] Number of Resources: Active","[apple] Number of Resources: Active","[bavarian-cream] Number of Resources: Active","[blackberry] Number of Resources: Active","[boysenberry] Number of Resources: Active","[bumbleberry] Number of Resources: Active","[blueberry] Number of Resources: Active","[butter] Number of Resources: Active","[buttermilk] Number of Resources: Active","[cashew] Number of Resources: Active","[cheese] Number of Resources: Active","[cherry] Number of Resources: Active","[chestnut] Number of Resources: Active","[coconut-cream] Number of Resources: Active","[curry] Number of Resources: Active","[derby] Number of Resources: Active","[fish] Number of Resources: Active","[flapper] Number of Resources: Active","[green-grape] Number of Resources: Active" -2016,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,4,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index a601191272..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -fish,1618.72650463, -cashew,657.08909329, -derby,392.28983679,42.84792494250981 -coconut-cream,247.38450980,89.08320735238685 -bavarian-cream,242.39793403,56.623500492331715 -chestnut,236.92098291,26.6108956407919 -blueberry,169.87555556, -buttermilk,154.59506643,41.104792843063635 -blackberry,116.74002976, -butter,69.17617284,23.776854550562064 -cheese,65.51148148,37.94894414137108 -flapper,41.59687500,8.792253378250166 -cherry,39.76185185, -curry,26.38523697,1.464734433687352 -apple,25.40724419,3.366577610883879 -bumbleberry,13.78536797,0.22188446574737158 -boysenberry,8.50838675,1.5078666814799302 -banana-cream,5.15292873,0.3886116177449345 -green-grape,4.22379299,0.4544047109942307 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index fff7e83bad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -fish,1618.72650463,182.0951288519553 -cashew,657.08909329,51.277475129665504 -derby,392.28983679,77.79433606895417 -coconut-cream,247.38450980,187.1142642607946 -bavarian-cream,242.39793403,112.1963870014736 -chestnut,236.92098291,205.44947089795318 -blueberry,169.87555556,76.68850641157292 -buttermilk,154.59506643,53.70543314926935 -blackberry,116.74002976,17.52235561829723 -butter,69.17617284,23.776854550562064 -cheese,65.51148148,61.73618026540957 -flapper,41.59687500,23.13876312144338 -cherry,39.76185185,6.954023834196349 -curry,26.38523697,2.4475758578838773 -apple,25.40724419,7.297616841871969 -bumbleberry,13.78536797,0.22188446574737158 -boysenberry,8.50838675,2.119407176827592 -banana-cream,5.15292873,0.7201855503151238 -green-grape,4.22379299,0.4544047109942307 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fff7e83bad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -fish,1618.72650463,182.0951288519553 -cashew,657.08909329,51.277475129665504 -derby,392.28983679,77.79433606895417 -coconut-cream,247.38450980,187.1142642607946 -bavarian-cream,242.39793403,112.1963870014736 -chestnut,236.92098291,205.44947089795318 -blueberry,169.87555556,76.68850641157292 -buttermilk,154.59506643,53.70543314926935 -blackberry,116.74002976,17.52235561829723 -butter,69.17617284,23.776854550562064 -cheese,65.51148148,61.73618026540957 -flapper,41.59687500,23.13876312144338 -cherry,39.76185185,6.954023834196349 -curry,26.38523697,2.4475758578838773 -apple,25.40724419,7.297616841871969 -bumbleberry,13.78536797,0.22188446574737158 -boysenberry,8.50838675,2.119407176827592 -banana-cream,5.15292873,0.7201855503151238 -green-grape,4.22379299,0.4544047109942307 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index fff7e83bad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" -fish,1618.72650463,182.0951288519553 -cashew,657.08909329,51.277475129665504 -derby,392.28983679,77.79433606895417 -coconut-cream,247.38450980,187.1142642607946 -bavarian-cream,242.39793403,112.1963870014736 -chestnut,236.92098291,205.44947089795318 -blueberry,169.87555556,76.68850641157292 -buttermilk,154.59506643,53.70543314926935 -blackberry,116.74002976,17.52235561829723 -butter,69.17617284,23.776854550562064 -cheese,65.51148148,61.73618026540957 -flapper,41.59687500,23.13876312144338 -cherry,39.76185185,6.954023834196349 -curry,26.38523697,2.4475758578838773 -apple,25.40724419,7.297616841871969 -bumbleberry,13.78536797,0.22188446574737158 -boysenberry,8.50838675,2.119407176827592 -banana-cream,5.15292873,0.7201855503151238 -green-grape,4.22379299,0.4544047109942307 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 20e78a3e1a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] 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,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,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,0 -2016-12-25,0,0,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,112.71222222,0,0,128.13333333,0 -2016-12-26,0,43.26666667,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,384.00000000,0,0,576.00000000,0 -2016-12-27,52.04657407,384.00000000,1205.09911111,243.18222222,60.65037037,288.00000000,0,0,3.21666667,0,0,0,0,537.25333333,311.81666667,0,0,175.51733333,0 -2016-12-28,629.69511111,144.42111111,620.99051852,1536.00000000,264.00000000,288.00000000,0,0,24.00000000,0,94.01111111,0,0,71.57875476,432.00000000,0,0,1709.25286550,0 -2016-12-29,672.11407407,382.20422222,273.65798423,1536.00000000,156.14018519,288.00000000,105.63000000,410.97777778,62.76246528,0,480.00000000,52.00416667,28.69444444,61.22224058,164.29696970,0,7.24000000,181.36763441,0 -2016-12-30,382.83157407,302.76555556,104.39808622,312.41422222,206.42289683,288.00000000,125.45555556,256.62628858,69.85362963,62.85925926,27.24407407,28.61481481,19.18227778,21.60542509,11.68535754,5.41333333,48.00000000,4.55391531,4.15493464 -2016-12-31,0,245.43360532,284.69504535,229.70641975,92.51748737,288.00000000,27.63000000,103.53553819,41.56073045,158.30444444,0,7.13333333,22.66768519,18.65100461,11.89937943,2.35937500,6.76803419,3.92322219,3.83706790 -2017-01-01,0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7618bd18c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] CPU Hours: Per Job" -2016-12,1618.72650463,564.66565514,400.11223577,534.20085470,238.22973118,2792.95666667,169.87555556,221.80616753,96.40216270,86.72055556,65.51148148,48.32731481,32.10148148,37.47629574,30.81877131,2.69870370,7.83034188,5.95247094,4.01423953 -2017-01,0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b42b700b0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] CPU Hours: Per Job" -"2016 Q4",1618.72650463,564.66565514,400.11223577,534.20085470,238.22973118,2792.95666667,169.87555556,221.80616753,96.40216270,86.72055556,65.51148148,48.32731481,32.10148148,37.47629574,30.81877131,2.69870370,7.83034188,5.95247094,4.01423953 -"2017 Q1",0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index a8feca0433..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[fish] CPU Hours: Per Job","[cashew] CPU Hours: Per Job","[derby] CPU Hours: Per Job","[coconut-cream] CPU Hours: Per Job","[bavarian-cream] CPU Hours: Per Job","[chestnut] CPU Hours: Per Job","[blueberry] CPU Hours: Per Job","[buttermilk] CPU Hours: Per Job","[blackberry] CPU Hours: Per Job","[butter] CPU Hours: Per Job","[cheese] CPU Hours: Per Job","[flapper] CPU Hours: Per Job","[cherry] CPU Hours: Per Job","[curry] CPU Hours: Per Job","[apple] CPU Hours: Per Job","[bumbleberry] CPU Hours: Per Job","[boysenberry] CPU Hours: Per Job","[banana-cream] CPU Hours: Per Job","[green-grape] CPU Hours: Per Job" -2016,1618.72650463,564.66565514,400.11223577,534.20085470,238.22973118,2792.95666667,169.87555556,221.80616753,96.40216270,86.72055556,65.51148148,48.32731481,32.10148148,37.47629574,30.81877131,2.69870370,7.83034188,5.95247094,4.01423953 -2017,0,104.22217494,212.04969136,66.65737374,185.80611111,22.07816239,0,0.96969246,51.76911616,45.95055556,0,21.40555556,45.96222222,6.64896461,11.58334032,13.93708148,35.25833333,1.12837003,4.77956522 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5b43bb2d92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Per Job" -chestnut,38.99329060 -apple,0.00000000 -banana-cream,0.00000000 -bavarian-cream,0.00000000 -blackberry,0.00000000 -blueberry,0.00000000 -boysenberry,0.00000000 -bumbleberry,0.00000000 -butter,0.00000000 -buttermilk,0.00000000 -cashew,0.00000000 -cheese,0.00000000 -cherry,0.00000000 -coconut-cream,0.00000000 -curry,0.00000000 -derby,0.00000000 -fish,0.00000000 -flapper,0.00000000 -green-grape,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5b43bb2d92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Per Job" -chestnut,38.99329060 -apple,0.00000000 -banana-cream,0.00000000 -bavarian-cream,0.00000000 -blackberry,0.00000000 -blueberry,0.00000000 -boysenberry,0.00000000 -bumbleberry,0.00000000 -butter,0.00000000 -buttermilk,0.00000000 -cashew,0.00000000 -cheese,0.00000000 -cherry,0.00000000 -coconut-cream,0.00000000 -curry,0.00000000 -derby,0.00000000 -fish,0.00000000 -flapper,0.00000000 -green-grape,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5b43bb2d92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Per Job" -chestnut,38.99329060 -apple,0.00000000 -banana-cream,0.00000000 -bavarian-cream,0.00000000 -blackberry,0.00000000 -blueberry,0.00000000 -boysenberry,0.00000000 -bumbleberry,0.00000000 -butter,0.00000000 -buttermilk,0.00000000 -cashew,0.00000000 -cheese,0.00000000 -cherry,0.00000000 -coconut-cream,0.00000000 -curry,0.00000000 -derby,0.00000000 -fish,0.00000000 -flapper,0.00000000 -green-grape,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5b43bb2d92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Per Job" -chestnut,38.99329060 -apple,0.00000000 -banana-cream,0.00000000 -bavarian-cream,0.00000000 -blackberry,0.00000000 -blueberry,0.00000000 -boysenberry,0.00000000 -bumbleberry,0.00000000 -butter,0.00000000 -buttermilk,0.00000000 -cashew,0.00000000 -cheese,0.00000000 -cherry,0.00000000 -coconut-cream,0.00000000 -curry,0.00000000 -derby,0.00000000 -fish,0.00000000 -flapper,0.00000000 -green-grape,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 253d3be9ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" -2016-12-22,33.49277778,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.00000000,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.00000000,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-27,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0 -2016-12-28,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0 -2016-12-29,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0 -2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 -2017-01-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 4379c192e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" -2016-12,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c7afd490f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" -"2016 Q4",465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 002732b6e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[chestnut] GPU Hours: Per Job","[apple] GPU Hours: Per Job","[banana-cream] GPU Hours: Per Job","[bavarian-cream] GPU Hours: Per Job","[blackberry] GPU Hours: Per Job","[blueberry] GPU Hours: Per Job","[boysenberry] GPU Hours: Per Job","[bumbleberry] GPU Hours: Per Job","[butter] GPU Hours: Per Job","[buttermilk] GPU Hours: Per Job","[cashew] GPU Hours: Per Job","[cheese] GPU Hours: Per Job","[cherry] GPU Hours: Per Job","[coconut-cream] GPU Hours: Per Job","[curry] GPU Hours: Per Job","[derby] GPU Hours: Per Job","[fish] GPU Hours: Per Job","[flapper] GPU Hours: Per Job","[green-grape] GPU Hours: Per Job" -2016,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index ac1d5017a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -chestnut,0.3077,0.20013650333971736 -apple,0.0000,0 -banana-cream,0.0000,0 -bavarian-cream,0.0000,0 -blackberry,0.0000,0 -blueberry,0.0000,0 -boysenberry,0.0000,0 -bumbleberry,0.0000,0 -butter,0.0000,0 -buttermilk,0.0000,0 -cashew,0.0000,0 -cheese,0.0000,0 -cherry,0.0000,0 -coconut-cream,0.0000,0 -curry,0.0000,0 -derby,0.0000,0 -fish,0.0000,0 -flapper,0.0000,0 -green-grape,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index ac1d5017a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -chestnut,0.3077,0.20013650333971736 -apple,0.0000,0 -banana-cream,0.0000,0 -bavarian-cream,0.0000,0 -blackberry,0.0000,0 -blueberry,0.0000,0 -boysenberry,0.0000,0 -bumbleberry,0.0000,0 -butter,0.0000,0 -buttermilk,0.0000,0 -cashew,0.0000,0 -cheese,0.0000,0 -cherry,0.0000,0 -coconut-cream,0.0000,0 -curry,0.0000,0 -derby,0.0000,0 -fish,0.0000,0 -flapper,0.0000,0 -green-grape,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index ac1d5017a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -chestnut,0.3077,0.20013650333971736 -apple,0.0000,0 -banana-cream,0.0000,0 -bavarian-cream,0.0000,0 -blackberry,0.0000,0 -blueberry,0.0000,0 -boysenberry,0.0000,0 -bumbleberry,0.0000,0 -butter,0.0000,0 -buttermilk,0.0000,0 -cashew,0.0000,0 -cheese,0.0000,0 -cherry,0.0000,0 -coconut-cream,0.0000,0 -curry,0.0000,0 -derby,0.0000,0 -fish,0.0000,0 -flapper,0.0000,0 -green-grape,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index ac1d5017a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -chestnut,0.3077,0.20013650333971736 -apple,0.0000,0 -banana-cream,0.0000,0 -bavarian-cream,0.0000,0 -blackberry,0.0000,0 -blueberry,0.0000,0 -boysenberry,0.0000,0 -bumbleberry,0.0000,0 -butter,0.0000,0 -buttermilk,0.0000,0 -cashew,0.0000,0 -cheese,0.0000,0 -cherry,0.0000,0 -coconut-cream,0.0000,0 -curry,0.0000,0 -derby,0.0000,0 -fish,0.0000,0 -flapper,0.0000,0 -green-grape,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 2a1c75c92c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" -2016-12-22,2.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,2.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,2.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,2.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-27,2.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0 -2016-12-28,2.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0 -2016-12-29,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2017-01-01,0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index eb37eae7ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" -2016-12,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 8c7b7af2c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" -"2016 Q4",2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index ceb3b4a03f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[chestnut] GPU Count: Per Job","[apple] GPU Count: Per Job","[banana-cream] GPU Count: Per Job","[bavarian-cream] GPU Count: Per Job","[blackberry] GPU Count: Per Job","[blueberry] GPU Count: Per Job","[boysenberry] GPU Count: Per Job","[bumbleberry] GPU Count: Per Job","[butter] GPU Count: Per Job","[buttermilk] GPU Count: Per Job","[cashew] GPU Count: Per Job","[cheese] GPU Count: Per Job","[cherry] GPU Count: Per Job","[coconut-cream] GPU Count: Per Job","[curry] GPU Count: Per Job","[derby] GPU Count: Per Job","[fish] GPU Count: Per Job","[flapper] GPU Count: Per Job","[green-grape] GPU Count: Per Job" -2016,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.3077,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index e638debba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By CPU Hours (Core Count)" -buttermilk,111.3630 -banana-cream,83.8484 -coconut-cream,62.9605 -derby,62.2662 -curry,61.4541 -butter,34.4569 -bavarian-cream,33.8916 -fish,31.8851 -green-grape,21.0706 -cheese,20.0000 -apple,14.6667 -cashew,13.8060 -blueberry,12.0000 -bumbleberry,11.9987 -chestnut,11.9631 -boysenberry,6.1218 -flapper,5.0000 -blackberry,3.8822 -cherry,2.9011 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index e638debba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By CPU Hours (Core Count)" -buttermilk,111.3630 -banana-cream,83.8484 -coconut-cream,62.9605 -derby,62.2662 -curry,61.4541 -butter,34.4569 -bavarian-cream,33.8916 -fish,31.8851 -green-grape,21.0706 -cheese,20.0000 -apple,14.6667 -cashew,13.8060 -blueberry,12.0000 -bumbleberry,11.9987 -chestnut,11.9631 -boysenberry,6.1218 -flapper,5.0000 -blackberry,3.8822 -cherry,2.9011 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e638debba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By CPU Hours (Core Count)" -buttermilk,111.3630 -banana-cream,83.8484 -coconut-cream,62.9605 -derby,62.2662 -curry,61.4541 -butter,34.4569 -bavarian-cream,33.8916 -fish,31.8851 -green-grape,21.0706 -cheese,20.0000 -apple,14.6667 -cashew,13.8060 -blueberry,12.0000 -bumbleberry,11.9987 -chestnut,11.9631 -boysenberry,6.1218 -flapper,5.0000 -blackberry,3.8822 -cherry,2.9011 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index e638debba4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By CPU Hours (Core Count)" -buttermilk,111.3630 -banana-cream,83.8484 -coconut-cream,62.9605 -derby,62.2662 -curry,61.4541 -butter,34.4569 -bavarian-cream,33.8916 -fish,31.8851 -green-grape,21.0706 -cheese,20.0000 -apple,14.6667 -cashew,13.8060 -blueberry,12.0000 -bumbleberry,11.9987 -chestnut,11.9631 -boysenberry,6.1218 -flapper,5.0000 -blackberry,3.8822 -cherry,2.9011 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index d3f3e1296d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (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,0 -2016-12-23,0,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 -2016-12-24,0,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 -2016-12-25,0,24.0000,0,0,0,0,1.0000,0,0,0,12.8595,0,0,0,12.0000,0,0,0,0 -2016-12-26,0,24.0000,0,0,0,0,1.0000,0,0,0,18.0000,16.0000,0,0,12.0000,0,0,0,0 -2016-12-27,0,21.1888,64.0000,96.7935,84.5627,0,14.0214,31.6875,0,0,18.4583,16.0000,0,0,12.0000,0,0,1.0000,0 -2016-12-28,0,170.8284,64.0000,81.4098,78.4676,0,15.5455,31.8818,0,20.0000,20.0000,16.0000,0,0,12.0000,0,0,1.0000,0 -2016-12-29,112.0000,166.1714,64.0000,56.9898,68.0983,0,30.1045,31.9078,0,20.0000,19.4737,16.0000,12.0000,0,12.0000,2.0000,5.0000,3.8435,4.0000 -2016-12-30,111.6728,79.0105,63.8308,44.6214,68.0094,79.9505,39.8777,31.8699,20.1259,20.0000,11.2898,16.0000,12.0000,11.6133,12.0000,2.0000,5.0000,3.8626,2.6435 -2016-12-31,111.0872,29.9186,63.9287,64.2508,57.3480,8.0000,41.4913,0,21.3018,0,12.1534,11.9114,12.0000,12.0000,12.0000,7.1817,5.0000,3.9543,2.0581 -2017-01-01,1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 69cc57e515..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,111.5740,86.6872,63.9407,62.6246,66.2292,47.1149,34.7919,31.8851,20.6234,20.0000,15.5414,14.3905,12.0000,11.9138,12.0000,6.4787,5.0000,3.8683,2.6389 -2017-01,1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7a6864a057..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",111.5740,86.6872,63.9407,62.6246,66.2292,47.1149,34.7919,31.8851,20.6234,20.0000,15.5414,14.3905,12.0000,11.9138,12.0000,6.4787,5.0000,3.8683,2.6389 -"2017 Q1",1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 835b92d052..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[buttermilk] Job Size: Weighted By CPU Hours (Core Count)","[banana-cream] Job Size: Weighted By CPU Hours (Core Count)","[coconut-cream] Job Size: Weighted By CPU Hours (Core Count)","[derby] Job Size: Weighted By CPU Hours (Core Count)","[curry] Job Size: Weighted By CPU Hours (Core Count)","[butter] Job Size: Weighted By CPU Hours (Core Count)","[bavarian-cream] Job Size: Weighted By CPU Hours (Core Count)","[fish] Job Size: Weighted By CPU Hours (Core Count)","[green-grape] Job Size: Weighted By CPU Hours (Core Count)","[cheese] Job Size: Weighted By CPU Hours (Core Count)","[apple] Job Size: Weighted By CPU Hours (Core Count)","[cashew] Job Size: Weighted By CPU Hours (Core Count)","[blueberry] Job Size: Weighted By CPU Hours (Core Count)","[bumbleberry] Job Size: Weighted By CPU Hours (Core Count)","[chestnut] Job Size: Weighted By CPU Hours (Core Count)","[boysenberry] Job Size: Weighted By CPU Hours (Core Count)","[flapper] Job Size: Weighted By CPU Hours (Core Count)","[blackberry] Job Size: Weighted By CPU Hours (Core Count)","[cherry] Job Size: Weighted By CPU Hours (Core Count)" -2016,111.5740,86.6872,63.9407,62.6246,66.2292,47.1149,34.7919,31.8851,20.6234,20.0000,15.5414,14.3905,12.0000,11.9138,12.0000,6.4787,5.0000,3.8683,2.6389 -2017,1.0000,12.1089,58.3187,56.1041,23.8051,18.5309,15.9990,0,22.0668,0,9.1338,10.2343,0,12.0000,11.6043,2.0000,5.0000,3.9482,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index bb73758438..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By GPU Hours (GPU Count)" -chestnut,12.0000 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index bb73758438..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By GPU Hours (GPU Count)" -chestnut,12.0000 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index bb73758438..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By GPU Hours (GPU Count)" -chestnut,12.0000 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index bb73758438..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Weighted By GPU Hours (GPU Count)" -chestnut,12.0000 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 37a750b803..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,12.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,12.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,12.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-27,12.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0 -2016-12-28,12.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0 -2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index e7150c71da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1707a2cc83..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 58dca52fdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[chestnut] Job Size: Weighted By GPU Hours (GPU Count)","[apple] Job Size: Weighted By GPU Hours (GPU Count)","[banana-cream] Job Size: Weighted By GPU Hours (GPU Count)","[bavarian-cream] Job Size: Weighted By GPU Hours (GPU Count)","[blackberry] Job Size: Weighted By GPU Hours (GPU Count)","[blueberry] Job Size: Weighted By GPU Hours (GPU Count)","[boysenberry] Job Size: Weighted By GPU Hours (GPU Count)","[bumbleberry] Job Size: Weighted By GPU Hours (GPU Count)","[butter] Job Size: Weighted By GPU Hours (GPU Count)","[buttermilk] Job Size: Weighted By GPU Hours (GPU Count)","[cashew] Job Size: Weighted By GPU Hours (GPU Count)","[cheese] Job Size: Weighted By GPU Hours (GPU Count)","[cherry] Job Size: Weighted By GPU Hours (GPU Count)","[coconut-cream] Job Size: Weighted By GPU Hours (GPU Count)","[curry] Job Size: Weighted By GPU Hours (GPU Count)","[derby] Job Size: Weighted By GPU Hours (GPU Count)","[fish] Job Size: Weighted By GPU Hours (GPU Count)","[flapper] Job Size: Weighted By GPU Hours (GPU Count)","[green-grape] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4d73d8eccd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" -fish,56.39826389, -cashew,52.33125262, -derby,37.86742624,3.8783534529902512 -blackberry,32.98881944, -coconut-cream,30.92306373,11.135400919048372 -bavarian-cream,22.09371528,3.0880234181669057 -cherry,20.86393519, -chestnut,19.91282051,2.1056822673563573 -blueberry,14.15629630, -buttermilk,10.49397947,2.5351755398719042 -flapper,8.31937500,1.758450675650033 -curry,8.30978133,0.13575510334380672 -butter,5.05929012,2.0356487240229306 -cheese,3.27557407,1.8974472070685748 -apple,2.14778876,0.19748979248787776 -boysenberry,2.06233440,0.6979901163451202 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.41362077,0.024337601967415662 -green-grape,0.36164021,0.03719469838932551 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 8b4a70f6f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" -fish,56.39826389,4.065482404541014 -cashew,52.33125262, -derby,37.86742624,6.865411681699476 -blackberry,32.98881944,4.907191137280996 -coconut-cream,30.92306373,23.389283032599334 -bavarian-cream,22.09371528,8.274645369467496 -cherry,20.86393519, -chestnut,19.91282051,17.106656154646572 -blueberry,14.15629630,6.390708867631212 -buttermilk,10.49397947,3.3307345987775676 -flapper,8.31937500,4.627752624288676 -curry,8.30978133,0.22675542451684455 -butter,5.05929012,2.0356487240229306 -cheese,3.27557407,3.0868090132704915 -apple,2.14778876,0.46608595551399945 -boysenberry,2.06233440,1.020659794218047 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.41362077,0.04503987235824463 -green-grape,0.36164021,0.03719469838932551 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 8b4a70f6f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" -fish,56.39826389,4.065482404541014 -cashew,52.33125262, -derby,37.86742624,6.865411681699476 -blackberry,32.98881944,4.907191137280996 -coconut-cream,30.92306373,23.389283032599334 -bavarian-cream,22.09371528,8.274645369467496 -cherry,20.86393519, -chestnut,19.91282051,17.106656154646572 -blueberry,14.15629630,6.390708867631212 -buttermilk,10.49397947,3.3307345987775676 -flapper,8.31937500,4.627752624288676 -curry,8.30978133,0.22675542451684455 -butter,5.05929012,2.0356487240229306 -cheese,3.27557407,3.0868090132704915 -apple,2.14778876,0.46608595551399945 -boysenberry,2.06233440,1.020659794218047 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.41362077,0.04503987235824463 -green-grape,0.36164021,0.03719469838932551 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8b4a70f6f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" -fish,56.39826389,4.065482404541014 -cashew,52.33125262, -derby,37.86742624,6.865411681699476 -blackberry,32.98881944,4.907191137280996 -coconut-cream,30.92306373,23.389283032599334 -bavarian-cream,22.09371528,8.274645369467496 -cherry,20.86393519, -chestnut,19.91282051,17.106656154646572 -blueberry,14.15629630,6.390708867631212 -buttermilk,10.49397947,3.3307345987775676 -flapper,8.31937500,4.627752624288676 -curry,8.30978133,0.22675542451684455 -butter,5.05929012,2.0356487240229306 -cheese,3.27557407,3.0868090132704915 -apple,2.14778876,0.46608595551399945 -boysenberry,2.06233440,1.020659794218047 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.41362077,0.04503987235824463 -green-grape,0.36164021,0.03719469838932551 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7b5216f115..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] 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,0 -2016-12-23,0,0,0,0,0,8.60361111,0,24.00000000,0,0,0,0,0,0,24.00000000,0,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,0 -2016-12-25,0,0,0,0,0,24.00000000,0,24.00000000,0,0,0,0,0,0,9.05629630,0,0,5.33888889,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,24.00000000,0 -2016-12-27,2.13466049,24.00000000,95.00122222,3.21666667,30.39777778,11.29064815,0,24.00000000,0,0,0,47.68055556,0,0,18.99236111,0,0,8.65477778,0 -2016-12-28,22.00297222,9.02631944,51.86818519,24.00000000,192.00000000,24.00000000,0,24.00000000,0,0,0,13.21116388,0,4.70055556,24.00000000,0,0,108.02165205,0 -2016-12-29,22.94106481,23.88776389,25.64947072,18.14590278,192.00000000,14.86512346,7.17361111,24.00000000,8.80250000,25.68611111,10.40083333,16.50229027,0,24.00000000,9.62803030,3.62000000,0,11.65806452,0 -2016-12-30,13.52039352,18.92284722,11.48730159,19.86340741,39.05177778,15.96253968,11.30094444,24.00000000,10.45462963,16.74827932,5.72296296,6.70593575,3.14296296,1.36220370,1.22918592,24.00000000,0.47291667,0.38594765,0.37008170 -2016-12-31,0,23.17923611,29.34604308,11.24478395,28.71330247,6.36417929,16.67157407,24.00000000,2.30250000,7.26913194,1.42666667,7.33217998,19.78805556,0,1.22792110,1.19215812,0.19661458,0.34694099,0.31978395 -2017-01-01,0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5ac3dc53c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] Node Hours: Per Job" -2016-12,56.39826389,42.39165094,38.76884316,27.64086310,66.77510684,22.05642473,18.94884259,232.74638889,14.15629630,14.66085503,9.66546296,11.59172949,7.30423611,3.27557407,2.43685994,1.72331197,0.22731481,0.47585165,0.34781876 -2017-01,0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3071da91ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] Node Hours: Per Job" -"2016 Q4",56.39826389,42.39165094,38.76884316,27.64086310,66.77510684,22.05642473,18.94884259,232.74638889,14.15629630,14.66085503,9.66546296,11.59172949,7.30423611,3.27557407,2.43685994,1.72331197,0.22731481,0.47585165,0.34781876 -"2017 Q1",0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1880355d73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[fish] Node Hours: Per Job","[cashew] Node Hours: Per Job","[derby] Node Hours: Per Job","[blackberry] Node Hours: Per Job","[coconut-cream] Node Hours: Per Job","[bavarian-cream] Node Hours: Per Job","[cherry] Node Hours: Per Job","[chestnut] Node Hours: Per Job","[blueberry] Node Hours: Per Job","[buttermilk] Node Hours: Per Job","[flapper] Node Hours: Per Job","[curry] Node Hours: Per Job","[butter] Node Hours: Per Job","[cheese] Node Hours: Per Job","[apple] Node Hours: Per Job","[boysenberry] Node Hours: Per Job","[bumbleberry] Node Hours: Per Job","[banana-cream] Node Hours: Per Job","[green-grape] Node Hours: Per Job" -2016,56.39826389,42.39165094,38.76884316,27.64086310,66.77510684,22.05642473,18.94884259,232.74638889,14.15629630,14.66085503,9.66546296,11.59172949,7.30423611,3.27557407,2.43685994,1.72331197,0.22731481,0.47585165,0.34781876 -2017,0,11.20848700,19.13578704,13.61297980,8.33217172,11.62486111,11.49055556,2.00925214,0,0.96969246,4.28111111,2.38928750,2.71944444,0,1.37951433,17.62916667,1.16142346,0.09990327,0.39829710 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 9f1d56e389..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -fish,29.4167,2.4733533623646182 -coconut-cream,28.7059,3.585710156019513 -butter,25.3333,6.562143582468938 -derby,20.2034,1.6681184710952224 -cheese,20.0000,0 -green-grape,18.8810,1.1771160763509543 -blueberry,12.0000,0 -bumbleberry,11.9827,0.017278498161083296 -cashew,10.8868,0.562036409390535 -buttermilk,10.6522,3.260812853950742 -banana-cream,9.4560,0.012590015775393768 -apple,8.1959,0.06598411302744607 -boysenberry,7.8846,0.11426976285429367 -bavarian-cream,7.0625,2.0515511947517906 -curry,5.5572,0.08460785692117562 -blackberry,5.5000,0.4330127018922193 -flapper,5.0000,0 -chestnut,4.0769,1.3075182622208246 -cherry,2.0000,0.5773502691896257 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 9f1d56e389..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -fish,29.4167,2.4733533623646182 -coconut-cream,28.7059,3.585710156019513 -butter,25.3333,6.562143582468938 -derby,20.2034,1.6681184710952224 -cheese,20.0000,0 -green-grape,18.8810,1.1771160763509543 -blueberry,12.0000,0 -bumbleberry,11.9827,0.017278498161083296 -cashew,10.8868,0.562036409390535 -buttermilk,10.6522,3.260812853950742 -banana-cream,9.4560,0.012590015775393768 -apple,8.1959,0.06598411302744607 -boysenberry,7.8846,0.11426976285429367 -bavarian-cream,7.0625,2.0515511947517906 -curry,5.5572,0.08460785692117562 -blackberry,5.5000,0.4330127018922193 -flapper,5.0000,0 -chestnut,4.0769,1.3075182622208246 -cherry,2.0000,0.5773502691896257 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 9f1d56e389..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -fish,29.4167,2.4733533623646182 -coconut-cream,28.7059,3.585710156019513 -butter,25.3333,6.562143582468938 -derby,20.2034,1.6681184710952224 -cheese,20.0000,0 -green-grape,18.8810,1.1771160763509543 -blueberry,12.0000,0 -bumbleberry,11.9827,0.017278498161083296 -cashew,10.8868,0.562036409390535 -buttermilk,10.6522,3.260812853950742 -banana-cream,9.4560,0.012590015775393768 -apple,8.1959,0.06598411302744607 -boysenberry,7.8846,0.11426976285429367 -bavarian-cream,7.0625,2.0515511947517906 -curry,5.5572,0.08460785692117562 -blackberry,5.5000,0.4330127018922193 -flapper,5.0000,0 -chestnut,4.0769,1.3075182622208246 -cherry,2.0000,0.5773502691896257 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 9f1d56e389..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" -fish,29.4167,2.4733533623646182 -coconut-cream,28.7059,3.585710156019513 -butter,25.3333,6.562143582468938 -derby,20.2034,1.6681184710952224 -cheese,20.0000,0 -green-grape,18.8810,1.1771160763509543 -blueberry,12.0000,0 -bumbleberry,11.9827,0.017278498161083296 -cashew,10.8868,0.562036409390535 -buttermilk,10.6522,3.260812853950742 -banana-cream,9.4560,0.012590015775393768 -apple,8.1959,0.06598411302744607 -boysenberry,7.8846,0.11426976285429367 -bavarian-cream,7.0625,2.0515511947517906 -curry,5.5572,0.08460785692117562 -blackberry,5.5000,0.4330127018922193 -flapper,5.0000,0 -chestnut,4.0769,1.3075182622208246 -cherry,2.0000,0.5773502691896257 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 186354568c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,12.0000,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,1.0000,0,0,0,12.0000,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,1.0000,0,0,0,12.0000,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,24.0000,16.0000,0,1.0000,0,0,0,12.0000,0 -2016-12-26,0,0,0,0,0,0,0,0,16.0000,0,24.0000,16.0000,0,1.0000,0,0,0,12.0000,0 -2016-12-27,28.5556,64.0000,0,58.4000,0,0,0,0,16.0000,0,16.0000,18.0000,0,11.0000,41.0000,1.0000,0,12.0000,0 -2016-12-28,28.9000,64.0000,0,41.8667,20.0000,0,0,0,16.0000,0,94.1053,18.0000,0,11.0000,5.3852,1.0000,0,12.0000,0 -2016-12-29,29.4167,64.0000,0,13.8108,20.0000,0,12.0000,0,16.0000,112.0000,16.6935,11.6364,2.0000,14.4444,3.9027,3.2500,5.0000,12.0000,4.0000 -2016-12-30,29.4167,51.2000,40.0000,16.7532,20.0000,14.1471,12.0000,10.0000,16.0000,25.6667,9.0316,8.4356,2.0000,10.7143,3.6283,3.6000,5.0000,12.0000,1.6000 -2016-12-31,0,47.1111,8.0000,29.9592,0,21.3704,12.0000,12.0000,10.3542,14.8750,9.8405,8.1064,7.8846,8.5000,3.0475,5.5556,5.0000,12.0000,2.0000 -2017-01-01,0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 14711b0199..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" -2016-12,29.4167,47.3846,32.0000,18.5366,20.0000,17.3443,12.0000,11.7778,10.8868,14.8750,9.4149,8.2328,7.8846,7.2581,3.5292,5.5000,5.0000,12.0000,2.0000 -2017-01,0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index c1bbe58944..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" -"2016 Q4",29.4167,47.3846,32.0000,18.5366,20.0000,17.3443,12.0000,11.7778,10.8868,14.8750,9.4149,8.2328,7.8846,7.2581,3.5292,5.5000,5.0000,12.0000,2.0000 -"2017 Q1",0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 23add5eefa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[fish] Job Size: Per Job (Core Count)","[coconut-cream] Job Size: Per Job (Core Count)","[butter] Job Size: Per Job (Core Count)","[derby] Job Size: Per Job (Core Count)","[cheese] Job Size: Per Job (Core Count)","[green-grape] Job Size: Per Job (Core Count)","[blueberry] Job Size: Per Job (Core Count)","[bumbleberry] Job Size: Per Job (Core Count)","[cashew] Job Size: Per Job (Core Count)","[buttermilk] Job Size: Per Job (Core Count)","[banana-cream] Job Size: Per Job (Core Count)","[apple] Job Size: Per Job (Core Count)","[boysenberry] Job Size: Per Job (Core Count)","[bavarian-cream] Job Size: Per Job (Core Count)","[curry] Job Size: Per Job (Core Count)","[blackberry] Job Size: Per Job (Core Count)","[flapper] Job Size: Per Job (Core Count)","[chestnut] Job Size: Per Job (Core Count)","[cherry] Job Size: Per Job (Core Count)" -2016,29.4167,47.3846,32.0000,18.5366,20.0000,17.3443,12.0000,11.7778,10.8868,14.8750,9.4149,8.2328,7.8846,7.2581,3.5292,5.5000,5.0000,12.0000,2.0000 -2017,0,19.2727,18.0000,44.2222,0,22.9565,0,12.0000,10.5532,1.0000,9.7079,8.2013,2.0000,8.5000,8.0224,3.7273,5.0000,4.0769,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 075dd8cfe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -curry,17.36635320,0.43231344868199684 -derby,15.11302731,1.6600337276402217 -bumbleberry,9.47607744,0.4061045665641317 -bavarian-cream,5.71715278,3.17681542341973 -fish,5.36229167,2.7525534062249517 -blackberry,2.01965278,0.981809205754697 -banana-cream,1.00066216,0.010958541761856734 -cashew,0.68931866,0.18792064181649992 -apple,0.19847458,0.0988363284250378 -chestnut,0.09485043,0.031010135623440054 -blueberry,0.05148148,0.04124068946210757 -cheese,0.00100000,0.00007314228762270922 -butter,0.00052469,0.0001658900772122578 -green-grape,0.00035053,0.00004725922431779173 -boysenberry,0.00033120,0.00008379721778329067 -buttermilk,0.00016606,0.000023797091252046995 -coconut-cream,0.00016340,0.000030824909099336814 -flapper,0.00006944,0.000060140653040586014 -cherry,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 075dd8cfe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -curry,17.36635320,0.43231344868199684 -derby,15.11302731,1.6600337276402217 -bumbleberry,9.47607744,0.4061045665641317 -bavarian-cream,5.71715278,3.17681542341973 -fish,5.36229167,2.7525534062249517 -blackberry,2.01965278,0.981809205754697 -banana-cream,1.00066216,0.010958541761856734 -cashew,0.68931866,0.18792064181649992 -apple,0.19847458,0.0988363284250378 -chestnut,0.09485043,0.031010135623440054 -blueberry,0.05148148,0.04124068946210757 -cheese,0.00100000,0.00007314228762270922 -butter,0.00052469,0.0001658900772122578 -green-grape,0.00035053,0.00004725922431779173 -boysenberry,0.00033120,0.00008379721778329067 -buttermilk,0.00016606,0.000023797091252046995 -coconut-cream,0.00016340,0.000030824909099336814 -flapper,0.00006944,0.000060140653040586014 -cherry,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 075dd8cfe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -curry,17.36635320,0.43231344868199684 -derby,15.11302731,1.6600337276402217 -bumbleberry,9.47607744,0.4061045665641317 -bavarian-cream,5.71715278,3.17681542341973 -fish,5.36229167,2.7525534062249517 -blackberry,2.01965278,0.981809205754697 -banana-cream,1.00066216,0.010958541761856734 -cashew,0.68931866,0.18792064181649992 -apple,0.19847458,0.0988363284250378 -chestnut,0.09485043,0.031010135623440054 -blueberry,0.05148148,0.04124068946210757 -cheese,0.00100000,0.00007314228762270922 -butter,0.00052469,0.0001658900772122578 -green-grape,0.00035053,0.00004725922431779173 -boysenberry,0.00033120,0.00008379721778329067 -buttermilk,0.00016606,0.000023797091252046995 -coconut-cream,0.00016340,0.000030824909099336814 -flapper,0.00006944,0.000060140653040586014 -cherry,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 075dd8cfe7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -curry,17.36635320,0.43231344868199684 -derby,15.11302731,1.6600337276402217 -bumbleberry,9.47607744,0.4061045665641317 -bavarian-cream,5.71715278,3.17681542341973 -fish,5.36229167,2.7525534062249517 -blackberry,2.01965278,0.981809205754697 -banana-cream,1.00066216,0.010958541761856734 -cashew,0.68931866,0.18792064181649992 -apple,0.19847458,0.0988363284250378 -chestnut,0.09485043,0.031010135623440054 -blueberry,0.05148148,0.04124068946210757 -cheese,0.00100000,0.00007314228762270922 -butter,0.00052469,0.0001658900772122578 -green-grape,0.00035053,0.00004725922431779173 -boysenberry,0.00033120,0.00008379721778329067 -buttermilk,0.00016606,0.000023797091252046995 -coconut-cream,0.00016340,0.000030824909099336814 -flapper,0.00006944,0.000060140653040586014 -cherry,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 88e77aeaab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,9.33222222,0.00027778,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,9.59638889,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0.00000000,0,0,71.01250000,0,19.93652778,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.00000000,0,0,0.00000000,0.00066667,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-27,209.81746528,59.93611111,0,0.00083333,0.00021605,0.00000000,0.00701389,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0 -2016-12-28,7.48608790,48.16361111,0,0.00000000,20.57444444,0.00000000,21.45017857,1.68000000,0.00000000,0.00000000,0,0.00027778,0,0,0,0,0.00000000,0,0 -2016-12-29,5.81631026,4.82536723,0,11.37972222,21.88555556,0.00023810,0.24878457,4.46097222,0.01591270,0.00000000,0.00111111,0.00000000,0,0,0.00444444,0.00062500,0.00000000,0.00000000,0.00027778 -2016-12-30,39.92114191,19.85405208,0.82041667,0.01722222,0.00000000,2.06130952,0.53357648,0.00000000,0.01065736,0.00000000,0.07666667,0.00105159,0.00111111,0.00048203,0.00000000,0.00015625,0.00020833,0.00000000,0.00000000 -2016-12-31,12.42062874,1.10944444,0.02019097,6.17527778,0,3.23995726,1.53762378,0.00626263,0.11755524,0.00000000,0.00000000,0,0.00083333,0.00030864,0.00025054,0.00010913,0.00020833,0.00000000,0.00000000 -2017-01-01,3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index a6adc14838..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" -2016-12,25.86811964,16.25263381,0.10910494,5.90136201,5.36229167,2.01965278,1.05952936,0.68931866,0.19058715,0.00027778,0.05148148,0.00100000,0.00104167,0.00040528,0.00033120,0.00016493,0.00019231,0.00000000,0.00004630 -2017-01,3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d8408c3df3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" -"2016 Q4",25.86811964,16.25263381,0.10910494,5.90136201,5.36229167,2.01965278,1.05952936,0.68931866,0.19058715,0.00027778,0.05148148,0.00100000,0.00104167,0.00040528,0.00033120,0.00016493,0.00019231,0.00000000,0.00004630 -"2017 Q1",3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index ff0d172d1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Wait Hours: Per Job","[derby] Wait Hours: Per Job","[bumbleberry] Wait Hours: Per Job","[bavarian-cream] Wait Hours: Per Job","[fish] Wait Hours: Per Job","[blackberry] Wait Hours: Per Job","[banana-cream] Wait Hours: Per Job","[cashew] Wait Hours: Per Job","[apple] Wait Hours: Per Job","[chestnut] Wait Hours: Per Job","[blueberry] Wait Hours: Per Job","[cheese] Wait Hours: Per Job","[butter] Wait Hours: Per Job","[green-grape] Wait Hours: Per Job","[boysenberry] Wait Hours: Per Job","[buttermilk] Wait Hours: Per Job","[coconut-cream] Wait Hours: Per Job","[flapper] Wait Hours: Per Job","[cherry] Wait Hours: Per Job" -2016,25.86811964,16.25263381,0.10910494,5.90136201,5.36229167,2.01965278,1.05952936,0.68931866,0.19058715,0.00027778,0.05148148,0.00100000,0.00104167,0.00040528,0.00033120,0.00016493,0.00019231,0.00000000,0.00004630 -2017,3.20851258,0.73645299,10.26765258,0.00666667,0,0.00000000,0.70760600,0.00000000,0.21796115,0.10273148,0,0,0.00011111,0.00020531,0.00000000,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 0bcc2e72fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -fish,56.39826389, -cashew,52.33125262, -blackberry,32.98881944, -cherry,20.86393519, -chestnut,19.91282051,2.1056822673563573 -bavarian-cream,17.55212674,1.2486055997312684 -blueberry,14.15629630, -derby,12.82976773,0.2736079180061734 -flapper,8.31937500,1.758450675650033 -curry,7.22967390,0.06752539637685569 -coconut-cream,4.27458333,1.3636086939550018 -butter,4.27419753,1.9826157773353121 -cheese,3.27557407,1.8974472070685748 -buttermilk,2.25963164,0.3305676586108775 -apple,2.14775319,0.19749051273720875 -boysenberry,2.06233440,0.6979901163451202 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.29142405,0.0039213031414646465 -green-grape,0.24977844,0.027470879511390763 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index d039c1a8fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -fish,56.39826389,4.065482404541014 -cashew,52.33125262, -blackberry,32.98881944,4.907191137280996 -cherry,20.86393519, -chestnut,19.91282051,17.106656154646572 -bavarian-cream,17.55212674,6.302362026984183 -blueberry,14.15629630,6.390708867631212 -derby,12.82976773,1.1396776128081025 -flapper,8.31937500,4.627752624288676 -curry,7.22967390,0.10681018199334268 -coconut-cream,4.27458333,2.910285751771729 -butter,4.27419753,1.9826157773353121 -cheese,3.27557407,3.0868090132704915 -buttermilk,2.25963164,0.45223146995766755 -apple,2.14775319,0.46608626069827297 -boysenberry,2.06233440,1.020659794218047 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.29142405,0.006647687967527504 -green-grape,0.24977844,0.027470879511390763 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index d039c1a8fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -fish,56.39826389,4.065482404541014 -cashew,52.33125262, -blackberry,32.98881944,4.907191137280996 -cherry,20.86393519, -chestnut,19.91282051,17.106656154646572 -bavarian-cream,17.55212674,6.302362026984183 -blueberry,14.15629630,6.390708867631212 -derby,12.82976773,1.1396776128081025 -flapper,8.31937500,4.627752624288676 -curry,7.22967390,0.10681018199334268 -coconut-cream,4.27458333,2.910285751771729 -butter,4.27419753,1.9826157773353121 -cheese,3.27557407,3.0868090132704915 -buttermilk,2.25963164,0.45223146995766755 -apple,2.14775319,0.46608626069827297 -boysenberry,2.06233440,1.020659794218047 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.29142405,0.006647687967527504 -green-grape,0.24977844,0.027470879511390763 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index d039c1a8fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -fish,56.39826389,4.065482404541014 -cashew,52.33125262, -blackberry,32.98881944,4.907191137280996 -cherry,20.86393519, -chestnut,19.91282051,17.106656154646572 -bavarian-cream,17.55212674,6.302362026984183 -blueberry,14.15629630,6.390708867631212 -derby,12.82976773,1.1396776128081025 -flapper,8.31937500,4.627752624288676 -curry,7.22967390,0.10681018199334268 -coconut-cream,4.27458333,2.910285751771729 -butter,4.27419753,1.9826157773353121 -cheese,3.27557407,3.0868090132704915 -buttermilk,2.25963164,0.45223146995766755 -apple,2.14775319,0.46608626069827297 -boysenberry,2.06233440,1.020659794218047 -bumbleberry,1.14896946,0.018444353071530424 -banana-cream,0.29142405,0.006647687967527504 -green-grape,0.24977844,0.027470879511390763 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index afc93db07e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" -2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0 -2016-12-23,0,0,0,0,24.00000000,8.60361111,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0 -2016-12-24,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0 -2016-12-25,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,0,9.05629630,0,0,5.33888889,0 -2016-12-26,0,2.70416667,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,24.00000000,0 -2016-12-27,2.13466049,24.00000000,3.21666667,0,24.00000000,11.29064815,0,20.41216667,0,13.59736111,3.79972222,0,0,0,18.99236111,0,0,8.65477778,0 -2016-12-28,22.00297222,9.02631944,24.00000000,0,24.00000000,24.00000000,0,12.38001852,0,8.99163222,24.00000000,0,4.70055556,0,24.00000000,0,0,19.55070175,0 -2016-12-29,22.94106481,23.88776389,18.14590278,7.17361111,24.00000000,12.52206790,8.80250000,9.78945571,10.40083333,13.31133445,24.00000000,0,24.00000000,3.66944444,9.62803030,3.62000000,0,2.48477935,0 -2016-12-30,13.52039352,18.92284722,19.86340741,11.30094444,24.00000000,10.81968254,10.45462963,5.89399351,5.72296296,5.76451523,4.90727778,0.78768519,1.36220370,3.04096451,1.22909241,24.00000000,0.47291667,0.28419410,0.28144608 -2016-12-31,0,23.17923611,11.24478395,16.67157407,24.00000000,3.98948232,2.30250000,5.63927438,1.42666667,6.73292814,3.60929012,19.78805556,0,1.76819444,1.22792110,1.19215812,0.19661458,0.32299984,0.22569959 -2017-01-01,0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index df2fdca9c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" -2016-12,56.39826389,42.39165094,27.64086310,18.94884259,232.74638889,17.36833333,14.15629630,13.39134316,9.66546296,9.93756641,8.37074786,5.53777778,3.27557407,2.82398003,2.43680996,1.72331197,0.22731481,0.32910885,0.25677140 -2017-01,0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index a74dee4dc6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" -"2016 Q4",56.39826389,42.39165094,27.64086310,18.94884259,232.74638889,17.36833333,14.15629630,13.39134316,9.66546296,9.93756641,8.37074786,5.53777778,3.27557407,2.82398003,2.43680996,1.72331197,0.22731481,0.32910885,0.25677140 -"2017 Q1",0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index b93cabee5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[fish] Wall Hours: Per Job","[cashew] Wall Hours: Per Job","[blackberry] Wall Hours: Per Job","[cherry] Wall Hours: Per Job","[chestnut] Wall Hours: Per Job","[bavarian-cream] Wall Hours: Per Job","[blueberry] Wall Hours: Per Job","[derby] Wall Hours: Per Job","[flapper] Wall Hours: Per Job","[curry] Wall Hours: Per Job","[coconut-cream] Wall Hours: Per Job","[butter] Wall Hours: Per Job","[cheese] Wall Hours: Per Job","[buttermilk] Wall Hours: Per Job","[apple] Wall Hours: Per Job","[boysenberry] Wall Hours: Per Job","[bumbleberry] Wall Hours: Per Job","[banana-cream] Wall Hours: Per Job","[green-grape] Wall Hours: Per Job" -2016,56.39826389,42.39165094,27.64086310,18.94884259,232.74638889,17.36833333,14.15629630,13.39134316,9.66546296,9.93756641,8.37074786,5.53777778,3.27557407,2.82398003,2.43680996,1.72331197,0.22731481,0.32910885,0.25677140 -2017,0,11.20848700,13.61297980,11.49055556,2.00925214,11.62486111,0,4.14936728,4.28111111,2.28500837,1.65982323,2.71944444,0,0.96969246,1.37951433,17.62916667,1.16142346,0.09990327,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 4cbdbfe794..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"User Expansion Factor" -bumbleberry,9.2475 -banana-cream,3.2904 -curry,3.2822 -derby,1.7973 -bavarian-cream,1.4475 -fish,1.0951 -apple,1.0924 -blackberry,1.0612 -cashew,1.0132 -chestnut,1.0048 -blueberry,1.0036 -green-grape,1.0017 -cheese,1.0003 -boysenberry,1.0002 -butter,1.0002 -buttermilk,1.0000 -cherry,1.0000 -coconut-cream,1.0000 -flapper,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 4cbdbfe794..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"User Expansion Factor" -bumbleberry,9.2475 -banana-cream,3.2904 -curry,3.2822 -derby,1.7973 -bavarian-cream,1.4475 -fish,1.0951 -apple,1.0924 -blackberry,1.0612 -cashew,1.0132 -chestnut,1.0048 -blueberry,1.0036 -green-grape,1.0017 -cheese,1.0003 -boysenberry,1.0002 -butter,1.0002 -buttermilk,1.0000 -cherry,1.0000 -coconut-cream,1.0000 -flapper,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 4cbdbfe794..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"User Expansion Factor" -bumbleberry,9.2475 -banana-cream,3.2904 -curry,3.2822 -derby,1.7973 -bavarian-cream,1.4475 -fish,1.0951 -apple,1.0924 -blackberry,1.0612 -cashew,1.0132 -chestnut,1.0048 -blueberry,1.0036 -green-grape,1.0017 -cheese,1.0003 -boysenberry,1.0002 -butter,1.0002 -buttermilk,1.0000 -cherry,1.0000 -coconut-cream,1.0000 -flapper,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 4cbdbfe794..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"User Expansion Factor" -bumbleberry,9.2475 -banana-cream,3.2904 -curry,3.2822 -derby,1.7973 -bavarian-cream,1.4475 -fish,1.0951 -apple,1.0924 -blackberry,1.0612 -cashew,1.0132 -chestnut,1.0048 -blueberry,1.0036 -green-grape,1.0017 -cheese,1.0003 -boysenberry,1.0002 -butter,1.0002 -buttermilk,1.0000 -cherry,1.0000 -coconut-cream,1.0000 -flapper,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 2e74ce3981..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" -2016-12-22,0,0,0,0,0,0,1.0495,0,0,1.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,1.0610,0,1.0495,0,0,1.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,1.0610,0,1.0495,0,0,1.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,1.6550,0,0,1.0610,0,1.0582,0,0,1.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,1.6551,0,0,1.0610,0,1.1463,0,1.0000,1.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,0,1.3633,2.9856,2.0011,1.0432,1.0000,1.1387,1.0000,1.0000,1.0000,0,0,0,0,0,0,0,1.0000,0 -2016-12-28,0,1.0497,1.7119,1.8988,1.0203,1.0111,1.1098,1.0000,1.0025,1.0000,0,0,1.0000,0,0,0,0,1.0000,0 -2016-12-29,0,1.0546,1.4021,1.8673,1.3272,1.1476,1.1000,1.0000,1.0228,1.0000,1.0000,0,1.0000,1.0001,0,1.0000,1.0000,1.0000,1.0000 -2016-12-30,2.7348,2.3347,5.8525,2.1663,1.4286,1.1311,1.0173,1.0157,1.0292,1.0000,1.0049,1.0022,1.0007,1.0001,1.0008,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.0162,5.3897,2.0664,1.2922,1.6816,0,1.0897,1.1709,1.0100,1.0000,1.0001,1.0019,0,1.0002,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01-01,9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 657386eb9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" -2016-12,1.4135,3.2119,3.3736,1.8343,1.3552,1.0951,1.0782,1.0731,1.0149,1.0000,1.0036,1.0021,1.0003,1.0002,1.0003,1.0000,1.0000,1.0000,1.0000 -2017-01,9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 606148e643..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" -"2016 Q4",1.4135,3.2119,3.3736,1.8343,1.3552,1.0951,1.0782,1.0731,1.0149,1.0000,1.0036,1.0021,1.0003,1.0002,1.0003,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 27fbb0d68a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[bumbleberry] User Expansion Factor","[banana-cream] User Expansion Factor","[curry] User Expansion Factor","[derby] User Expansion Factor","[bavarian-cream] User Expansion Factor","[fish] User Expansion Factor","[apple] User Expansion Factor","[blackberry] User Expansion Factor","[cashew] User Expansion Factor","[chestnut] User Expansion Factor","[blueberry] User Expansion Factor","[green-grape] User Expansion Factor","[cheese] User Expansion Factor","[boysenberry] User Expansion Factor","[butter] User Expansion Factor","[buttermilk] User Expansion Factor","[cherry] User Expansion Factor","[coconut-cream] User Expansion Factor","[flapper] User Expansion Factor" -2016,1.4135,3.2119,3.3736,1.8343,1.3552,1.0951,1.0782,1.0731,1.0149,1.0000,1.0036,1.0021,1.0003,1.0002,1.0003,1.0000,1.0000,1.0000,1.0000 -2017,9.3701,5.0803,2.6618,1.1149,4.1617,0,1.1522,1.0000,1.0058,1.0472,0,1.0009,0,1.0001,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv deleted file mode 100644 index b8a375c777..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Ended" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv deleted file mode 100644 index b8a375c777..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Ended" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b8a375c777..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Ended" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv deleted file mode 100644 index b8a375c777..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Ended" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 67843a4915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" -2016-12-22,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 -2016-12-24,0,0,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 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,22137,4040,190,2,115,32,34,5,0,4,9,1,15,0,12,3,3,2,2 -2016-12-31,23979,3772,182,4,44,32,27,1,51,8,21,16,0,0,0,0,2,1,1 -2017-01-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv deleted file mode 100644 index f661ecded2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" -2016-12,46116,7812,372,6,159,64,61,6,51,12,30,17,15,0,12,3,5,3,3 -2017-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 19a75f1fd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" -"2016 Q4",46116,7812,372,6,159,64,61,6,51,12,30,17,15,0,12,3,5,3,3 -"2017 Q1",9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv deleted file mode 100644 index c09552b029..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[banana-cream] Number of Jobs Ended","[curry] Number of Jobs Ended","[apple] Number of Jobs Ended","[bumbleberry] Number of Jobs Ended","[derby] Number of Jobs Ended","[buttermilk] Number of Jobs Ended","[green-grape] Number of Jobs Ended","[cashew] Number of Jobs Ended","[boysenberry] Number of Jobs Ended","[coconut-cream] Number of Jobs Ended","[bavarian-cream] Number of Jobs Ended","[blackberry] Number of Jobs Ended","[cheese] Number of Jobs Ended","[chestnut] Number of Jobs Ended","[fish] Number of Jobs Ended","[butter] Number of Jobs Ended","[cherry] Number of Jobs Ended","[flapper] Number of Jobs Ended","[blueberry] Number of Jobs Ended" -2016,46116,7812,372,6,159,64,61,6,51,12,30,17,15,0,12,3,5,3,3 -2017,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 8f7c45c5ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Max (Core Count)" -curry,336 -banana-cream,192 -derby,144 -buttermilk,112 -butter,80 -bavarian-cream,64 -coconut-cream,64 -green-grape,48 -fish,32 -apple,24 -cheese,20 -cashew,16 -blueberry,12 -bumbleberry,12 -chestnut,12 -blackberry,8 -boysenberry,8 -flapper,5 -cherry,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 8f7c45c5ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Max (Core Count)" -curry,336 -banana-cream,192 -derby,144 -buttermilk,112 -butter,80 -bavarian-cream,64 -coconut-cream,64 -green-grape,48 -fish,32 -apple,24 -cheese,20 -cashew,16 -blueberry,12 -bumbleberry,12 -chestnut,12 -blackberry,8 -boysenberry,8 -flapper,5 -cherry,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 8f7c45c5ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Max (Core Count)" -curry,336 -banana-cream,192 -derby,144 -buttermilk,112 -butter,80 -bavarian-cream,64 -coconut-cream,64 -green-grape,48 -fish,32 -apple,24 -cheese,20 -cashew,16 -blueberry,12 -bumbleberry,12 -chestnut,12 -blackberry,8 -boysenberry,8 -flapper,5 -cherry,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 8f7c45c5ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Max (Core Count)" -curry,336 -banana-cream,192 -derby,144 -buttermilk,112 -butter,80 -bavarian-cream,64 -coconut-cream,64 -green-grape,48 -fish,32 -apple,24 -cheese,20 -cashew,16 -blueberry,12 -bumbleberry,12 -chestnut,12 -blackberry,8 -boysenberry,8 -flapper,5 -cherry,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index bdb343982a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,0,0,0,0 -2016-12-23,0,0,0,0,0,1,0,0,0,12,0,0,0,0,12,0,0,0,0 -2016-12-24,0,0,0,0,0,1,0,0,0,12,0,0,0,0,12,0,0,0,0 -2016-12-25,0,24,0,0,0,1,0,0,0,24,0,0,0,0,12,0,0,0,0 -2016-12-26,0,24,0,0,0,1,0,0,0,24,0,16,0,0,12,0,0,0,0 -2016-12-27,96,24,144,0,0,16,64,0,32,24,0,16,0,0,12,1,0,0,0 -2016-12-28,96,192,144,0,0,16,64,0,32,24,20,16,0,0,12,1,0,0,0 -2016-12-29,160,192,144,112,0,64,64,0,32,24,20,16,12,0,12,4,2,5,4 -2016-12-30,336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,4,2,5,4 -2016-12-31,336,192,96,112,8,64,64,48,0,24,0,16,12,12,12,8,8,5,4 -2017-01-01,192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index f11eb720a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" -2016-12,336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,8,8,5,4 -2017-01,192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 5f7ecd74ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" -"2016 Q4",336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,8,8,5,4 -"2017 Q1",192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 76eeb79a18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Job Size: Max (Core Count)","[banana-cream] Job Size: Max (Core Count)","[derby] Job Size: Max (Core Count)","[buttermilk] Job Size: Max (Core Count)","[butter] Job Size: Max (Core Count)","[bavarian-cream] Job Size: Max (Core Count)","[coconut-cream] Job Size: Max (Core Count)","[green-grape] Job Size: Max (Core Count)","[fish] Job Size: Max (Core Count)","[apple] Job Size: Max (Core Count)","[cheese] Job Size: Max (Core Count)","[cashew] Job Size: Max (Core Count)","[blueberry] Job Size: Max (Core Count)","[bumbleberry] Job Size: Max (Core Count)","[chestnut] Job Size: Max (Core Count)","[blackberry] Job Size: Max (Core Count)","[boysenberry] Job Size: Max (Core Count)","[flapper] Job Size: Max (Core Count)","[cherry] Job Size: Max (Core Count)" -2016,336,192,144,112,80,64,64,48,32,24,20,16,12,12,12,8,8,5,4 -2017,192,20,72,1,20,16,64,24,0,24,0,16,0,12,12,4,2,5,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 4a189fc5d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Min (Core Count)" -cheese,20 -blueberry,12 -apple,8 -bumbleberry,8 -butter,8 -coconut-cream,8 -flapper,5 -boysenberry,2 -banana-cream,1 -bavarian-cream,1 -blackberry,1 -buttermilk,1 -cashew,1 -cherry,1 -chestnut,1 -curry,1 -derby,1 -fish,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 4a189fc5d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Min (Core Count)" -cheese,20 -blueberry,12 -apple,8 -bumbleberry,8 -butter,8 -coconut-cream,8 -flapper,5 -boysenberry,2 -banana-cream,1 -bavarian-cream,1 -blackberry,1 -buttermilk,1 -cashew,1 -cherry,1 -chestnut,1 -curry,1 -derby,1 -fish,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 4a189fc5d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Min (Core Count)" -cheese,20 -blueberry,12 -apple,8 -bumbleberry,8 -butter,8 -coconut-cream,8 -flapper,5 -boysenberry,2 -banana-cream,1 -bavarian-cream,1 -blackberry,1 -buttermilk,1 -cashew,1 -cherry,1 -chestnut,1 -curry,1 -derby,1 -fish,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 4a189fc5d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Min (Core Count)" -cheese,20 -blueberry,12 -apple,8 -bumbleberry,8 -butter,8 -coconut-cream,8 -flapper,5 -boysenberry,2 -banana-cream,1 -bavarian-cream,1 -blackberry,1 -buttermilk,1 -cashew,1 -cherry,1 -chestnut,1 -curry,1 -derby,1 -fish,1 -green-grape,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 8e00b695cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" -2016-12-22,0,0,12,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0 -2016-12-23,0,0,12,0,0,0,0,0,0,1,0,0,0,0,12,0,0,0,0 -2016-12-24,0,0,12,0,0,0,0,0,0,1,0,0,0,0,12,0,0,0,0 -2016-12-25,0,0,12,0,0,0,0,0,24,1,0,0,0,0,12,0,0,0,0 -2016-12-26,0,0,12,0,0,0,0,0,24,1,0,0,16,0,12,0,0,0,0 -2016-12-27,0,0,12,0,0,64,0,0,8,1,1,0,16,0,12,8,12,1,0 -2016-12-28,20,0,12,0,0,64,0,0,8,1,1,0,16,0,12,1,12,1,0 -2016-12-29,20,12,8,0,0,64,5,2,4,1,1,112,16,4,12,1,1,1,0 -2016-12-30,20,12,8,8,20,32,5,2,1,1,1,1,16,1,12,1,1,1,1 -2016-12-31,0,12,8,12,8,8,5,2,1,1,1,1,1,1,12,1,1,0,1 -2017-01-01,0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index b705cba713..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" -2016-12,20,12,8,8,8,8,5,2,1,1,1,1,1,1,12,1,1,1,1 -2017-01,0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 4cda49e9a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" -"2016 Q4",20,12,8,8,8,8,5,2,1,1,1,1,1,1,12,1,1,1,1 -"2017 Q1",0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 5e2ad7c637..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[cheese] Job Size: Min (Core Count)","[blueberry] Job Size: Min (Core Count)","[apple] Job Size: Min (Core Count)","[bumbleberry] Job Size: Min (Core Count)","[butter] Job Size: Min (Core Count)","[coconut-cream] Job Size: Min (Core Count)","[flapper] Job Size: Min (Core Count)","[boysenberry] Job Size: Min (Core Count)","[banana-cream] Job Size: Min (Core Count)","[bavarian-cream] Job Size: Min (Core Count)","[blackberry] Job Size: Min (Core Count)","[buttermilk] Job Size: Min (Core Count)","[cashew] Job Size: Min (Core Count)","[cherry] Job Size: Min (Core Count)","[chestnut] Job Size: Min (Core Count)","[curry] Job Size: Min (Core Count)","[derby] Job Size: Min (Core Count)","[fish] Job Size: Min (Core Count)","[green-grape] Job Size: Min (Core Count)" -2016,20,12,8,8,8,8,5,2,1,1,1,1,1,1,12,1,1,1,1 -2017,0,0,8,12,8,8,5,2,4,1,1,1,8,4,1,1,16,0,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-cs.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-pi.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 7089d76497..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bavarian-cream,0.176562500 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Day-usr.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 74d5496634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Job Size: Normalized (% of Total Cores)" -fish,0.735416667 -coconut-cream,0.717647059 -butter,0.633333333 -derby,0.505084746 -cheese,0.500000000 -green-grape,0.472023810 -blueberry,0.300000000 -cashew,0.272169811 -buttermilk,0.266304348 -bumbleberry,0.149783550 -curry,0.138930798 -flapper,0.125000000 -apple,0.102448211 -chestnut,0.101923077 -boysenberry,0.098557692 -bavarian-cream,0.088281250 -blackberry,0.068750000 -banana-cream,0.059099836 -cherry,0.050000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv deleted file mode 100644 index dc248afd62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 -2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 -2016-12-27,0.713888889,1.600000000,0,1.460000000,0,0,0,0.400000000,0,0,1.025000000,0,0.450000000,0.300000000,0,0.275000000,0.025000000,0.200000000,0 -2016-12-28,0.722500000,1.600000000,0,1.046666667,0.500000000,0,0,0.400000000,0,0,0.134630607,0,0.450000000,0.300000000,0,0.275000000,0.025000000,1.176315789,0 -2016-12-29,0.735416667,1.600000000,0,0.345270270,0.500000000,0,0.300000000,0.400000000,2.800000000,0,0.097568671,0.125000000,0.290909091,0.300000000,0.050000000,0.361111111,0.081250000,0.139112903,0.100000000 -2016-12-30,0.735416667,1.280000000,1.000000000,0.418831169,0.500000000,0.353676471,0.300000000,0.400000000,0.641666667,0.250000000,0.090706540,0.125000000,0.105445545,0.300000000,0.050000000,0.267857143,0.090000000,0.056447577,0.040000000 -2016-12-31,0,1.177777778,0.200000000,0.748979592,0,0.534259259,0.300000000,0.258854167,0.371875000,0.300000000,0.076186990,0.125000000,0.101329787,0.300000000,0.098557692,0.106250000,0.069444444,0.061502875,0.050000000 -2017-01-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv deleted file mode 100644 index dc248afd62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 -2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.400000000,0.300000000,0,0.025000000,0,0.600000000,0 -2016-12-27,0.713888889,1.600000000,0,1.460000000,0,0,0,0.400000000,0,0,1.025000000,0,0.450000000,0.300000000,0,0.275000000,0.025000000,0.200000000,0 -2016-12-28,0.722500000,1.600000000,0,1.046666667,0.500000000,0,0,0.400000000,0,0,0.134630607,0,0.450000000,0.300000000,0,0.275000000,0.025000000,1.176315789,0 -2016-12-29,0.735416667,1.600000000,0,0.345270270,0.500000000,0,0.300000000,0.400000000,2.800000000,0,0.097568671,0.125000000,0.290909091,0.300000000,0.050000000,0.361111111,0.081250000,0.139112903,0.100000000 -2016-12-30,0.735416667,1.280000000,1.000000000,0.418831169,0.500000000,0.353676471,0.300000000,0.400000000,0.641666667,0.250000000,0.090706540,0.125000000,0.105445545,0.300000000,0.050000000,0.267857143,0.090000000,0.056447577,0.040000000 -2016-12-31,0,1.177777778,0.200000000,0.748979592,0,0.534259259,0.300000000,0.258854167,0.371875000,0.300000000,0.076186990,0.125000000,0.101329787,0.300000000,0.098557692,0.106250000,0.069444444,0.061502875,0.050000000 -2017-01-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 7a93f963a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0.300000000,0.300000000,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0.300000000,0.300000000,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0.400000000,0.300000000,0,0,0.600000000,0 -2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0.025000000,0,0,0,0.400000000,0.300000000,0,0,0.600000000,0 -2016-12-27,0.713888889,1.600000000,0,1.460000000,0,0,0,0.400000000,0,0.275000000,0,1.025000000,0,0.450000000,0.300000000,0,0.025000000,0.200000000,0 -2016-12-28,0.722500000,1.600000000,0,1.046666667,0.500000000,0,0,0.400000000,0,0.275000000,0,0.134630607,0,0.450000000,0.300000000,0,0.025000000,1.176315789,0 -2016-12-29,0.735416667,1.600000000,0,0.345270270,0.500000000,0,0.300000000,0.400000000,2.800000000,0.361111111,0,0.097568671,0.125000000,0.290909091,0.300000000,0.050000000,0.081250000,0.139112903,0.100000000 -2016-12-30,0.735416667,1.280000000,1.000000000,0.418831169,0.500000000,0.353676471,0.300000000,0.400000000,0.641666667,0.267857143,0.250000000,0.090706540,0.125000000,0.105445545,0.300000000,0.050000000,0.090000000,0.056447577,0.040000000 -2016-12-31,0,1.177777778,0.200000000,0.748979592,0,0.534259259,0.300000000,0.258854167,0.371875000,0.106250000,0.300000000,0.076186990,0.125000000,0.101329787,0.300000000,0.098557692,0.069444444,0.061502875,0.050000000 -2017-01-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.212500000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.093181818,0.060674534,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 5d18a46b8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" -2016-12,0.735416667,1.184615385,0.800000000,0.463414634,0.500000000,0.433606557,0.300000000,0.272169811,0.371875000,0.147222222,0.088229793,0.125000000,0.102910053,0.300000000,0.098557692,0.090725806,0.068750000,0.058843074,0.050000000 -2017-01,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 2ddbc6bf98..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.735416667,1.184615385,0.800000000,0.463414634,0.500000000,0.433606557,0.300000000,0.272169811,0.371875000,0.147222222,0.088229793,0.125000000,0.102910053,0.300000000,0.098557692,0.090725806,0.068750000,0.058843074,0.050000000 -"2017 Q1",0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index b5a1a2476a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[fish] Job Size: Normalized (% of Total Cores)","[coconut-cream] Job Size: Normalized (% of Total Cores)","[butter] Job Size: Normalized (% of Total Cores)","[derby] Job Size: Normalized (% of Total Cores)","[cheese] Job Size: Normalized (% of Total Cores)","[green-grape] Job Size: Normalized (% of Total Cores)","[blueberry] Job Size: Normalized (% of Total Cores)","[cashew] Job Size: Normalized (% of Total Cores)","[buttermilk] Job Size: Normalized (% of Total Cores)","[bumbleberry] Job Size: Normalized (% of Total Cores)","[curry] Job Size: Normalized (% of Total Cores)","[flapper] Job Size: Normalized (% of Total Cores)","[apple] Job Size: Normalized (% of Total Cores)","[chestnut] Job Size: Normalized (% of Total Cores)","[boysenberry] Job Size: Normalized (% of Total Cores)","[bavarian-cream] Job Size: Normalized (% of Total Cores)","[blackberry] Job Size: Normalized (% of Total Cores)","[banana-cream] Job Size: Normalized (% of Total Cores)","[cherry] Job Size: Normalized (% of Total Cores)" -2016,0.735416667,1.184615385,0.800000000,0.463414634,0.500000000,0.433606557,0.300000000,0.272169811,0.371875000,0.147222222,0.088229793,0.125000000,0.102910053,0.300000000,0.098557692,0.090725806,0.068750000,0.058843074,0.050000000 -2017,0,0.481818182,0.450000000,1.105555556,0,0.573913043,0,0.263829787,0.025000000,0.300000000,0.200558991,0.125000000,0.205031447,0.101923077,0.050000000,0.212500000,0.093181818,0.060674534,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 710c356038..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Running" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 710c356038..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Running" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 710c356038..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Running" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 710c356038..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Running" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 5891454656..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" -2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2016-12-23,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 -2016-12-24,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 -2016-12-25,1,0,3,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 -2016-12-26,1,0,3,0,0,0,0,5,0,0,1,0,0,1,0,0,0,0,0 -2016-12-27,5,8,4,0,5,0,0,5,0,1,3,1,0,1,9,0,0,0,0 -2016-12-28,19,379,4,0,15,0,0,16,0,1,3,1,1,1,10,0,0,0,0 -2016-12-29,248,1347,11,0,74,4,0,20,1,1,9,8,1,1,12,0,1,1,1 -2016-12-30,22428,5902,202,2,154,36,34,20,1,5,14,15,15,1,12,3,5,3,3 -2016-12-31,24345,4781,188,16,49,32,27,48,52,9,22,27,0,1,0,1,3,1,1 -2017-01-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 27ba4c0e95..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" -2016-12,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -2017-01,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 41477d7fdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" -"2016 Q4",46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -"2017 Q1",9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index cf72e2fa3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[banana-cream] Number of Jobs Running","[curry] Number of Jobs Running","[apple] Number of Jobs Running","[bumbleberry] Number of Jobs Running","[derby] Number of Jobs Running","[buttermilk] Number of Jobs Running","[green-grape] Number of Jobs Running","[cashew] Number of Jobs Running","[boysenberry] Number of Jobs Running","[coconut-cream] Number of Jobs Running","[bavarian-cream] Number of Jobs Running","[blackberry] Number of Jobs Running","[cheese] Number of Jobs Running","[chestnut] Number of Jobs Running","[fish] Number of Jobs Running","[butter] Number of Jobs Running","[cherry] Number of Jobs Running","[flapper] Number of Jobs Running","[blueberry] Number of Jobs Running" -2016,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -2017,9703,6306,159,225,18,28,23,47,1,22,2,11,0,13,0,6,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 63d452e614..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Started" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 63d452e614..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Started" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 63d452e614..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Started" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 63d452e614..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Started" -banana-cream,55819 -curry,14118 -apple,531 -bumbleberry,231 -derby,177 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 0cead458ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" -2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,1,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 -2016-12-25,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,4,8,1,0,5,0,0,0,0,1,2,1,0,0,9,0,0,0,0 -2016-12-28,14,371,0,0,10,0,0,11,0,0,0,0,1,0,1,0,0,0,0 -2016-12-29,229,968,7,0,59,4,0,4,1,0,6,7,0,0,2,0,1,1,1 -2016-12-30,22180,4555,191,2,80,32,34,0,0,4,5,7,14,0,0,3,4,2,2 -2016-12-31,24054,2919,176,16,10,28,27,33,51,8,17,13,0,0,0,1,1,0,0 -2017-01-01,9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 7437c0fbc2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" -2016-12,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -2017-01,9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index e6fb046cd0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" -"2016 Q4",46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -"2017 Q1",9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 3cb8dfd11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[banana-cream] Number of Jobs Started","[curry] Number of Jobs Started","[apple] Number of Jobs Started","[bumbleberry] Number of Jobs Started","[derby] Number of Jobs Started","[buttermilk] Number of Jobs Started","[green-grape] Number of Jobs Started","[cashew] Number of Jobs Started","[boysenberry] Number of Jobs Started","[coconut-cream] Number of Jobs Started","[bavarian-cream] Number of Jobs Started","[blackberry] Number of Jobs Started","[cheese] Number of Jobs Started","[chestnut] Number of Jobs Started","[fish] Number of Jobs Started","[butter] Number of Jobs Started","[cherry] Number of Jobs Started","[flapper] Number of Jobs Started","[blueberry] Number of Jobs Started" -2016,46482,8821,378,18,164,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -2017,9337,5297,153,213,13,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 5aff5958f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Submitted" -banana-cream,52426 -curry,10762 -apple,526 -bumbleberry,168 -derby,108 -buttermilk,92 -green-grape,84 -boysenberry,52 -cashew,49 -coconut-cream,34 -bavarian-cream,29 -blackberry,27 -cheese,15 -chestnut,13 -butter,9 -fish,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 7c80d11f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Submitted" -banana-cream,54661 -curry,13270 -apple,530 -derby,177 -bumbleberry,168 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 7c80d11f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Submitted" -banana-cream,54661 -curry,13270 -apple,530 -derby,177 -bumbleberry,168 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 7c80d11f4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Number of Jobs Submitted" -banana-cream,54661 -curry,13270 -apple,530 -derby,177 -bumbleberry,168 -buttermilk,92 -green-grape,84 -cashew,53 -boysenberry,52 -coconut-cream,34 -bavarian-cream,32 -blackberry,28 -cheese,15 -chestnut,13 -fish,12 -butter,9 -cherry,6 -flapper,4 -blueberry,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index f2a3bc78a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,1,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 -2016-12-25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 -2016-12-27,4,0,1,0,0,0,0,0,0,1,2,1,0,0,0,9,0,0,0 -2016-12-28,9,354,0,0,4,0,0,0,11,0,0,0,1,0,0,0,0,0,0 -2016-12-29,229,896,7,0,55,4,0,1,0,0,4,7,0,0,0,0,1,1,1 -2016-12-30,22052,3280,191,2,28,32,34,0,0,4,5,7,14,0,3,0,4,2,2 -2016-12-31,21953,1783,174,16,8,28,27,51,33,8,16,12,0,0,1,0,1,0,0 -2017-01-01,8179,4449,152,150,13,28,23,0,0,21,1,0,0,12,5,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 30f4f9eb26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" -2016-12,46482,8821,378,164,18,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -2017-01,8179,4449,152,13,150,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d2e092b744..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" -"2016 Q4",46482,8821,378,164,18,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -"2017 Q1",8179,4449,152,13,150,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 28a936e752..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[banana-cream] Number of Jobs Submitted","[curry] Number of Jobs Submitted","[apple] Number of Jobs Submitted","[derby] Number of Jobs Submitted","[bumbleberry] Number of Jobs Submitted","[buttermilk] Number of Jobs Submitted","[green-grape] Number of Jobs Submitted","[cashew] Number of Jobs Submitted","[boysenberry] Number of Jobs Submitted","[coconut-cream] Number of Jobs Submitted","[bavarian-cream] Number of Jobs Submitted","[blackberry] Number of Jobs Submitted","[cheese] Number of Jobs Submitted","[chestnut] Number of Jobs Submitted","[fish] Number of Jobs Submitted","[butter] Number of Jobs Submitted","[cherry] Number of Jobs Submitted","[flapper] Number of Jobs Submitted","[blueberry] Number of Jobs Submitted" -2016,46482,8821,378,164,18,64,61,53,52,13,31,28,15,1,12,4,6,3,3 -2017,8179,4449,152,13,150,28,23,0,0,21,1,0,0,12,0,5,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index d906a48f1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Total" -curry,372506.7756 -banana-cream,287631.3289 -derby,69435.3011 -cashew,34825.7219 -fish,19424.7181 -buttermilk,14222.7461 -apple,13491.2467 -coconut-cream,8411.0733 -bavarian-cream,7756.7339 -blackberry,3268.7208 -bumbleberry,3184.4200 -chestnut,3079.9728 -cheese,982.6722 -butter,622.5856 -blueberry,509.6267 -boysenberry,442.4361 -green-grape,354.7986 -cherry,238.5711 -flapper,166.3875 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index d906a48f1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Total" -curry,372506.7756 -banana-cream,287631.3289 -derby,69435.3011 -cashew,34825.7219 -fish,19424.7181 -buttermilk,14222.7461 -apple,13491.2467 -coconut-cream,8411.0733 -bavarian-cream,7756.7339 -blackberry,3268.7208 -bumbleberry,3184.4200 -chestnut,3079.9728 -cheese,982.6722 -butter,622.5856 -blueberry,509.6267 -boysenberry,442.4361 -green-grape,354.7986 -cherry,238.5711 -flapper,166.3875 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index d906a48f1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Total" -curry,372506.7756 -banana-cream,287631.3289 -derby,69435.3011 -cashew,34825.7219 -fish,19424.7181 -buttermilk,14222.7461 -apple,13491.2467 -coconut-cream,8411.0733 -bavarian-cream,7756.7339 -blackberry,3268.7208 -bumbleberry,3184.4200 -chestnut,3079.9728 -cheese,982.6722 -butter,622.5856 -blueberry,509.6267 -boysenberry,442.4361 -green-grape,354.7986 -cherry,238.5711 -flapper,166.3875 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index d906a48f1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"CPU Hours: Total" -curry,372506.7756 -banana-cream,287631.3289 -derby,69435.3011 -cashew,34825.7219 -fish,19424.7181 -buttermilk,14222.7461 -apple,13491.2467 -coconut-cream,8411.0733 -bavarian-cream,7756.7339 -blackberry,3268.7208 -bumbleberry,3184.4200 -chestnut,3079.9728 -cheese,982.6722 -butter,622.5856 -blueberry,509.6267 -boysenberry,442.4361 -green-grape,354.7986 -cherry,238.5711 -flapper,166.3875 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 1301a4a0e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" -2016-12-22,0,0,0,0,0,0,203.3000,0,0,0,0,200.9567,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,288.0000,0,8.6036,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,288.0000,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-25,0,128.1333,0,0,0,0,338.1367,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-26,0,576.0000,0,216.3333,0,0,1152.0000,0,24.0000,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-27,4298.0267,877.5867,6025.4956,1920.0000,468.4192,0,1247.2667,243.1822,181.9511,3.2167,0,288.0000,0,0,0,0,0,0,0 -2016-12-28,27128.3481,32475.8044,9314.8578,2310.7378,6296.9511,0,1728.0000,1536.0000,792.0000,24.0000,0,288.0000,94.0111,0,0,0,0,0,0 -2016-12-29,82466.3581,44979.1733,20250.6908,7644.0844,8065.3689,1643.9111,1807.2667,1536.0000,1405.2617,502.0997,0,288.0000,480.0000,0,105.6300,7.2400,0,28.6944,52.0042 -2016-12-30,127515.2189,102135.2125,16077.3053,6055.3111,4593.9789,9238.5464,2360.4422,1562.0711,2889.9206,1047.8044,10.8267,288.0000,408.6611,188.5778,376.3667,48.0000,141.2678,95.9114,85.8444 -2016-12-31,89170.4531,95510.8442,13950.0572,11780.8131,0,3313.1372,2237.0833,2067.3578,2035.3847,1122.1397,37.7500,288.0000,0,158.3044,27.6300,351.9378,103.6008,68.0031,7.1333 -2017-01-01,41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 559f43d1c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" -2016-12,330578.4047,276682.7544,65618.4067,29927.2797,19424.7181,14195.5947,11649.4956,6944.6111,7385.1217,2699.2606,48.5767,2792.9567,982.6722,346.8822,509.6267,407.1778,244.8686,192.6089,144.9819 -2017-01,41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 67ca28213b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" -"2016 Q4",330578.4047,276682.7544,65618.4067,29927.2797,19424.7181,14195.5947,11649.4956,6944.6111,7385.1217,2699.2606,48.5767,2792.9567,982.6722,346.8822,509.6267,407.1778,244.8686,192.6089,144.9819 -"2017 Q1",41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 07565d1335..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] CPU Hours: Total","[banana-cream] CPU Hours: Total","[derby] CPU Hours: Total","[cashew] CPU Hours: Total","[fish] CPU Hours: Total","[buttermilk] CPU Hours: Total","[apple] CPU Hours: Total","[coconut-cream] CPU Hours: Total","[bavarian-cream] CPU Hours: Total","[blackberry] CPU Hours: Total","[bumbleberry] CPU Hours: Total","[chestnut] CPU Hours: Total","[cheese] CPU Hours: Total","[butter] CPU Hours: Total","[blueberry] CPU Hours: Total","[boysenberry] CPU Hours: Total","[green-grape] CPU Hours: Total","[cherry] CPU Hours: Total","[flapper] CPU Hours: Total" -2016,330578.4047,276682.7544,65618.4067,29927.2797,19424.7181,14195.5947,11649.4956,6944.6111,7385.1217,2699.2606,48.5767,2792.9567,982.6722,346.8822,509.6267,407.1778,244.8686,192.6089,144.9819 -2017,41928.3708,10948.5744,3816.8944,4898.4422,0,27.1514,1841.7511,1466.4622,371.6122,569.4603,3135.8433,287.0161,0,275.7033,0,35.2583,109.9300,45.9622,21.4056 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index b34d1945dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Total" -chestnut,506.9128 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index b34d1945dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Total" -chestnut,506.9128 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b34d1945dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Total" -chestnut,506.9128 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index b34d1945dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"GPU Hours: Total" -chestnut,506.9128 -apple,0.0000 -banana-cream,0.0000 -bavarian-cream,0.0000 -blackberry,0.0000 -blueberry,0.0000 -boysenberry,0.0000 -bumbleberry,0.0000 -butter,0.0000 -buttermilk,0.0000 -cashew,0.0000 -cheese,0.0000 -cherry,0.0000 -coconut-cream,0.0000 -curry,0.0000 -derby,0.0000 -fish,0.0000 -flapper,0.0000 -green-grape,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5eadc61d87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" -2016-12-22,33.4928,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,48.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,48.0000,0.0000,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,48.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-27,48.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0 -2016-12-28,48.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0 -2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 -2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index fc2e5d6f85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 52e017930e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 35d31541e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[chestnut] GPU Hours: Total","[apple] GPU Hours: Total","[banana-cream] GPU Hours: Total","[bavarian-cream] GPU Hours: Total","[blackberry] GPU Hours: Total","[blueberry] GPU Hours: Total","[boysenberry] GPU Hours: Total","[bumbleberry] GPU Hours: Total","[butter] GPU Hours: Total","[buttermilk] GPU Hours: Total","[cashew] GPU Hours: Total","[cheese] GPU Hours: Total","[cherry] GPU Hours: Total","[coconut-cream] GPU Hours: Total","[curry] GPU Hours: Total","[derby] GPU Hours: Total","[fish] GPU Hours: Total","[flapper] GPU Hours: Total","[green-grape] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index b14334bc4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Total" -curry,117317.4928 -banana-cream,23087.8978 -derby,6702.5344 -cashew,2773.5564 -apple,1140.4758 -coconut-cream,1051.3842 -buttermilk,965.4461 -blackberry,923.6869 -bavarian-cream,706.9989 -fish,676.7792 -bumbleberry,265.4119 -chestnut,258.8667 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -butter,45.5336 -blueberry,42.4689 -flapper,33.2775 -green-grape,30.3778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index b14334bc4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Total" -curry,117317.4928 -banana-cream,23087.8978 -derby,6702.5344 -cashew,2773.5564 -apple,1140.4758 -coconut-cream,1051.3842 -buttermilk,965.4461 -blackberry,923.6869 -bavarian-cream,706.9989 -fish,676.7792 -bumbleberry,265.4119 -chestnut,258.8667 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -butter,45.5336 -blueberry,42.4689 -flapper,33.2775 -green-grape,30.3778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b14334bc4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Total" -curry,117317.4928 -banana-cream,23087.8978 -derby,6702.5344 -cashew,2773.5564 -apple,1140.4758 -coconut-cream,1051.3842 -buttermilk,965.4461 -blackberry,923.6869 -bavarian-cream,706.9989 -fish,676.7792 -bumbleberry,265.4119 -chestnut,258.8667 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -butter,45.5336 -blueberry,42.4689 -flapper,33.2775 -green-grape,30.3778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index b14334bc4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Node Hours: Total" -curry,117317.4928 -banana-cream,23087.8978 -derby,6702.5344 -cashew,2773.5564 -apple,1140.4758 -coconut-cream,1051.3842 -buttermilk,965.4461 -blackberry,923.6869 -bavarian-cream,706.9989 -fish,676.7792 -bumbleberry,265.4119 -chestnut,258.8667 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -butter,45.5336 -blueberry,42.4689 -flapper,33.2775 -green-grape,30.3778 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 2af0a65247..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" -2016-12-22,0,0,0,0,16.9417,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,24.0000,0,0,0,8.6036,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,24.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-25,0,5.3389,0,0,27.1689,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-26,0,24.0000,0,13.5208,72.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-27,381.4444,43.2739,475.0061,120.0000,75.9694,30.3978,0,3.2167,33.8719,19.2119,0,24.0000,0,0,0,0,0,0,0 -2016-12-28,5007.0311,2052.4114,778.0228,144.4211,96.0000,192.0000,0,24.0000,72.0000,220.0297,0,24.0000,0,0,4.7006,0,0,0,0 -2016-12-29,22228.5850,2891.2000,1898.0608,477.7553,105.9083,192.0000,102.7444,145.1672,133.7861,275.2928,0,24.0000,7.1736,3.6200,24.0000,0,8.8025,10.4008,0 -2016-12-30,39578.4328,8656.0339,1769.0444,378.4569,248.2956,195.2589,602.9381,297.9511,223.4756,162.2447,0.9458,24.0000,56.5047,24.0000,20.4331,9.4289,31.3639,17.1689,12.5828 -2016-12-31,35055.1525,8446.2783,1437.9561,1112.6033,230.8492,258.4197,232.6122,303.6092,140.0119,0,3.1458,24.0000,50.0147,61.9922,0,19.7881,2.3025,1.4267,8.6342 -2017-01-01,15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7e723636e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" -2016-12,102250.6458,22118.5364,6358.0903,2246.7575,921.1331,868.0764,938.2947,773.9442,683.7492,676.7792,4.0917,232.7464,113.6931,89.6122,49.1336,29.2169,42.4689,28.9964,21.2169 -2017-01,15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e39cce3f30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" -"2016 Q4",102250.6458,22118.5364,6358.0903,2246.7575,921.1331,868.0764,938.2947,773.9442,683.7492,676.7792,4.0917,232.7464,113.6931,89.6122,49.1336,29.2169,42.4689,28.9964,21.2169 -"2017 Q1",15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3274ab14a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Node Hours: Total","[banana-cream] Node Hours: Total","[derby] Node Hours: Total","[cashew] Node Hours: Total","[apple] Node Hours: Total","[coconut-cream] Node Hours: Total","[buttermilk] Node Hours: Total","[blackberry] Node Hours: Total","[bavarian-cream] Node Hours: Total","[fish] Node Hours: Total","[bumbleberry] Node Hours: Total","[chestnut] Node Hours: Total","[cherry] Node Hours: Total","[boysenberry] Node Hours: Total","[cheese] Node Hours: Total","[butter] Node Hours: Total","[blueberry] Node Hours: Total","[flapper] Node Hours: Total","[green-grape] Node Hours: Total" -2016,102250.6458,22118.5364,6358.0903,2246.7575,921.1331,868.0764,938.2947,773.9442,683.7492,676.7792,4.0917,232.7464,113.6931,89.6122,49.1336,29.2169,42.4689,28.9964,21.2169 -2017,15066.8469,969.3614,344.4442,526.7989,219.3428,183.3078,27.1514,149.7428,23.2497,0,261.3203,26.1203,11.4906,17.6292,0,16.3167,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index bedd680683..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Total" -curry,245178.1744 -banana-cream,55855.9608 -derby,2675.0058 -bumbleberry,2188.9739 -bavarian-cream,182.9489 -apple,105.3900 -fish,64.3475 -blackberry,56.5503 -cashew,36.5339 -chestnut,1.2331 -blueberry,0.1544 -green-grape,0.0294 -boysenberry,0.0172 -buttermilk,0.0153 -cheese,0.0150 -coconut-cream,0.0056 -butter,0.0047 -cherry,0.0003 -flapper,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index bedd680683..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Total" -curry,245178.1744 -banana-cream,55855.9608 -derby,2675.0058 -bumbleberry,2188.9739 -bavarian-cream,182.9489 -apple,105.3900 -fish,64.3475 -blackberry,56.5503 -cashew,36.5339 -chestnut,1.2331 -blueberry,0.1544 -green-grape,0.0294 -boysenberry,0.0172 -buttermilk,0.0153 -cheese,0.0150 -coconut-cream,0.0056 -butter,0.0047 -cherry,0.0003 -flapper,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index bedd680683..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Total" -curry,245178.1744 -banana-cream,55855.9608 -derby,2675.0058 -bumbleberry,2188.9739 -bavarian-cream,182.9489 -apple,105.3900 -fish,64.3475 -blackberry,56.5503 -cashew,36.5339 -chestnut,1.2331 -blueberry,0.1544 -green-grape,0.0294 -boysenberry,0.0172 -buttermilk,0.0153 -cheese,0.0150 -coconut-cream,0.0056 -butter,0.0047 -cherry,0.0003 -flapper,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index bedd680683..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wait Hours: Total" -curry,245178.1744 -banana-cream,55855.9608 -derby,2675.0058 -bumbleberry,2188.9739 -bavarian-cream,182.9489 -apple,105.3900 -fish,64.3475 -blackberry,56.5503 -cashew,36.5339 -chestnut,1.2331 -blueberry,0.1544 -green-grape,0.0294 -boysenberry,0.0172 -buttermilk,0.0153 -cheese,0.0150 -coconut-cream,0.0056 -butter,0.0047 -cherry,0.0003 -flapper,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 70eb897db0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" -2016-12-22,0,0,0,0,0,9.3322,0,0,0,0.0003,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,9.5964,0.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,71.0125,0,0,0.0000,39.8731,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0.0000,0,0,0.0000,0.0000,0,0,0.0033,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,1678.5397,0.0281,299.6806,0,0.0017,0.0000,0.0019,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0 -2016-12-28,2777.3386,300.3025,481.6361,0,0.0000,0.0000,20.5744,0.0000,18.4800,0.0000,0,0,0,0,0.0003,0.0000,0,0,0 -2016-12-29,5630.1883,56.9717,284.6967,0,68.2783,0.1114,43.7711,0.0017,17.8439,0.0000,0.0011,0,0.0044,0.0025,0.0000,0.0000,0,0.0003,0.0000 -2016-12-30,181840.8014,11834.7264,1588.3242,1.6408,0.0861,2.0356,0.0000,14.4292,0.0000,0.0000,0.1533,0.0164,0.0000,0.0050,0.0147,0.0008,0.0033,0.0000,0.0000 -2016-12-31,36255.8153,36986.0025,11.0944,0.3231,104.9797,20.6897,0,42.1194,0.2067,0.0000,0.0000,0.0083,0.0128,0.0031,0,0.0017,0.0008,0.0000,0.0000 -2017-01-01,16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 58e3b185f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" -2016-12,228182.6833,49249.0436,2665.4319,1.9639,182.9422,72.0419,64.3475,56.5503,36.5339,0.0003,0.1544,0.0247,0.0172,0.0106,0.0150,0.0025,0.0042,0.0003,0.0000 -2017-01,16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ec32f0a67d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" -"2016 Q4",228182.6833,49249.0436,2665.4319,1.9639,182.9422,72.0419,64.3475,56.5503,36.5339,0.0003,0.1544,0.0247,0.0172,0.0106,0.0150,0.0025,0.0042,0.0003,0.0000 -"2017 Q1",16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index a3a655cd04..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Wait Hours: Total","[banana-cream] Wait Hours: Total","[derby] Wait Hours: Total","[bumbleberry] Wait Hours: Total","[bavarian-cream] Wait Hours: Total","[apple] Wait Hours: Total","[fish] Wait Hours: Total","[blackberry] Wait Hours: Total","[cashew] Wait Hours: Total","[chestnut] Wait Hours: Total","[blueberry] Wait Hours: Total","[green-grape] Wait Hours: Total","[boysenberry] Wait Hours: Total","[buttermilk] Wait Hours: Total","[cheese] Wait Hours: Total","[coconut-cream] Wait Hours: Total","[butter] Wait Hours: Total","[cherry] Wait Hours: Total","[flapper] Wait Hours: Total" -2016,228182.6833,49249.0436,2665.4319,1.9639,182.9422,72.0419,64.3475,56.5503,36.5339,0.0003,0.1544,0.0247,0.0172,0.0106,0.0150,0.0025,0.0042,0.0003,0.0000 -2017,16995.4911,6606.9172,9.5739,2187.0100,0.0067,33.3481,0,0.0000,0.0000,1.2328,0,0.0047,0.0000,0.0047,0,0.0031,0.0006,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 017634c2b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Total" -curry,102068.5361 -banana-cream,16266.9992 -cashew,2773.5564 -derby,2270.8689 -apple,1140.4569 -blackberry,923.6869 -fish,676.7792 -bavarian-cream,561.6681 -bumbleberry,265.4119 -chestnut,258.8667 -buttermilk,207.8861 -coconut-cream,145.3358 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -blueberry,42.4689 -butter,38.4678 -flapper,33.2775 -green-grape,20.9814 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 017634c2b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Total" -curry,102068.5361 -banana-cream,16266.9992 -cashew,2773.5564 -derby,2270.8689 -apple,1140.4569 -blackberry,923.6869 -fish,676.7792 -bavarian-cream,561.6681 -bumbleberry,265.4119 -chestnut,258.8667 -buttermilk,207.8861 -coconut-cream,145.3358 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -blueberry,42.4689 -butter,38.4678 -flapper,33.2775 -green-grape,20.9814 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 017634c2b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Total" -curry,102068.5361 -banana-cream,16266.9992 -cashew,2773.5564 -derby,2270.8689 -apple,1140.4569 -blackberry,923.6869 -fish,676.7792 -bavarian-cream,561.6681 -bumbleberry,265.4119 -chestnut,258.8667 -buttermilk,207.8861 -coconut-cream,145.3358 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -blueberry,42.4689 -butter,38.4678 -flapper,33.2775 -green-grape,20.9814 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 017634c2b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Wall Hours: Total" -curry,102068.5361 -banana-cream,16266.9992 -cashew,2773.5564 -derby,2270.8689 -apple,1140.4569 -blackberry,923.6869 -fish,676.7792 -bavarian-cream,561.6681 -bumbleberry,265.4119 -chestnut,258.8667 -buttermilk,207.8861 -coconut-cream,145.3358 -cherry,125.1836 -boysenberry,107.2414 -cheese,49.1336 -blueberry,42.4689 -butter,38.4678 -flapper,33.2775 -green-grape,20.9814 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6c31243be5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" -2016-12-22,0,0,0,0,16.9417,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,24.0000,0,0,8.6036,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,24.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,5.3389,0,0,27.1689,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,24.0000,13.5208,0,72.0000,0,0,24.0000,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,108.7789,43.2739,120.0000,102.0608,75.9694,3.2167,19.2119,33.8719,0,24.0000,0,3.7997,0,0,0,0,0,0,0 -2016-12-28,3407.8286,371.4633,144.4211,185.7003,96.0000,24.0000,220.0297,72.0000,0,24.0000,0,24.0000,0,0,4.7006,0,0,0,0 -2016-12-29,17930.3675,616.2253,477.7553,724.4197,105.9083,145.1672,275.2928,112.6986,0,24.0000,14.6778,24.0000,7.1736,3.6200,24.0000,8.8025,0,10.4008,0 -2016-12-30,34022.1689,6373.9053,378.4569,907.6750,248.2767,297.9511,162.2447,151.4756,0.9458,24.0000,109.4747,24.5364,56.5047,24.0000,20.4331,31.3639,2.3631,17.1689,9.5692 -2016-12-31,32190.1294,7863.4311,1112.6033,276.3244,230.8492,303.6092,0,87.7686,3.1458,24.0000,56.5822,32.4836,50.0147,61.9922,0,2.3025,19.7881,1.4267,6.0939 -2017-01-01,14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index ff9cac9053..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" -2016-12,87659.2733,15297.6378,2246.7575,2196.1803,921.1142,773.9442,676.7792,538.4183,4.0917,232.7464,180.7347,108.8197,113.6931,89.6122,49.1336,42.4689,22.1511,28.9964,15.6631 -2017-01,14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1bd489cd82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" -"2016 Q4",87659.2733,15297.6378,2246.7575,2196.1803,921.1142,773.9442,676.7792,538.4183,4.0917,232.7464,180.7347,108.8197,113.6931,89.6122,49.1336,42.4689,22.1511,28.9964,15.6631 -"2017 Q1",14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 463daaf221..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Wall Hours: Total","[banana-cream] Wall Hours: Total","[cashew] Wall Hours: Total","[derby] Wall Hours: Total","[apple] Wall Hours: Total","[blackberry] Wall Hours: Total","[fish] Wall Hours: Total","[bavarian-cream] Wall Hours: Total","[bumbleberry] Wall Hours: Total","[chestnut] Wall Hours: Total","[buttermilk] Wall Hours: Total","[coconut-cream] Wall Hours: Total","[cherry] Wall Hours: Total","[boysenberry] Wall Hours: Total","[cheese] Wall Hours: Total","[blueberry] Wall Hours: Total","[butter] Wall Hours: Total","[flapper] Wall Hours: Total","[green-grape] Wall Hours: Total" -2016,87659.2733,15297.6378,2246.7575,2196.1803,921.1142,773.9442,676.7792,538.4183,4.0917,232.7464,180.7347,108.8197,113.6931,89.6122,49.1336,42.4689,22.1511,28.9964,15.6631 -2017,14409.2628,969.3614,526.7989,74.6886,219.3428,149.7428,0,23.2497,261.3203,26.1203,27.1514,36.5161,11.4906,17.6292,0,0,16.3167,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 8053ecfbfc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Screwdriver CPU Utilization (%)" -curry,35.2753 -banana-cream,8.5605 -derby,6.5753 -cashew,5.1824 -buttermilk,2.4692 -fish,1.8395 -coconut-cream,0.7965 -apple,0.7807 -bavarian-cream,0.4489 -chestnut,0.2917 -blackberry,0.1892 -bumbleberry,0.1843 -cheese,0.1462 -butter,0.0590 -blueberry,0.0483 -cherry,0.0355 -green-grape,0.0336 -boysenberry,0.0256 -flapper,0.0158 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 34facc30b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Screwdriver CPU Utilization (%)" -curry,7.6084 -banana-cream,1.9206 -derby,1.4182 -cashew,0.9805 -buttermilk,0.4115 -fish,0.3967 -coconut-cream,0.2137 -apple,0.1779 -bavarian-cream,0.1023 -chestnut,0.0783 -blackberry,0.0431 -bumbleberry,0.0420 -cheese,0.0277 -butter,0.0154 -blueberry,0.0126 -green-grape,0.0072 -cherry,0.0067 -boysenberry,0.0058 -flapper,0.0034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 7be0ad79ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Screwdriver CPU Utilization (%)" -curry,3.5275 -banana-cream,0.7643 -derby,0.6575 -cashew,0.3779 -fish,0.1839 -buttermilk,0.1560 -coconut-cream,0.0876 -apple,0.0713 -bavarian-cream,0.0410 -chestnut,0.0321 -blackberry,0.0173 -bumbleberry,0.0168 -cheese,0.0107 -butter,0.0064 -blueberry,0.0053 -green-grape,0.0034 -cherry,0.0026 -boysenberry,0.0023 -flapper,0.0016 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 696997b3ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,28 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -QOS,"Screwdriver CPU Utilization (%)" -curry,1.0079 -banana-cream,0.2008 -derby,0.1879 -cashew,0.0978 -fish,0.0526 -buttermilk,0.0400 -coconut-cream,0.0234 -apple,0.0188 -bavarian-cream,0.0108 -chestnut,0.0086 -blackberry,0.0046 -bumbleberry,0.0044 -cheese,0.0028 -butter,0.0017 -blueberry,0.0014 -green-grape,0.0010 -cherry,0.0007 -boysenberry,0.0006 -flapper,0.0005 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv deleted file mode 100644 index fe590db8ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0,0,0.2118,0,0.2093,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0.3000,0.0090,0.3000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0.3000,0.0250,0.3000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0.1335,0,0,0,0,0,0.3522,0.0250,0.3000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0.6000,0,0.2253,0,0,0,1.2000,0.0250,0.3000,0,0,0,0,0,0,0,0,0 -2016-12-27,4.4771,0.4571,6.2766,2.0000,0,0.4879,0.2533,1.2992,0.1895,0.3000,0.0034,0,0,0,0,0,0,0,0 -2016-12-28,28.2587,16.9145,9.7030,2.4070,0,6.5593,1.6000,1.8000,0.8250,0.3000,0.0250,0,0.0979,0,0,0,0,0,0 -2016-12-29,85.9025,15.6178,21.0945,7.9626,1.7124,8.4014,1.6000,1.8826,1.4638,0.3000,0.5230,0,0.5000,0,0.1100,0.0299,0,0.0075,0.0542 -2016-12-30,132.8284,26.5977,16.7472,6.3076,9.6235,4.7854,1.6272,1.2294,3.0103,0.3000,1.0915,0.0113,0.4257,0.1964,0.3920,0.0999,0.1472,0.0500,0.0894 -2016-12-31,92.8859,24.8726,14.5313,12.2717,3.4512,0,2.1535,1.1651,1.0601,0.3000,0.5844,0.0393,0,0.1649,0.0288,0.0708,0.1079,0.1833,0.0074 -2017-01-01,43.6754,2.8512,3.9759,5.1025,0.0283,0,1.5276,1.9185,0.3871,0.2990,0.5932,3.2665,0,0.2872,0,0.0479,0.1145,0.0367,0.0223 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv deleted file mode 100644 index b0abd66f58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" -2016-12,17.2176,9.0066,3.4176,5.1957,2.9574,1.0117,0.7234,0.7138,0.4525,0.2909,0.1654,0.0030,0.1706,0.0328,0.0483,0.0128,0.0334,0.0249,0.0076 -2017-01,1.4089,0.0920,0.1283,0.1646,0.0009,0,0.0493,0.0619,0.0125,0.0096,0.0191,0.1054,0,0.0093,0,0.0037,0.0015,0.0012,0.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 37efa7bbb2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" -"2016 Q4",17.2176,9.0066,3.4176,5.1957,1.0117,2.9574,0.7234,0.7138,0.4525,0.2909,0.1654,0.0030,0.1706,0.0328,0.0483,0.0128,0.0334,0.0249,0.0076 -"2017 Q1",0.4853,0.0317,0.0442,0.0567,0,0.0003,0.0170,0.0213,0.0043,0.0033,0.0066,0.0363,0,0.0032,0,0.0013,0.0005,0.0004,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 6aac276d80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/qos/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by QOS" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[curry] Screwdriver CPU Utilization (%)","[banana-cream] Screwdriver CPU Utilization (%)","[derby] Screwdriver CPU Utilization (%)","[cashew] Screwdriver CPU Utilization (%)","[fish] Screwdriver CPU Utilization (%)","[buttermilk] Screwdriver CPU Utilization (%)","[coconut-cream] Screwdriver CPU Utilization (%)","[apple] Screwdriver CPU Utilization (%)","[bavarian-cream] Screwdriver CPU Utilization (%)","[chestnut] Screwdriver CPU Utilization (%)","[blackberry] Screwdriver CPU Utilization (%)","[bumbleberry] Screwdriver CPU Utilization (%)","[cheese] Screwdriver CPU Utilization (%)","[butter] Screwdriver CPU Utilization (%)","[blueberry] Screwdriver CPU Utilization (%)","[green-grape] Screwdriver CPU Utilization (%)","[cherry] Screwdriver CPU Utilization (%)","[boysenberry] Screwdriver CPU Utilization (%)","[flapper] Screwdriver CPU Utilization (%)" -2016,17.2176,9.0066,3.4176,5.1957,1.0117,2.9574,0.7234,0.7138,0.4525,0.2909,0.1654,0.0030,0.1706,0.0328,0.0483,0.0128,0.0334,0.0249,0.0076 -2017,0.1197,0.0078,0.0109,0.0140,0,0.0001,0.0042,0.0053,0.0011,0.0008,0.0016,0.0089,0,0.0008,0,0.0003,0.0001,0.0001,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index a9db54d856..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Users: Active" -white,41 -potbrood,8 -black,6 -cornbread,6 -brown,4 -croutons,4 -roti,4 -bannock,3 -crumpet,3 -brioche,2 -panettone,2 -pita,2 -pumpernickel,2 -barm,1 -chapti,1 -focaccia,1 -nann,1 -pikelet,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index a9db54d856..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Users: Active" -white,41 -potbrood,8 -black,6 -cornbread,6 -brown,4 -croutons,4 -roti,4 -bannock,3 -crumpet,3 -brioche,2 -panettone,2 -pita,2 -pumpernickel,2 -barm,1 -chapti,1 -focaccia,1 -nann,1 -pikelet,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index a9db54d856..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Users: Active" -white,41 -potbrood,8 -black,6 -cornbread,6 -brown,4 -croutons,4 -roti,4 -bannock,3 -crumpet,3 -brioche,2 -panettone,2 -pita,2 -pumpernickel,2 -barm,1 -chapti,1 -focaccia,1 -nann,1 -pikelet,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index a9db54d856..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Users: Active" -white,41 -potbrood,8 -black,6 -cornbread,6 -brown,4 -croutons,4 -roti,4 -bannock,3 -crumpet,3 -brioche,2 -panettone,2 -pita,2 -pumpernickel,2 -barm,1 -chapti,1 -focaccia,1 -nann,1 -pikelet,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 24844bf5e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -2016-12-23,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -2016-12-24,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -2016-12-25,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0 -2016-12-26,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,1 -2016-12-27,6,0,1,2,0,2,2,0,1,1,0,0,0,0,0,1,0,1 -2016-12-28,12,0,3,2,0,3,3,0,1,1,1,0,0,0,0,1,0,1 -2016-12-29,25,0,6,4,1,3,4,0,1,2,1,1,1,1,1,1,0,1 -2016-12-30,38,7,6,6,4,4,4,3,2,2,2,2,2,1,1,1,0,1 -2016-12-31,32,4,5,5,4,4,1,2,3,2,0,2,1,1,1,1,1,1 -2017-01-01,20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index e145859b4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" -2016-12,40,8,6,6,4,4,4,3,3,2,2,2,2,1,1,1,1,1 -2017-01,20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index a7a3a6bc84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" -"2016 Q4",40,8,6,6,4,4,4,3,3,2,2,2,2,1,1,1,1,1 -"2017 Q1",20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 3c88169a5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Number of Users: Active","[potbrood] Number of Users: Active","[black] Number of Users: Active","[cornbread] Number of Users: Active","[brown] Number of Users: Active","[croutons] Number of Users: Active","[roti] Number of Users: Active","[bannock] Number of Users: Active","[crumpet] Number of Users: Active","[brioche] Number of Users: Active","[panettone] Number of Users: Active","[pita] Number of Users: Active","[pumpernickel] Number of Users: Active","[barm] Number of Users: Active","[chapti] Number of Users: Active","[focaccia] Number of Users: Active","[nann] Number of Users: Active","[pikelet] Number of Users: Active" -2016,40,8,6,6,4,4,4,3,3,2,2,2,2,1,1,1,1,1 -2017,20,1,2,2,3,3,0,2,3,2,0,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 3e2d9c7b4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of PIs: Active" -white,32 -potbrood,7 -black,6 -bannock,2 -brown,2 -crumpet,2 -panettone,2 -pumpernickel,2 -roti,2 -barm,1 -brioche,1 -chapti,1 -cornbread,1 -croutons,1 -focaccia,1 -nann,1 -pikelet,1 -pita,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 3e2d9c7b4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of PIs: Active" -white,32 -potbrood,7 -black,6 -bannock,2 -brown,2 -crumpet,2 -panettone,2 -pumpernickel,2 -roti,2 -barm,1 -brioche,1 -chapti,1 -cornbread,1 -croutons,1 -focaccia,1 -nann,1 -pikelet,1 -pita,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 3e2d9c7b4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of PIs: Active" -white,32 -potbrood,7 -black,6 -bannock,2 -brown,2 -crumpet,2 -panettone,2 -pumpernickel,2 -roti,2 -barm,1 -brioche,1 -chapti,1 -cornbread,1 -croutons,1 -focaccia,1 -nann,1 -pikelet,1 -pita,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 3e2d9c7b4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of PIs: Active" -white,32 -potbrood,7 -black,6 -bannock,2 -brown,2 -crumpet,2 -panettone,2 -pumpernickel,2 -roti,2 -barm,1 -brioche,1 -chapti,1 -cornbread,1 -croutons,1 -focaccia,1 -nann,1 -pikelet,1 -pita,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 6dfa797b98..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0 -2016-12-27,5,0,1,0,0,1,0,0,2,0,1,0,1,1,1,0,1,0 -2016-12-28,11,0,3,0,0,1,1,0,2,0,1,0,1,1,1,0,1,0 -2016-12-29,19,0,6,0,1,1,1,1,2,1,1,1,1,1,1,0,1,1 -2016-12-30,29,6,6,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1 -2016-12-31,26,4,5,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1 -2017-01-01,18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index d983f704c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" -2016-12,31,7,6,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1 -2017-01,18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 685659c06b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" -"2016 Q4",31,7,6,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1 -"2017 Q1",18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index f3c6b90a9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Number of PIs: Active","[potbrood] Number of PIs: Active","[black] Number of PIs: Active","[bannock] Number of PIs: Active","[brown] Number of PIs: Active","[crumpet] Number of PIs: Active","[panettone] Number of PIs: Active","[pumpernickel] Number of PIs: Active","[roti] Number of PIs: Active","[barm] Number of PIs: Active","[brioche] Number of PIs: Active","[chapti] Number of PIs: Active","[cornbread] Number of PIs: Active","[croutons] Number of PIs: Active","[focaccia] Number of PIs: Active","[nann] Number of PIs: Active","[pikelet] Number of PIs: Active","[pita] Number of PIs: Active" -2016,31,7,6,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1 -2017,18,1,2,1,1,2,0,1,0,1,1,0,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index b98e1a62f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Resources: Active" -black,4 -bannock,1 -barm,1 -brioche,1 -brown,1 -chapti,1 -cornbread,1 -croutons,1 -crumpet,1 -focaccia,1 -nann,1 -panettone,1 -pikelet,1 -pita,1 -potbrood,1 -pumpernickel,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index b98e1a62f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Resources: Active" -black,4 -bannock,1 -barm,1 -brioche,1 -brown,1 -chapti,1 -cornbread,1 -croutons,1 -crumpet,1 -focaccia,1 -nann,1 -panettone,1 -pikelet,1 -pita,1 -potbrood,1 -pumpernickel,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b98e1a62f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Resources: Active" -black,4 -bannock,1 -barm,1 -brioche,1 -brown,1 -chapti,1 -cornbread,1 -croutons,1 -crumpet,1 -focaccia,1 -nann,1 -panettone,1 -pikelet,1 -pita,1 -potbrood,1 -pumpernickel,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index b98e1a62f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Resources: Active" -black,4 -bannock,1 -barm,1 -brioche,1 -brown,1 -chapti,1 -cornbread,1 -croutons,1 -crumpet,1 -focaccia,1 -nann,1 -panettone,1 -pikelet,1 -pita,1 -potbrood,1 -pumpernickel,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 058064c3ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" -2016-12-22,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0 -2016-12-27,1,0,0,1,0,0,1,1,1,1,0,0,1,0,0,0,1,1 -2016-12-28,2,0,0,1,0,0,1,1,1,1,0,1,1,0,0,0,1,1 -2016-12-29,3,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1 -2016-12-30,4,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1 -2016-12-31,4,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1 -2017-01-01,4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 5a328b035d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" -2016-12,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index f424245db7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" -"2016 Q4",4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index f8cb87b9d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[black] Number of Resources: Active","[bannock] Number of Resources: Active","[barm] Number of Resources: Active","[brioche] Number of Resources: Active","[brown] Number of Resources: Active","[chapti] Number of Resources: Active","[cornbread] Number of Resources: Active","[croutons] Number of Resources: Active","[crumpet] Number of Resources: Active","[focaccia] Number of Resources: Active","[nann] Number of Resources: Active","[panettone] Number of Resources: Active","[pikelet] Number of Resources: Active","[pita] Number of Resources: Active","[potbrood] Number of Resources: Active","[pumpernickel] Number of Resources: Active","[roti] Number of Resources: Active","[white] Number of Resources: Active" -2016,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,4,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index b00e446a82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index b104ac07c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b104ac07c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index b104ac07c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index aecd9374c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index cdb86f600f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -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","[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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index aa8e59d3ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -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","[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/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index aa109e963c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Queue" -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","[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/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 39055ccfa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Per Job" -focaccia,38.99329060 -bannock,0.00000000 -barm,0.00000000 -black,0.00000000 -brioche,0.00000000 -brown,0.00000000 -chapti,0.00000000 -cornbread,0.00000000 -croutons,0.00000000 -crumpet,0.00000000 -nann,0.00000000 -panettone,0.00000000 -pikelet,0.00000000 -pita,0.00000000 -potbrood,0.00000000 -pumpernickel,0.00000000 -roti,0.00000000 -white,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 39055ccfa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Per Job" -focaccia,38.99329060 -bannock,0.00000000 -barm,0.00000000 -black,0.00000000 -brioche,0.00000000 -brown,0.00000000 -chapti,0.00000000 -cornbread,0.00000000 -croutons,0.00000000 -crumpet,0.00000000 -nann,0.00000000 -panettone,0.00000000 -pikelet,0.00000000 -pita,0.00000000 -potbrood,0.00000000 -pumpernickel,0.00000000 -roti,0.00000000 -white,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 39055ccfa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Per Job" -focaccia,38.99329060 -bannock,0.00000000 -barm,0.00000000 -black,0.00000000 -brioche,0.00000000 -brown,0.00000000 -chapti,0.00000000 -cornbread,0.00000000 -croutons,0.00000000 -crumpet,0.00000000 -nann,0.00000000 -panettone,0.00000000 -pikelet,0.00000000 -pita,0.00000000 -potbrood,0.00000000 -pumpernickel,0.00000000 -roti,0.00000000 -white,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 39055ccfa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Per Job" -focaccia,38.99329060 -bannock,0.00000000 -barm,0.00000000 -black,0.00000000 -brioche,0.00000000 -brown,0.00000000 -chapti,0.00000000 -cornbread,0.00000000 -croutons,0.00000000 -crumpet,0.00000000 -nann,0.00000000 -panettone,0.00000000 -pikelet,0.00000000 -pita,0.00000000 -potbrood,0.00000000 -pumpernickel,0.00000000 -roti,0.00000000 -white,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index f457e5f0b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-23,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-24,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-25,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0,0 -2016-12-27,48.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0.00000000 -2016-12-28,48.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000 -2016-12-29,48.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000 -2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 83c2cd880a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" -2016-12,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ad386f9e0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" -"2016 Q4",465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index ed95122a1b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" -2016,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 7dea1f61b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -focaccia,0.3077,0.20013650333971736 -bannock,0.0000,0 -barm,0.0000,0 -black,0.0000,0 -brioche,0.0000,0 -brown,0.0000,0 -chapti,0.0000,0 -cornbread,0.0000,0 -croutons,0.0000,0 -crumpet,0.0000,0 -nann,0.0000,0 -panettone,0.0000,0 -pikelet,0.0000,0 -pita,0.0000,0 -potbrood,0.0000,0 -pumpernickel,0.0000,0 -roti,0.0000,0 -white,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 7dea1f61b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -focaccia,0.3077,0.20013650333971736 -bannock,0.0000,0 -barm,0.0000,0 -black,0.0000,0 -brioche,0.0000,0 -brown,0.0000,0 -chapti,0.0000,0 -cornbread,0.0000,0 -croutons,0.0000,0 -crumpet,0.0000,0 -nann,0.0000,0 -panettone,0.0000,0 -pikelet,0.0000,0 -pita,0.0000,0 -potbrood,0.0000,0 -pumpernickel,0.0000,0 -roti,0.0000,0 -white,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 7dea1f61b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -focaccia,0.3077,0.20013650333971736 -bannock,0.0000,0 -barm,0.0000,0 -black,0.0000,0 -brioche,0.0000,0 -brown,0.0000,0 -chapti,0.0000,0 -cornbread,0.0000,0 -croutons,0.0000,0 -crumpet,0.0000,0 -nann,0.0000,0 -panettone,0.0000,0 -pikelet,0.0000,0 -pita,0.0000,0 -potbrood,0.0000,0 -pumpernickel,0.0000,0 -roti,0.0000,0 -white,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 7dea1f61b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -focaccia,0.3077,0.20013650333971736 -bannock,0.0000,0 -barm,0.0000,0 -black,0.0000,0 -brioche,0.0000,0 -brown,0.0000,0 -chapti,0.0000,0 -cornbread,0.0000,0 -croutons,0.0000,0 -crumpet,0.0000,0 -nann,0.0000,0 -panettone,0.0000,0 -pikelet,0.0000,0 -pita,0.0000,0 -potbrood,0.0000,0 -pumpernickel,0.0000,0 -roti,0.0000,0 -white,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 89e765508e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 -2016-12-27,2.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 -2016-12-28,2.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 -2016-12-29,2.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 -2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 1e2ddcc226..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" -2016-12,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 8954181f4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" -"2016 Q4",2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 8782107b60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" -2016,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index ed73b0cce0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By CPU Hours (Core Count)" -brown,111.3630 -black,87.1590 -crumpet,62.9605 -white,61.7818 -roti,31.9003 -cornbread,28.1249 -bannock,27.0485 -potbrood,21.0567 -panettone,20.0000 -croutons,14.0785 -pikelet,13.8060 -chapti,12.0000 -nann,12.0000 -focaccia,11.9631 -pumpernickel,5.0000 -brioche,3.8841 -pita,2.9011 -barm,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index ed73b0cce0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By CPU Hours (Core Count)" -brown,111.3630 -black,87.1590 -crumpet,62.9605 -white,61.7818 -roti,31.9003 -cornbread,28.1249 -bannock,27.0485 -potbrood,21.0567 -panettone,20.0000 -croutons,14.0785 -pikelet,13.8060 -chapti,12.0000 -nann,12.0000 -focaccia,11.9631 -pumpernickel,5.0000 -brioche,3.8841 -pita,2.9011 -barm,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ed73b0cce0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By CPU Hours (Core Count)" -brown,111.3630 -black,87.1590 -crumpet,62.9605 -white,61.7818 -roti,31.9003 -cornbread,28.1249 -bannock,27.0485 -potbrood,21.0567 -panettone,20.0000 -croutons,14.0785 -pikelet,13.8060 -chapti,12.0000 -nann,12.0000 -focaccia,11.9631 -pumpernickel,5.0000 -brioche,3.8841 -pita,2.9011 -barm,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index ed73b0cce0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By CPU Hours (Core Count)" -brown,111.3630 -black,87.1590 -crumpet,62.9605 -white,61.7818 -roti,31.9003 -cornbread,28.1249 -bannock,27.0485 -potbrood,21.0567 -panettone,20.0000 -croutons,14.0785 -pikelet,13.8060 -chapti,12.0000 -nann,12.0000 -focaccia,11.9631 -pumpernickel,5.0000 -brioche,3.8841 -pita,2.9011 -barm,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 31e22fdc7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 -2016-12-23,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 -2016-12-24,0,0,0,0,0,1.0000,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0 -2016-12-25,0,0,0,0,0,1.0000,0,0,0,15.9210,0,0,0,12.0000,0,0,0,0 -2016-12-26,0,0,0,0,0,1.0000,0,0,0,20.0000,16.0000,0,0,12.0000,0,0,0,0 -2016-12-27,0,16.0000,64.0000,91.7014,31.6875,14.9410,0,0,0,20.1637,16.0000,0,0,12.0000,0,1.0000,0,0 -2016-12-28,0,179.3856,64.0000,79.4893,31.8856,15.7692,0,0,20.0000,19.4638,16.0000,0,0,12.0000,0,1.0000,0,0 -2016-12-29,112.0000,173.0716,64.0000,66.2185,31.9173,25.1202,0,0,20.0000,18.5883,16.0000,12.0000,0,12.0000,5.0000,3.8650,4.0000,2.0000 -2016-12-30,111.6728,81.2725,63.8308,65.6887,31.8980,33.6124,61.6969,20.0946,20.0000,10.7460,16.0000,12.0000,0,12.0000,5.0000,3.8814,2.6435,2.0000 -2016-12-31,111.0872,30.5411,63.9287,58.4257,32.0000,33.7236,11.9519,21.3018,0,10.3461,11.9114,12.0000,12.0000,12.0000,5.0000,3.9261,2.0581,2.0000 -2017-01-01,1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index e751ad98f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,111.5740,89.7835,63.9407,65.8862,31.9003,28.5408,37.6725,20.6042,20.0000,14.9805,14.3905,12.0000,12.0000,12.0000,5.0000,3.8723,2.6389,2.0000 -2017-01,1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1d5caeec4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",111.5740,89.7835,63.9407,65.8862,31.9003,28.5408,37.6725,20.6042,20.0000,14.9805,14.3905,12.0000,12.0000,12.0000,5.0000,3.8723,2.6389,2.0000 -"2017 Q1",1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index aa76cad7ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[brown] Job Size: Weighted By CPU Hours (Core Count)","[black] Job Size: Weighted By CPU Hours (Core Count)","[crumpet] Job Size: Weighted By CPU Hours (Core Count)","[white] Job Size: Weighted By CPU Hours (Core Count)","[roti] Job Size: Weighted By CPU Hours (Core Count)","[cornbread] Job Size: Weighted By CPU Hours (Core Count)","[bannock] Job Size: Weighted By CPU Hours (Core Count)","[potbrood] Job Size: Weighted By CPU Hours (Core Count)","[panettone] Job Size: Weighted By CPU Hours (Core Count)","[croutons] Job Size: Weighted By CPU Hours (Core Count)","[pikelet] Job Size: Weighted By CPU Hours (Core Count)","[chapti] Job Size: Weighted By CPU Hours (Core Count)","[nann] Job Size: Weighted By CPU Hours (Core Count)","[focaccia] Job Size: Weighted By CPU Hours (Core Count)","[pumpernickel] Job Size: Weighted By CPU Hours (Core Count)","[brioche] Job Size: Weighted By CPU Hours (Core Count)","[pita] Job Size: Weighted By CPU Hours (Core Count)","[barm] Job Size: Weighted By CPU Hours (Core Count)" -2016,111.5740,89.7835,63.9407,65.8862,31.9003,28.5408,37.6725,20.6042,20.0000,14.9805,14.3905,12.0000,12.0000,12.0000,5.0000,3.8723,2.6389,2.0000 -2017,1.0000,12.6086,58.3187,26.5000,0,15.9990,17.2122,22.0668,0,8.6544,10.2343,0,12.0000,11.6043,5.0000,3.9487,4.0000,2.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 133da14cbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By GPU Hours (GPU Count)" -focaccia,12.0000 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 133da14cbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By GPU Hours (GPU Count)" -focaccia,12.0000 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 133da14cbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By GPU Hours (GPU Count)" -focaccia,12.0000 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 133da14cbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Weighted By GPU Hours (GPU Count)" -focaccia,12.0000 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index a4df70a1a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 -2016-12-27,12.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 -2016-12-28,12.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 -2016-12-29,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index cbd6f72972..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e9d9a933c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2761c63cfe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 477959bdf7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index b1ad932db2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b1ad932db2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index b1ad932db2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -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/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 25925e1a04..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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,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/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 11c1b271c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c0411614a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 9270b0193a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index b8f23f9bd5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -parameters - -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/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index b8f23f9bd5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -parameters - -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/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index b8f23f9bd5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -parameters - -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/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index b8f23f9bd5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -parameters - -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/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index a5f76e484c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index e2c55e36a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -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)","[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,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index b798163d33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -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)","[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,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 71bdba2fa3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Queue" -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)","[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,2.0000,4.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index e53436fcb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -white,17.34677431,0.42765795662116723 -nann,9.55167273,0.4060879409774964 -brioche,4.57930556,2.1091028859691496 -cornbread,4.03722222,2.297082606479511 -roti,3.71197531,1.9172619541470255 -black,1.00651907,0.010945578987168504 -pikelet,0.68931866,0.18792064181649992 -croutons,0.19196230,0.08843596907200514 -chapti,0.16736111,0.1365622130756655 -focaccia,0.09485043,0.031010135623440054 -barm,0.00444444,0 -panettone,0.00100000,0.00007314228762270922 -bannock,0.00046296,0.00010236496271181964 -potbrood,0.00035621,0.00004704333548802711 -brown,0.00016606,0.000023797091252046995 -crumpet,0.00016340,0.000030824909099336814 -pumpernickel,0.00006944,0.000060140653040586014 -pita,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index e53436fcb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -white,17.34677431,0.42765795662116723 -nann,9.55167273,0.4060879409774964 -brioche,4.57930556,2.1091028859691496 -cornbread,4.03722222,2.297082606479511 -roti,3.71197531,1.9172619541470255 -black,1.00651907,0.010945578987168504 -pikelet,0.68931866,0.18792064181649992 -croutons,0.19196230,0.08843596907200514 -chapti,0.16736111,0.1365622130756655 -focaccia,0.09485043,0.031010135623440054 -barm,0.00444444,0 -panettone,0.00100000,0.00007314228762270922 -bannock,0.00046296,0.00010236496271181964 -potbrood,0.00035621,0.00004704333548802711 -brown,0.00016606,0.000023797091252046995 -crumpet,0.00016340,0.000030824909099336814 -pumpernickel,0.00006944,0.000060140653040586014 -pita,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e53436fcb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -white,17.34677431,0.42765795662116723 -nann,9.55167273,0.4060879409774964 -brioche,4.57930556,2.1091028859691496 -cornbread,4.03722222,2.297082606479511 -roti,3.71197531,1.9172619541470255 -black,1.00651907,0.010945578987168504 -pikelet,0.68931866,0.18792064181649992 -croutons,0.19196230,0.08843596907200514 -chapti,0.16736111,0.1365622130756655 -focaccia,0.09485043,0.031010135623440054 -barm,0.00444444,0 -panettone,0.00100000,0.00007314228762270922 -bannock,0.00046296,0.00010236496271181964 -potbrood,0.00035621,0.00004704333548802711 -brown,0.00016606,0.000023797091252046995 -crumpet,0.00016340,0.000030824909099336814 -pumpernickel,0.00006944,0.000060140653040586014 -pita,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index e53436fcb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -white,17.34677431,0.42765795662116723 -nann,9.55167273,0.4060879409774964 -brioche,4.57930556,2.1091028859691496 -cornbread,4.03722222,2.297082606479511 -roti,3.71197531,1.9172619541470255 -black,1.00651907,0.010945578987168504 -pikelet,0.68931866,0.18792064181649992 -croutons,0.19196230,0.08843596907200514 -chapti,0.16736111,0.1365622130756655 -focaccia,0.09485043,0.031010135623440054 -barm,0.00444444,0 -panettone,0.00100000,0.00007314228762270922 -bannock,0.00046296,0.00010236496271181964 -potbrood,0.00035621,0.00004704333548802711 -brown,0.00016606,0.000023797091252046995 -crumpet,0.00016340,0.000030824909099336814 -pumpernickel,0.00006944,0.000060140653040586014 -pita,0.00004630,0.00004226254305118396 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 4e5774c857..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,9.33222222,0,0.00027778,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,9.59638889,0,0,0,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0.00000000,0,0,0,36.96185185,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.00000000,0,0,0.00066667,0.00000000,0,0.00000000,0,0,0,0,0,0,0,0 -2016-12-27,152.17079060,0,0.00000000,0.00062500,0.00021605,0.00027778,0.00000000,0.01347222,0,0.00000000,0,0,0,0,0,0.00000000,0,0 -2016-12-28,8.57260599,0,0.00000000,0.00000000,10.97944444,22.15596154,1.68000000,12.27500000,0,0.00000000,0,0.00027778,0,0,0,0.00000000,0,0 -2016-12-29,5.76401289,0,0.00020833,11.37972222,14.92629630,0.26051096,4.46097222,0.01715686,0.00111111,0.00000000,0.00444444,0.00000000,0,0,0.00062500,0.00000000,0.00000000,0.00027778 -2016-12-30,39.61750516,0,1.80364583,0.74994949,0.01895833,0.53669450,0.00000000,0.03822947,0.26716667,0.00000000,0.00000000,0.00105159,0.00100000,0.00049206,0.00015625,0.00020833,0.00000000,0.00000000 -2016-12-31,12.38201083,0.02019097,25.71842593,4.34280303,0.00000000,1.54454053,0.00626263,0.04043343,0.00097222,0.00000000,0.00000000,0,0.00074074,0.00030864,0.00010913,0.00020833,0.00000000,0.00000000 -2017-01-01,3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 254db26382..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" -2016-12,25.71236872,0.02019097,4.57930556,4.12882576,3.71197531,1.06378499,0.68931866,0.22325159,0.16736111,0.00027778,0.00444444,0.00100000,0.00090278,0.00041219,0.00016493,0.00019231,0.00000000,0.00004630 -2017-01,3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 98399ba8bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" -"2016 Q4",25.71236872,0.02019097,4.57930556,4.12882576,3.71197531,1.06378499,0.68931866,0.22325159,0.16736111,0.00027778,0.00444444,0.00100000,0.00090278,0.00041219,0.00016493,0.00019231,0.00000000,0.00004630 -"2017 Q1",3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5eaf6348d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Wait Hours: Per Job","[nann] Wait Hours: Per Job","[brioche] Wait Hours: Per Job","[cornbread] Wait Hours: Per Job","[roti] Wait Hours: Per Job","[black] Wait Hours: Per Job","[pikelet] Wait Hours: Per Job","[croutons] Wait Hours: Per Job","[chapti] Wait Hours: Per Job","[focaccia] Wait Hours: Per Job","[barm] Wait Hours: Per Job","[panettone] Wait Hours: Per Job","[bannock] Wait Hours: Per Job","[potbrood] Wait Hours: Per Job","[brown] Wait Hours: Per Job","[crumpet] Wait Hours: Per Job","[pumpernickel] Wait Hours: Per Job","[pita] Wait Hours: Per Job" -2016,25.71236872,0.02019097,4.57930556,4.12882576,3.71197531,1.06378499,0.68931866,0.22325159,0.16736111,0.00027778,0.00444444,0.00100000,0.00090278,0.00041219,0.00016493,0.00019231,0.00000000,0.00004630 -2017,3.20246045,10.26765258,0.00000000,0.00666667,0,0.71877513,0.00000000,0.11565476,0,0.10273148,0.00000000,0,0.00011111,0.00020531,0.00016865,0.00014550,0.00027778,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6b6cd097a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -barm,69.24916667, -pikelet,52.33125262, -brioche,51.98147222, -roti,42.75256173, -pita,20.86393519, -focaccia,19.91282051,2.1056822673563573 -cornbread,17.78093827,1.1087327037887809 -pumpernickel,8.31937500,1.758450675650033 -white,7.29609410,0.06698540306543865 -chapti,5.97788194,2.1509462694844017 -crumpet,4.27458333,1.3636086939550018 -bannock,3.86878086,1.1629218460421795 -panettone,3.27557407,1.8974472070685748 -brown,2.25963164,0.3305676586108775 -croutons,1.96723431,0.13185742271092596 -nann,1.15487385,0.01800322897998984 -black,0.27209252,0.0032723215456785765 -potbrood,0.24737582,0.027252557659213004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 28ce4e527d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -barm,69.24916667, -pikelet,52.33125262, -brioche,51.98147222, -roti,42.75256173,6.325264219699847 -pita,20.86393519, -focaccia,19.91282051,17.106656154646572 -cornbread,17.78093827,5.2957544837994375 -pumpernickel,8.31937500,4.627752624288676 -white,7.29609410,0.10650594024891316 -chapti,5.97788194,3.288008036902684 -crumpet,4.27458333,2.910285751771729 -bannock,3.86878086,1.1629218460421795 -panettone,3.27557407,3.0868090132704915 -brown,2.25963164,0.45223146995766755 -croutons,1.96723431,0.29339689837408406 -nann,1.15487385,0.01800322897998984 -black,0.27209252,0.005264525182562369 -potbrood,0.24737582,0.027252557659213004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 28ce4e527d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -barm,69.24916667, -pikelet,52.33125262, -brioche,51.98147222, -roti,42.75256173,6.325264219699847 -pita,20.86393519, -focaccia,19.91282051,17.106656154646572 -cornbread,17.78093827,5.2957544837994375 -pumpernickel,8.31937500,4.627752624288676 -white,7.29609410,0.10650594024891316 -chapti,5.97788194,3.288008036902684 -crumpet,4.27458333,2.910285751771729 -bannock,3.86878086,1.1629218460421795 -panettone,3.27557407,3.0868090132704915 -brown,2.25963164,0.45223146995766755 -croutons,1.96723431,0.29339689837408406 -nann,1.15487385,0.01800322897998984 -black,0.27209252,0.005264525182562369 -potbrood,0.24737582,0.027252557659213004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 28ce4e527d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -barm,69.24916667, -pikelet,52.33125262, -brioche,51.98147222, -roti,42.75256173,6.325264219699847 -pita,20.86393519, -focaccia,19.91282051,17.106656154646572 -cornbread,17.78093827,5.2957544837994375 -pumpernickel,8.31937500,4.627752624288676 -white,7.29609410,0.10650594024891316 -chapti,5.97788194,3.288008036902684 -crumpet,4.27458333,2.910285751771729 -bannock,3.86878086,1.1629218460421795 -panettone,3.27557407,3.0868090132704915 -brown,2.25963164,0.45223146995766755 -croutons,1.96723431,0.29339689837408406 -nann,1.15487385,0.01800322897998984 -black,0.27209252,0.005264525182562369 -potbrood,0.24737582,0.027252557659213004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index b81f6c53ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" -2016-12-22,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,16.94166667,0,0,0 -2016-12-23,0,0,0,0,0,24.00000000,8.60361111,0,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-24,0,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-25,0,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,8.12694444,0,0,0 -2016-12-26,0,2.70416667,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-27,0,24.00000000,3.21666667,2.13466049,0,24.00000000,8.74933333,0,16.21844017,0,3.79972222,0,0,0,16.80314815,0,8.54972222,0 -2016-12-28,0,9.02631944,24.00000000,20.59058081,0,24.00000000,24.00000000,0,9.12738479,0,24.00000000,0,4.70055556,0,22.70619048,0,18.60857143,0 -2016-12-29,3.62000000,23.88776389,18.35067901,21.74269841,7.17361111,24.00000000,14.60896465,10.40083333,13.12592123,8.80250000,24.00000000,0,24.00000000,3.66944444,7.79993056,0,2.01269995,0 -2016-12-30,24.00000000,18.92284722,19.97710784,11.21660494,11.30094444,24.00000000,10.07637626,5.72296296,5.76791935,5.51643519,4.90727778,2.07438889,1.36220370,3.04096451,1.29791328,0,0.27070252,0.27470635 -2016-12-31,24.00000000,23.17923611,18.76051170,17.54111111,16.67157407,24.00000000,5.00544444,1.42666667,6.71959262,1.97398148,3.60929012,7.89157407,0,1.76819444,1.30500376,0.19661458,0.31093242,0.22569959 -2017-01-01,17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 01c1d49be4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" -2016-12,51.62000000,42.39165094,44.42166667,42.75256173,18.94884259,232.74638889,17.65664773,9.66546296,9.99806651,5.97788194,8.37074786,4.25583333,3.27557407,2.82398003,2.23275647,0.19661458,0.30935409,0.25336470 -2017-01,17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9469be9a49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" -"2016 Q4",51.62000000,42.39165094,44.42166667,42.75256173,18.94884259,232.74638889,17.65664773,9.66546296,9.99806651,5.97788194,8.37074786,4.25583333,3.27557407,2.82398003,2.23275647,0.19661458,0.30935409,0.25336470 -"2017 Q1",17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 665e76a468..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[barm] Wall Hours: Per Job","[pikelet] Wall Hours: Per Job","[brioche] Wall Hours: Per Job","[roti] Wall Hours: Per Job","[pita] Wall Hours: Per Job","[focaccia] Wall Hours: Per Job","[cornbread] Wall Hours: Per Job","[pumpernickel] Wall Hours: Per Job","[white] Wall Hours: Per Job","[chapti] Wall Hours: Per Job","[crumpet] Wall Hours: Per Job","[bannock] Wall Hours: Per Job","[panettone] Wall Hours: Per Job","[brown] Wall Hours: Per Job","[croutons] Wall Hours: Per Job","[nann] Wall Hours: Per Job","[black] Wall Hours: Per Job","[potbrood] Wall Hours: Per Job" -2016,51.62000000,42.39165094,44.42166667,42.75256173,18.94884259,232.74638889,17.65664773,9.66546296,9.99806651,5.97788194,8.37074786,4.25583333,3.27557407,2.82398003,2.23275647,0.19661458,0.30935409,0.25336470 -2017,17.62916667,11.20848700,12.59967593,0,11.49055556,2.00925214,11.62486111,4.28111111,2.29031489,0,1.65982323,3.23558081,0,0.96969246,1.24754823,1.16142346,0.08171698,0.23123188 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 70f27190cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"User Expansion Factor" -nann,9.2707 -black,3.4106 -white,3.2035 -cornbread,1.3332 -croutons,1.0975 -brioche,1.0881 -roti,1.0868 -chapti,1.0280 -pikelet,1.0132 -focaccia,1.0048 -potbrood,1.0018 -panettone,1.0003 -bannock,1.0002 -barm,1.0001 -brown,1.0000 -crumpet,1.0000 -pita,1.0000 -pumpernickel,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 70f27190cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"User Expansion Factor" -nann,9.2707 -black,3.4106 -white,3.2035 -cornbread,1.3332 -croutons,1.0975 -brioche,1.0881 -roti,1.0868 -chapti,1.0280 -pikelet,1.0132 -focaccia,1.0048 -potbrood,1.0018 -panettone,1.0003 -bannock,1.0002 -barm,1.0001 -brown,1.0000 -crumpet,1.0000 -pita,1.0000 -pumpernickel,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 70f27190cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"User Expansion Factor" -nann,9.2707 -black,3.4106 -white,3.2035 -cornbread,1.3332 -croutons,1.0975 -brioche,1.0881 -roti,1.0868 -chapti,1.0280 -pikelet,1.0132 -focaccia,1.0048 -potbrood,1.0018 -panettone,1.0003 -bannock,1.0002 -barm,1.0001 -brown,1.0000 -crumpet,1.0000 -pita,1.0000 -pumpernickel,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 70f27190cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"User Expansion Factor" -nann,9.2707 -black,3.4106 -white,3.2035 -cornbread,1.3332 -croutons,1.0975 -brioche,1.0881 -roti,1.0868 -chapti,1.0280 -pikelet,1.0132 -focaccia,1.0048 -potbrood,1.0018 -panettone,1.0003 -bannock,1.0002 -barm,1.0001 -brown,1.0000 -crumpet,1.0000 -pita,1.0000 -pumpernickel,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index ed98e6c8bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" -2016-12-22,0,0,0,0,1.0495,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,1.0610,1.0495,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,1.0610,1.0495,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,1.0610,1.1562,0,0,0,0,1.0000,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,1.0610,1.2735,0,0,0,1.0000,1.0000,0,0,0,0,0,0,0,0 -2016-12-27,0,1.0000,2.4396,1.0335,1.2605,1.0000,1.0000,0,1.0000,1.0000,0,0,0,0,0,1.0000,0,0 -2016-12-28,0,1.0431,1.7378,1.0122,1.1807,1.0000,1.0113,0,1.0025,1.0000,0,1.0000,0,0,0,1.0000,0,0 -2016-12-29,0,1.0503,1.4391,1.2408,1.1622,1.0000,1.1377,1.0000,1.0228,1.0000,0,1.0000,0,1.0001,1.0000,1.0000,1.0000,1.0000 -2016-12-30,0,2.3887,5.6993,1.3394,1.0501,1.0138,1.1089,1.0404,1.0292,1.0000,1.0023,1.0007,1.0005,1.0001,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.0162,5.5685,2.0364,1.4459,1.0331,1.2365,1.0192,1.0004,1.0100,1.0000,1.0019,0,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000 -2017-01-01,9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 9679733cb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" -2016-12,1.0162,3.3125,3.2854,1.2619,1.0998,1.1001,1.0868,1.0280,1.0149,1.0000,1.0021,1.0003,1.0003,1.0001,1.0000,1.0000,1.0000,1.0000 -2017-01,9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 48e5d5fbef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" -"2016 Q4",1.0162,3.3125,3.2854,1.2619,1.0998,1.1001,1.0868,1.0280,1.0149,1.0000,1.0021,1.0003,1.0003,1.0001,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 78001dac21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[nann] User Expansion Factor","[black] User Expansion Factor","[white] User Expansion Factor","[cornbread] User Expansion Factor","[croutons] User Expansion Factor","[brioche] User Expansion Factor","[roti] User Expansion Factor","[chapti] User Expansion Factor","[pikelet] User Expansion Factor","[focaccia] User Expansion Factor","[potbrood] User Expansion Factor","[panettone] User Expansion Factor","[bannock] User Expansion Factor","[barm] User Expansion Factor","[brown] User Expansion Factor","[crumpet] User Expansion Factor","[pita] User Expansion Factor","[pumpernickel] User Expansion Factor" -2016,1.0162,3.3125,3.2854,1.2619,1.0998,1.1001,1.0868,1.0280,1.0149,1.0000,1.0021,1.0003,1.0003,1.0001,1.0000,1.0000,1.0000,1.0000 -2017,9.3701,6.0667,2.6272,4.1617,1.0880,1.0173,0,0,1.0058,1.0472,1.0009,0,1.0000,1.0001,1.0002,1.0000,1.0000,1.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 1583dc229f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Ended" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 1583dc229f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Ended" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 1583dc229f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Ended" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 1583dc229f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Ended" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 59723bdbd6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" -2016-12-22,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 -2016-12-24,0,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 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,21971,4149,348,0,32,35,5,14,4,1,5,17,15,0,5,3,2,0 -2016-12-31,23857,3815,352,4,32,27,1,29,8,7,2,1,0,0,3,2,1,0 -2017-01-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 39953a91e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" -2016-12,45828,7964,700,4,64,62,6,43,12,8,7,18,15,0,8,5,3,0 -2017-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index f79578de2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" -"2016 Q4",45828,7964,700,4,64,62,6,43,12,8,7,18,15,0,8,5,3,0 -"2017 Q1",9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 66cf085bc4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[black] Number of Jobs Ended","[white] Number of Jobs Ended","[croutons] Number of Jobs Ended","[nann] Number of Jobs Ended","[brown] Number of Jobs Ended","[potbrood] Number of Jobs Ended","[pikelet] Number of Jobs Ended","[cornbread] Number of Jobs Ended","[crumpet] Number of Jobs Ended","[brioche] Number of Jobs Ended","[bannock] Number of Jobs Ended","[roti] Number of Jobs Ended","[panettone] Number of Jobs Ended","[focaccia] Number of Jobs Ended","[chapti] Number of Jobs Ended","[pita] Number of Jobs Ended","[pumpernickel] Number of Jobs Ended","[barm] Number of Jobs Ended" -2016,45828,7964,700,4,64,62,6,43,12,8,7,18,15,0,8,5,3,0 -2017,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index e3c3292266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Max (Core Count)" -white,336 -black,192 -brown,112 -bannock,80 -cornbread,64 -crumpet,64 -potbrood,48 -roti,32 -croutons,24 -panettone,20 -pikelet,16 -chapti,12 -focaccia,12 -nann,12 -pumpernickel,5 -brioche,4 -pita,4 -barm,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index e3c3292266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Max (Core Count)" -white,336 -black,192 -brown,112 -bannock,80 -cornbread,64 -crumpet,64 -potbrood,48 -roti,32 -croutons,24 -panettone,20 -pikelet,16 -chapti,12 -focaccia,12 -nann,12 -pumpernickel,5 -brioche,4 -pita,4 -barm,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index e3c3292266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Max (Core Count)" -white,336 -black,192 -brown,112 -bannock,80 -cornbread,64 -crumpet,64 -potbrood,48 -roti,32 -croutons,24 -panettone,20 -pikelet,16 -chapti,12 -focaccia,12 -nann,12 -pumpernickel,5 -brioche,4 -pita,4 -barm,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index e3c3292266..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Max (Core Count)" -white,336 -black,192 -brown,112 -bannock,80 -cornbread,64 -crumpet,64 -potbrood,48 -roti,32 -croutons,24 -panettone,20 -pikelet,16 -chapti,12 -focaccia,12 -nann,12 -pumpernickel,5 -brioche,4 -pita,4 -barm,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index d2cf0f4b0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,0,0 -2016-12-23,0,0,0,0,1,0,0,0,12,0,0,0,12,0,0,0,0,0 -2016-12-24,0,0,0,0,1,0,0,0,12,0,0,0,12,0,0,0,0,0 -2016-12-25,0,0,0,0,1,0,0,0,24,0,0,0,12,0,0,0,0,0 -2016-12-26,0,0,0,0,1,0,0,0,24,0,16,0,12,0,0,0,0,0 -2016-12-27,144,16,0,0,16,64,0,32,24,0,16,0,12,0,0,1,0,0 -2016-12-28,144,192,0,0,16,64,0,32,24,20,16,0,12,0,0,1,0,0 -2016-12-29,160,192,112,0,64,64,0,32,24,20,16,12,12,0,5,4,4,2 -2016-12-30,336,192,112,80,64,64,48,32,24,20,16,12,12,0,5,4,4,2 -2016-12-31,336,192,112,20,64,64,48,32,24,0,16,12,12,12,5,4,4,2 -2017-01-01,192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 8b999e1580..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" -2016-12,336,192,112,80,64,64,48,32,24,20,16,12,12,12,5,4,4,2 -2017-01,192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8d70a71aef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" -"2016 Q4",336,192,112,80,64,64,48,32,24,20,16,12,12,12,5,4,4,2 -"2017 Q1",192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 9910db0b7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Job Size: Max (Core Count)","[black] Job Size: Max (Core Count)","[brown] Job Size: Max (Core Count)","[bannock] Job Size: Max (Core Count)","[cornbread] Job Size: Max (Core Count)","[crumpet] Job Size: Max (Core Count)","[potbrood] Job Size: Max (Core Count)","[roti] Job Size: Max (Core Count)","[croutons] Job Size: Max (Core Count)","[panettone] Job Size: Max (Core Count)","[pikelet] Job Size: Max (Core Count)","[chapti] Job Size: Max (Core Count)","[focaccia] Job Size: Max (Core Count)","[nann] Job Size: Max (Core Count)","[pumpernickel] Job Size: Max (Core Count)","[brioche] Job Size: Max (Core Count)","[pita] Job Size: Max (Core Count)","[barm] Job Size: Max (Core Count)" -2016,336,192,112,80,64,64,48,32,24,20,16,12,12,12,5,4,4,2 -2017,192,16,1,20,16,64,24,0,24,0,16,0,12,12,5,4,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index c976c164ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Min (Core Count)" -panettone,20 -chapti,12 -nann,12 -bannock,8 -croutons,8 -crumpet,8 -pumpernickel,5 -barm,2 -black,1 -brioche,1 -brown,1 -cornbread,1 -focaccia,1 -pikelet,1 -pita,1 -potbrood,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index c976c164ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Min (Core Count)" -panettone,20 -chapti,12 -nann,12 -bannock,8 -croutons,8 -crumpet,8 -pumpernickel,5 -barm,2 -black,1 -brioche,1 -brown,1 -cornbread,1 -focaccia,1 -pikelet,1 -pita,1 -potbrood,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index c976c164ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Min (Core Count)" -panettone,20 -chapti,12 -nann,12 -bannock,8 -croutons,8 -crumpet,8 -pumpernickel,5 -barm,2 -black,1 -brioche,1 -brown,1 -cornbread,1 -focaccia,1 -pikelet,1 -pita,1 -potbrood,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index c976c164ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Job Size: Min (Core Count)" -panettone,20 -chapti,12 -nann,12 -bannock,8 -croutons,8 -crumpet,8 -pumpernickel,5 -barm,2 -black,1 -brioche,1 -brown,1 -cornbread,1 -focaccia,1 -pikelet,1 -pita,1 -potbrood,1 -roti,1 -white,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index a4b1c797a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" -2016-12-22,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0 -2016-12-23,0,0,0,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0 -2016-12-24,0,0,0,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0 -2016-12-25,0,0,0,0,12,0,0,0,0,0,0,1,12,0,0,0,0,0 -2016-12-26,0,0,0,0,12,0,0,0,0,0,0,1,12,16,0,0,0,0 -2016-12-27,0,0,0,0,8,64,0,0,16,1,0,1,12,16,0,0,1,8 -2016-12-28,20,0,0,0,8,64,0,0,12,1,0,1,12,16,0,0,1,1 -2016-12-29,20,12,0,0,8,64,5,2,8,1,112,1,12,16,4,0,1,1 -2016-12-30,20,12,0,8,8,32,5,2,1,1,1,1,12,16,1,1,1,1 -2016-12-31,0,12,12,8,8,8,5,2,8,1,1,1,12,1,1,1,32,1 -2017-01-01,0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 593431be6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" -2016-12,20,12,12,8,8,8,5,2,1,1,1,1,12,1,1,1,1,1 -2017-01,0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 27c874ac86..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" -"2016 Q4",20,12,12,8,8,8,5,2,1,1,1,1,12,1,1,1,1,1 -"2017 Q1",0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 30f5f181bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[panettone] Job Size: Min (Core Count)","[chapti] Job Size: Min (Core Count)","[nann] Job Size: Min (Core Count)","[bannock] Job Size: Min (Core Count)","[croutons] Job Size: Min (Core Count)","[crumpet] Job Size: Min (Core Count)","[pumpernickel] Job Size: Min (Core Count)","[barm] Job Size: Min (Core Count)","[black] Job Size: Min (Core Count)","[brioche] Job Size: Min (Core Count)","[brown] Job Size: Min (Core Count)","[cornbread] Job Size: Min (Core Count)","[focaccia] Job Size: Min (Core Count)","[pikelet] Job Size: Min (Core Count)","[pita] Job Size: Min (Core Count)","[potbrood] Job Size: Min (Core Count)","[roti] Job Size: Min (Core Count)","[white] Job Size: Min (Core Count)" -2016,20,12,12,8,8,8,5,2,1,1,1,1,12,1,1,1,1,1 -2017,0,0,12,8,8,8,5,2,8,1,1,1,1,8,4,12,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 573b9398bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -parameters - -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/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 573b9398bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -parameters - -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/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 573b9398bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -parameters - -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/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 573b9398bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -parameters - -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/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 87f113be40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index c3279e6ee4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -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)","[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.050000000,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index d2d059f538..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -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)","[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.050000000,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 60453114b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Queue" -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)","[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.050000000,0.100000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 51fbcbb6bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Running" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 51fbcbb6bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Running" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 51fbcbb6bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Running" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 51fbcbb6bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Running" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 42d3b23a8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" -2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -2016-12-23,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 -2016-12-24,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 -2016-12-25,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 -2016-12-26,0,0,4,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0 -2016-12-27,1,13,6,0,0,0,5,5,1,1,0,9,0,1,0,0,0,0 -2016-12-28,14,393,7,0,0,0,16,5,1,1,0,11,1,1,0,0,0,0 -2016-12-29,232,1419,24,0,4,0,20,11,1,9,0,14,1,1,1,1,1,1 -2016-12-30,22248,6049,369,0,36,35,20,22,5,17,5,18,15,1,6,5,3,1 -2016-12-31,24211,4829,369,16,32,27,48,30,9,19,3,1,0,1,3,3,1,1 -2017-01-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 5b57b0f5cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" -2016-12,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -2017-01,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 2c625d61de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" -"2016 Q4",46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -"2017 Q1",9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index a685973a91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[black] Number of Jobs Running","[white] Number of Jobs Running","[croutons] Number of Jobs Running","[nann] Number of Jobs Running","[brown] Number of Jobs Running","[potbrood] Number of Jobs Running","[pikelet] Number of Jobs Running","[cornbread] Number of Jobs Running","[crumpet] Number of Jobs Running","[brioche] Number of Jobs Running","[bannock] Number of Jobs Running","[roti] Number of Jobs Running","[panettone] Number of Jobs Running","[focaccia] Number of Jobs Running","[chapti] Number of Jobs Running","[pita] Number of Jobs Running","[pumpernickel] Number of Jobs Running","[barm] Number of Jobs Running" -2016,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -2017,9545,6324,311,225,28,23,47,2,22,12,11,0,0,13,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index e8bf9c0f25..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Started" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index e8bf9c0f25..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Started" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e8bf9c0f25..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Started" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index e8bf9c0f25..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Started" -black,55373 -white,14288 -croutons,1011 -nann,229 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 447c395b9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" -2016-12-22,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,1,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 -2016-12-25,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1,13,2,0,0,0,0,4,1,1,0,9,0,0,0,0,0,0 -2016-12-28,13,380,1,0,0,0,11,0,0,0,0,2,1,0,0,0,0,0 -2016-12-29,218,1026,17,0,4,0,4,6,0,8,0,3,0,0,1,1,1,1 -2016-12-30,22016,4630,345,0,32,35,0,11,4,8,5,4,14,0,5,4,2,0 -2016-12-31,23934,2929,348,16,28,27,33,22,8,3,3,0,0,0,2,1,0,0 -2017-01-01,9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 12334dde84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" -2016-12,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -2017-01,9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 6f14568abb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" -"2016 Q4",46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -"2017 Q1",9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 96d50b3ee8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[black] Number of Jobs Started","[white] Number of Jobs Started","[croutons] Number of Jobs Started","[nann] Number of Jobs Started","[brown] Number of Jobs Started","[potbrood] Number of Jobs Started","[pikelet] Number of Jobs Started","[cornbread] Number of Jobs Started","[crumpet] Number of Jobs Started","[brioche] Number of Jobs Started","[bannock] Number of Jobs Started","[roti] Number of Jobs Started","[panettone] Number of Jobs Started","[focaccia] Number of Jobs Started","[chapti] Number of Jobs Started","[pita] Number of Jobs Started","[pumpernickel] Number of Jobs Started","[barm] Number of Jobs Started" -2016,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -2017,9191,5310,294,213,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index fd3491da3f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Submitted" -black,51984 -white,10863 -croutons,1005 -nann,166 -brown,92 -potbrood,85 -pikelet,49 -cornbread,41 -crumpet,34 -bannock,18 -brioche,17 -panettone,15 -roti,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 0804543c4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Submitted" -black,54215 -white,13440 -croutons,1010 -nann,166 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 0804543c4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Submitted" -black,54215 -white,13440 -croutons,1010 -nann,166 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 0804543c4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Number of Jobs Submitted" -black,54215 -white,13440 -croutons,1010 -nann,166 -brown,92 -potbrood,85 -pikelet,53 -cornbread,45 -crumpet,34 -brioche,20 -bannock,18 -roti,18 -panettone,15 -focaccia,13 -chapti,8 -pita,6 -pumpernickel,4 -barm,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 5608ff6ec7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,1,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 -2016-12-25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1,0,2,0,0,0,0,4,1,0,1,0,9,0,0,0,0,0 -2016-12-28,9,357,0,0,0,0,11,0,0,0,0,1,1,0,0,0,0,0 -2016-12-29,218,950,17,0,4,0,0,4,0,0,8,0,1,0,1,1,1,1 -2016-12-30,21890,3303,344,0,32,35,0,10,4,5,8,14,4,0,5,4,2,0 -2016-12-31,21833,1791,348,16,28,27,33,21,8,3,0,0,0,0,2,1,0,0 -2017-01-01,8033,4462,293,150,28,23,0,1,21,10,0,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index b3d387b90e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" -2016-12,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -2017-01,8033,4462,293,150,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1f08d11dcf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" -"2016 Q4",46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -"2017 Q1",8033,4462,293,150,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 54fb32b319..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[black] Number of Jobs Submitted","[white] Number of Jobs Submitted","[croutons] Number of Jobs Submitted","[nann] Number of Jobs Submitted","[brown] Number of Jobs Submitted","[potbrood] Number of Jobs Submitted","[pikelet] Number of Jobs Submitted","[cornbread] Number of Jobs Submitted","[crumpet] Number of Jobs Submitted","[brioche] Number of Jobs Submitted","[bannock] Number of Jobs Submitted","[roti] Number of Jobs Submitted","[panettone] Number of Jobs Submitted","[focaccia] Number of Jobs Submitted","[chapti] Number of Jobs Submitted","[pita] Number of Jobs Submitted","[pumpernickel] Number of Jobs Submitted","[barm] Number of Jobs Submitted" -2016,46182,8978,717,16,64,62,53,44,13,20,8,18,15,1,8,6,3,1 -2017,8033,4462,293,150,28,23,0,1,21,0,10,0,0,12,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8f140b9b54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"CPU Hours: Total" -white,438972.9878 -black,274691.9789 -pikelet,34825.7219 -roti,22393.2603 -croutons,22379.1533 -brown,14222.7461 -cornbread,11206.7450 -crumpet,8411.0733 -brioche,3726.6386 -nann,3173.5933 -focaccia,3079.9728 -bannock,1016.6144 -panettone,982.6722 -chapti,573.8767 -potbrood,355.3453 -pita,238.5711 -pumpernickel,166.3875 -barm,138.4983 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 8f140b9b54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"CPU Hours: Total" -white,438972.9878 -black,274691.9789 -pikelet,34825.7219 -roti,22393.2603 -croutons,22379.1533 -brown,14222.7461 -cornbread,11206.7450 -crumpet,8411.0733 -brioche,3726.6386 -nann,3173.5933 -focaccia,3079.9728 -bannock,1016.6144 -panettone,982.6722 -chapti,573.8767 -potbrood,355.3453 -pita,238.5711 -pumpernickel,166.3875 -barm,138.4983 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 8f140b9b54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"CPU Hours: Total" -white,438972.9878 -black,274691.9789 -pikelet,34825.7219 -roti,22393.2603 -croutons,22379.1533 -brown,14222.7461 -cornbread,11206.7450 -crumpet,8411.0733 -brioche,3726.6386 -nann,3173.5933 -focaccia,3079.9728 -bannock,1016.6144 -panettone,982.6722 -chapti,573.8767 -potbrood,355.3453 -pita,238.5711 -pumpernickel,166.3875 -barm,138.4983 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8f140b9b54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"CPU Hours: Total" -white,438972.9878 -black,274691.9789 -pikelet,34825.7219 -roti,22393.2603 -croutons,22379.1533 -brown,14222.7461 -cornbread,11206.7450 -crumpet,8411.0733 -brioche,3726.6386 -nann,3173.5933 -focaccia,3079.9728 -bannock,1016.6144 -panettone,982.6722 -chapti,573.8767 -potbrood,355.3453 -pita,238.5711 -pumpernickel,166.3875 -barm,138.4983 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7b7c43060b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" -2016-12-22,0,0,0,0,203.3000,0,0,0,0,0,200.9567,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,288.0000,0,8.6036,0,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,288.0000,0,24.0000,0,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,466.2700,0,24.0000,0,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-26,0,0,216.3333,0,1728.0000,0,24.0000,0,0,0,288.0000,0,0,0,0,0,0,0 -2016-12-27,10323.5222,136.7956,1920.0000,468.4192,1830.0622,0,339.9467,243.1822,3.2167,0,288.0000,0,0,0,0,0,0,0 -2016-12-28,36236.2725,30760.4844,2310.7378,6503.8844,2675.3200,0,1560.0000,1536.0000,24.0000,0,288.0000,0,94.0111,0,0,0,0,0 -2016-12-29,101785.6889,43000.8978,7644.0844,8996.7289,2937.5867,1643.9111,2173.2617,1536.0000,582.0553,0,288.0000,0,480.0000,105.6300,0,28.6944,52.0042,7.2400 -2016-12-30,142323.0442,98844.5711,6055.3111,5862.9122,4460.4644,9238.5464,3839.7864,1562.0711,1214.4433,0,288.0000,252.7022,408.6611,397.1833,141.8144,95.9114,85.8444,48.0000 -2016-12-31,102559.1947,92607.7978,11780.8131,561.3156,4311.2411,3313.1372,2841.5344,2067.3578,1327.6497,37.7500,288.0000,236.0378,0,71.0633,103.6008,68.0031,7.1333,48.0000 -2017-01-01,45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3a62dcca41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" -2016-12,393227.7225,265350.5467,29927.2797,22393.2603,19188.2444,14195.5947,10835.1328,6944.6111,3151.3650,37.7500,2792.9567,488.7400,982.6722,573.8767,245.4153,192.6089,144.9819,103.2400 -2017-01,45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e5dca1150f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" -"2016 Q4",393227.7225,265350.5467,29927.2797,22393.2603,19188.2444,14195.5947,10835.1328,6944.6111,3151.3650,37.7500,2792.9567,488.7400,982.6722,573.8767,245.4153,192.6089,144.9819,103.2400 -"2017 Q1",45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 85a860c1d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] CPU Hours: Total","[black] CPU Hours: Total","[pikelet] CPU Hours: Total","[roti] CPU Hours: Total","[croutons] CPU Hours: Total","[brown] CPU Hours: Total","[cornbread] CPU Hours: Total","[crumpet] CPU Hours: Total","[brioche] CPU Hours: Total","[nann] CPU Hours: Total","[focaccia] CPU Hours: Total","[bannock] CPU Hours: Total","[panettone] CPU Hours: Total","[chapti] CPU Hours: Total","[potbrood] CPU Hours: Total","[pita] CPU Hours: Total","[pumpernickel] CPU Hours: Total","[barm] CPU Hours: Total" -2016,393227.7225,265350.5467,29927.2797,22393.2603,19188.2444,14195.5947,10835.1328,6944.6111,3151.3650,37.7500,2792.9567,488.7400,982.6722,573.8767,245.4153,192.6089,144.9819,103.2400 -2017,45745.2653,9341.4322,4898.4422,0,3190.9089,27.1514,371.6122,1466.4622,575.2736,3135.8433,287.0161,527.8744,0,0,109.9300,45.9622,21.4056,35.2583 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5f0bdf7523..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Total" -focaccia,506.9128 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 5f0bdf7523..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Total" -focaccia,506.9128 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5f0bdf7523..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Total" -focaccia,506.9128 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5f0bdf7523..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"GPU Hours: Total" -focaccia,506.9128 -bannock,0.0000 -barm,0.0000 -black,0.0000 -brioche,0.0000 -brown,0.0000 -chapti,0.0000 -cornbread,0.0000 -croutons,0.0000 -crumpet,0.0000 -nann,0.0000 -panettone,0.0000 -pikelet,0.0000 -pita,0.0000 -potbrood,0.0000 -pumpernickel,0.0000 -roti,0.0000 -white,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6eb27b8070..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 -2016-12-27,48.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 -2016-12-28,48.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 -2016-12-29,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index be7649f7eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5f9a86e100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2256fd5fa3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index e188b2cfef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Node Hours: Total" -white,123927.2147 -black,21885.3492 -pikelet,2773.5564 -croutons,1991.0214 -crumpet,1051.3842 -brioche,1039.6294 -brown,965.4461 -cornbread,945.4731 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -pita,125.1836 -bannock,76.7039 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,30.4233 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index e188b2cfef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Node Hours: Total" -white,123927.2147 -black,21885.3492 -pikelet,2773.5564 -croutons,1991.0214 -crumpet,1051.3842 -brioche,1039.6294 -brown,965.4461 -cornbread,945.4731 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -pita,125.1836 -bannock,76.7039 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,30.4233 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e188b2cfef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Node Hours: Total" -white,123927.2147 -black,21885.3492 -pikelet,2773.5564 -croutons,1991.0214 -crumpet,1051.3842 -brioche,1039.6294 -brown,965.4461 -cornbread,945.4731 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -pita,125.1836 -bannock,76.7039 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,30.4233 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index e188b2cfef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Node Hours: Total" -white,123927.2147 -black,21885.3492 -pikelet,2773.5564 -croutons,1991.0214 -crumpet,1051.3842 -brioche,1039.6294 -brown,965.4461 -cornbread,945.4731 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -pita,125.1836 -bannock,76.7039 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,30.4233 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3673989c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" -2016-12-22,0,0,0,16.9417,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0 -2016-12-23,0,0,0,24.0000,0,0,0,8.6036,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-24,0,0,0,24.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-25,0,0,0,32.5078,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-26,0,0,13.5208,96.0000,0,0,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0 -2016-12-27,856.4506,8.5497,120.0000,100.8189,30.3978,3.2167,0,43.7467,19.2119,0,24.0000,0,0,0,0,0,0,0 -2016-12-28,5778.5872,1941.4681,144.4211,158.9433,192.0000,24.0000,0,120.0000,226.4964,0,24.0000,0,0,0,4.7006,0,0,0 -2016-12-29,24097.5408,2741.9211,477.7553,187.1983,192.0000,165.1561,102.7444,181.7861,304.3978,0,24.0000,7.1736,0,3.6200,24.0000,8.8025,10.4008,0 -2016-12-30,41307.7775,8302.5897,378.4569,481.0775,195.2589,339.6108,602.9381,293.6803,201.8989,0,24.0000,56.5047,17.4378,24.0000,20.4331,33.0986,17.1689,12.6283 -2016-12-31,36475.5675,8110.8319,1112.6033,481.5464,258.4197,356.4497,232.6122,202.4067,17.5411,3.1458,24.0000,50.0147,23.6747,24.0000,0,5.9219,1.4267,8.6342 -2017-01-01,15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 58401d4eb5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" -2016-12,108515.9236,21105.3606,2246.7575,1603.0339,868.0764,888.4333,938.2947,922.2233,769.5461,3.1458,232.7464,113.6931,41.1125,51.6200,49.1336,47.8231,28.9964,21.2625 -2017-01,15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 70e81a1a74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" -"2016 Q4",108515.9236,21105.3606,2246.7575,1603.0339,868.0764,888.4333,938.2947,922.2233,769.5461,3.1458,232.7464,113.6931,41.1125,51.6200,49.1336,47.8231,28.9964,21.2625 -"2017 Q1",15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 66ca0b2355..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Node Hours: Total","[black] Node Hours: Total","[pikelet] Node Hours: Total","[croutons] Node Hours: Total","[crumpet] Node Hours: Total","[brioche] Node Hours: Total","[brown] Node Hours: Total","[cornbread] Node Hours: Total","[roti] Node Hours: Total","[nann] Node Hours: Total","[focaccia] Node Hours: Total","[pita] Node Hours: Total","[bannock] Node Hours: Total","[barm] Node Hours: Total","[panettone] Node Hours: Total","[chapti] Node Hours: Total","[pumpernickel] Node Hours: Total","[potbrood] Node Hours: Total" -2016,108515.9236,21105.3606,2246.7575,1603.0339,868.0764,888.4333,938.2947,922.2233,769.5461,3.1458,232.7464,113.6931,41.1125,51.6200,49.1336,47.8231,28.9964,21.2625 -2017,15411.2911,779.9886,526.7989,387.9875,183.3078,151.1961,27.1514,23.2497,0,261.3203,26.1203,11.4906,35.5914,17.6292,0,0,4.2811,9.1608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c08ad67fe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Total" -white,247850.7114 -black,55733.9806 -nann,2187.3331 -croutons,194.0739 -cornbread,181.6750 -brioche,91.5861 -roti,66.8156 -pikelet,36.5339 -chapti,1.3389 -focaccia,1.2331 -potbrood,0.0303 -brown,0.0153 -panettone,0.0150 -bannock,0.0083 -crumpet,0.0056 -barm,0.0044 -pita,0.0003 -pumpernickel,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c08ad67fe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Total" -white,247850.7114 -black,55733.9806 -nann,2187.3331 -croutons,194.0739 -cornbread,181.6750 -brioche,91.5861 -roti,66.8156 -pikelet,36.5339 -chapti,1.3389 -focaccia,1.2331 -potbrood,0.0303 -brown,0.0153 -panettone,0.0150 -bannock,0.0083 -crumpet,0.0056 -barm,0.0044 -pita,0.0003 -pumpernickel,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c08ad67fe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Total" -white,247850.7114 -black,55733.9806 -nann,2187.3331 -croutons,194.0739 -cornbread,181.6750 -brioche,91.5861 -roti,66.8156 -pikelet,36.5339 -chapti,1.3389 -focaccia,1.2331 -potbrood,0.0303 -brown,0.0153 -panettone,0.0150 -bannock,0.0083 -crumpet,0.0056 -barm,0.0044 -pita,0.0003 -pumpernickel,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c08ad67fe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wait Hours: Total" -white,247850.7114 -black,55733.9806 -nann,2187.3331 -croutons,194.0739 -cornbread,181.6750 -brioche,91.5861 -roti,66.8156 -pikelet,36.5339 -chapti,1.3389 -focaccia,1.2331 -potbrood,0.0303 -brown,0.0153 -panettone,0.0150 -bannock,0.0083 -crumpet,0.0056 -barm,0.0044 -pita,0.0003 -pumpernickel,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 4440365b89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" -2016-12-22,0,0,0,9.3322,0,0,0,0,0,0.0003,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0.0000,9.5964,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,110.8856,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.0000,0.0000,0,0,0.0033,0,0.0000,0,0,0,0,0,0,0,0 -2016-12-27,1978.2203,0.0003,0,0.0269,0.0025,0.0000,0.0019,0.0000,0,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,3257.5903,288.0275,0,12.2750,0.0000,0.0000,21.9589,18.4800,0,0.0000,0,0,0.0003,0,0.0000,0,0,0 -2016-12-29,5913.8772,56.7914,0,0.2917,68.2783,0.0017,44.7789,17.8439,0.0011,0.0000,0,0.0025,0.0000,0,0.0000,0.0044,0.0003,0.0000 -2016-12-30,183429.0489,11815.8661,0,13.1892,8.2494,14.4292,0.0758,0.0000,1.3358,0.0000,0.0172,0.0050,0.0147,0.0050,0.0008,0.0000,0.0000,0.0000 -2016-12-31,36266.9097,36967.0331,0.3231,14.0708,95.5417,77.1553,0.0000,0.2067,0.0019,0.0000,0.0083,0.0031,0,0.0022,0.0017,0.0000,0.0000,0.0000 -2017-01-01,17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0cf8ec303f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" -2016-12,230845.6464,49127.7183,0.3231,160.0714,181.6683,91.5861,66.8156,36.5339,1.3389,0.0003,0.0256,0.0106,0.0150,0.0072,0.0025,0.0044,0.0003,0.0000 -2017-01,17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c4a091283b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" -"2016 Q4",230845.6464,49127.7183,0.3231,160.0714,181.6683,91.5861,66.8156,36.5339,1.3389,0.0003,0.0256,0.0106,0.0150,0.0072,0.0025,0.0044,0.0003,0.0000 -"2017 Q1",17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7f68f08d9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Wait Hours: Total","[black] Wait Hours: Total","[nann] Wait Hours: Total","[croutons] Wait Hours: Total","[cornbread] Wait Hours: Total","[brioche] Wait Hours: Total","[roti] Wait Hours: Total","[pikelet] Wait Hours: Total","[chapti] Wait Hours: Total","[focaccia] Wait Hours: Total","[potbrood] Wait Hours: Total","[brown] Wait Hours: Total","[panettone] Wait Hours: Total","[bannock] Wait Hours: Total","[crumpet] Wait Hours: Total","[barm] Wait Hours: Total","[pita] Wait Hours: Total","[pumpernickel] Wait Hours: Total" -2016,230845.6464,49127.7183,0.3231,160.0714,181.6683,91.5861,66.8156,36.5339,1.3389,0.0003,0.0256,0.0106,0.0150,0.0072,0.0025,0.0044,0.0003,0.0000 -2017,17005.0650,6606.2622,2187.0100,34.0025,0.0067,0.0000,0,0.0000,0,1.2328,0.0047,0.0047,0,0.0011,0.0031,0.0000,0.0000,0.0003 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 336af6366d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Total" -white,104246.5925 -black,15066.5792 -pikelet,2773.5564 -croutons,1988.8739 -brioche,1039.6294 -cornbread,800.1422 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -brown,207.8861 -crumpet,145.3358 -pita,125.1836 -bannock,69.6381 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,21.0269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 336af6366d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Total" -white,104246.5925 -black,15066.5792 -pikelet,2773.5564 -croutons,1988.8739 -brioche,1039.6294 -cornbread,800.1422 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -brown,207.8861 -crumpet,145.3358 -pita,125.1836 -bannock,69.6381 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,21.0269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 336af6366d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Total" -white,104246.5925 -black,15066.5792 -pikelet,2773.5564 -croutons,1988.8739 -brioche,1039.6294 -cornbread,800.1422 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -brown,207.8861 -crumpet,145.3358 -pita,125.1836 -bannock,69.6381 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,21.0269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 336af6366d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Wall Hours: Total" -white,104246.5925 -black,15066.5792 -pikelet,2773.5564 -croutons,1988.8739 -brioche,1039.6294 -cornbread,800.1422 -roti,769.5461 -nann,264.4661 -focaccia,258.8667 -brown,207.8861 -crumpet,145.3358 -pita,125.1836 -bannock,69.6381 -barm,69.2492 -panettone,49.1336 -chapti,47.8231 -pumpernickel,33.2775 -potbrood,21.0269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index cb826ddfc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" -2016-12-22,0,0,0,16.9417,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,24.0000,0,8.6036,0,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,24.0000,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,32.5078,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,13.5208,96.0000,0,24.0000,0,0,24.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,210.8397,8.5497,120.0000,100.8189,3.2167,43.7467,19.2119,0,24.0000,0,3.7997,0,0,0,0,0,0,0 -2016-12-28,3587.0622,260.5200,144.4211,158.9433,24.0000,120.0000,226.4964,0,24.0000,0,24.0000,0,0,0,4.7006,0,0,0 -2016-12-29,18625.6822,466.9464,477.7553,187.1983,165.1561,160.6986,304.3978,0,24.0000,14.6778,24.0000,7.1736,0,3.6200,24.0000,8.8025,10.4008,0 -2016-12-30,34890.1442,6022.5897,378.4569,478.9300,339.6108,221.6803,201.8989,0,24.0000,109.4747,24.5364,56.5047,10.3719,24.0000,20.4331,33.0986,17.1689,9.6147 -2016-12-31,32448.9128,7527.9847,1112.6033,481.5464,356.4497,150.1633,17.5411,3.1458,24.0000,56.5822,32.4836,50.0147,23.6747,24.0000,0,5.9219,1.4267,6.0939 -2017-01-01,14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index eeee24ea67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" -2016-12,89762.6411,14286.5906,2246.7575,1600.8864,888.4333,776.8925,769.5461,3.1458,232.7464,180.7347,108.8197,113.6931,34.0467,51.6200,49.1336,47.8231,28.9964,15.7086 -2017-01,14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e77ea16636..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" -"2016 Q4",89762.6411,14286.5906,2246.7575,1600.8864,888.4333,776.8925,769.5461,3.1458,232.7464,180.7347,108.8197,113.6931,34.0467,51.6200,49.1336,47.8231,28.9964,15.7086 -"2017 Q1",14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index c391a68caf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Wall Hours: Total","[black] Wall Hours: Total","[pikelet] Wall Hours: Total","[croutons] Wall Hours: Total","[brioche] Wall Hours: Total","[cornbread] Wall Hours: Total","[roti] Wall Hours: Total","[nann] Wall Hours: Total","[focaccia] Wall Hours: Total","[brown] Wall Hours: Total","[crumpet] Wall Hours: Total","[pita] Wall Hours: Total","[bannock] Wall Hours: Total","[barm] Wall Hours: Total","[panettone] Wall Hours: Total","[chapti] Wall Hours: Total","[pumpernickel] Wall Hours: Total","[potbrood] Wall Hours: Total" -2016,89762.6411,14286.5906,2246.7575,1600.8864,888.4333,776.8925,769.5461,3.1458,232.7464,180.7347,108.8197,113.6931,34.0467,51.6200,49.1336,47.8231,28.9964,15.7086 -2017,14483.9514,779.9886,526.7989,387.9875,151.1961,23.2497,0,261.3203,26.1203,27.1514,36.5161,11.4906,35.5914,17.6292,0,0,4.2811,5.3183 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 23eb63ca76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Screwdriver CPU Utilization (%)" -white,41.5694 -black,8.1754 -pikelet,5.1824 -brown,2.4692 -roti,2.1206 -croutons,2.1192 -cornbread,1.0612 -crumpet,0.7965 -nann,0.4723 -brioche,0.3529 -focaccia,0.2917 -panettone,0.1462 -bannock,0.0963 -chapti,0.0543 -pita,0.0355 -potbrood,0.0337 -pumpernickel,0.0158 -barm,0.0131 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv deleted file mode 100644 index a10659b2e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Screwdriver CPU Utilization (%)" -white,8.9660 -black,1.8342 -pikelet,0.9805 -croutons,0.5550 -roti,0.4574 -brown,0.4115 -cornbread,0.2779 -crumpet,0.2137 -brioche,0.0924 -nann,0.0893 -focaccia,0.0783 -panettone,0.0277 -bannock,0.0252 -chapti,0.0142 -potbrood,0.0073 -pita,0.0067 -barm,0.0034 -pumpernickel,0.0034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 2e38afe929..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Screwdriver CPU Utilization (%)" -white,4.1569 -black,0.7299 -pikelet,0.3779 -croutons,0.2308 -roti,0.2121 -brown,0.1560 -cornbread,0.1156 -crumpet,0.0876 -brioche,0.0384 -nann,0.0344 -focaccia,0.0321 -panettone,0.0107 -bannock,0.0105 -chapti,0.0059 -potbrood,0.0034 -pita,0.0026 -pumpernickel,0.0016 -barm,0.0014 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv deleted file mode 100644 index e3f6fafea1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,27 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Queue,"Screwdriver CPU Utilization (%)" -white,1.1877 -black,0.1918 -pikelet,0.0978 -croutons,0.0620 -roti,0.0606 -brown,0.0400 -cornbread,0.0310 -crumpet,0.0234 -brioche,0.0103 -nann,0.0089 -focaccia,0.0086 -bannock,0.0028 -panettone,0.0028 -chapti,0.0016 -potbrood,0.0010 -pita,0.0007 -pumpernickel,0.0005 -barm,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv deleted file mode 100644 index aa09a609c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0.2118,0,0,0,0,0.2093,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0.3000,0.0090,0,0,0,0.3000,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0.3000,0.0250,0,0,0,0.3000,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0.4857,0.0250,0,0,0,0.3000,0,0,0,0,0,0,0 -2016-12-26,0,0,0.2253,0,0,1.8000,0.0250,0,0,0,0.3000,0,0,0,0,0,0,0 -2016-12-27,10.7537,0.1425,2.0000,0,0.4879,1.9063,0.3541,0.2533,0,0.0034,0.3000,0,0,0,0,0,0,0 -2016-12-28,37.7461,16.0211,2.4070,0,6.7749,2.7868,1.6250,1.6000,0,0.0250,0.3000,0.0979,0,0,0,0,0,0 -2016-12-29,106.0268,14.9309,7.9626,1.7124,9.3716,3.0600,2.2638,1.6000,0,0.6063,0.3000,0.5000,0,0.1100,0.0299,0,0.0542,0.0075 -2016-12-30,148.2532,25.7408,6.3076,9.6235,6.1072,4.6463,3.9998,1.6272,0,1.2650,0.3000,0.4257,0.2632,0.4137,0.0999,0.1477,0.0894,0.0500 -2016-12-31,106.8325,24.1166,12.2717,3.4512,0.5847,4.4909,2.9599,2.1535,0.0393,1.3830,0.3000,0,0.2459,0.0740,0.0708,0.1079,0.0074,0.0500 -2017-01-01,47.6513,2.4327,5.1025,0.0283,0,3.3239,0.3871,1.5276,3.2665,0.5992,0.2990,0,0.5499,0,0.0479,0.1145,0.0223,0.0367 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv deleted file mode 100644 index d664e60956..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)" -2016-12,20.4806,8.6377,5.1957,1.8171,1.1663,2.9574,1.0261,0.7234,0.2984,0.0066,0.2909,0.1706,0.0463,0.0543,0.0128,0.0334,0.0098,0.0076 -2017-01,1.5371,0.0785,0.1646,0.1072,0,0.0009,0.0125,0.0493,0.0193,0.1054,0.0096,0,0.0177,0,0.0037,0.0015,0.0012,0.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 32a08c1fea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)" -"2016 Q4",20.4806,8.6377,5.1957,1.8171,1.1663,2.9574,1.0261,0.7234,0.2984,0.0066,0.2909,0.1706,0.0463,0.0543,0.0128,0.0334,0.0076,0.0098 -"2017 Q1",0.5295,0.0270,0.0567,0.0369,0,0.0003,0.0043,0.0170,0.0067,0.0363,0.0033,0,0.0061,0,0.0013,0.0005,0.0002,0.0004 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 43a0238e91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/queue/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Queue" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[white] Screwdriver CPU Utilization (%)","[black] Screwdriver CPU Utilization (%)","[pikelet] Screwdriver CPU Utilization (%)","[croutons] Screwdriver CPU Utilization (%)","[roti] Screwdriver CPU Utilization (%)","[brown] Screwdriver CPU Utilization (%)","[cornbread] Screwdriver CPU Utilization (%)","[crumpet] Screwdriver CPU Utilization (%)","[brioche] Screwdriver CPU Utilization (%)","[nann] Screwdriver CPU Utilization (%)","[focaccia] Screwdriver CPU Utilization (%)","[bannock] Screwdriver CPU Utilization (%)","[panettone] Screwdriver CPU Utilization (%)","[chapti] Screwdriver CPU Utilization (%)","[potbrood] Screwdriver CPU Utilization (%)","[pita] Screwdriver CPU Utilization (%)","[pumpernickel] Screwdriver CPU Utilization (%)","[barm] Screwdriver CPU Utilization (%)" -2016,20.4806,8.6377,5.1957,1.8171,1.1663,2.9574,1.0261,0.7234,0.2984,0.0066,0.2909,0.0463,0.1706,0.0543,0.0128,0.0334,0.0076,0.0098 -2017,0.1306,0.0067,0.0140,0.0091,0,0.0001,0.0011,0.0042,0.0016,0.0089,0.0008,0.0015,0,0,0.0003,0.0001,0.0001,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index e8c15e63e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Users: Active" -robertson,46 -pozidriv,18 -frearson,9 -mortorq,7 -phillips,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index e8c15e63e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Users: Active" -robertson,46 -pozidriv,18 -frearson,9 -mortorq,7 -phillips,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e8c15e63e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Users: Active" -robertson,46 -pozidriv,18 -frearson,9 -mortorq,7 -phillips,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index e8c15e63e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Users: Active" -robertson,46 -pozidriv,18 -frearson,9 -mortorq,7 -phillips,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 18838be663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" -2016-12-22,0,1,0,0,1 -2016-12-23,0,2,0,0,1 -2016-12-24,0,2,0,0,1 -2016-12-25,0,3,0,0,1 -2016-12-26,0,3,0,1,1 -2016-12-27,8,5,1,1,2 -2016-12-28,15,7,2,2,2 -2016-12-29,29,12,6,4,2 -2016-12-30,44,18,9,6,4 -2016-12-31,34,16,7,5,4 -2017-01-01,21,10,5,4,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 9a2a6bfbaa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" -2016-12,45,18,9,7,4 -2017-01,21,10,5,4,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 652fd22534..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" -"2016 Q4",45,18,9,7,4 -"2017 Q1",21,10,5,4,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 237ee31898..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Number of Users: Active","[pozidriv] Number of Users: Active","[frearson] Number of Users: Active","[mortorq] Number of Users: Active","[phillips] Number of Users: Active" -2016,45,18,9,7,4 -2017,21,10,5,4,4 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 0dd1e1ddf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of PIs: Active" -robertson,34 -frearson,7 -pozidriv,7 -mortorq,6 -phillips,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 0dd1e1ddf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of PIs: Active" -robertson,34 -frearson,7 -pozidriv,7 -mortorq,6 -phillips,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 0dd1e1ddf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of PIs: Active" -robertson,34 -frearson,7 -pozidriv,7 -mortorq,6 -phillips,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 0dd1e1ddf9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of PIs: Active" -robertson,34 -frearson,7 -pozidriv,7 -mortorq,6 -phillips,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index a1de32875f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" -2016-12-22,0,0,1,0,1 -2016-12-23,0,0,2,0,1 -2016-12-24,0,0,2,0,1 -2016-12-25,0,0,2,0,1 -2016-12-26,0,0,2,1,1 -2016-12-27,7,1,3,1,1 -2016-12-28,12,2,4,2,1 -2016-12-29,21,6,6,4,1 -2016-12-30,32,7,7,5,3 -2016-12-31,26,5,7,4,3 -2017-01-01,19,3,5,4,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 8e8fb9a70d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" -2016-12,33,7,7,6,3 -2017-01,19,3,5,4,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index e395e2819f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" -"2016 Q4",33,7,7,6,3 -"2017 Q1",19,3,5,4,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 8ca505e0ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Number of PIs: Active","[frearson] Number of PIs: Active","[pozidriv] Number of PIs: Active","[mortorq] Number of PIs: Active","[phillips] Number of PIs: Active" -2016,33,7,7,6,3 -2017,19,3,5,4,3 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 56334ebfec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Resources: Active" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 56334ebfec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Resources: Active" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 56334ebfec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Resources: Active" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 56334ebfec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Resources: Active" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 4afd5c3591..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" -2016-12-22,0,0,1,1,0 -2016-12-23,0,0,1,1,0 -2016-12-24,0,0,1,1,0 -2016-12-25,0,0,1,1,0 -2016-12-26,0,1,1,1,0 -2016-12-27,1,1,1,1,1 -2016-12-28,1,1,1,1,1 -2016-12-29,1,1,1,1,1 -2016-12-30,1,1,1,1,1 -2016-12-31,1,1,1,1,1 -2017-01-01,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index f7bf463079..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" -2016-12,1,1,1,1,1 -2017-01,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 5ba3f74c43..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" -"2016 Q4",1,1,1,1,1 -"2017 Q1",1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 1aae19f37c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[frearson] Number of Resources: Active","[mortorq] Number of Resources: Active","[phillips] Number of Resources: Active","[pozidriv] Number of Resources: Active","[robertson] Number of Resources: Active" -2016,1,1,1,1,1 -2017,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3bc4e269d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 87fa37c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 87fa37c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 87fa37c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index ea0b648ef9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -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","[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/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index f2e9c8361e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,45.91230328,16.68794061,6.70495772,3.21309067,2.80671191 -2017-01,7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9da03884f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",45.91230328,16.68794061,6.70495772,3.21309067,2.80671191 -"2017 Q1",7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 62ff828b61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,45.91230328,16.68794061,6.70495772,3.21309067,2.80671191 -2017,7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 280df39d9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Per Job" -phillips,0.12528739 -frearson,0.00000000 -mortorq,0.00000000 -pozidriv,0.00000000 -robertson,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 280df39d9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Per Job" -phillips,0.12528739 -frearson,0.00000000 -mortorq,0.00000000 -pozidriv,0.00000000 -robertson,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 280df39d9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Per Job" -phillips,0.12528739 -frearson,0.00000000 -mortorq,0.00000000 -pozidriv,0.00000000 -robertson,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 280df39d9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Per Job" -phillips,0.12528739 -frearson,0.00000000 -mortorq,0.00000000 -pozidriv,0.00000000 -robertson,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3d9c6f20a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0.00000000,0 -2016-12-23,48.00000000,0,0,0.00000000,0 -2016-12-24,48.00000000,0,0,0.00000000,0 -2016-12-25,48.00000000,0,0,0.00000000,0 -2016-12-26,48.00000000,0,0.00000000,0.00000000,0 -2016-12-27,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-28,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-29,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-30,0.04549763,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,0.01913113,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01-01,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5d1d099a71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" -2016-12,0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9f800db849..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" -"2016 Q4",0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index ae3715d125..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" -2016,0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index bd9dc0c330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -phillips,0.0010,0.0006988947038768784 -frearson,0.0000,0 -mortorq,0.0000,0 -pozidriv,0.0000,0 -robertson,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index bd9dc0c330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -phillips,0.0010,0.0006988947038768784 -frearson,0.0000,0 -mortorq,0.0000,0 -pozidriv,0.0000,0 -robertson,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index bd9dc0c330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -phillips,0.0010,0.0006988947038768784 -frearson,0.0000,0 -mortorq,0.0000,0 -pozidriv,0.0000,0 -robertson,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index bd9dc0c330..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" -phillips,0.0010,0.0006988947038768784 -frearson,0.0000,0 -mortorq,0.0000,0 -pozidriv,0.0000,0 -robertson,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 6e36151962..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" -2016-12-22,2.0000,0,0,0.0000,0 -2016-12-23,2.0000,0,0,0.0000,0 -2016-12-24,2.0000,0,0,0.0000,0 -2016-12-25,2.0000,0,0,0.0000,0 -2016-12-26,2.0000,0,0.0000,0.0000,0 -2016-12-27,1.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-28,1.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-29,1.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,0.0019,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0008,0.0000,0.0000,0.0000,0.0000 -2017-01-01,0.0082,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 8799e311b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" -2016-12,0.0006,0.0000,0.0000,0.0000,0.0000 -2017-01,0.0082,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 199209996f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" -"2016 Q4",0.0006,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.0082,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 5f6be66870..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" -2016,0.0006,0.0000,0.0000,0.0000,0.0000 -2017,0.0082,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index a6a558bf81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By CPU Hours (Core Count)" -frearson,113.7868 -robertson,60.2813 -phillips,48.3198 -pozidriv,15.7368 -mortorq,10.9181 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index a6a558bf81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By CPU Hours (Core Count)" -frearson,113.7868 -robertson,60.2813 -phillips,48.3198 -pozidriv,15.7368 -mortorq,10.9181 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index a6a558bf81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By CPU Hours (Core Count)" -frearson,113.7868 -robertson,60.2813 -phillips,48.3198 -pozidriv,15.7368 -mortorq,10.9181 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index a6a558bf81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By CPU Hours (Core Count)" -frearson,113.7868 -robertson,60.2813 -phillips,48.3198 -pozidriv,15.7368 -mortorq,10.9181 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index c114fa4aa6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,0,0,12.0000,12.0000,0 -2016-12-23,0,0,12.0000,11.6809,0 -2016-12-24,0,0,12.0000,11.1538,0 -2016-12-25,0,0,12.0000,15.1906,0 -2016-12-26,0,0,12.0000,19.7397,16.0000 -2016-12-27,16.0000,89.0965,35.8063,19.3183,16.0000 -2016-12-28,184.4827,72.2453,55.7895,16.9501,16.1564 -2016-12-29,180.0278,63.4055,55.7895,20.2231,15.7022 -2016-12-30,117.9195,64.2752,54.0086,16.4023,9.9208 -2016-12-31,44.2927,58.2410,53.9394,14.3031,9.6979 -2017-01-01,13.6596,26.4794,50.1956,10.0052,10.4389 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index d4146ac47b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,117.0398,64.0089,47.9870,16.2321,10.9857 -2017-01,13.6596,26.4794,50.1956,10.0052,10.4389 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2a5adf5e5a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",117.0398,64.0089,47.9870,16.2321,10.9857 -"2017 Q1",13.6596,26.4794,50.1956,10.0052,10.4389 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index f4676ca54e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[frearson] Job Size: Weighted By CPU Hours (Core Count)","[robertson] Job Size: Weighted By CPU Hours (Core Count)","[phillips] Job Size: Weighted By CPU Hours (Core Count)","[pozidriv] Job Size: Weighted By CPU Hours (Core Count)","[mortorq] Job Size: Weighted By CPU Hours (Core Count)" -2016,117.0398,64.0089,47.9870,16.2321,10.9857 -2017,13.6596,26.4794,50.1956,10.0052,10.4389 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 080de1e306..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By GPU Hours (GPU Count)" -phillips,12.0000 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 080de1e306..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By GPU Hours (GPU Count)" -phillips,12.0000 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 080de1e306..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By GPU Hours (GPU Count)" -phillips,12.0000 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 080de1e306..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Weighted By GPU Hours (GPU Count)" -phillips,12.0000 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index cdfb59ea39..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000,0,0,0.0000,0 -2016-12-23,12.0000,0,0,0.0000,0 -2016-12-24,12.0000,0,0,0.0000,0 -2016-12-25,12.0000,0,0,0.0000,0 -2016-12-26,12.0000,0,0.0000,0.0000,0 -2016-12-27,12.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-28,12.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 00e38d5544..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ebe76ebf7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index c5885700c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index c53841b775..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index b6776d76e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b6776d76e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index b6776d76e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -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/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index c850f613d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" -2016-12-22,0,0,16.94166667,16.74638889,0 -2016-12-23,0,0,16.30180556,24.00000000,0 -2016-12-24,0,0,24.00000000,24.00000000,0 -2016-12-25,0,0,11.30155556,24.00000000,0 -2016-12-26,0,0,24.00000000,24.00000000,2.70416667 -2016-12-27,39.80284091,8.54972222,12.31518519,27.19888889,24.00000000 -2016-12-28,14.86406834,186.57169444,22.27614379,108.00000000,8.77186275 -2016-12-29,17.02394661,27.74351170,7.84795770,108.00000000,4.74300505 -2016-12-30,6.80417258,1.28121009,0.44502730,0.21618378,0.24654544 -2016-12-31,7.51403241,0.58724391,0.50545051,0.12185986,0.34878876 -2017-01-01,2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7b77dcb48a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" -2016-12,12.06662936,1.16947464,0.62961066,0.31815907,0.33141335 -2017-01,2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1b97ba58ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" -"2016 Q4",12.06662936,1.16947464,0.62961066,0.31815907,0.33141335 -"2017 Q1",2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1cc17bf6fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Node Hours: Per Job","[frearson] Node Hours: Per Job","[pozidriv] Node Hours: Per Job","[phillips] Node Hours: Per Job","[mortorq] Node Hours: Per Job" -2016,12.06662936,1.16947464,0.62961066,0.31815907,0.33141335 -2017,2.42985713,0.18273251,0.47114714,0.43422985,0.18513688 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 8f6a93c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -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/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 8f6a93c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -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/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 8f6a93c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -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/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 8f6a93c11e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -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/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index b677e4489b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" -2016-12-22,0,12.0000,12.0000,0,0 -2016-12-23,0,6.5000,12.0000,0,0 -2016-12-24,0,6.5000,12.0000,0,0 -2016-12-25,0,14.6000,12.0000,0,0 -2016-12-26,0,14.6000,12.0000,16.0000,0 -2016-12-27,16.0000,14.1667,38.0000,16.0000,39.8636 -2016-12-28,166.4000,13.5294,38.0000,16.2353,7.3218 -2016-12-29,32.9263,10.9773,38.0000,9.3884,4.6283 -2016-12-30,12.5148,9.1123,8.2085,8.0247,4.0693 -2016-12-31,12.2035,9.7568,8.1419,8.0182,3.4212 -2017-01-01,12.0068,11.1505,8.4037,8.1912,8.1786 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index cfbd009246..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" -2016-12,12.1502,9.4049,8.1449,8.0171,3.9286 -2017-01,12.0068,11.1505,8.4037,8.1912,8.1786 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 4a26f3c056..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" -"2016 Q4",12.1502,9.4049,8.1449,8.0171,3.9286 -"2017 Q1",12.0068,11.1505,8.4037,8.1912,8.1786 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 37fa87cc9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[frearson] Job Size: Per Job (Core Count)","[pozidriv] Job Size: Per Job (Core Count)","[phillips] Job Size: Per Job (Core Count)","[mortorq] Job Size: Per Job (Core Count)","[robertson] Job Size: Per Job (Core Count)" -2016,12.1502,9.4049,8.1449,8.0171,3.9286 -2017,12.0068,11.1505,8.4037,8.1912,8.1786 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 28a21c570b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -robertson,17.22247708,0.4246558380962387 -phillips,4.65396173,0.0640574830554861 -pozidriv,1.85771176,0.04173360028194275 -mortorq,0.71003162,0.008170929830821188 -frearson,0.00015425,0.00000178664818571851 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 28a21c570b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -robertson,17.22247708,0.4246558380962387 -phillips,4.65396173,0.0640574830554861 -pozidriv,1.85771176,0.04173360028194275 -mortorq,0.71003162,0.008170929830821188 -frearson,0.00015425,0.00000178664818571851 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 28a21c570b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -robertson,17.22247708,0.4246558380962387 -phillips,4.65396173,0.0640574830554861 -pozidriv,1.85771176,0.04173360028194275 -mortorq,0.71003162,0.008170929830821188 -frearson,0.00015425,0.00000178664818571851 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 28a21c570b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -robertson,17.22247708,0.4246558380962387 -phillips,4.65396173,0.0640574830554861 -pozidriv,1.85771176,0.04173360028194275 -mortorq,0.71003162,0.008170929830821188 -frearson,0.00015425,0.00000178664818571851 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 34bc6e16bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" -2016-12-22,0,0.00027778,9.33222222,0,0 -2016-12-23,0,0.00000000,9.59638889,0,0 -2016-12-24,0,0.00000000,0.00000000,0,0 -2016-12-25,0,0.00000000,36.96185185,0,0 -2016-12-26,0,0.00000000,0.00000000,0.00066667,0 -2016-12-27,89.91919192,0.00000000,0.00420635,0.00000000,0.00027778 -2016-12-28,8.58520724,0.00000000,60.06016667,1.54002315,0.00018519 -2016-12-29,5.78510302,0.00000000,1.76508998,0.17184028,0.00026471 -2016-12-30,39.26977991,2.78702649,0.67086751,0.44405230,0.00014632 -2016-12-31,12.26891680,6.29270207,2.29642170,1.23778020,0.00015245 -2017-01-01,3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index c18af0d185..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" -2016-12,25.48421670,5.25252754,1.48979528,0.76737821,0.00015134 -2017-01,3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2aabab4300..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" -"2016 Q4",25.48421670,5.25252754,1.48979528,0.76737821,0.00015134 -"2017 Q1",3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6582c538f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Wait Hours: Per Job","[phillips] Wait Hours: Per Job","[pozidriv] Wait Hours: Per Job","[mortorq] Wait Hours: Per Job","[frearson] Wait Hours: Per Job" -2016,25.48421670,5.25252754,1.48979528,0.76737821,0.00015134 -2017,3.18805212,0.25913116,4.44912351,0.47615030,0.00016779 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 91c528755a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -robertson,7.29909295,0.06683986634513733 -pozidriv,0.59530227,0.023036904042316335 -frearson,0.50704899,0.008911294376881986 -mortorq,0.30365382,0.009829076394921818 -phillips,0.10845780,0.022957300184446187 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index f9c0c24695..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -robertson,7.29909295,0.10662714361177152 -pozidriv,0.59530227,0.043533301064325194 -frearson,0.50704899,0.015516938082924779 -mortorq,0.30365382,0.014540180835967677 -phillips,0.10845780,0.06300129128425758 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f9c0c24695..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -robertson,7.29909295,0.10662714361177152 -pozidriv,0.59530227,0.043533301064325194 -frearson,0.50704899,0.015516938082924779 -mortorq,0.30365382,0.014540180835967677 -phillips,0.10845780,0.06300129128425758 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index f9c0c24695..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -robertson,7.29909295,0.10662714361177152 -pozidriv,0.59530227,0.043533301064325194 -frearson,0.50704899,0.015516938082924779 -mortorq,0.30365382,0.014540180835967677 -phillips,0.10845780,0.06300129128425758 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index b53030af7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" -2016-12-22,0,16.94166667,0,0,16.74638889 -2016-12-23,0,16.30180556,0,0,24.00000000 -2016-12-24,0,24.00000000,0,0,24.00000000 -2016-12-25,0,11.30155556,0,0,24.00000000 -2016-12-26,0,24.00000000,0,2.70416667,24.00000000 -2016-12-27,10.45689394,12.31518519,8.54972222,24.00000000,13.89986111 -2016-12-28,9.43950151,22.27614379,18.47688889,8.77186275,24.00000000 -2016-12-29,13.20814563,7.39270518,3.06912573,4.74300505,24.00000000 -2016-12-30,5.75246956,0.42482893,0.59709380,0.24654544,0.05436151 -2016-12-31,6.68463863,0.49295988,0.50094364,0.34878876,0.03180960 -2017-01-01,2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index d33f1bf02a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" -2016-12,9.99634612,0.60887666,0.57368768,0.33141335,0.10494462 -2017-01,2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e85f88696d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" -"2016 Q4",9.99634612,0.60887666,0.57368768,0.33141335,0.10494462 -"2017 Q1",2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2fdd57682d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Wall Hours: Per Job","[pozidriv] Wall Hours: Per Job","[frearson] Wall Hours: Per Job","[mortorq] Wall Hours: Per Job","[phillips] Wall Hours: Per Job" -2016,9.99634612,0.60887666,0.57368768,0.33141335,0.10494462 -2017,2.28316806,0.47114714,0.18273251,0.18513688,0.13342725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 96b14fefdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"User Expansion Factor" -phillips,15.0013 -pozidriv,3.6177 -mortorq,3.3383 -robertson,3.1894 -frearson,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 96b14fefdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"User Expansion Factor" -phillips,15.0013 -pozidriv,3.6177 -mortorq,3.3383 -robertson,3.1894 -frearson,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 96b14fefdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"User Expansion Factor" -phillips,15.0013 -pozidriv,3.6177 -mortorq,3.3383 -robertson,3.1894 -frearson,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 96b14fefdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"User Expansion Factor" -phillips,15.0013 -pozidriv,3.6177 -mortorq,3.3383 -robertson,3.1894 -frearson,1.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index c296edfa47..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" -2016-12-22,1.0000,1.0495,0,0,0 -2016-12-23,1.0000,1.0525,0,0,0 -2016-12-24,1.0000,1.0552,0,0,0 -2016-12-25,1.0000,1.1158,0,0,0 -2016-12-26,1.0000,1.2310,1.0000,0,0 -2016-12-27,1.0000,1.1876,1.0000,2.4080,1.0000 -2016-12-28,1.0000,1.3009,1.0024,1.7104,1.0000 -2016-12-29,1.0000,1.3071,1.0190,1.4352,1.0000 -2016-12-30,13.8501,2.4490,2.7505,5.6736,1.0001 -2016-12-31,52.5894,5.4420,4.5252,2.0357,1.0003 -2017-01-01,1.5940,6.2105,3.5149,2.6258,1.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 3d3326c8ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" -2016-12,17.5090,3.3255,3.3134,3.2689,1.0001 -2017-01,1.5940,6.2105,3.5149,2.6258,1.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index d410d926b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" -"2016 Q4",17.5090,3.3255,3.3134,3.2689,1.0001 -"2017 Q1",1.5940,6.2105,3.5149,2.6258,1.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 9a45a3ca55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[phillips] User Expansion Factor","[pozidriv] User Expansion Factor","[mortorq] User Expansion Factor","[robertson] User Expansion Factor","[frearson] User Expansion Factor" -2016,17.5090,3.3255,3.3134,3.2689,1.0001 -2017,1.5940,6.2105,3.5149,2.6258,1.0007 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv deleted file mode 100644 index e75812d477..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Ended" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv deleted file mode 100644 index e75812d477..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Ended" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e75812d477..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Ended" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv deleted file mode 100644 index e75812d477..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Ended" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 9228e08e74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" -2016-12-22,0,0,0,0,0 -2016-12-23,0,0,0,0,0 -2016-12-24,0,0,0,0,0 -2016-12-25,0,0,0,0,0 -2016-12-26,0,0,0,0,0 -2016-12-27,0,0,0,0,0 -2016-12-28,0,0,0,0,0 -2016-12-29,0,0,0,0,0 -2016-12-30,12318,3924,4203,5109,1052 -2016-12-31,8607,8496,3844,4688,2506 -2017-01-01,5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 04cfcbe737..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" -2016-12,20925,12420,8047,9797,3558 -2017-01,5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1cccb336bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" -"2016 Q4",20925,12420,8047,9797,3558 -"2017 Q1",5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 6532816bdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[mortorq] Number of Jobs Ended","[frearson] Number of Jobs Ended","[robertson] Number of Jobs Ended","[pozidriv] Number of Jobs Ended","[phillips] Number of Jobs Ended" -2016,20925,12420,8047,9797,3558 -2017,5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 1b03505fd0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Max (Core Count)" -robertson,336 -frearson,192 -pozidriv,80 -phillips,64 -mortorq,20 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 1b03505fd0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Max (Core Count)" -robertson,336 -frearson,192 -pozidriv,80 -phillips,64 -mortorq,20 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 1b03505fd0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Max (Core Count)" -robertson,336 -frearson,192 -pozidriv,80 -phillips,64 -mortorq,20 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 1b03505fd0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Max (Core Count)" -robertson,336 -frearson,192 -pozidriv,80 -phillips,64 -mortorq,20 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 40b880b9a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" -2016-12-22,0,0,12,12,0 -2016-12-23,0,0,12,12,0 -2016-12-24,0,0,12,12,0 -2016-12-25,0,0,24,12,0 -2016-12-26,0,0,24,12,16 -2016-12-27,144,16,24,64,16 -2016-12-28,144,192,24,64,20 -2016-12-29,160,192,64,64,20 -2016-12-30,336,192,80,64,20 -2016-12-31,336,192,64,64,16 -2017-01-01,192,16,24,64,16 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index eee427a957..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" -2016-12,336,192,80,64,20 -2017-01,192,16,24,64,16 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index e662848ceb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" -"2016 Q4",336,192,80,64,20 -"2017 Q1",192,16,24,64,16 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index b7f4019736..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Job Size: Max (Core Count)","[frearson] Job Size: Max (Core Count)","[pozidriv] Job Size: Max (Core Count)","[phillips] Job Size: Max (Core Count)","[mortorq] Job Size: Max (Core Count)" -2016,336,192,80,64,20 -2017,192,16,24,64,16 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index d0c69622bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Min (Core Count)" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index d0c69622bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Min (Core Count)" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index d0c69622bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Min (Core Count)" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index d0c69622bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Job Size: Min (Core Count)" -frearson,1 -mortorq,1 -phillips,1 -pozidriv,1 -robertson,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 0595c0a2a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" -2016-12-22,0,0,12,12,0 -2016-12-23,0,0,12,1,0 -2016-12-24,0,0,12,1,0 -2016-12-25,0,0,12,1,0 -2016-12-26,0,16,12,1,0 -2016-12-27,16,16,12,1,1 -2016-12-28,16,16,12,1,1 -2016-12-29,12,4,12,1,1 -2016-12-30,1,1,8,1,1 -2016-12-31,1,1,8,1,1 -2017-01-01,1,4,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index cf28516dea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" -2016-12,1,1,8,1,1 -2017-01,1,4,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index efe5832540..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" -"2016 Q4",1,1,8,1,1 -"2017 Q1",1,4,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index de8af5504d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[frearson] Job Size: Min (Core Count)","[mortorq] Job Size: Min (Core Count)","[phillips] Job Size: Min (Core Count)","[pozidriv] Job Size: Min (Core Count)","[robertson] Job Size: Min (Core Count)" -2016,1,1,8,1,1 -2017,1,4,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index b14220f4f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -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/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index b14220f4f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -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/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index b14220f4f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -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/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index b14220f4f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -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/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 7464dae33c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0.300000000,0.300000000,0,0 -2016-12-23,0,0.162500000,0.300000000,0,0 -2016-12-24,0,0.162500000,0.300000000,0,0 -2016-12-25,0,0.365000000,0.300000000,0,0 -2016-12-26,0,0.365000000,0.300000000,0.400000000,0 -2016-12-27,0.400000000,0.354166667,0.950000000,0.400000000,0.996590909 -2016-12-28,4.160000000,0.338235294,0.950000000,0.405882353,0.183044554 -2016-12-29,0.823157895,0.274431818,0.950000000,0.234710744,0.115707810 -2016-12-30,0.312870117,0.227807641,0.205213270,0.200617631,0.101732187 -2016-12-31,0.305087276,0.243918919,0.203547230,0.200454026,0.085529024 -2017-01-01,0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 49cbfc5c19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" -2016-12,0.303754354,0.235121939,0.203622578,0.200428273,0.098214877 -2017-01,0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index b9a9e00f23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.303754354,0.235121939,0.203622578,0.200428273,0.098214877 -"2017 Q1",0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index c2672b2fdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[frearson] Job Size: Normalized (% of Total Cores)","[pozidriv] Job Size: Normalized (% of Total Cores)","[phillips] Job Size: Normalized (% of Total Cores)","[mortorq] Job Size: Normalized (% of Total Cores)","[robertson] Job Size: Normalized (% of Total Cores)" -2016,0.303754354,0.235121939,0.203622578,0.200428273,0.098214877 -2017,0.300170823,0.278763441,0.210092213,0.204778928,0.204465974 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 2ff0bd948b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Running" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 2ff0bd948b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Running" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 2ff0bd948b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Running" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 2ff0bd948b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Running" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 948ae1c96b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" -2016-12-22,0,0,0,1,1 -2016-12-23,0,0,0,2,1 -2016-12-24,0,0,0,2,1 -2016-12-25,0,0,0,5,1 -2016-12-26,5,0,0,5,1 -2016-12-27,5,1,22,12,2 -2016-12-28,17,10,404,17,2 -2016-12-29,121,95,1434,88,2 -2016-12-30,12467,4019,6105,5209,1055 -2016-12-31,8755,8708,4858,4773,2509 -2017-01-01,5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 32d3d6395a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" -2016-12,21073,12632,9061,9882,3561 -2017-01,5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1a1d7a65c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" -"2016 Q4",21073,12632,9061,9882,3561 -"2017 Q1",5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 56c4fe81f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[mortorq] Number of Jobs Running","[frearson] Number of Jobs Running","[robertson] Number of Jobs Running","[pozidriv] Number of Jobs Running","[phillips] Number of Jobs Running" -2016,21073,12632,9061,9882,3561 -2017,5315,2927,6348,1488,488 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 228ea1ca45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Started" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 228ea1ca45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Started" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 228ea1ca45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Started" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 228ea1ca45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Started" -mortorq,26240 -frearson,15347 -robertson,14395 -pozidriv,11285 -phillips,4046 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 767f4a77f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" -2016-12-22,0,0,0,1,1 -2016-12-23,0,0,0,1,0 -2016-12-24,0,0,0,0,0 -2016-12-25,0,0,0,3,0 -2016-12-26,5,0,0,0,0 -2016-12-27,0,1,22,7,1 -2016-12-28,12,9,382,5,0 -2016-12-29,104,85,1030,71,0 -2016-12-30,12346,3924,4671,5121,1053 -2016-12-31,8606,8613,2956,4673,2506 -2017-01-01,5167,2715,5334,1403,485 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 1c43b873ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" -2016-12,21073,12632,9061,9882,3561 -2017-01,5167,2715,5334,1403,485 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 74800b789f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" -"2016 Q4",21073,12632,9061,9882,3561 -"2017 Q1",5167,2715,5334,1403,485 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index c95093b274..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[mortorq] Number of Jobs Started","[frearson] Number of Jobs Started","[robertson] Number of Jobs Started","[pozidriv] Number of Jobs Started","[phillips] Number of Jobs Started" -2016,21073,12632,9061,9882,3561 -2017,5167,2715,5334,1403,485 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index fae68882f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Submitted" -mortorq,25152 -frearson,15347 -robertson,10967 -pozidriv,9962 -phillips,2988 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 57550b86d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Submitted" -mortorq,26025 -frearson,15347 -robertson,13547 -pozidriv,10337 -phillips,3987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 57550b86d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Submitted" -mortorq,26025 -frearson,15347 -robertson,13547 -pozidriv,10337 -phillips,3987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 57550b86d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Number of Jobs Submitted" -mortorq,26025 -frearson,15347 -robertson,13547 -pozidriv,10337 -phillips,3987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 27d58eba53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" -2016-12-22,0,0,0,0,1 -2016-12-23,0,0,0,1,0 -2016-12-24,0,0,0,0,0 -2016-12-25,0,0,0,1,0 -2016-12-26,5,0,0,0,0 -2016-12-27,0,1,9,7,1 -2016-12-28,12,9,358,0,0 -2016-12-29,100,85,952,69,0 -2016-12-30,12345,3924,3344,4994,1053 -2016-12-31,7738,8613,1818,4435,1507 -2017-01-01,4952,2715,4486,455,426 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index f4ff7a78ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" -2016-12,21073,12632,9061,9882,3561 -2017-01,4952,2715,4486,455,426 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 6f1f6a3ea1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" -"2016 Q4",21073,12632,9061,9882,3561 -"2017 Q1",4952,2715,4486,455,426 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 0ddc5313d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[mortorq] Number of Jobs Submitted","[frearson] Number of Jobs Submitted","[robertson] Number of Jobs Submitted","[pozidriv] Number of Jobs Submitted","[phillips] Number of Jobs Submitted" -2016,21073,12632,9061,9882,3561 -2017,4952,2715,4486,455,426 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index b6c08c2066..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"CPU Hours: Total" -robertson,461887.9808 -frearson,217650.7417 -mortorq,77264.8497 -pozidriv,71984.2764 -phillips,11767.9883 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index b6c08c2066..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"CPU Hours: Total" -robertson,461887.9808 -frearson,217650.7417 -mortorq,77264.8497 -pozidriv,71984.2764 -phillips,11767.9883 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b6c08c2066..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"CPU Hours: Total" -robertson,461887.9808 -frearson,217650.7417 -mortorq,77264.8497 -pozidriv,71984.2764 -phillips,11767.9883 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index b6c08c2066..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"CPU Hours: Total" -robertson,461887.9808 -frearson,217650.7417 -mortorq,77264.8497 -pozidriv,71984.2764 -phillips,11767.9883 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 6e53f2c896..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" -2016-12-22,0,0,0,203.3000,200.9567 -2016-12-23,0,0,0,296.6036,288.0000 -2016-12-24,0,0,0,312.0000,288.0000 -2016-12-25,0,0,0,490.2700,288.0000 -2016-12-26,0,0,216.3333,1752.0000,288.0000 -2016-12-27,10791.9414,136.7956,1920.0000,2173.2256,531.1822 -2016-12-28,42740.1569,29851.4711,2404.7489,5168.3333,1824.0000 -2016-12-29,110834.4219,42083.6467,8672.5767,7847.1381,1824.0000 -2016-12-30,148413.6153,73913.2931,27506.1814,23365.5864,1920.5911 -2016-12-31,103231.2444,64816.8594,26989.6194,24649.9353,2541.9711 -2017-01-01,45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0e225cbbcd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" -2016-12,416011.3800,210802.0658,67709.4597,66258.3922,9994.7011 -2017-01,45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3da29ba23d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" -"2016 Q4",416011.3800,210802.0658,67709.4597,66258.3922,9994.7011 -"2017 Q1",45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 87105518a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] CPU Hours: Total","[frearson] CPU Hours: Total","[mortorq] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total" -2016,416011.3800,210802.0658,67709.4597,66258.3922,9994.7011 -2017,45876.6008,6848.6758,9555.3900,5725.8842,1773.2872 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 05b21cf195..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Total" -phillips,506.9128 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 05b21cf195..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Total" -phillips,506.9128 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 05b21cf195..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Total" -phillips,506.9128 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 05b21cf195..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"GPU Hours: Total" -phillips,506.9128 -frearson,0.0000 -mortorq,0.0000 -pozidriv,0.0000 -robertson,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 57cecd68b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" -2016-12-22,33.4928,0,0,0.0000,0 -2016-12-23,48.0000,0,0,0.0000,0 -2016-12-24,48.0000,0,0,0.0000,0 -2016-12-25,48.0000,0,0,0.0000,0 -2016-12-26,48.0000,0,0.0000,0.0000,0 -2016-12-27,48.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-28,48.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000 -2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a2d39954af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2fbc2b14b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 41fd9ecee2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index dfff69138f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Node Hours: Total" -robertson,124760.4617 -frearson,15307.6617 -mortorq,7967.8761 -pozidriv,6922.8794 -phillips,1344.8686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index dfff69138f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Node Hours: Total" -robertson,124760.4617 -frearson,15307.6617 -mortorq,7967.8761 -pozidriv,6922.8794 -phillips,1344.8686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index dfff69138f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Node Hours: Total" -robertson,124760.4617 -frearson,15307.6617 -mortorq,7967.8761 -pozidriv,6922.8794 -phillips,1344.8686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index dfff69138f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Node Hours: Total" -robertson,124760.4617 -frearson,15307.6617 -mortorq,7967.8761 -pozidriv,6922.8794 -phillips,1344.8686 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b79dac7f87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" -2016-12-22,0,0,0,16.9417,16.7464 -2016-12-23,0,0,0,32.6036,24.0000 -2016-12-24,0,0,0,48.0000,24.0000 -2016-12-25,0,0,0,56.5078,24.0000 -2016-12-26,0,0,13.5208,120.0000,24.0000 -2016-12-27,875.6625,8.5497,120.0000,147.7822,54.3978 -2016-12-28,6005.0836,1865.7169,149.1217,378.6944,216.0000 -2016-12-29,24412.3394,2635.6336,573.9036,690.6203,216.0000 -2016-12-30,41539.4736,5149.1833,3073.6819,2318.1472,228.0739 -2016-12-31,36503.1694,5113.7200,3053.6456,2412.5153,305.7464 -2017-01-01,15424.7331,534.8581,984.0025,701.0669,211.9042 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 379cd26d38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" -2016-12,109335.7286,14772.8036,6983.8736,6221.8125,1132.9644 -2017-01,15424.7331,534.8581,984.0025,701.0669,211.9042 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 63e1e272ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" -"2016 Q4",109335.7286,14772.8036,6983.8736,6221.8125,1132.9644 -"2017 Q1",15424.7331,534.8581,984.0025,701.0669,211.9042 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index ce1d189a61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Node Hours: Total","[frearson] Node Hours: Total","[mortorq] Node Hours: Total","[pozidriv] Node Hours: Total","[phillips] Node Hours: Total" -2016,109335.7286,14772.8036,6983.8736,6221.8125,1132.9644 -2017,15424.7331,534.8581,984.0025,701.0669,211.9042 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 17326ee924..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Total" -robertson,247917.5575 -pozidriv,20964.2772 -phillips,18829.9292 -mortorq,18631.2297 -frearson,2.3672 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 17326ee924..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Total" -robertson,247917.5575 -pozidriv,20964.2772 -phillips,18829.9292 -mortorq,18631.2297 -frearson,2.3672 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 17326ee924..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Total" -robertson,247917.5575 -pozidriv,20964.2772 -phillips,18829.9292 -mortorq,18631.2297 -frearson,2.3672 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 17326ee924..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wait Hours: Total" -robertson,247917.5575 -pozidriv,20964.2772 -phillips,18829.9292 -mortorq,18631.2297 -frearson,2.3672 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 17e8d6a5e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" -2016-12-22,0,9.3322,0.0003,0,0 -2016-12-23,0,9.5964,0.0000,0,0 -2016-12-24,0,0.0000,0.0000,0,0 -2016-12-25,0,110.8856,0.0000,0,0 -2016-12-26,0,0.0000,0.0000,0.0033,0 -2016-12-27,1978.2222,0.0294,0.0000,0.0000,0.0003 -2016-12-28,3279.5492,300.3008,0.0000,18.4803,0.0017 -2016-12-29,5958.6561,125.3214,0.0000,17.8714,0.0225 -2016-12-30,183429.1419,3435.5125,2934.7389,5482.2697,0.5742 -2016-12-31,36266.9181,10731.1786,15769.5114,10652.3364,1.3131 -2017-01-01,17005.0700,6242.1203,125.6786,2460.2686,0.4556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 17437437c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" -2016-12,230912.4875,14722.1569,18704.2506,16170.9611,1.9117 -2017-01,17005.0700,6242.1203,125.6786,2460.2686,0.4556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index a76c9340e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" -"2016 Q4",230912.4875,14722.1569,18704.2506,16170.9611,1.9117 -"2017 Q1",17005.0700,6242.1203,125.6786,2460.2686,0.4556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index a9b6c022e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Wait Hours: Total","[pozidriv] Wait Hours: Total","[phillips] Wait Hours: Total","[mortorq] Wait Hours: Total","[frearson] Wait Hours: Total" -2016,230912.4875,14722.1569,18704.2506,16170.9611,1.9117 -2017,17005.0700,6242.1203,125.6786,2460.2686,0.4556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c42f26f237..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Total" -robertson,105070.4431 -mortorq,7967.8761 -frearson,7781.6808 -pozidriv,6717.9861 -phillips,438.8203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c42f26f237..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Total" -robertson,105070.4431 -mortorq,7967.8761 -frearson,7781.6808 -pozidriv,6717.9861 -phillips,438.8203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c42f26f237..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Total" -robertson,105070.4431 -mortorq,7967.8761 -frearson,7781.6808 -pozidriv,6717.9861 -phillips,438.8203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c42f26f237..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Wall Hours: Total" -robertson,105070.4431 -mortorq,7967.8761 -frearson,7781.6808 -pozidriv,6717.9861 -phillips,438.8203 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index f76c05674f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" -2016-12-22,0,0,0,16.9417,16.7464 -2016-12-23,0,0,0,32.6036,24.0000 -2016-12-24,0,0,0,48.0000,24.0000 -2016-12-25,0,0,0,56.5078,24.0000 -2016-12-26,0,13.5208,0,120.0000,24.0000 -2016-12-27,230.0517,120.0000,8.5497,147.7822,27.7997 -2016-12-28,3813.5586,149.1217,184.7689,378.6944,48.0000 -2016-12-29,18940.4808,573.9036,291.5669,650.5581,48.0000 -2016-12-30,35118.8267,3073.6819,2399.7200,2212.9339,57.3514 -2016-12-31,32473.9744,3053.6456,4362.2172,2352.8975,79.8103 -2017-01-01,14493.5508,984.0025,534.8581,701.0669,65.1125 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7cf12c9101..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" -2016-12,90576.8922,6983.8736,7246.8228,6016.9192,373.7078 -2017-01,14493.5508,984.0025,534.8581,701.0669,65.1125 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 0eb8f7482a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" -"2016 Q4",90576.8922,6983.8736,7246.8228,6016.9192,373.7078 -"2017 Q1",14493.5508,984.0025,534.8581,701.0669,65.1125 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index dbfaced39d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Wall Hours: Total","[mortorq] Wall Hours: Total","[frearson] Wall Hours: Total","[pozidriv] Wall Hours: Total","[phillips] Wall Hours: Total" -2016,90576.8922,6983.8736,7246.8228,6016.9192,373.7078 -2017,14493.5508,984.0025,534.8581,701.0669,65.1125 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv deleted file mode 100644 index a79481c720..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Screwdriver CPU Utilization (%)" -robertson,43.7394 -frearson,37.7866 -mortorq,11.4977 -pozidriv,6.8167 -phillips,1.1144 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 7ffb20d29b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Screwdriver CPU Utilization (%)" -robertson,9.4340 -frearson,6.2978 -mortorq,2.1752 -pozidriv,1.7853 -phillips,0.2990 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index c65299c947..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Screwdriver CPU Utilization (%)" -robertson,4.3739 -frearson,2.3865 -mortorq,0.8384 -pozidriv,0.7424 -phillips,0.1226 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 5849753a72..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Resource,"Screwdriver CPU Utilization (%)" -robertson,1.2497 -frearson,0.6128 -mortorq,0.2169 -pozidriv,0.1994 -phillips,0.0327 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv deleted file mode 100644 index eedaeb31f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0.2118,0.2093 -2016-12-23,0,0,0,0.3090,0.3000 -2016-12-24,0,0,0,0.3250,0.3000 -2016-12-25,0,0,0,0.5107,0.3000 -2016-12-26,0,0,0.2253,1.8250,0.3000 -2016-12-27,11.2416,0.1425,2.0000,2.2638,0.5533 -2016-12-28,44.5210,31.0953,2.5049,5.3837,1.9000 -2016-12-29,115.4525,43.8371,9.0339,8.1741,1.9000 -2016-12-30,154.5975,76.9930,28.6523,24.3392,2.0006 -2016-12-31,107.5325,67.5176,28.1142,25.6770,2.6479 -2017-01-01,47.7881,7.1340,9.9535,5.9645,1.8472 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 9498fb7d25..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" -2016-12,21.6673,43.9171,11.7551,6.2745,1.0411 -2017-01,1.5416,0.2301,0.3211,0.1924,0.0596 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index b4fd58fa71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" -"2016 Q4",21.6673,43.9171,11.7551,6.2745,1.0411 -"2017 Q1",0.5310,0.0793,0.1106,0.0663,0.0205 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 73fb1224bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[robertson] Screwdriver CPU Utilization (%)","[frearson] Screwdriver CPU Utilization (%)","[mortorq] Screwdriver CPU Utilization (%)","[pozidriv] Screwdriver CPU Utilization (%)","[phillips] Screwdriver CPU Utilization (%)" -2016,21.6673,43.9171,11.7551,6.2745,1.0411 -2017,0.1309,0.0195,0.0273,0.0163,0.0051 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 2853d9623d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Users: Active" -"High-performance computing",66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 2853d9623d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Users: Active" -"High-performance computing",66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 2853d9623d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Users: Active" -"High-performance computing",66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 2853d9623d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Users: Active" -"High-performance computing",66 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 44d83e2b8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of Users: Active" -2016-12-22,2 -2016-12-23,3 -2016-12-24,3 -2016-12-25,4 -2016-12-26,5 -2016-12-27,16 -2016-12-28,25 -2016-12-29,43 -2016-12-30,64 -2016-12-31,55 -2017-01-01,38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 5c4a092014..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of Users: Active" -2016-12,66 -2017-01,38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index fee923f1c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of Users: Active" -"2016 Q4",66 -"2017 Q1",38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index fa009abb8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of Users: Active" -2016,66 -2017,38 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index f29b69a053..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of PIs: Active" -"High-performance computing",41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index f29b69a053..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of PIs: Active" -"High-performance computing",41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index f29b69a053..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of PIs: Active" -"High-performance computing",41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index f29b69a053..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of PIs: Active" -"High-performance computing",41 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 78e41be2ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of PIs: Active" -2016-12-22,2 -2016-12-23,3 -2016-12-24,3 -2016-12-25,3 -2016-12-26,4 -2016-12-27,11 -2016-12-28,18 -2016-12-29,28 -2016-12-30,39 -2016-12-31,34 -2017-01-01,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 4ec0195a37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of PIs: Active" -2016-12,41 -2017-01,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 14faffe83a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of PIs: Active" -"2016 Q4",41 -"2017 Q1",25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index cd41dfc236..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of PIs: Active" -2016,41 -2017,25 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 0d771cf529..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Resources: Active" -"High-performance computing",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 0d771cf529..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Resources: Active" -"High-performance computing",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 0d771cf529..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Resources: Active" -"High-performance computing",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 0d771cf529..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Resources: Active" -"High-performance computing",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index f7dc270066..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of Resources: Active" -2016-12-22,2 -2016-12-23,2 -2016-12-24,2 -2016-12-25,2 -2016-12-26,3 -2016-12-27,5 -2016-12-28,5 -2016-12-29,5 -2016-12-30,5 -2016-12-31,5 -2017-01-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index fafe2a6f3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of Resources: Active" -2016-12,5 -2017-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 1a3fbf53ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of Resources: Active" -"2016 Q4",5 -"2017 Q1",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 5283067afd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of Resources: Active" -2016,5 -2017,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 2961eff9f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index f74d75fe59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f74d75fe59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index f74d75fe59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 59b5f69c87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] CPU Hours: Per Job" -2016-12-22,202.12833333 -2016-12-23,194.86787037 -2016-12-24,200.00000000 -2016-12-25,129.71166667 -2016-12-26,205.12121212 -2016-12-27,370.31296958 -2016-12-28,182.19713395 -2016-12-29,98.42631226 -2016-12-30,9.53454400 -2016-12-31,7.50699692 -2017-01-01,4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index ccfaefb5d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] CPU Hours: Per Job" -2016-12,13.71267944 -2017-01,4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3b34b4afa2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] CPU Hours: Per Job" -"2016 Q4",13.71267944 -"2017 Q1",4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 231c9d1782..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] CPU Hours: Per Job" -2016,13.71267944 -2017,4.21223217 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1d18418d7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Per Job" -"High-performance computing",0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 1d18418d7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Per Job" -"High-performance computing",0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 1d18418d7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Per Job" -"High-performance computing",0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1d18418d7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Per Job" -"High-performance computing",0.00710828 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 28a8c54526..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] GPU Hours: Per Job" -2016-12-22,16.74638889 -2016-12-23,16.00000000 -2016-12-24,16.00000000 -2016-12-25,8.00000000 -2016-12-26,4.36363636 -2016-12-27,1.14285714 -2016-12-28,0.10666667 -2016-12-29,0.02758621 -2016-12-30,0.00166349 -2016-12-31,0.00162146 -2017-01-01,0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 4ad2b875db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] GPU Hours: Per Job" -2016-12,0.00828146 -2017-01,0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1bc14806e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] GPU Hours: Per Job" -"2016 Q4",0.00828146 -"2017 Q1",0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5fca306f35..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] GPU Hours: Per Job" -2016,0.00828146 -2017,0.00250030 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 2878014b73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"High-performance computing",0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 2878014b73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"High-performance computing",0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 2878014b73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"High-performance computing",0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 2878014b73..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -"High-performance computing",0.0001,0.000039661596951222156 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index cbe05dfa23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] GPU Count: Per Job" -2016-12-22,1.0000 -2016-12-23,0.6667 -2016-12-24,0.6667 -2016-12-25,0.3333 -2016-12-26,0.1818 -2016-12-27,0.0476 -2016-12-28,0.0044 -2016-12-29,0.0011 -2016-12-30,0.0001 -2016-12-31,0.0001 -2017-01-01,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 082ad536e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] GPU Count: Per Job" -2016-12,0.0000 -2017-01,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index db4f5fcb70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] GPU Count: Per Job" -"2016 Q4",0.0000 -"2017 Q1",0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 8def323fca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] GPU Count: Per Job" -2016,0.0000 -2017,0.0002 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 44166ce4f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" -"High-performance computing",65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 44166ce4f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" -"High-performance computing",65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 44166ce4f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" -"High-performance computing",65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 44166ce4f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By CPU Hours (Core Count)" -"High-performance computing",65.6161 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 72cc4b1eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-22,12.0000 -2016-12-23,11.8381 -2016-12-24,11.5600 -2016-12-25,14.0099 -2016-12-26,18.3933 -2016-12-27,67.8600 -2016-12-28,107.6133 -2016-12-29,87.5874 -2016-12-30,69.1154 -2016-12-31,43.3544 -2017-01-01,22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 32b48521d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,69.5398 -2017-01,22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2b8923f838..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",69.5398 -"2017 Q1",22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 28de581b03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Job Size: Weighted By CPU Hours (Core Count)" -2016,69.5398 -2017,22.2755 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index f946856517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" -"High-performance computing",12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index f946856517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" -"High-performance computing",12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f946856517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" -"High-performance computing",12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index f946856517..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" -"High-performance computing",12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0cbebdec3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,12.0000 -2016-12-23,12.0000 -2016-12-24,12.0000 -2016-12-25,12.0000 -2016-12-26,12.0000 -2016-12-27,12.0000 -2016-12-28,12.0000 -2016-12-29,12.0000 -2016-12-30,12.0000 -2016-12-31,12.0000 -2017-01-01,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 23ce10fb1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000 -2017-01,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3c0773f547..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000 -"2017 Q1",12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index a3e6a6081e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000 -2017,12.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6f5459ea9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index e492e09e62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index e492e09e62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index e492e09e62..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 45c3112b11..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Node Hours: Per Job" -2016-12-22,16.84402778 -2016-12-23,18.86787037 -2016-12-24,24.00000000 -2016-12-25,13.41796296 -2016-12-26,14.32007576 -2016-12-27,28.72362434 -2016-12-28,19.14359259 -2016-12-29,16.39568790 -2016-12-30,1.81280749 -2016-12-31,1.60081062 -2017-01-01,1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 3663291101..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Node Hours: Per Job" -2016-12,2.46307856 -2017-01,1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f3472d34b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Node Hours: Per Job" -"2016 Q4",2.46307856 -"2017 Q1",1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index fe5ba1109c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Node Hours: Per Job" -2016,2.46307856 -2017,1.07790443 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 772f01a362..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 772f01a362..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 772f01a362..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 772f01a362..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 0d3b868c3d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Job Size: Per Job (Core Count)" -2016-12-22,12.0000 -2016-12-23,8.3333 -2016-12-24,8.3333 -2016-12-25,14.1667 -2016-12-26,15.0000 -2016-12-27,29.0238 -2016-12-28,11.5644 -2016-12-29,6.8638 -2016-12-30,8.0163 -2016-12-31,8.7857 -2017-01-01,9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index c6e8b3498c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Job Size: Per Job (Core Count)" -2016-12,8.5390 -2017-01,9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 7baed870f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Job Size: Per Job (Core Count)" -"2016 Q4",8.5390 -"2017 Q1",9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 7a4d866a9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Job Size: Per Job (Core Count)" -2016,8.5390 -2017,9.1326 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index a198811972..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"High-performance computing",4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index a198811972..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"High-performance computing",4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index a198811972..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"High-performance computing",4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index a198811972..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -"High-performance computing",4.29578563,0.08956571094180898 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index a0abb0a56a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Wait Hours: Per Job" -2016-12-22,4.66625000 -2016-12-23,9.59638889 -2016-12-24,0.00000000 -2016-12-25,36.96185185 -2016-12-26,0.00066667 -2016-12-27,63.81457885 -2016-12-28,8.81944104 -2016-12-29,4.73013286 -2016-12-30,7.20200027 -2016-12-31,2.68411411 -2017-01-01,1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 16736303c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Wait Hours: Per Job" -2016-12,4.99051340 -2017-01,1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index bde3da4c3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Wait Hours: Per Job" -"2016 Q4",4.99051340 -"2017 Q1",1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index cef6deb0ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Wait Hours: Per Job" -2016,4.99051340 -2017,1.71038090 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9dacb24bb0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"High-performance computing",1.79457892,0.017929611668507588 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index b3ca8c3d58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"High-performance computing",1.79457892,0.0259028363905744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index b3ca8c3d58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"High-performance computing",1.79457892,0.0259028363905744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index b3ca8c3d58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -"High-performance computing",1.79457892,0.0259028363905744 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0377cfbe2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Wall Hours: Per Job" -2016-12-22,16.84402778 -2016-12-23,18.86787037 -2016-12-24,24.00000000 -2016-12-25,13.41796296 -2016-12-26,14.32007576 -2016-12-27,12.71865079 -2016-12-28,10.16476358 -2016-12-29,11.78420083 -2016-12-30,1.48544495 -2016-12-31,1.42967081 -2017-01-01,1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index fdeae34918..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Wall Hours: Per Job" -2016-12,1.97829913 -2017-01,1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4cd8eb09e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Wall Hours: Per Job" -"2016 Q4",1.97829913 -"2017 Q1",1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 93349d4924..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Wall Hours: Per Job" -2016,1.97829913 -2017,1.01283296 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index ed168fd6c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","User Expansion Factor" -"High-performance computing",3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index ed168fd6c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","User Expansion Factor" -"High-performance computing",3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index ed168fd6c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","User Expansion Factor" -"High-performance computing",3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index ed168fd6c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","User Expansion Factor" -"High-performance computing",3.1031 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 9a471dd540..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] User Expansion Factor" -2016-12-22,1.0249 -2016-12-23,1.0302 -2016-12-24,1.0368 -2016-12-25,1.0813 -2016-12-26,1.1760 -2016-12-27,2.0450 -2016-12-28,1.5085 -2016-12-29,1.3802 -2016-12-30,4.9345 -2016-12-31,2.5839 -2017-01-01,2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 297fef7855..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] User Expansion Factor" -2016-12,3.1481 -2017-01,2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 40c2334552..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] User Expansion Factor" -"2016 Q4",3.1481 -"2017 Q1",2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index d3f214da89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] User Expansion Factor" -2016,3.1481 -2017,2.7546 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 9996b95bbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Ended" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 9996b95bbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Ended" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 9996b95bbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Ended" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 9996b95bbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Ended" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv deleted file mode 100644 index f29b93d061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of Jobs Ended" -2016-12-22,0 -2016-12-23,0 -2016-12-24,0 -2016-12-25,0 -2016-12-26,0 -2016-12-27,0 -2016-12-28,0 -2016-12-29,0 -2016-12-30,26606 -2016-12-31,28141 -2017-01-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 0561386d8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of Jobs Ended" -2016-12,54747 -2017-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 58b2b80554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of Jobs Ended" -"2016 Q4",54747 -"2017 Q1",16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv deleted file mode 100644 index ee30ad6fcc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of Jobs Ended" -2016,54747 -2017,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 1b06fa03ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Max (Core Count)" -"High-performance computing",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 1b06fa03ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Max (Core Count)" -"High-performance computing",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 1b06fa03ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Max (Core Count)" -"High-performance computing",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 1b06fa03ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Max (Core Count)" -"High-performance computing",336 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index bc9f3b6942..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Job Size: Max (Core Count)" -2016-12-22,12 -2016-12-23,12 -2016-12-24,12 -2016-12-25,24 -2016-12-26,24 -2016-12-27,144 -2016-12-28,192 -2016-12-29,192 -2016-12-30,336 -2016-12-31,336 -2017-01-01,192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 1ba65802bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Job Size: Max (Core Count)" -2016-12,336 -2017-01,192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 44aeb67b33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Job Size: Max (Core Count)" -"2016 Q4",336 -"2017 Q1",192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index f8fec62360..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Job Size: Max (Core Count)" -2016,336 -2017,192 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 7fc2d100e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Min (Core Count)" -"High-performance computing",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 7fc2d100e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Min (Core Count)" -"High-performance computing",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 7fc2d100e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Min (Core Count)" -"High-performance computing",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 7fc2d100e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Job Size: Min (Core Count)" -"High-performance computing",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 9cc37aca61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Job Size: Min (Core Count)" -2016-12-22,12 -2016-12-23,1 -2016-12-24,1 -2016-12-25,1 -2016-12-26,1 -2016-12-27,1 -2016-12-28,1 -2016-12-29,1 -2016-12-30,1 -2016-12-31,1 -2017-01-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index f9d2845039..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Job Size: Min (Core Count)" -2016-12,1 -2017-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index dfb8fb78f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Job Size: Min (Core Count)" -"2016 Q4",1 -"2017 Q1",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index d0528a86c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Job Size: Min (Core Count)" -2016,1 -2017,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 60faa4f653..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 60faa4f653..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 60faa4f653..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 60faa4f653..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -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/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 5d391f0fe6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Job Size: Normalized (% of Total Cores)" -2016-12-22,0.150000000 -2016-12-23,0.104166667 -2016-12-24,0.104166667 -2016-12-25,0.177083333 -2016-12-26,0.125000000 -2016-12-27,0.145119048 -2016-12-28,0.057822222 -2016-12-29,0.034318966 -2016-12-30,0.040081442 -2016-12-31,0.043928656 -2017-01-01,0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 61af858cb6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Job Size: Normalized (% of Total Cores)" -2016-12,0.042694764 -2017-01,0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 8375c41ee0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.042694764 -"2017 Q1",0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 55caafbee8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Job Size: Normalized (% of Total Cores)" -2016,0.042694764 -2017,0.045663105 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 526b6d3a89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Running" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 526b6d3a89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Running" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 526b6d3a89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Running" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 526b6d3a89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Running" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 0ad2127aaa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of Jobs Running" -2016-12-22,2 -2016-12-23,3 -2016-12-24,3 -2016-12-25,6 -2016-12-26,11 -2016-12-27,42 -2016-12-28,450 -2016-12-29,1740 -2016-12-30,28855 -2016-12-31,29603 -2017-01-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index e836afe405..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of Jobs Running" -2016-12,56209 -2017-01,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9c422034c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of Jobs Running" -"2016 Q4",56209 -"2017 Q1",16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index b3a042258a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of Jobs Running" -2016,56209 -2017,16566 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 01f764aa87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Started" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 01f764aa87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Started" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 01f764aa87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Started" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 01f764aa87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Started" -"High-performance computing",71313 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 478afbc9da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of Jobs Started" -2016-12-22,2 -2016-12-23,1 -2016-12-24,0 -2016-12-25,3 -2016-12-26,5 -2016-12-27,31 -2016-12-28,408 -2016-12-29,1290 -2016-12-30,27115 -2016-12-31,27354 -2017-01-01,15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index eb41265590..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of Jobs Started" -2016-12,56209 -2017-01,15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index abe22a25b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of Jobs Started" -"2016 Q4",56209 -"2017 Q1",15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 31dd042634..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of Jobs Started" -2016,56209 -2017,15104 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 86e3452bce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Submitted" -"High-performance computing",64416 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 5b8939c9ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Submitted" -"High-performance computing",69243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 5b8939c9ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Submitted" -"High-performance computing",69243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 5b8939c9ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Number of Jobs Submitted" -"High-performance computing",69243 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 9bc9a04cdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Number of Jobs Submitted" -2016-12-22,1 -2016-12-23,1 -2016-12-24,0 -2016-12-25,1 -2016-12-26,5 -2016-12-27,18 -2016-12-28,379 -2016-12-29,1206 -2016-12-30,25660 -2016-12-31,24111 -2017-01-01,13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 08d74cc145..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Number of Jobs Submitted" -2016-12,56209 -2017-01,13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9cc2641a6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Number of Jobs Submitted" -"2016 Q4",56209 -"2017 Q1",13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index d56c81c9c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Number of Jobs Submitted" -2016,56209 -2017,13034 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4f23c1ee33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4f23c1ee33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4f23c1ee33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4f23c1ee33..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",840555.8369 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 2f485916ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] CPU Hours: Total" -2016-12-22,404.2567 -2016-12-23,584.6036 -2016-12-24,600.0000 -2016-12-25,778.2700 -2016-12-26,2256.3333 -2016-12-27,15553.1447 -2016-12-28,81988.7103 -2016-12-29,171261.7833 -2016-12-30,275119.2672 -2016-12-31,222229.6297 -2017-01-01,69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9bedd2c6e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] CPU Hours: Total" -2016-12,770775.9989 -2017-01,69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e21bf0c2f6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] CPU Hours: Total" -"2016 Q4",770775.9989 -"2017 Q1",69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7b62436131..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] CPU Hours: Total" -2016,770775.9989 -2017,69779.8381 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3541f0439e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 3541f0439e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3541f0439e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 3541f0439e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",506.9128 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5f162a8906..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] GPU Hours: Total" -2016-12-22,33.4928 -2016-12-23,48.0000 -2016-12-24,48.0000 -2016-12-25,48.0000 -2016-12-26,48.0000 -2016-12-27,48.0000 -2016-12-28,48.0000 -2016-12-29,48.0000 -2016-12-30,48.0000 -2016-12-31,48.0000 -2017-01-01,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a9e2f39388..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] GPU Hours: Total" -2016-12,465.4928 -2017-01,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index da03e3535e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] GPU Hours: Total" -"2016 Q4",465.4928 -"2017 Q1",41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7d251e2635..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] GPU Hours: Total" -2016,465.4928 -2017,41.4200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index ad05a65baf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Node Hours: Total" -"High-performance computing",156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index ad05a65baf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Node Hours: Total" -"High-performance computing",156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ad05a65baf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Node Hours: Total" -"High-performance computing",156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index ad05a65baf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Node Hours: Total" -"High-performance computing",156303.7475 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index a56a8f9945..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Node Hours: Total" -2016-12-22,33.6881 -2016-12-23,56.6036 -2016-12-24,72.0000 -2016-12-25,80.5078 -2016-12-26,157.5208 -2016-12-27,1206.3922 -2016-12-28,8614.6167 -2016-12-29,28528.4969 -2016-12-30,52308.5600 -2016-12-31,47388.7967 -2017-01-01,17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 71e033eaca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Node Hours: Total" -2016-12,138447.1828 -2017-01,17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5b8c6e20b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Node Hours: Total" -"2016 Q4",138447.1828 -"2017 Q1",17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3c4a30ead5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Node Hours: Total" -2016,138447.1828 -2017,17856.5647 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index c5b78bd1e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Total" -"High-performance computing",306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index c5b78bd1e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Total" -"High-performance computing",306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c5b78bd1e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Total" -"High-performance computing",306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index c5b78bd1e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wait Hours: Total" -"High-performance computing",306345.3608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 248cd91b76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Wait Hours: Total" -2016-12-22,9.3325 -2016-12-23,9.5964 -2016-12-24,0.0000 -2016-12-25,110.8856 -2016-12-26,0.0033 -2016-12-27,1978.2519 -2016-12-28,3598.3319 -2016-12-29,6101.8714 -2016-12-30,195282.2372 -2016-12-31,73421.2575 -2017-01-01,25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 10c8126e9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Wait Hours: Total" -2016-12,280511.7678 -2017-01,25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index cd3bc9ffe8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Wait Hours: Total" -"2016 Q4",280511.7678 -"2017 Q1",25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 1243956593..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Wait Hours: Total" -2016,280511.7678 -2017,25833.5931 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 953457808d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Total" -"High-performance computing",127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 953457808d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Total" -"High-performance computing",127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 953457808d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Total" -"High-performance computing",127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 953457808d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Wall Hours: Total" -"High-performance computing",127976.8064 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 930031838e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Wall Hours: Total" -2016-12-22,33.6881 -2016-12-23,56.6036 -2016-12-24,72.0000 -2016-12-25,80.5078 -2016-12-26,157.5208 -2016-12-27,534.1833 -2016-12-28,4574.1436 -2016-12-29,20504.5094 -2016-12-30,42862.5139 -2016-12-31,42322.5450 -2017-01-01,16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index e2dc9ed559..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Wall Hours: Total" -2016-12,111198.2156 -2017-01,16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f118f3f560..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Wall Hours: Total" -"2016 Q4",111198.2156 -"2017 Q1",16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index bb62338557..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Wall Hours: Total" -2016,111198.2156 -2017,16778.5908 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 0e246d15e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Screwdriver CPU Utilization (%)" -"High-performance computing",19.0343 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv deleted file mode 100644 index cac763429a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Screwdriver CPU Utilization (%)" -"High-performance computing",4.2299 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 30f0195299..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Screwdriver CPU Utilization (%)" -"High-performance computing",1.7442 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 5999454122..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"Resource Type","Screwdriver CPU Utilization (%)" -"High-performance computing",0.4665 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv deleted file mode 100644 index c73f92560b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[High-performance computing] Screwdriver CPU Utilization (%)" -2016-12-22,0.2106 -2016-12-23,0.3045 -2016-12-24,0.3125 -2016-12-25,0.4053 -2016-12-26,0.7834 -2016-12-27,3.2402 -2016-12-28,17.0810 -2016-12-29,35.6795 -2016-12-30,57.3165 -2016-12-31,46.2978 -2017-01-01,14.5375 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv deleted file mode 100644 index faab933eea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[High-performance computing] Screwdriver CPU Utilization (%)" -2016-12,15.4402 -2017-01,0.4690 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index e3b901de4f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[High-performance computing] Screwdriver CPU Utilization (%)" -"2016 Q4",15.4402 -"2017 Q1",0.1615 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 7943646a1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/resource_type/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[High-performance computing] Screwdriver CPU Utilization (%)" -2016,15.4402 -2017,0.0398 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv deleted file mode 100644 index 69b5c0d018..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv deleted file mode 100644 index 183ad3b77b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv deleted file mode 100644 index 69b5c0d018..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv deleted file mode 100644 index 183ad3b77b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 69b5c0d018..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 183ad3b77b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv deleted file mode 100644 index 8e758c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv deleted file mode 100644 index 69b5c0d018..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv deleted file mode 100644 index 183ad3b77b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Users: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv deleted file mode 100644 index 7c8cba193f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 -2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 -2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 -2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 -2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 -2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv deleted file mode 100644 index 7c8cba193f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 -2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 -2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 -2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 -2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 -2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv deleted file mode 100644 index 45e080b163..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" -2016-12-23,0,0,1,0,0,0 -2016-12-24,0,0,1,0,0,0 -2016-12-25,0,0,1,0,0,0 -2016-12-26,0,0,1,0,0,0 -2016-12-27,0,1,1,0,0,1 -2016-12-28,0,1,1,0,0,1 -2016-12-29,0,1,1,0,1,1 -2016-12-30,1,1,1,1,1,1 -2016-12-31,1,1,0,1,1,1 -2017-01-01,0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv deleted file mode 100644 index 1047b1ad18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of Users: Active" -2016-12-30,1 -2016-12-31,1 -2017-01-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv deleted file mode 100644 index 99a75fd161..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv deleted file mode 100644 index 99a75fd161..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv deleted file mode 100644 index 09b1c9cf2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" -2016-12,1,1,1,1,1,1 -2017-01,0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv deleted file mode 100644 index 993722d3e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of Users: Active" -2016-12,1 -2017-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv deleted file mode 100644 index 9f20d453b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv deleted file mode 100644 index 9f20d453b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv deleted file mode 100644 index dbf7f88010..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" -"2016 Q4",1,1,1,1,1,1 -"2017 Q1",0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv deleted file mode 100644 index baa8eb872e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of Users: Active" -"2016 Q4",1 -"2017 Q1",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv deleted file mode 100644 index 65decacfd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv deleted file mode 100644 index 65decacfd7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[allga] Number of Users: Active","[alpsw] Number of Users: Active","[aytinis] Number of Users: Active","[blhbu] Number of Users: Active","[boowa] Number of Users: Active","[caspl] Number of Users: Active","[categ] Number of Users: Active","[chaff] Number of Users: Active","[coot1] Number of Users: Active","[corsh] Number of Users: Active","[crama] Number of Users: Active","[crane] Number of Users: Active","[dunli] Number of Users: Active","[duswa] Number of Users: Active","[egygo] Number of Users: Active","[evegr] Number of Users: Active","[ferdu] Number of Users: Active","[field] Number of Users: Active","[garwa] Number of Users: Active","[gloib] Number of Users: Active","[grath] Number of Users: Active","[grgsh] Number of Users: Active","[henha] Number of Users: Active","[honbu] Number of Users: Active","[hoowa] Number of Users: Active","[jackd] Number of Users: Active","[lanhach] Number of Users: Active","[lapwi] Number of Users: Active","[legsh] Number of Users: Active","[lesre] Number of Users: Active","[litau] Number of Users: Active","[litst] Number of Users: Active","[mamwa] Number of Users: Active","[meapi] Number of Users: Active","[misth] Number of Users: Active","[moorh] Number of Users: Active","[noror] Number of Users: Active","[ovenb] Number of Users: Active","[pereg] Number of Users: Active","[pibgr] Number of Users: Active","[proubis] Number of Users: Active","[reebu] Number of Users: Active","[relpa] Number of Users: Active","[ribgu] Number of Users: Active","[rolle] Number of Users: Active","[sancr] Number of Users: Active","[sante] Number of Users: Active","[sarwa] Number of Users: Active","[savsp] Number of Users: Active","[shag1] Number of Users: Active","[shttr] Number of Users: Active","[siski] Number of Users: Active","[smew1] Number of Users: Active","[sogsh] Number of Users: Active","[sposa] Number of Users: Active","[swath] Number of Users: Active","[turdo] Number of Users: Active","[velsc] Number of Users: Active","[vertera] Number of Users: Active","[whimb] Number of Users: Active","[whtpl] Number of Users: Active","[whtsp] Number of Users: Active","[ybsbu] Number of Users: Active","[yebbu] Number of Users: Active","[yebsa] Number of Users: Active","[yebwa] Number of Users: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv deleted file mode 100644 index 15be4617d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] Number of Users: Active","[ovenb] Number of Users: Active","[sante] Number of Users: Active","[savsp] Number of Users: Active","[swath] Number of Users: Active","[ybsbu] Number of Users: Active" -2016,1,1,1,1,1,1 -2017,0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv deleted file mode 100644 index 0037fbb594..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_person_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Users: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of Users: Active" -2016,1 -2017,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv deleted file mode 100644 index 06da745287..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv deleted file mode 100644 index 62a470f56b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv deleted file mode 100644 index 06da745287..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv deleted file mode 100644 index 62a470f56b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 06da745287..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 62a470f56b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv deleted file mode 100644 index 5532f4f8e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -caspl,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grath,1 -grgsh,1 -henha,1 -honbu,1 -hoowa,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -litst,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -reebu,1 -relpa,1 -ribgu,1 -rolle,1 -sancr,1 -sante,1 -sarwa,1 -savsp,1 -shag1,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -swath,1 -turdo,1 -velsc,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -ybsbu,1 -yebbu,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv deleted file mode 100644 index 06da745287..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -litst,1 -ovenb,1 -sante,1 -savsp,1 -swath,1 -ybsbu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv deleted file mode 100644 index 62a470f56b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of PIs: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv deleted file mode 100644 index 7872b0f233..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 -2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 -2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 -2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 -2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 -2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv deleted file mode 100644 index 7872b0f233..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0 -2016-12-28,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0 -2016-12-29,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,1 -2016-12-30,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 -2016-12-31,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0 -2017-01-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv deleted file mode 100644 index c07f29e752..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" -2016-12-23,0,0,1,0,0,0 -2016-12-24,0,0,1,0,0,0 -2016-12-25,0,0,1,0,0,0 -2016-12-26,0,0,1,0,0,0 -2016-12-27,0,1,1,0,0,1 -2016-12-28,0,1,1,0,0,1 -2016-12-29,0,1,1,0,1,1 -2016-12-30,1,1,1,1,1,1 -2016-12-31,1,1,0,1,1,1 -2017-01-01,0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv deleted file mode 100644 index cdea6b0680..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of PIs: Active" -2016-12-30,1 -2016-12-31,1 -2017-01-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv deleted file mode 100644 index 04b95cfe7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv deleted file mode 100644 index 04b95cfe7d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -2016-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv deleted file mode 100644 index 22555f68ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" -2016-12,1,1,1,1,1,1 -2017-01,0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv deleted file mode 100644 index 3f71907e9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of PIs: Active" -2016-12,1 -2017-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv deleted file mode 100644 index 9065c92b3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv deleted file mode 100644 index 9065c92b3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -"2016 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 9de5a0dccf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" -"2016 Q4",1,1,1,1,1,1 -"2017 Q1",0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv deleted file mode 100644 index eeec7d3bae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of PIs: Active" -"2016 Q4",1 -"2017 Q1",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv deleted file mode 100644 index dd1fbfd8b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv deleted file mode 100644 index dd1fbfd8b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[allga] Number of PIs: Active","[alpsw] Number of PIs: Active","[aytinis] Number of PIs: Active","[blhbu] Number of PIs: Active","[boowa] Number of PIs: Active","[caspl] Number of PIs: Active","[categ] Number of PIs: Active","[chaff] Number of PIs: Active","[coot1] Number of PIs: Active","[corsh] Number of PIs: Active","[crama] Number of PIs: Active","[crane] Number of PIs: Active","[dunli] Number of PIs: Active","[duswa] Number of PIs: Active","[egygo] Number of PIs: Active","[evegr] Number of PIs: Active","[ferdu] Number of PIs: Active","[field] Number of PIs: Active","[garwa] Number of PIs: Active","[gloib] Number of PIs: Active","[grath] Number of PIs: Active","[grgsh] Number of PIs: Active","[henha] Number of PIs: Active","[honbu] Number of PIs: Active","[hoowa] Number of PIs: Active","[jackd] Number of PIs: Active","[lanhach] Number of PIs: Active","[lapwi] Number of PIs: Active","[legsh] Number of PIs: Active","[lesre] Number of PIs: Active","[litau] Number of PIs: Active","[litst] Number of PIs: Active","[mamwa] Number of PIs: Active","[meapi] Number of PIs: Active","[misth] Number of PIs: Active","[moorh] Number of PIs: Active","[noror] Number of PIs: Active","[ovenb] Number of PIs: Active","[pereg] Number of PIs: Active","[pibgr] Number of PIs: Active","[proubis] Number of PIs: Active","[reebu] Number of PIs: Active","[relpa] Number of PIs: Active","[ribgu] Number of PIs: Active","[rolle] Number of PIs: Active","[sancr] Number of PIs: Active","[sante] Number of PIs: Active","[sarwa] Number of PIs: Active","[savsp] Number of PIs: Active","[shag1] Number of PIs: Active","[shttr] Number of PIs: Active","[siski] Number of PIs: Active","[smew1] Number of PIs: Active","[sogsh] Number of PIs: Active","[sposa] Number of PIs: Active","[swath] Number of PIs: Active","[turdo] Number of PIs: Active","[velsc] Number of PIs: Active","[vertera] Number of PIs: Active","[whimb] Number of PIs: Active","[whtpl] Number of PIs: Active","[whtsp] Number of PIs: Active","[ybsbu] Number of PIs: Active","[yebbu] Number of PIs: Active","[yebsa] Number of PIs: Active","[yebwa] Number of PIs: Active" -2016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv deleted file mode 100644 index f2e7d67241..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] Number of PIs: Active","[ovenb] Number of PIs: Active","[sante] Number of PIs: Active","[savsp] Number of PIs: Active","[swath] Number of PIs: Active","[ybsbu] Number of PIs: Active" -2016,1,1,1,1,1,1 -2017,0,1,0,1,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv deleted file mode 100644 index d299401173..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_pi_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of PIs: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of PIs: Active" -2016,1 -2017,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv deleted file mode 100644 index 527b87086f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -litst,2 -swath,2 -ybsbu,2 -ovenb,1 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv deleted file mode 100644 index 9d597b6d57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv deleted file mode 100644 index 527b87086f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -litst,2 -swath,2 -ybsbu,2 -ovenb,1 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv deleted file mode 100644 index 9d597b6d57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 527b87086f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -litst,2 -swath,2 -ybsbu,2 -ovenb,1 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 9d597b6d57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv deleted file mode 100644 index 83da1478b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -honbu,5 -reebu,3 -sancr,3 -caspl,2 -grath,2 -lanhach,2 -litst,2 -sarwa,2 -shag1,2 -swath,2 -velsc,2 -ybsbu,2 -yebbu,2 -allga,1 -alpsw,1 -aytinis,1 -blhbu,1 -boowa,1 -categ,1 -chaff,1 -coot1,1 -corsh,1 -crama,1 -crane,1 -dunli,1 -duswa,1 -egygo,1 -evegr,1 -ferdu,1 -field,1 -garwa,1 -gloib,1 -grgsh,1 -henha,1 -hoowa,1 -jackd,1 -lapwi,1 -legsh,1 -lesre,1 -litau,1 -mamwa,1 -meapi,1 -misth,1 -moorh,1 -noror,1 -ovenb,1 -pereg,1 -pibgr,1 -proubis,1 -relpa,1 -ribgu,1 -rolle,1 -sante,1 -savsp,1 -shttr,1 -siski,1 -smew1,1 -sogsh,1 -sposa,1 -turdo,1 -vertera,1 -whimb,1 -whtpl,1 -whtsp,1 -yebsa,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv deleted file mode 100644 index 527b87086f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -litst,2 -swath,2 -ybsbu,2 -ovenb,1 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv deleted file mode 100644 index 9d597b6d57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Resources: Active" -whimb,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv deleted file mode 100644 index fb8e4593a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-27,1,2,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0 -2016-12-28,1,2,2,0,0,0,0,1,2,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,0 -2016-12-29,4,3,3,0,1,1,0,1,2,2,1,2,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1 -2016-12-30,5,3,3,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1 -2016-12-31,5,3,2,1,2,2,1,2,2,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0 -2017-01-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv deleted file mode 100644 index fb8e4593a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0 -2016-12-27,1,2,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0 -2016-12-28,1,2,2,0,0,0,0,1,2,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,0 -2016-12-29,4,3,3,0,1,1,0,1,2,2,1,2,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1 -2016-12-30,5,3,3,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1 -2016-12-31,5,3,2,1,2,2,1,2,2,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0 -2017-01-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv deleted file mode 100644 index 7dfb9c6137..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" -2016-12-23,0,0,0,0,1,0 -2016-12-24,0,0,0,0,1,0 -2016-12-25,0,0,0,0,1,0 -2016-12-26,0,0,0,0,1,0 -2016-12-27,0,0,1,1,1,0 -2016-12-28,0,0,1,1,1,0 -2016-12-29,0,2,2,1,1,0 -2016-12-30,2,2,2,1,1,1 -2016-12-31,1,1,1,1,0,1 -2017-01-01,0,0,0,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv deleted file mode 100644 index 6e2b02839f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of Resources: Active" -2016-12-30,1 -2016-12-31,1 -2017-01-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv deleted file mode 100644 index fa3301bb97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -2016-12,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv deleted file mode 100644 index fa3301bb97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -2016-12,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv deleted file mode 100644 index 6b2ca1130f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" -2016-12,2,2,2,1,1,1 -2017-01,0,0,0,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv deleted file mode 100644 index 85a3fc8bb9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of Resources: Active" -2016-12,1 -2017-01,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv deleted file mode 100644 index a129d24534..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -"2016 Q4",5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv deleted file mode 100644 index a129d24534..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -"2016 Q4",5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 1c4352c1de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" -"2016 Q4",2,2,2,1,1,1 -"2017 Q1",0,0,0,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv deleted file mode 100644 index 48c11eff27..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of Resources: Active" -"2016 Q4",1 -"2017 Q1",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv deleted file mode 100644 index c638f266fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -2016,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv deleted file mode 100644 index c638f266fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Resources: Active","[reebu] Number of Resources: Active","[sancr] Number of Resources: Active","[caspl] Number of Resources: Active","[grath] Number of Resources: Active","[lanhach] Number of Resources: Active","[litst] Number of Resources: Active","[sarwa] Number of Resources: Active","[shag1] Number of Resources: Active","[swath] Number of Resources: Active","[velsc] Number of Resources: Active","[ybsbu] Number of Resources: Active","[yebbu] Number of Resources: Active","[allga] Number of Resources: Active","[alpsw] Number of Resources: Active","[aytinis] Number of Resources: Active","[blhbu] Number of Resources: Active","[boowa] Number of Resources: Active","[categ] Number of Resources: Active","[chaff] Number of Resources: Active","[coot1] Number of Resources: Active","[corsh] Number of Resources: Active","[crama] Number of Resources: Active","[crane] Number of Resources: Active","[dunli] Number of Resources: Active","[duswa] Number of Resources: Active","[egygo] Number of Resources: Active","[evegr] Number of Resources: Active","[ferdu] Number of Resources: Active","[field] Number of Resources: Active","[garwa] Number of Resources: Active","[gloib] Number of Resources: Active","[grgsh] Number of Resources: Active","[henha] Number of Resources: Active","[hoowa] Number of Resources: Active","[jackd] Number of Resources: Active","[lapwi] Number of Resources: Active","[legsh] Number of Resources: Active","[lesre] Number of Resources: Active","[litau] Number of Resources: Active","[mamwa] Number of Resources: Active","[meapi] Number of Resources: Active","[misth] Number of Resources: Active","[moorh] Number of Resources: Active","[noror] Number of Resources: Active","[ovenb] Number of Resources: Active","[pereg] Number of Resources: Active","[pibgr] Number of Resources: Active","[proubis] Number of Resources: Active","[relpa] Number of Resources: Active","[ribgu] Number of Resources: Active","[rolle] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active","[shttr] Number of Resources: Active","[siski] Number of Resources: Active","[smew1] Number of Resources: Active","[sogsh] Number of Resources: Active","[sposa] Number of Resources: Active","[turdo] Number of Resources: Active","[vertera] Number of Resources: Active","[whimb] Number of Resources: Active","[whtpl] Number of Resources: Active","[whtsp] Number of Resources: Active","[yebsa] Number of Resources: Active","[yebwa] Number of Resources: Active" -2016,5,3,3,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,5,2,0,2,1,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv deleted file mode 100644 index c62971ab67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] Number of Resources: Active","[swath] Number of Resources: Active","[ybsbu] Number of Resources: Active","[ovenb] Number of Resources: Active","[sante] Number of Resources: Active","[savsp] Number of Resources: Active" -2016,2,2,2,1,1,1 -2017,0,0,0,1,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv deleted file mode 100644 index 73bbf8aa6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/active_resource_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Resources: Active: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of Resources: Active" -2016,1 -2017,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv deleted file mode 100644 index 48836a8421..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv deleted file mode 100644 index 48836a8421..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv deleted file mode 100644 index 5cc9284b5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv deleted file mode 100644 index 6c1bb27046..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv deleted file mode 100644 index 27941d33dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv deleted file mode 100644 index 27941d33dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv deleted file mode 100644 index 08da1d77b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv deleted file mode 100644 index 79707b1866..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 27941d33dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 27941d33dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index 08da1d77b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 79707b1866..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv deleted file mode 100644 index 27941d33dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv deleted file mode 100644 index 27941d33dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv deleted file mode 100644 index 08da1d77b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv deleted file mode 100644 index 79707b1866..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv deleted file mode 100644 index 8a7d78510c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv deleted file mode 100644 index 8a7d78510c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv deleted file mode 100644 index 317848889f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -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 ---------- -Day,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" -2016-12-23,0,0,8.60361111,0,0,0 -2016-12-24,0,0,24.00000000,0,0,0 -2016-12-25,0,0,24.00000000,0,0,0 -2016-12-26,0,0,24.00000000,0,0,0 -2016-12-27,78.98666667,136.79555556,24.00000000,0,0,0 -2016-12-28,384.00000000,384.00000000,24.00000000,0,0,0 -2016-12-29,384.00000000,106.45155556,19.56861111,35.48623932,0,0 -2016-12-30,384.00000000,164.41962963,3.56833333,4.14055945,5.65000000,0.02760417 -2016-12-31,265.13155556,130.38518519,0,1114.52444444,2.45222222,0.02281046 -2017-01-01,371.58666667,0,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv deleted file mode 100644 index 7780472e7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] CPU Hours: Per Job" -2016-12-30,683.12000000 -2016-12-31,261.10111111 -2017-01-01,269.34857143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv deleted file mode 100644 index 3d1e9369c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv deleted file mode 100644 index 3d1e9369c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv deleted file mode 100644 index 6cbd5a4d56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Month,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" -2016-12,1249.92088889,405.12111111,87.43875000,6.35072152,4.48717172,0.02434444 -2017-01,371.58666667,0,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv deleted file mode 100644 index 335068f729..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] CPU Hours: Per Job" -2016-12,337.00333333 -2017-01,269.34857143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index b1f754948c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index b1f754948c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index da4aab0554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Quarter,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" -"2016 Q4",1249.92088889,405.12111111,87.43875000,6.35072152,4.48717172,0.02434444 -"2017 Q1",371.58666667,0,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 02aea6ab49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] CPU Hours: Per Job" -"2016 Q4",337.00333333 -"2017 Q1",269.34857143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv deleted file mode 100644 index 3ea7200f2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv deleted file mode 100644 index 3ea7200f2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv deleted file mode 100644 index 060d0cb012..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Year,"[ovenb] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[savsp] CPU Hours: Per Job" -2016,1249.92088889,405.12111111,87.43875000,6.35072152,4.48717172,0.02434444 -2017,371.58666667,0,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv deleted file mode 100644 index 0b61dfcd7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_cpu_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] CPU Hours: Per Job" -2016,337.00333333 -2017,269.34857143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv deleted file mode 100644 index 9e7f18816e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU 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","GPU Hours: Per Job" -litst,0.00000000 -ovenb,0.00000000 -sante,0.00000000 -savsp,0.00000000 -swath,0.00000000 -ybsbu,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv deleted file mode 100644 index 88bc1a1f9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -whimb,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv deleted file mode 100644 index 9e7f18816e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU 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","GPU Hours: Per Job" -litst,0.00000000 -ovenb,0.00000000 -sante,0.00000000 -savsp,0.00000000 -swath,0.00000000 -ybsbu,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv deleted file mode 100644 index 88bc1a1f9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -whimb,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index 9e7f18816e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU 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","GPU Hours: Per Job" -litst,0.00000000 -ovenb,0.00000000 -sante,0.00000000 -savsp,0.00000000 -swath,0.00000000 -ybsbu,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 88bc1a1f9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -whimb,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv deleted file mode 100644 index 4a1af16f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -noror,16.89709259 -allga,0.00000000 -alpsw,0.00000000 -aytinis,0.00000000 -blhbu,0.00000000 -boowa,0.00000000 -caspl,0.00000000 -categ,0.00000000 -chaff,0.00000000 -coot1,0.00000000 -corsh,0.00000000 -crama,0.00000000 -crane,0.00000000 -dunli,0.00000000 -duswa,0.00000000 -egygo,0.00000000 -evegr,0.00000000 -ferdu,0.00000000 -field,0.00000000 -garwa,0.00000000 -gloib,0.00000000 -grath,0.00000000 -grgsh,0.00000000 -henha,0.00000000 -honbu,0.00000000 -hoowa,0.00000000 -jackd,0.00000000 -lanhach,0.00000000 -lapwi,0.00000000 -legsh,0.00000000 -lesre,0.00000000 -litau,0.00000000 -litst,0.00000000 -mamwa,0.00000000 -meapi,0.00000000 -misth,0.00000000 -moorh,0.00000000 -ovenb,0.00000000 -pereg,0.00000000 -pibgr,0.00000000 -proubis,0.00000000 -reebu,0.00000000 -relpa,0.00000000 -ribgu,0.00000000 -rolle,0.00000000 -sancr,0.00000000 -sante,0.00000000 -sarwa,0.00000000 -savsp,0.00000000 -shag1,0.00000000 -shttr,0.00000000 -siski,0.00000000 -smew1,0.00000000 -sogsh,0.00000000 -sposa,0.00000000 -swath,0.00000000 -turdo,0.00000000 -velsc,0.00000000 -vertera,0.00000000 -whimb,0.00000000 -whtpl,0.00000000 -whtsp,0.00000000 -ybsbu,0.00000000 -yebbu,0.00000000 -yebsa,0.00000000 -yebwa,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv deleted file mode 100644 index 9e7f18816e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU 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","GPU Hours: Per Job" -litst,0.00000000 -ovenb,0.00000000 -sante,0.00000000 -savsp,0.00000000 -swath,0.00000000 -ybsbu,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv deleted file mode 100644 index 88bc1a1f9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Per Job" -whimb,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv deleted file mode 100644 index 5aca62d469..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-27,48.00000000,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0 -2016-12-28,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0 -2016-12-29,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,9.60000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 -2017-01-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv deleted file mode 100644 index 5aca62d469..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 -2016-12-27,48.00000000,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0 -2016-12-28,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0 -2016-12-29,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,9.60000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 -2017-01-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv deleted file mode 100644 index 7aff1c1554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" -2016-12-23,0,0,0.00000000,0,0,0 -2016-12-24,0,0,0.00000000,0,0,0 -2016-12-25,0,0,0.00000000,0,0,0 -2016-12-26,0,0,0.00000000,0,0,0 -2016-12-27,0,0.00000000,0.00000000,0,0,0.00000000 -2016-12-28,0,0.00000000,0.00000000,0,0,0.00000000 -2016-12-29,0,0.00000000,0.00000000,0,0.00000000,0.00000000 -2016-12-30,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000 -2017-01-01,0,0.00000000,0,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv deleted file mode 100644 index 545369988b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] GPU Hours: Per Job" -2016-12-30,0.00000000 -2016-12-31,0.00000000 -2017-01-01,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv deleted file mode 100644 index 4b65e05273..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv deleted file mode 100644 index 4b65e05273..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv deleted file mode 100644 index b8c1500974..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" -2016-12,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0,0.00000000,0,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv deleted file mode 100644 index aabc89051c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] GPU Hours: Per Job" -2016-12,0.00000000 -2017-01,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 88eeafe40a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 88eeafe40a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 80bfadb6b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" -"2016 Q4",0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0,0.00000000,0,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 7ebd1ff835..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] GPU Hours: Per Job" -"2016 Q4",0.00000000 -"2017 Q1",0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv deleted file mode 100644 index a1f70accff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv deleted file mode 100644 index a1f70accff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" -2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv deleted file mode 100644 index 341ab58e81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" -2016,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0,0.00000000,0,0.00000000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv deleted file mode 100644 index 88ee293a67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] GPU Hours: Per Job" -2016,0.00000000 -2017,0.00000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv deleted file mode 100644 index e14d79be2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -litst,0.0000,0 -ovenb,0.0000,0 -sante,0.0000,0 -savsp,0.0000,0 -swath,0.0000,0 -ybsbu,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv deleted file mode 100644 index 9e3b60de48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -whimb,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv deleted file mode 100644 index e14d79be2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -litst,0.0000,0 -ovenb,0.0000,0 -sante,0.0000,0 -savsp,0.0000,0 -swath,0.0000,0 -ybsbu,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv deleted file mode 100644 index 9e3b60de48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -whimb,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv deleted file mode 100644 index e14d79be2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -litst,0.0000,0 -ovenb,0.0000,0 -sante,0.0000,0 -savsp,0.0000,0 -swath,0.0000,0 -ybsbu,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv deleted file mode 100644 index 9e3b60de48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -whimb,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv deleted file mode 100644 index c2c6f87eac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -noror,0.1333,0.09108400682479477 -allga,0.0000,0 -alpsw,0.0000,0 -aytinis,0.0000,0 -blhbu,0.0000,0 -boowa,0.0000,0 -caspl,0.0000,0 -categ,0.0000,0 -chaff,0.0000,0 -coot1,0.0000,0 -corsh,0.0000,0 -crama,0.0000,0 -crane,0.0000,0 -dunli,0.0000,0 -duswa,0.0000,0 -egygo,0.0000,0 -evegr,0.0000,0 -ferdu,0.0000,0 -field,0.0000,0 -garwa,0.0000,0 -gloib,0.0000,0 -grath,0.0000,0 -grgsh,0.0000,0 -henha,0.0000,0 -honbu,0.0000,0 -hoowa,0.0000,0 -jackd,0.0000,0 -lanhach,0.0000,0 -lapwi,0.0000,0 -legsh,0.0000,0 -lesre,0.0000,0 -litau,0.0000,0 -litst,0.0000,0 -mamwa,0.0000,0 -meapi,0.0000,0 -misth,0.0000,0 -moorh,0.0000,0 -ovenb,0.0000,0 -pereg,0.0000,0 -pibgr,0.0000,0 -proubis,0.0000,0 -reebu,0.0000,0 -relpa,0.0000,0 -ribgu,0.0000,0 -rolle,0.0000,0 -sancr,0.0000,0 -sante,0.0000,0 -sarwa,0.0000,0 -savsp,0.0000,0 -shag1,0.0000,0 -shttr,0.0000,0 -siski,0.0000,0 -smew1,0.0000,0 -sogsh,0.0000,0 -sposa,0.0000,0 -swath,0.0000,0 -turdo,0.0000,0 -velsc,0.0000,0 -vertera,0.0000,0 -whimb,0.0000,0 -whtpl,0.0000,0 -whtsp,0.0000,0 -ybsbu,0.0000,0 -yebbu,0.0000,0 -yebsa,0.0000,0 -yebwa,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv deleted file mode 100644 index e14d79be2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Count: 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","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -litst,0.0000,0 -ovenb,0.0000,0 -sante,0.0000,0 -savsp,0.0000,0 -swath,0.0000,0 -ybsbu,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv deleted file mode 100644 index 9e3b60de48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" -whimb,0.0000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv deleted file mode 100644 index af6d41263d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -2016-12-22,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,2.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 -2016-12-29,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.4000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv deleted file mode 100644 index af6d41263d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -2016-12-22,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,2.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,2.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 -2016-12-29,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.4000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv deleted file mode 100644 index b5945dfa49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" -2016-12-23,0,0,0.0000,0,0,0 -2016-12-24,0,0,0.0000,0,0,0 -2016-12-25,0,0,0.0000,0,0,0 -2016-12-26,0,0,0.0000,0,0,0 -2016-12-27,0,0.0000,0.0000,0,0,0.0000 -2016-12-28,0,0.0000,0.0000,0,0,0.0000 -2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 -2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 -2017-01-01,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv deleted file mode 100644 index e17e8182e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] GPU Count: Per Job" -2016-12-30,0.0000 -2016-12-31,0.0000 -2017-01-01,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv deleted file mode 100644 index b1f0032bb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv deleted file mode 100644 index b1f0032bb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv deleted file mode 100644 index ae71ea2d56..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" -2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv deleted file mode 100644 index 0f82fff9ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] GPU Count: Per Job" -2016-12,0.0000 -2017-01,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv deleted file mode 100644 index 2fbf6f044a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv deleted file mode 100644 index 2fbf6f044a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv deleted file mode 100644 index cfbc2defef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv deleted file mode 100644 index 661ea72105..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] GPU Count: Per Job" -"2016 Q4",0.0000 -"2017 Q1",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv deleted file mode 100644 index 0f46e1d057..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv deleted file mode 100644 index 0f46e1d057..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" -2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv deleted file mode 100644 index f9f3674a30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" -2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv deleted file mode 100644 index f01135e4e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_gpus/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Count: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] GPU Count: Per Job" -2016,0.0000 -2017,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv deleted file mode 100644 index 0b495970f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" -swath,45.0823 -ovenb,16.0000 -litst,13.7425 -ybsbu,11.7604 -sante,1.0000 -savsp,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv deleted file mode 100644 index 3f1cedc0f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -whimb,62.4269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv deleted file mode 100644 index 0b495970f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" -swath,45.0823 -ovenb,16.0000 -litst,13.7425 -ybsbu,11.7604 -sante,1.0000 -savsp,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv deleted file mode 100644 index 3f1cedc0f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -whimb,62.4269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index 0b495970f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" -swath,45.0823 -ovenb,16.0000 -litst,13.7425 -ybsbu,11.7604 -sante,1.0000 -savsp,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 3f1cedc0f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -whimb,62.4269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv deleted file mode 100644 index 0305fb3315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -duswa,326.9898 -aytinis,186.5633 -yebwa,160.0000 -velsc,142.8578 -egygo,112.0000 -allga,108.0000 -crane,96.0000 -meapi,96.0000 -smew1,72.0000 -chaff,64.0000 -whimb,62.4269 -siski,62.4000 -alpsw,60.5835 -ferdu,60.0000 -pereg,60.0000 -dunli,57.7053 -evegr,56.0000 -rolle,55.6816 -sarwa,53.2119 -swath,45.0823 -yebbu,39.9999 -vertera,29.2166 -reebu,25.1805 -sancr,25.0565 -shag1,24.1804 -whtsp,23.2563 -crama,20.0000 -gloib,20.0000 -lanhach,18.6116 -ovenb,16.0000 -relpa,16.0000 -garwa,13.8060 -litst,13.7425 -caspl,12.0000 -misth,12.0000 -sposa,12.0000 -whtpl,12.0000 -noror,11.8318 -ybsbu,11.7604 -honbu,10.5343 -boowa,10.0459 -litau,9.9744 -turdo,9.1143 -hoowa,8.6041 -shttr,8.0019 -corsh,8.0000 -field,8.0000 -grath,4.5532 -lesre,4.0000 -yebsa,4.0000 -blhbu,1.0000 -categ,1.0000 -coot1,1.0000 -grgsh,1.0000 -henha,1.0000 -jackd,1.0000 -lapwi,1.0000 -legsh,1.0000 -mamwa,1.0000 -moorh,1.0000 -pibgr,1.0000 -proubis,1.0000 -ribgu,1.0000 -sante,1.0000 -savsp,1.0000 -sogsh,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv deleted file mode 100644 index 0b495970f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (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: Weighted By CPU Hours (Core Count)" -swath,45.0823 -ovenb,16.0000 -litst,13.7425 -ybsbu,11.7604 -sante,1.0000 -savsp,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv deleted file mode 100644 index 3f1cedc0f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By CPU Hours (Core Count)" -whimb,62.4269 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv deleted file mode 100644 index bc5c3e0d3d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (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,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 -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,0,12.0000,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,0,12.0000,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,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,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,24.0000,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,12.0000,0,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,1.0000,0,0 -2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,72.0000,0,0,0,0,0,0,0,0,0,0,26.0962,32.0000,0,0,0,0,0,16.0000,0,16.0000,0,0,0,0,0,12.0000,16.0000,1.0000,12.0000,0,12.0000,0,8.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 -2016-12-28,0,186.6783,0,144.0000,0,0,0,96.0000,0,64.0000,0,65.7129,0,0,0,0,0,0,32.0000,0,0,0,29.7503,26.1953,22.7149,0,0,20.0000,0,16.0000,0,16.0000,0,0,12.0000,0,12.0000,12.0000,16.0000,1.0000,12.0000,0,12.0000,8.0000,8.0000,0,0,0,0,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,186.5631,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,0,62.4000,0,60.0000,60.0000,0,56.0000,0,32.0000,62.5102,40.0000,0,29.9515,29.0661,25.2228,0,0,20.0000,1.0000,16.0000,0,16.0000,0,0,12.0000,12.0000,12.0000,12.0000,13.7716,8.9965,12.0000,5.0000,11.1580,8.0000,8.0000,8.0000,0,2.0000,4.0000,4.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,320.0517,186.5631,160.0000,125.4037,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,72.0000,49.8936,53.8643,60.0000,60.0000,65.8038,56.0000,45.1553,46.9959,35.2172,39.9998,41.1565,23.7785,21.6195,22.6717,0,20.0000,20.0000,1.2886,16.0000,16.0000,16.0000,13.1826,0,12.0000,12.0000,12.0000,12.0000,9.9283,10.1263,2.3934,5.0000,8.1287,8.4439,8.0083,8.0000,8.0000,11.1559,4.0000,4.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,1.0000 -2016-12-31,336.0000,186.2295,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,61.2589,48.0000,64.0000,60.0000,60.0000,95.7214,0,59.2199,72.7559,64.0000,40.0000,24.3207,11.7947,16.5130,25.4705,23.4747,0,0,19.9996,16.0000,0,11.9114,16.0000,12.0000,12.0000,12.0000,0,12.1378,8.0000,10.8526,1.0000,11.1429,8.0000,9.8229,8.0000,8.0000,8.0000,2.0000,4.0000,4.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.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv deleted file mode 100644 index bc5c3e0d3d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (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,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 -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,0,12.0000,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,0,12.0000,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,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,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,24.0000,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,12.0000,0,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,1.0000,0,0 -2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,72.0000,0,0,0,0,0,0,0,0,0,0,26.0962,32.0000,0,0,0,0,0,16.0000,0,16.0000,0,0,0,0,0,12.0000,16.0000,1.0000,12.0000,0,12.0000,0,8.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 -2016-12-28,0,186.6783,0,144.0000,0,0,0,96.0000,0,64.0000,0,65.7129,0,0,0,0,0,0,32.0000,0,0,0,29.7503,26.1953,22.7149,0,0,20.0000,0,16.0000,0,16.0000,0,0,12.0000,0,12.0000,12.0000,16.0000,1.0000,12.0000,0,12.0000,8.0000,8.0000,0,0,0,0,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,186.5631,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,0,62.4000,0,60.0000,60.0000,0,56.0000,0,32.0000,62.5102,40.0000,0,29.9515,29.0661,25.2228,0,0,20.0000,1.0000,16.0000,0,16.0000,0,0,12.0000,12.0000,12.0000,12.0000,13.7716,8.9965,12.0000,5.0000,11.1580,8.0000,8.0000,8.0000,0,2.0000,4.0000,4.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,320.0517,186.5631,160.0000,125.4037,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,72.0000,49.8936,53.8643,60.0000,60.0000,65.8038,56.0000,45.1553,46.9959,35.2172,39.9998,41.1565,23.7785,21.6195,22.6717,0,20.0000,20.0000,1.2886,16.0000,16.0000,16.0000,13.1826,0,12.0000,12.0000,12.0000,12.0000,9.9283,10.1263,2.3934,5.0000,8.1287,8.4439,8.0083,8.0000,8.0000,11.1559,4.0000,4.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,1.0000 -2016-12-31,336.0000,186.2295,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,61.2589,48.0000,64.0000,60.0000,60.0000,95.7214,0,59.2199,72.7559,64.0000,40.0000,24.3207,11.7947,16.5130,25.4705,23.4747,0,0,19.9996,16.0000,0,11.9114,16.0000,12.0000,12.0000,12.0000,0,12.1378,8.0000,10.8526,1.0000,11.1429,8.0000,9.8229,8.0000,8.0000,8.0000,2.0000,4.0000,4.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.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv deleted file mode 100644 index 4b70a50676..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-23,0,0,0,0,1.0000,0 -2016-12-24,0,0,0,0,1.0000,0 -2016-12-25,0,0,0,0,1.0000,0 -2016-12-26,0,0,0,0,1.0000,0 -2016-12-27,0,16.0000,0,16.0000,1.0000,0 -2016-12-28,0,16.0000,0,16.0000,1.0000,0 -2016-12-29,62.5102,16.0000,0,13.7716,1.0000,0 -2016-12-30,35.2172,16.0000,13.1826,9.9283,1.0000,1.0000 -2016-12-31,64.0000,16.0000,16.0000,8.0000,0,1.0000 -2017-01-01,0,16.0000,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv deleted file mode 100644 index a86e846e66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" -2016-12-30,72.0000 -2016-12-31,61.2589 -2017-01-01,60.4143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv deleted file mode 100644 index 050affce86..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -2017-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv deleted file mode 100644 index 050affce86..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -2017-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv deleted file mode 100644 index 05293fe6ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,45.0823,16.0000,13.7425,11.7604,1.0000,1.0000 -2017-01,0,16.0000,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv deleted file mode 100644 index 3ef8580d79..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" -2016-12,63.6781 -2017-01,60.4143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 8f9ff489cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -"2017 Q1",0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 8f9ff489cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -"2017 Q1",0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index d99828ebef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",45.0823,16.0000,13.7425,11.7604,1.0000,1.0000 -"2017 Q1",0,16.0000,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index f329bd3b6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" -"2016 Q4",63.6781 -"2017 Q1",60.4143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv deleted file mode 100644 index ac97f4ef4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" -2016,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -2017,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv deleted file mode 100644 index ac97f4ef4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[duswa] Job Size: Weighted By CPU Hours (Core Count)","[aytinis] Job Size: Weighted By CPU Hours (Core Count)","[yebwa] Job Size: Weighted By CPU Hours (Core Count)","[velsc] Job Size: Weighted By CPU Hours (Core Count)","[egygo] Job Size: Weighted By CPU Hours (Core Count)","[allga] Job Size: Weighted By CPU Hours (Core Count)","[crane] Job Size: Weighted By CPU Hours (Core Count)","[meapi] Job Size: Weighted By CPU Hours (Core Count)","[smew1] Job Size: Weighted By CPU Hours (Core Count)","[chaff] Job Size: Weighted By CPU Hours (Core Count)","[whimb] Job Size: Weighted By CPU Hours (Core Count)","[siski] Job Size: Weighted By CPU Hours (Core Count)","[alpsw] Job Size: Weighted By CPU Hours (Core Count)","[ferdu] Job Size: Weighted By CPU Hours (Core Count)","[pereg] Job Size: Weighted By CPU Hours (Core Count)","[dunli] Job Size: Weighted By CPU Hours (Core Count)","[evegr] Job Size: Weighted By CPU Hours (Core Count)","[rolle] Job Size: Weighted By CPU Hours (Core Count)","[sarwa] Job Size: Weighted By CPU Hours (Core Count)","[swath] Job Size: Weighted By CPU Hours (Core Count)","[yebbu] Job Size: Weighted By CPU Hours (Core Count)","[vertera] Job Size: Weighted By CPU Hours (Core Count)","[reebu] Job Size: Weighted By CPU Hours (Core Count)","[sancr] Job Size: Weighted By CPU Hours (Core Count)","[shag1] Job Size: Weighted By CPU Hours (Core Count)","[whtsp] Job Size: Weighted By CPU Hours (Core Count)","[crama] Job Size: Weighted By CPU Hours (Core Count)","[gloib] Job Size: Weighted By CPU Hours (Core Count)","[lanhach] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[relpa] Job Size: Weighted By CPU Hours (Core Count)","[garwa] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[caspl] Job Size: Weighted By CPU Hours (Core Count)","[misth] Job Size: Weighted By CPU Hours (Core Count)","[sposa] Job Size: Weighted By CPU Hours (Core Count)","[whtpl] Job Size: Weighted By CPU Hours (Core Count)","[noror] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[honbu] Job Size: Weighted By CPU Hours (Core Count)","[boowa] Job Size: Weighted By CPU Hours (Core Count)","[litau] Job Size: Weighted By CPU Hours (Core Count)","[turdo] Job Size: Weighted By CPU Hours (Core Count)","[hoowa] Job Size: Weighted By CPU Hours (Core Count)","[shttr] Job Size: Weighted By CPU Hours (Core Count)","[corsh] Job Size: Weighted By CPU Hours (Core Count)","[field] Job Size: Weighted By CPU Hours (Core Count)","[grath] Job Size: Weighted By CPU Hours (Core Count)","[lesre] Job Size: Weighted By CPU Hours (Core Count)","[yebsa] Job Size: Weighted By CPU Hours (Core Count)","[blhbu] Job Size: Weighted By CPU Hours (Core Count)","[categ] Job Size: Weighted By CPU Hours (Core Count)","[coot1] Job Size: Weighted By CPU Hours (Core Count)","[grgsh] Job Size: Weighted By CPU Hours (Core Count)","[henha] Job Size: Weighted By CPU Hours (Core Count)","[jackd] Job Size: Weighted By CPU Hours (Core Count)","[lapwi] Job Size: Weighted By CPU Hours (Core Count)","[legsh] Job Size: Weighted By CPU Hours (Core Count)","[mamwa] Job Size: Weighted By CPU Hours (Core Count)","[moorh] Job Size: Weighted By CPU Hours (Core Count)","[pibgr] Job Size: Weighted By CPU Hours (Core Count)","[proubis] Job Size: Weighted By CPU Hours (Core Count)","[ribgu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)","[sogsh] Job Size: Weighted By CPU Hours (Core Count)" -2016,326.9898,186.5633,160.0000,142.8578,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,63.6781,62.4000,63.5229,60.0000,60.0000,71.6000,56.0000,57.5884,53.9203,45.0823,39.9999,28.7519,26.0677,25.0565,24.1852,23.4747,20.0000,20.0000,13.7644,16.0000,16.0000,14.3905,13.7425,12.0000,12.0000,12.0000,12.0000,12.0144,11.7604,10.5368,10.0459,9.9365,9.4561,8.6041,8.0021,8.0000,8.0000,4.5982,4.0000,4.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,1.0000 -2017,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.4143,0,32.0000,60.0000,60.0000,47.3679,0,5.0000,35.2693,0,0,32.0142,15.7307,0,24.0000,22.8322,0,0,20.0000,16.0000,0,10.2343,0,12.0000,12.0000,12.0000,0,10.5654,0,10.4877,0,12.0000,8.0000,0,8.0000,8.0000,8.0000,2.0000,4.0000,4.0000,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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv deleted file mode 100644 index f4c550ae58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Job Size: Weighted By CPU Hours (Core Count)","[ovenb] Job Size: Weighted By CPU Hours (Core Count)","[litst] Job Size: Weighted By CPU Hours (Core Count)","[ybsbu] Job Size: Weighted By CPU Hours (Core Count)","[sante] Job Size: Weighted By CPU Hours (Core Count)","[savsp] Job Size: Weighted By CPU Hours (Core Count)" -2016,45.0823,16.0000,13.7425,11.7604,1.0000,1.0000 -2017,0,16.0000,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv deleted file mode 100644 index 7795d838e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_cpu_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By CPU Hours (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Job Size: Weighted By CPU Hours (Core Count)" -2016,63.6781 -2017,60.4143 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv deleted file mode 100644 index ef0bda7e8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv deleted file mode 100644 index cc59089bdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv deleted file mode 100644 index ef0bda7e8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv deleted file mode 100644 index cc59089bdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index ef0bda7e8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index cc59089bdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv deleted file mode 100644 index 7ad23d3776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -noror,12.0000 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv deleted file mode 100644 index ef0bda7e8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU 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: Weighted By GPU Hours (GPU Count)" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv deleted file mode 100644 index cc59089bdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Weighted By GPU Hours (GPU Count)" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv deleted file mode 100644 index de2ec579c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,12.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 -2016-12-29,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv deleted file mode 100644 index de2ec579c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-22,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,12.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 -2016-12-29,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-31,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv deleted file mode 100644 index a1fe2d5597..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-23,0,0,0.0000,0,0,0 -2016-12-24,0,0,0.0000,0,0,0 -2016-12-25,0,0,0.0000,0,0,0 -2016-12-26,0,0,0.0000,0,0,0 -2016-12-27,0,0.0000,0.0000,0,0,0.0000 -2016-12-28,0,0.0000,0.0000,0,0,0.0000 -2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 -2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 -2017-01-01,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv deleted file mode 100644 index 05b0edb470..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12-30,0.0000 -2016-12-31,0.0000 -2017-01-01,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv deleted file mode 100644 index a272d18c1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv deleted file mode 100644 index a272d18c1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv deleted file mode 100644 index cc776ae42c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv deleted file mode 100644 index 239199a0d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" -2016-12,0.0000 -2017-01,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 1b33a2c520..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 1b33a2c520..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 32c87fe996..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 82a5add92d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" -"2016 Q4",0.0000 -"2017 Q1",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv deleted file mode 100644 index a56057e9be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv deleted file mode 100644 index a56057e9be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" -2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv deleted file mode 100644 index d1dfcdd995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" -2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv deleted file mode 100644 index 0b69effc48..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Weighted By GPU Hours (GPU Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" -2016,0.0000 -2017,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cd.csv deleted file mode 100644 index c71d3f384a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cs.csv deleted file mode 100644 index c71d3f384a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-pi.csv deleted file mode 100644 index 23b669e5c6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-usr.csv deleted file mode 100644 index 722f96fdad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cd.csv deleted file mode 100644 index cbe74448c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cs.csv deleted file mode 100644 index cbe74448c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-pi.csv deleted file mode 100644 index 14c9f80adb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-usr.csv deleted file mode 100644 index f99bb8163d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index cbe74448c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index cbe74448c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index 14c9f80adb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index f99bb8163d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cd.csv deleted file mode 100644 index cbe74448c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cs.csv deleted file mode 100644 index cbe74448c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-pi.csv deleted file mode 100644 index 14c9f80adb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-usr.csv deleted file mode 100644 index f99bb8163d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv deleted file mode 100644 index 823de7b69e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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,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/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv deleted file mode 100644 index 823de7b69e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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,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/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv deleted file mode 100644 index 4444ebbb91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -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 ---------- -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,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/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv deleted file mode 100644 index a7393163a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Node Hours: Per Job" -2016-12-30,56.92666667 -2016-12-31,21.75842593 -2017-01-01,22.44571429 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv deleted file mode 100644 index 7720478930..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv deleted file mode 100644 index 7720478930..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv deleted file mode 100644 index 9020b34ffc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Month,"[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,87.43875000,78.12005556,38.73828704,0.77236014,0.33320707,0.02434444 -2017-01,0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv deleted file mode 100644 index ed635fa401..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Node Hours: Per Job" -2016-12,28.08361111 -2017-01,22.44571429 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index e7d07c26b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index e7d07c26b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index b26bac922f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Quarter,"[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 Q4",87.43875000,78.12005556,38.73828704,0.77236014,0.33320707,0.02434444 -"2017 Q1",0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index e5907b5c63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Node Hours: Per Job" -"2016 Q4",28.08361111 -"2017 Q1",22.44571429 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv deleted file mode 100644 index 0abea93490..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv deleted file mode 100644 index 0abea93490..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -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/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv deleted file mode 100644 index 357613a05e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Year,"[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,87.43875000,78.12005556,38.73828704,0.77236014,0.33320707,0.02434444 -2017,0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv deleted file mode 100644 index 9b1d545c80..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_node_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Node Hours: Per Job" -2016,28.08361111 -2017,22.44571429 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv deleted file mode 100644 index c015d4f83e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv deleted file mode 100644 index 61b4709c59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv deleted file mode 100644 index c015d4f83e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv deleted file mode 100644 index 61b4709c59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv deleted file mode 100644 index c015d4f83e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv deleted file mode 100644 index 61b4709c59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv deleted file mode 100644 index e1b9c3080e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv deleted file mode 100644 index c015d4f83e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv deleted file mode 100644 index 61b4709c59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv deleted file mode 100644 index 38e1ea6094..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -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)","[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/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv deleted file mode 100644 index 38e1ea6094..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -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)","[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/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv deleted file mode 100644 index ecbad49d64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -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 ---------- -Day,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" -2016-12-23,0,0,0,0,1.0000,0 -2016-12-24,0,0,0,0,1.0000,0 -2016-12-25,0,0,0,0,1.0000,0 -2016-12-26,0,0,0,0,1.0000,0 -2016-12-27,16.0000,0,16.0000,0,1.0000,0 -2016-12-28,16.0000,0,16.0000,0,1.0000,0 -2016-12-29,16.0000,0,9.6000,8.6154,1.0000,0 -2016-12-30,16.0000,13.1429,9.3333,4.0842,1.0000,1.0000 -2016-12-31,16.0000,16.0000,8.0000,64.0000,0,1.0000 -2017-01-01,16.0000,0,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv deleted file mode 100644 index 5780823734..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Job Size: Per Job (Core Count)" -2016-12-30,72.0000 -2016-12-31,52.0000 -2017-01-01,46.2857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv deleted file mode 100644 index ec03887b9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -2017-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/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv deleted file mode 100644 index ec03887b9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -2017-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/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv deleted file mode 100644 index bcf41d87ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Month,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" -2016-12,16.0000,14.1818,9.3333,4.0842,1.0000,1.0000 -2017-01,16.0000,0,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv deleted file mode 100644 index 38bfac8472..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Job Size: Per Job (Core Count)" -2016-12,52.0000 -2017-01,46.2857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv deleted file mode 100644 index 2ced53796f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -"2017 Q1",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/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv deleted file mode 100644 index 2ced53796f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -"2017 Q1",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/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv deleted file mode 100644 index c57747bfad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Quarter,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" -"2016 Q4",16.0000,14.1818,9.3333,4.0842,1.0000,1.0000 -"2017 Q1",16.0000,0,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv deleted file mode 100644 index d27c24e331..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Job Size: Per Job (Core Count)" -"2016 Q4",52.0000 -"2017 Q1",46.2857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv deleted file mode 100644 index 4aeda684df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -2017,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/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv deleted file mode 100644 index 4aeda684df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,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,52.0000,56.0000,48.8800,26.9189,28.0000,24.5435,23.1111,20.0000,20.0000,23.3333,17.6389,14.5714,16.0000,16.0000,14.9091,14.1818,12.0000,12.0000,12.0000,12.0000,10.6250,10.8868,10.0952,9.5167,9.3333,23.2000,8.1078,8.0116,8.0000,8.0000,7.8182,4.0842,4.0000,4.0000,2.2970,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 -2017,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/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv deleted file mode 100644 index db683a43b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Year,"[ovenb] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)" -2016,16.0000,14.1818,9.3333,4.0842,1.0000,1.0000 -2017,16.0000,0,0,0,0,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv deleted file mode 100644 index a9eb52c3a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_processors/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Per Job (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Job Size: Per Job (Core Count)" -2016,52.0000 -2017,46.2857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv deleted file mode 100644 index f44ee913e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -swath,229.08833216,0.3165144562337443 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -ybsbu,2.15912037,1.2980363906441121 -litst,0.09015152,0.047849695531533384 -savsp,0.01404915,0.002043989277526459 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv deleted file mode 100644 index b95d537d38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -whimb,2.29753968,1.159786159539825 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv deleted file mode 100644 index f44ee913e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -swath,229.08833216,0.3165144562337443 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -ybsbu,2.15912037,1.2980363906441121 -litst,0.09015152,0.047849695531533384 -savsp,0.01404915,0.002043989277526459 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv deleted file mode 100644 index b95d537d38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -whimb,2.29753968,1.159786159539825 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index f44ee913e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -swath,229.08833216,0.3165144562337443 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -ybsbu,2.15912037,1.2980363906441121 -litst,0.09015152,0.047849695531533384 -savsp,0.01404915,0.002043989277526459 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index b95d537d38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -whimb,2.29753968,1.159786159539825 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv deleted file mode 100644 index cd0ebeb4f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -shttr,233.46900253,27.708500592959215 -swath,229.08833216,0.3165144562337443 -meapi,81.66292824,7.183771270440662 -siski,56.48111111,13.862828445162263 -yebbu,52.74111111,37.29241880267786 -velsc,39.39500000,27.85548955209239 -sancr,35.06708719,1.6947647788562477 -yebwa,31.02180556,3.7428536858056267 -grath,26.77900440,0.3093136712992847 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -pereg,13.04694444,0.5705177028327323 -dunli,12.67979893,0.790292910753799 -boowa,8.19083333,2.9697909176657884 -duswa,6.67768519,0.98851049021015 -caspl,5.36508929,0.1678514684969954 -sposa,5.35740741,0.44586416880536145 -yebsa,5.08810185,2.312558796449961 -misth,4.41189394,0.6571458545780616 -legsh,3.92752472,0.08635320372070841 -whtpl,3.72481481,0.0007211928415468717 -whimb,2.29753968,1.159786159539825 -ybsbu,2.15912037,1.2980363906441121 -whtsp,2.15222222,0.6988290975119311 -honbu,2.05241888,0.0266461444300528 -smew1,1.98928571,0.9136179906052265 -crane,1.88463542,0.5086144929601321 -shag1,1.36358586,1.050607504263938 -evegr,0.98805556,0.13847507798236555 -grgsh,0.74185808,0.00745478946523104 -garwa,0.68931866,0.18792064181649992 -sarwa,0.68493210,0.20891751003386838 -henha,0.32390278,0.2312398274998169 -hoowa,0.30899471,0.06608296019883089 -vertera,0.29952899,0.12719098377944033 -moorh,0.20714974,0.015675479418422043 -allga,0.09777778,0 -litst,0.09015152,0.047849695531533384 -sogsh,0.08220238,0.011574714004551338 -corsh,0.07831597,0.019809027302287216 -reebu,0.06252201,0.016249488196930326 -lapwi,0.05740350,0.004593062258338075 -noror,0.04120370,0.015935275751000608 -rolle,0.04034722,0.034861577990454876 -ferdu,0.03111111,0 -turdo,0.02859810,0.009599314670761935 -litau,0.01747222,0.00747562396751627 -blhbu,0.01408333,0.0026920235401535287 -savsp,0.01404915,0.002043989277526459 -pibgr,0.01099444,0.004697248275110087 -ribgu,0.00750000,0 -lanhach,0.00178819,0.001340063838980952 -crama,0.00105159,0.00005735857833479565 -egygo,0.00059028,0.000142636082683637 -field,0.00055556,0.00022680460581325724 -gloib,0.00027778,0 -aytinis,0.00018519,0.000043648566827207465 -alpsw,0.00015625,0.00004891244648257224 -coot1,0.00015046,0.000032651062689513116 -lesre,0.00013889,0.00009820927516479828 -categ,0.00012731,0.00002825196474708646 -proubis,0.00010802,0.00002506891552546276 -chaff,0.00000000,0 -jackd,0.00000000,0 -mamwa,0.00000000,0 -relpa,0.00000000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv deleted file mode 100644 index f44ee913e7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait 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","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -swath,229.08833216,0.3165144562337443 -ovenb,18.86933333,16.876685792814378 -sante,14.27555556,3.3086704803020535 -ybsbu,2.15912037,1.2980363906441121 -litst,0.09015152,0.047849695531533384 -savsp,0.01404915,0.002043989277526459 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv deleted file mode 100644 index b95d537d38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" -whimb,2.29753968,1.159786159539825 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv deleted file mode 100644 index 7e6b948acc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait 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,0,0.00027778,0,0,9.33222222,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,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,55.41111111,0,0.00000000,0,0,0.06333333,0,0,0,0,0,0,0,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.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,273.48105556,0,103.71148148,76.08611111,0,78.78861111,46.99166667,0,0,0.00062500,0.00000000,0,0,50.82250000,0,0,0,0,0,0,0,0,0.00027778,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00288889,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0 -2016-12-28,280.72700000,0,108.01750000,36.87611111,0,0.00000000,80.35419753,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0.00000000,0,0,6.82972222,0,0,1.68000000,2.73787037,0,0.46633333,0,0.02977924,0,0,0,0,20.57444444,0.07195578,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00027778,0.00018519,0,0,0,0,0,0.00000000,0,0.00000000,0 -2016-12-29,313.25736111,206.22965812,47.74488095,0.00000000,0.00166667,0.00000000,22.19675214,25.72861111,0.00444444,0.00000000,18.95472222,11.68527778,0,0.00000000,0,0,0.95844444,0.00019841,0.00000000,0,0.00000000,0,1.21402778,0,7.95825941,1.98928571,3.47907407,0.00111111,0.79222222,0,4.46097222,0.29993056,0.01788889,0.07572222,0,0.04237662,0,0,0,0.17638889,3.66268519,0.04464331,0.00000000,0,0.03111111,0.01715686,0.00000000,0,0,0.01099444,0,0.02250000,0,0.00062500,0,0.00000000,0.00000000,0,0,0.00027778,0,0,0.00000000,0,0.00000000,0 -2016-12-30,55.29648148,229.51285040,0.00000000,0.00000000,105.48055556,0.00138889,32.41850397,0.00000000,18.02518519,0.00000000,0.00000000,13.72777778,13.00438580,5.14571429,6.67768519,0,6.23720000,1.80364583,0.38944444,2.58369031,0.00000000,17.26194444,8.09833333,0,1.39451717,0.00000000,1.47605556,0.22282407,1.18388889,0.84512711,0.00000000,0.55871032,0.42590741,0.41231481,0.59636111,0.32754774,0.09777778,0.00369048,0.17850082,0.02000000,0.02257879,0.13344771,0.00000000,0.05370370,0.00000000,0.01009512,0.00000000,0.01437500,0.01586806,0.00000000,0.00750000,0.00092593,0.00105159,0.00055556,0.00083333,0.00000000,0.00000000,0.00020833,0.00010417,0.00000000,0.00006944,0.00011574,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,351.74604167,0.00000000,0.00000000,0.00000000,0.00000000,0,33.49272778,0,27.32576747,94.34416667,0,0.00000000,3.35838889,0.00000000,0.00000000,0.02019097,0.00000000,25.71842593,0.00000000,7.36601918,0,0.95052083,0.00000000,2.15222222,2.89868538,0.00000000,0.07819444,0.00097222,0,0.55391509,0.00626263,1.74513889,0.00000000,0.26094444,0.33598291,0.35169374,0,0.24145833,0.02144676,0.00000000,0.03538140,0.01543544,0.00027778,0.00000000,0.00000000,0.04029733,0.02496032,0.01388889,0.01362745,0,0.00000000,0.00074074,0,0.00000000,0.00083333,0,0.00000000,0.00013889,0.00013889,0.00000000,0.00010417,0.00009259,0.00000000,0.00000000,0,0 -2017-01-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv deleted file mode 100644 index 7e6b948acc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait 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,0,0.00027778,0,0,9.33222222,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,9.59638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,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.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,0,0,55.41111111,0,0.00000000,0,0,0.06333333,0,0,0,0,0,0,0,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.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066667,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,273.48105556,0,103.71148148,76.08611111,0,78.78861111,46.99166667,0,0,0.00062500,0.00000000,0,0,50.82250000,0,0,0,0,0,0,0,0,0.00027778,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00288889,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0.00000000,0 -2016-12-28,280.72700000,0,108.01750000,36.87611111,0,0.00000000,80.35419753,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,5.30577160,0,3.72481481,0,0.00000000,0,0.00000000,0,0,6.82972222,0,0,1.68000000,2.73787037,0,0.46633333,0,0.02977924,0,0,0,0,20.57444444,0.07195578,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00027778,0.00018519,0,0,0,0,0,0.00000000,0,0.00000000,0 -2016-12-29,313.25736111,206.22965812,47.74488095,0.00000000,0.00166667,0.00000000,22.19675214,25.72861111,0.00444444,0.00000000,18.95472222,11.68527778,0,0.00000000,0,0,0.95844444,0.00019841,0.00000000,0,0.00000000,0,1.21402778,0,7.95825941,1.98928571,3.47907407,0.00111111,0.79222222,0,4.46097222,0.29993056,0.01788889,0.07572222,0,0.04237662,0,0,0,0.17638889,3.66268519,0.04464331,0.00000000,0,0.03111111,0.01715686,0.00000000,0,0,0.01099444,0,0.02250000,0,0.00062500,0,0.00000000,0.00000000,0,0,0.00027778,0,0,0.00000000,0,0.00000000,0 -2016-12-30,55.29648148,229.51285040,0.00000000,0.00000000,105.48055556,0.00138889,32.41850397,0.00000000,18.02518519,0.00000000,0.00000000,13.72777778,13.00438580,5.14571429,6.67768519,0,6.23720000,1.80364583,0.38944444,2.58369031,0.00000000,17.26194444,8.09833333,0,1.39451717,0.00000000,1.47605556,0.22282407,1.18388889,0.84512711,0.00000000,0.55871032,0.42590741,0.41231481,0.59636111,0.32754774,0.09777778,0.00369048,0.17850082,0.02000000,0.02257879,0.13344771,0.00000000,0.05370370,0.00000000,0.01009512,0.00000000,0.01437500,0.01586806,0.00000000,0.00750000,0.00092593,0.00105159,0.00055556,0.00083333,0.00000000,0.00000000,0.00020833,0.00010417,0.00000000,0.00006944,0.00011574,0.00000000,0.00000000,0.00000000,0.00000000 -2016-12-31,351.74604167,0.00000000,0.00000000,0.00000000,0.00000000,0,33.49272778,0,27.32576747,94.34416667,0,0.00000000,3.35838889,0.00000000,0.00000000,0.02019097,0.00000000,25.71842593,0.00000000,7.36601918,0,0.95052083,0.00000000,2.15222222,2.89868538,0.00000000,0.07819444,0.00097222,0,0.55391509,0.00626263,1.74513889,0.00000000,0.26094444,0.33598291,0.35169374,0,0.24145833,0.02144676,0.00000000,0.03538140,0.01543544,0.00027778,0.00000000,0.00000000,0.04029733,0.02496032,0.01388889,0.01362745,0,0.00000000,0.00074074,0,0.00000000,0.00083333,0,0.00000000,0.00013889,0.00013889,0.00000000,0.00010417,0.00009259,0.00000000,0.00000000,0,0 -2017-01-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv deleted file mode 100644 index 6d09ba87a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" -2016-12-23,0,0,9.59638889,0,0,0 -2016-12-24,0,0,0.00000000,0,0,0 -2016-12-25,0,0,0.00000000,0,0,0 -2016-12-26,0,0,0.00000000,0,0,0 -2016-12-27,0,0.00062500,0.00000000,0.00027778,0,0 -2016-12-28,0,0.00000000,0.00000000,0.00000000,0,0 -2016-12-29,206.22965812,0.00000000,18.95472222,1.21402778,0,0 -2016-12-30,229.51285040,0.00000000,0.00000000,8.09833333,0.00369048,0.01586806 -2016-12-31,0.00000000,94.34416667,0,0.00000000,0.24145833,0.01362745 -2017-01-01,0,0.00000000,0,0,0,0.00666667 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv deleted file mode 100644 index 727a7a99d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Wait Hours: Per Job" -2016-12-30,17.26194444 -2016-12-31,0.95052083 -2017-01-01,1.45988889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv deleted file mode 100644 index 16e56b2f1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" -2016-12,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv deleted file mode 100644 index 16e56b2f1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" -2016-12,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -2017-01,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv deleted file mode 100644 index d99097eb31..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" -2016-12,229.08833216,18.86933333,14.27555556,2.15912037,0.09015152,0.01434444 -2017-01,0,0.00000000,0,0,0,0.00666667 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv deleted file mode 100644 index 7ffd7f4121..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Wait Hours: Per Job" -2016-12,2.76290123 -2017-01,1.45988889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index e0fe6293a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" -"2016 Q4",233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index e0fe6293a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" -"2016 Q4",233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -"2017 Q1",0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 243348741c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" -"2016 Q4",229.08833216,18.86933333,14.27555556,2.15912037,0.09015152,0.01434444 -"2017 Q1",0,0.00000000,0,0,0,0.00666667 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 3d1481c670..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Wait Hours: Per Job" -"2016 Q4",2.76290123 -"2017 Q1",1.45988889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv deleted file mode 100644 index 1a15be6276..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" -2016,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv deleted file mode 100644 index 1a15be6276..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[shttr] Wait Hours: Per Job","[swath] Wait Hours: Per Job","[meapi] Wait Hours: Per Job","[siski] Wait Hours: Per Job","[yebbu] Wait Hours: Per Job","[velsc] Wait Hours: Per Job","[sancr] Wait Hours: Per Job","[yebwa] Wait Hours: Per Job","[grath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[pereg] Wait Hours: Per Job","[dunli] Wait Hours: Per Job","[boowa] Wait Hours: Per Job","[duswa] Wait Hours: Per Job","[caspl] Wait Hours: Per Job","[sposa] Wait Hours: Per Job","[yebsa] Wait Hours: Per Job","[misth] Wait Hours: Per Job","[legsh] Wait Hours: Per Job","[whtpl] Wait Hours: Per Job","[whimb] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[whtsp] Wait Hours: Per Job","[honbu] Wait Hours: Per Job","[smew1] Wait Hours: Per Job","[crane] Wait Hours: Per Job","[shag1] Wait Hours: Per Job","[evegr] Wait Hours: Per Job","[grgsh] Wait Hours: Per Job","[garwa] Wait Hours: Per Job","[sarwa] Wait Hours: Per Job","[henha] Wait Hours: Per Job","[hoowa] Wait Hours: Per Job","[vertera] Wait Hours: Per Job","[moorh] Wait Hours: Per Job","[allga] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[sogsh] Wait Hours: Per Job","[corsh] Wait Hours: Per Job","[reebu] Wait Hours: Per Job","[lapwi] Wait Hours: Per Job","[noror] Wait Hours: Per Job","[rolle] Wait Hours: Per Job","[ferdu] Wait Hours: Per Job","[turdo] Wait Hours: Per Job","[litau] Wait Hours: Per Job","[blhbu] Wait Hours: Per Job","[savsp] Wait Hours: Per Job","[pibgr] Wait Hours: Per Job","[ribgu] Wait Hours: Per Job","[lanhach] Wait Hours: Per Job","[crama] Wait Hours: Per Job","[egygo] Wait Hours: Per Job","[field] Wait Hours: Per Job","[gloib] Wait Hours: Per Job","[aytinis] Wait Hours: Per Job","[alpsw] Wait Hours: Per Job","[coot1] Wait Hours: Per Job","[lesre] Wait Hours: Per Job","[categ] Wait Hours: Per Job","[proubis] Wait Hours: Per Job","[chaff] Wait Hours: Per Job","[jackd] Wait Hours: Per Job","[mamwa] Wait Hours: Per Job","[relpa] Wait Hours: Per Job" -2016,233.46900253,229.08833216,88.25266414,56.48111111,52.74111111,39.39500000,35.06708719,25.72861111,26.77900440,18.86933333,14.27555556,13.04694444,12.03978611,8.19083333,6.67768519,0.02019097,5.35740741,5.08810185,4.41189394,3.92752472,3.72481481,2.76290123,2.15912037,2.15222222,2.23908727,1.98928571,1.51085648,1.36358586,0.98805556,0.74185808,0.68931866,0.77155405,0.32390278,0.30899471,0.44919082,0.22153436,0.09777778,0.09015152,0.13753019,0.13729167,0.05777444,0.06002018,0.00027778,0.05370370,0.03111111,0.03878261,0.02184028,0.01408333,0.01434444,0.01099444,0.00750000,0.00392857,0.00105159,0.00059028,0.00083333,0.00027778,0.00018519,0.00017361,0.00012153,0.00013889,0.00008681,0.00010417,0.00000000,0.00000000,0.00000000,0.00000000 -2017,0.00000000,0,9.17583333,0,0,0,0,36.31500000,0.00000000,0.00000000,0,0.00000000,13.14023981,0,0,5.48065465,0.00000000,0.00000000,0.00000000,0,0,1.45988889,0,0.00000000,1.47548426,0,3.00597222,0.00000000,0,0,0.00000000,0.28430556,0,0,0.00020531,0.03615605,0,0,0.00010305,0.01934028,0.40393690,0.01760234,0.04938889,0.00027778,0.00000000,0.00453196,0.00000000,0,0.00666667,0,0,0.00012346,0,0,0.00000000,0,0,0.00013889,0.00020833,0.00000000,0.00020833,0.00011574,0.00000000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv deleted file mode 100644 index 1a09980a08..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Wait Hours: Per Job","[ovenb] Wait Hours: Per Job","[sante] Wait Hours: Per Job","[ybsbu] Wait Hours: Per Job","[litst] Wait Hours: Per Job","[savsp] Wait Hours: Per Job" -2016,229.08833216,18.86933333,14.27555556,2.15912037,0.09015152,0.01434444 -2017,0,0.00000000,0,0,0,0.00666667 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv deleted file mode 100644 index cb4ee08056..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_waitduration_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Wait Hours: Per Job" -2016,2.76290123 -2017,1.45988889 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv deleted file mode 100644 index 6c7aea0f7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000, -ovenb,82.76488889, -mamwa,72.00694444, -aytinis,72.00432099, -siski,70.03500000, -ferdu,70.00777778, -meapi,63.57475694, -garwa,52.33125262, -lapwi,49.85089556, -yebsa,49.75942901, -gloib,48.00666667, -shttr,46.66083333, -whtpl,44.13648148, -misth,39.37916667, -ybsbu,38.73828704, -velsc,37.18166667, -smew1,36.49007937, -ribgu,31.90972222, -corsh,27.37690972, -whtsp,25.49490741, -moorh,25.48654262, -yebbu,25.17486111, -pereg,24.84777778, -jackd,21.84694444, -hoowa,21.83599206, -shag1,20.71641414, -lesre,18.89791667, -sposa,16.91415278, -boowa,16.76537037, -egygo,15.78250000, -duswa,15.43750000,2.949516142225878 -field,14.37398148, -crane,12.67826389, -evegr,10.08083333,5.736664622204642 -pibgr,10.00406111, -sarwa,9.41403086,1.0834302290958004 -noror,9.12110185,1.9524242496702076 -legsh,8.59051583, -grath,7.94699670,0.252707620848999 -sancr,7.43894097,0.6293211331105432 -litau,7.02769444,1.7557857088278381 -whimb,6.17696429,0.650411636248519 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.412736659063767 -rolle,4.58416667,1.0571325984155044 -yebwa,4.51402778,1.3866381241776238 -lanhach,3.89088542,1.5421931694132969 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.041637228742746606 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.026000891408928004 -honbu,0.28378820,0.002129439336752145 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv deleted file mode 100644 index 6c7aea0f7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000, -ovenb,82.76488889, -mamwa,72.00694444, -aytinis,72.00432099, -siski,70.03500000, -ferdu,70.00777778, -meapi,63.57475694, -garwa,52.33125262, -lapwi,49.85089556, -yebsa,49.75942901, -gloib,48.00666667, -shttr,46.66083333, -whtpl,44.13648148, -misth,39.37916667, -ybsbu,38.73828704, -velsc,37.18166667, -smew1,36.49007937, -ribgu,31.90972222, -corsh,27.37690972, -whtsp,25.49490741, -moorh,25.48654262, -yebbu,25.17486111, -pereg,24.84777778, -jackd,21.84694444, -hoowa,21.83599206, -shag1,20.71641414, -lesre,18.89791667, -sposa,16.91415278, -boowa,16.76537037, -egygo,15.78250000, -duswa,15.43750000,2.949516142225878 -field,14.37398148, -crane,12.67826389, -evegr,10.08083333,5.736664622204642 -pibgr,10.00406111, -sarwa,9.41403086,1.0834302290958004 -noror,9.12110185,1.9524242496702076 -legsh,8.59051583, -grath,7.94699670,0.252707620848999 -sancr,7.43894097,0.6293211331105432 -litau,7.02769444,1.7557857088278381 -whimb,6.17696429,0.650411636248519 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.412736659063767 -rolle,4.58416667,1.0571325984155044 -yebwa,4.51402778,1.3866381241776238 -lanhach,3.89088542,1.5421931694132969 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.041637228742746606 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.026000891408928004 -honbu,0.28378820,0.002129439336752145 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv deleted file mode 100644 index 49a3ec96d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -sante,87.43875000, -ovenb,82.76488889, -ybsbu,38.73828704, -swath,0.56853008,0.041637228742746606 -litst,0.33320707,0.09324722160395126 -savsp,0.02439103,0.001692897033294295 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv deleted file mode 100644 index dcb1acdcf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -whimb,6.17696429,0.650411636248519 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv deleted file mode 100644 index 899cdbae38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -mamwa,72.00694444,0 -aytinis,72.00432099,0.0007574156507426745 -siski,70.03500000,0.00019641855032959655 -ferdu,70.00777778, -meapi,63.57475694,3.13824008219319 -garwa,52.33125262, -lapwi,49.85089556,1.1100595034642202 -yebsa,49.75942901, -gloib,48.00666667,0 -shttr,46.66083333,5.055266467272984 -whtpl,44.13648148,3.8863777173028686 -misth,39.37916667,3.5074678840012607 -ybsbu,38.73828704,7.964502386031587 -velsc,37.18166667,24.625975747573168 -smew1,36.49007937,2.407916402194818 -ribgu,31.90972222,0 -corsh,27.37690972,4.572758943516918 -whtsp,25.49490741, -moorh,25.48654262,0.09521527865289223 -yebbu,25.17486111,17.80092216999551 -pereg,24.84777778,1.3792526019750193 -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 -egygo,15.78250000,1.4182317241819407 -duswa,15.43750000,9.334819660458281 -field,14.37398148, -crane,12.67826389,0.43082354975761517 -evegr,10.08083333,7.102298361367882 -pibgr,10.00406111,0.00040214624761869517 -sarwa,9.41403086,1.7878256710905893 -noror,9.12110185,7.611190913212397 -legsh,8.59051583,0.027937647321332644 -grath,7.94699670,0.4591933087881705 -sancr,7.43894097,1.2737613363617315 -litau,7.02769444,2.431694700689441 -whimb,6.17696429,0.6904442871805476 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.9381499596292342 -rolle,4.58416667,1.606624250847252 -yebwa,4.51402778,3.1765790052054 -lanhach,3.89088542,2.2654968346862243 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.0457046053323436 -honbu,0.28378820,0.0027004215312930553 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv deleted file mode 100644 index 899cdbae38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -mamwa,72.00694444,0 -aytinis,72.00432099,0.0007574156507426745 -siski,70.03500000,0.00019641855032959655 -ferdu,70.00777778, -meapi,63.57475694,3.13824008219319 -garwa,52.33125262, -lapwi,49.85089556,1.1100595034642202 -yebsa,49.75942901, -gloib,48.00666667,0 -shttr,46.66083333,5.055266467272984 -whtpl,44.13648148,3.8863777173028686 -misth,39.37916667,3.5074678840012607 -ybsbu,38.73828704,7.964502386031587 -velsc,37.18166667,24.625975747573168 -smew1,36.49007937,2.407916402194818 -ribgu,31.90972222,0 -corsh,27.37690972,4.572758943516918 -whtsp,25.49490741, -moorh,25.48654262,0.09521527865289223 -yebbu,25.17486111,17.80092216999551 -pereg,24.84777778,1.3792526019750193 -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 -egygo,15.78250000,1.4182317241819407 -duswa,15.43750000,9.334819660458281 -field,14.37398148, -crane,12.67826389,0.43082354975761517 -evegr,10.08083333,7.102298361367882 -pibgr,10.00406111,0.00040214624761869517 -sarwa,9.41403086,1.7878256710905893 -noror,9.12110185,7.611190913212397 -legsh,8.59051583,0.027937647321332644 -grath,7.94699670,0.4591933087881705 -sancr,7.43894097,1.2737613363617315 -litau,7.02769444,2.431694700689441 -whimb,6.17696429,0.6904442871805476 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.9381499596292342 -rolle,4.58416667,1.606624250847252 -yebwa,4.51402778,3.1765790052054 -lanhach,3.89088542,2.2654968346862243 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.0457046053323436 -honbu,0.28378820,0.0027004215312930553 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv deleted file mode 100644 index 40a9e3f6ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -ybsbu,38.73828704,7.964502386031587 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -savsp,0.02439103,0.001692897033294295 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv deleted file mode 100644 index 9588fac82a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -whimb,6.17696429,0.6904442871805476 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 899cdbae38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -mamwa,72.00694444,0 -aytinis,72.00432099,0.0007574156507426745 -siski,70.03500000,0.00019641855032959655 -ferdu,70.00777778, -meapi,63.57475694,3.13824008219319 -garwa,52.33125262, -lapwi,49.85089556,1.1100595034642202 -yebsa,49.75942901, -gloib,48.00666667,0 -shttr,46.66083333,5.055266467272984 -whtpl,44.13648148,3.8863777173028686 -misth,39.37916667,3.5074678840012607 -ybsbu,38.73828704,7.964502386031587 -velsc,37.18166667,24.625975747573168 -smew1,36.49007937,2.407916402194818 -ribgu,31.90972222,0 -corsh,27.37690972,4.572758943516918 -whtsp,25.49490741, -moorh,25.48654262,0.09521527865289223 -yebbu,25.17486111,17.80092216999551 -pereg,24.84777778,1.3792526019750193 -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 -egygo,15.78250000,1.4182317241819407 -duswa,15.43750000,9.334819660458281 -field,14.37398148, -crane,12.67826389,0.43082354975761517 -evegr,10.08083333,7.102298361367882 -pibgr,10.00406111,0.00040214624761869517 -sarwa,9.41403086,1.7878256710905893 -noror,9.12110185,7.611190913212397 -legsh,8.59051583,0.027937647321332644 -grath,7.94699670,0.4591933087881705 -sancr,7.43894097,1.2737613363617315 -litau,7.02769444,2.431694700689441 -whimb,6.17696429,0.6904442871805476 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.9381499596292342 -rolle,4.58416667,1.606624250847252 -yebwa,4.51402778,3.1765790052054 -lanhach,3.89088542,2.2654968346862243 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.0457046053323436 -honbu,0.28378820,0.0027004215312930553 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 899cdbae38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -mamwa,72.00694444,0 -aytinis,72.00432099,0.0007574156507426745 -siski,70.03500000,0.00019641855032959655 -ferdu,70.00777778, -meapi,63.57475694,3.13824008219319 -garwa,52.33125262, -lapwi,49.85089556,1.1100595034642202 -yebsa,49.75942901, -gloib,48.00666667,0 -shttr,46.66083333,5.055266467272984 -whtpl,44.13648148,3.8863777173028686 -misth,39.37916667,3.5074678840012607 -ybsbu,38.73828704,7.964502386031587 -velsc,37.18166667,24.625975747573168 -smew1,36.49007937,2.407916402194818 -ribgu,31.90972222,0 -corsh,27.37690972,4.572758943516918 -whtsp,25.49490741, -moorh,25.48654262,0.09521527865289223 -yebbu,25.17486111,17.80092216999551 -pereg,24.84777778,1.3792526019750193 -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 -egygo,15.78250000,1.4182317241819407 -duswa,15.43750000,9.334819660458281 -field,14.37398148, -crane,12.67826389,0.43082354975761517 -evegr,10.08083333,7.102298361367882 -pibgr,10.00406111,0.00040214624761869517 -sarwa,9.41403086,1.7878256710905893 -noror,9.12110185,7.611190913212397 -legsh,8.59051583,0.027937647321332644 -grath,7.94699670,0.4591933087881705 -sancr,7.43894097,1.2737613363617315 -litau,7.02769444,2.431694700689441 -whimb,6.17696429,0.6904442871805476 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.9381499596292342 -rolle,4.58416667,1.606624250847252 -yebwa,4.51402778,3.1765790052054 -lanhach,3.89088542,2.2654968346862243 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.0457046053323436 -honbu,0.28378820,0.0027004215312930553 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index 40a9e3f6ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -ybsbu,38.73828704,7.964502386031587 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -savsp,0.02439103,0.001692897033294295 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 9588fac82a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -whimb,6.17696429,0.6904442871805476 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv deleted file mode 100644 index 899cdbae38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -mamwa,72.00694444,0 -aytinis,72.00432099,0.0007574156507426745 -siski,70.03500000,0.00019641855032959655 -ferdu,70.00777778, -meapi,63.57475694,3.13824008219319 -garwa,52.33125262, -lapwi,49.85089556,1.1100595034642202 -yebsa,49.75942901, -gloib,48.00666667,0 -shttr,46.66083333,5.055266467272984 -whtpl,44.13648148,3.8863777173028686 -misth,39.37916667,3.5074678840012607 -ybsbu,38.73828704,7.964502386031587 -velsc,37.18166667,24.625975747573168 -smew1,36.49007937,2.407916402194818 -ribgu,31.90972222,0 -corsh,27.37690972,4.572758943516918 -whtsp,25.49490741, -moorh,25.48654262,0.09521527865289223 -yebbu,25.17486111,17.80092216999551 -pereg,24.84777778,1.3792526019750193 -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 -egygo,15.78250000,1.4182317241819407 -duswa,15.43750000,9.334819660458281 -field,14.37398148, -crane,12.67826389,0.43082354975761517 -evegr,10.08083333,7.102298361367882 -pibgr,10.00406111,0.00040214624761869517 -sarwa,9.41403086,1.7878256710905893 -noror,9.12110185,7.611190913212397 -legsh,8.59051583,0.027937647321332644 -grath,7.94699670,0.4591933087881705 -sancr,7.43894097,1.2737613363617315 -litau,7.02769444,2.431694700689441 -whimb,6.17696429,0.6904442871805476 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.9381499596292342 -rolle,4.58416667,1.606624250847252 -yebwa,4.51402778,3.1765790052054 -lanhach,3.89088542,2.2654968346862243 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.0457046053323436 -honbu,0.28378820,0.0027004215312930553 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv deleted file mode 100644 index 899cdbae38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -chaff,120.00722222, -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -mamwa,72.00694444,0 -aytinis,72.00432099,0.0007574156507426745 -siski,70.03500000,0.00019641855032959655 -ferdu,70.00777778, -meapi,63.57475694,3.13824008219319 -garwa,52.33125262, -lapwi,49.85089556,1.1100595034642202 -yebsa,49.75942901, -gloib,48.00666667,0 -shttr,46.66083333,5.055266467272984 -whtpl,44.13648148,3.8863777173028686 -misth,39.37916667,3.5074678840012607 -ybsbu,38.73828704,7.964502386031587 -velsc,37.18166667,24.625975747573168 -smew1,36.49007937,2.407916402194818 -ribgu,31.90972222,0 -corsh,27.37690972,4.572758943516918 -whtsp,25.49490741, -moorh,25.48654262,0.09521527865289223 -yebbu,25.17486111,17.80092216999551 -pereg,24.84777778,1.3792526019750193 -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 -egygo,15.78250000,1.4182317241819407 -duswa,15.43750000,9.334819660458281 -field,14.37398148, -crane,12.67826389,0.43082354975761517 -evegr,10.08083333,7.102298361367882 -pibgr,10.00406111,0.00040214624761869517 -sarwa,9.41403086,1.7878256710905893 -noror,9.12110185,7.611190913212397 -legsh,8.59051583,0.027937647321332644 -grath,7.94699670,0.4591933087881705 -sancr,7.43894097,1.2737613363617315 -litau,7.02769444,2.431694700689441 -whimb,6.17696429,0.6904442871805476 -blhbu,5.98691667,0.9781127830854605 -henha,5.04208333,1.9381499596292342 -rolle,4.58416667,1.606624250847252 -yebwa,4.51402778,3.1765790052054 -lanhach,3.89088542,2.2654968346862243 -caspl,2.10733760,0.04730850999433886 -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 -vertera,0.81574879,0.33900408606509713 -alpsw,0.66013889,0.2379191991153246 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -reebu,0.29758033,0.0457046053323436 -honbu,0.28378820,0.0027004215312930553 -allga,0.26055556,0 -dunli,0.18926081,0.027954377835160745 -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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv deleted file mode 100644 index 40a9e3f6ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall 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","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -sante,87.43875000,49.35183032798893 -ovenb,82.76488889,11.31277811706417 -ybsbu,38.73828704,7.964502386031587 -swath,0.56853008,0.0672666690107468 -litst,0.33320707,0.09324722160395126 -savsp,0.02439103,0.001692897033294295 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv deleted file mode 100644 index 9588fac82a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" -whimb,6.17696429,0.6904442871805476 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv deleted file mode 100644 index 19da0101d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall 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,16.74638889,0,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,0,0,0 -2016-12-23,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,0,0,0,0,0,0,0,0,24.00000000,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 -2016-12-24,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,0,0,0,0,0,0,0,0,24.00000000,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 -2016-12-25,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,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0,0,0 -2016-12-26,0,24.00000000,0,0,0,0,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,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0 -2016-12-27,3.79972222,24.00000000,4.93666667,4.72138889,0,20.66416667,0,12.98407407,24.00000000,0,0,0,13.96533333,0,0,8.54972222,20.81333333,0,0,0,0,0,0,0,0,0,0,0,0,19.90555556,0,0,0,0,0,0,0,24.00000000,0,0,20.33888889,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0,0,0 -2016-12-28,24.00000000,24.00000000,24.00000000,24.00000000,17.86320988,18.38902778,0,15.23050000,9.02631944,13.35268330,0,4.70055556,17.63833333,5.03972222,3.11533951,24.00000000,24.00000000,0,0,0,0,5.01598392,0,0,0,8.78983333,10.70500000,0,0,24.00000000,0,0,0,0,0,0,8.32944444,24.00000000,0,0,13.20166667,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0,0,0 -2016-12-29,24.00000000,19.56861111,24.00000000,24.00000000,24.00000000,24.00000000,3.00194444,23.45363636,23.88776389,16.60273286,19.85234127,24.00000000,20.53074074,24.00000000,24.00000000,8.50644444,24.00000000,11.55011905,0,4.96462963,0,13.10756221,18.97472222,23.43805556,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,3.66944444,0,0,6.36972222,1.92694444,4.66003889,16.72988095,24.00000000,0,3.62000000,13.84817130,10.40083333,0,0,2.01966667,0,6.48888889,22.24222222,0,3.53675439,0,0,0,0,0,0,0.76098291,0,14.25164444,0.65402610,0,0,0,0,0,0 -2016-12-30,24.00000000,3.56833333,24.00000000,19.28555556,24.00000000,12.68527778,24.00000000,22.20438131,18.92284722,21.71949405,19.44072222,19.30611111,12.82591049,15.09675926,14.55335859,18.07555556,2.77500000,21.78416667,17.79750000,17.98229167,0,13.31263065,12.00027778,8.15601852,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,10.28048611,9.78120370,8.00444444,7.97656250,9.11736111,5.34402222,3.83073016,24.00000000,4.25015531,16.84687500,4.13567080,13.60638889,9.48777778,3.48631944,4.10559722,1.45518519,2.51750000,3.96541667,0,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.48461111,0.13409722,0.53023103,0.43603175,0.13315301,0.32887293,0.26055556,0.14245370,0.08049603,0.06500000,0.02760417,0.02405133 -2016-12-31,24.00000000,0,16.57072222,0,6.14111111,9.25722222,24.00000000,12.06362573,23.17923611,10.83064379,19.04313725,0,14.97629630,0,24.00000000,16.29814815,0,22.09055556,14.11222222,24.00000000,16.61129630,12.53390738,7.37444444,24.00000000,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,7.33458333,16.96888889,19.78805556,10.17785714,0,0,14.33632716,4.84750000,5.54019436,7.28581633,1.97834003,6.47384921,4.70839506,7.65398148,8.63138889,4.84500000,0,1.29611111,0.19661458,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,1.49565171,2.06152778,17.41444444,0.15326389,0.13894731,0.36784723,0,0.14844444,0,0,0.02281046,0.01479010 -2017-01-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv deleted file mode 100644 index 19da0101d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall 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,16.74638889,0,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,0,0,0 -2016-12-23,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,0,0,0,0,0,0,0,0,24.00000000,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 -2016-12-24,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,0,0,0,0,0,0,0,0,24.00000000,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 -2016-12-25,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,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0,0,0 -2016-12-26,0,24.00000000,0,0,0,0,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,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0 -2016-12-27,3.79972222,24.00000000,4.93666667,4.72138889,0,20.66416667,0,12.98407407,24.00000000,0,0,0,13.96533333,0,0,8.54972222,20.81333333,0,0,0,0,0,0,0,0,0,0,0,0,19.90555556,0,0,0,0,0,0,0,24.00000000,0,0,20.33888889,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0,0,0 -2016-12-28,24.00000000,24.00000000,24.00000000,24.00000000,17.86320988,18.38902778,0,15.23050000,9.02631944,13.35268330,0,4.70055556,17.63833333,5.03972222,3.11533951,24.00000000,24.00000000,0,0,0,0,5.01598392,0,0,0,8.78983333,10.70500000,0,0,24.00000000,0,0,0,0,0,0,8.32944444,24.00000000,0,0,13.20166667,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0,0,0 -2016-12-29,24.00000000,19.56861111,24.00000000,24.00000000,24.00000000,24.00000000,3.00194444,23.45363636,23.88776389,16.60273286,19.85234127,24.00000000,20.53074074,24.00000000,24.00000000,8.50644444,24.00000000,11.55011905,0,4.96462963,0,13.10756221,18.97472222,23.43805556,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,3.66944444,0,0,6.36972222,1.92694444,4.66003889,16.72988095,24.00000000,0,3.62000000,13.84817130,10.40083333,0,0,2.01966667,0,6.48888889,22.24222222,0,3.53675439,0,0,0,0,0,0,0.76098291,0,14.25164444,0.65402610,0,0,0,0,0,0 -2016-12-30,24.00000000,3.56833333,24.00000000,19.28555556,24.00000000,12.68527778,24.00000000,22.20438131,18.92284722,21.71949405,19.44072222,19.30611111,12.82591049,15.09675926,14.55335859,18.07555556,2.77500000,21.78416667,17.79750000,17.98229167,0,13.31263065,12.00027778,8.15601852,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,10.28048611,9.78120370,8.00444444,7.97656250,9.11736111,5.34402222,3.83073016,24.00000000,4.25015531,16.84687500,4.13567080,13.60638889,9.48777778,3.48631944,4.10559722,1.45518519,2.51750000,3.96541667,0,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.48461111,0.13409722,0.53023103,0.43603175,0.13315301,0.32887293,0.26055556,0.14245370,0.08049603,0.06500000,0.02760417,0.02405133 -2016-12-31,24.00000000,0,16.57072222,0,6.14111111,9.25722222,24.00000000,12.06362573,23.17923611,10.83064379,19.04313725,0,14.97629630,0,24.00000000,16.29814815,0,22.09055556,14.11222222,24.00000000,16.61129630,12.53390738,7.37444444,24.00000000,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,7.33458333,16.96888889,19.78805556,10.17785714,0,0,14.33632716,4.84750000,5.54019436,7.28581633,1.97834003,6.47384921,4.70839506,7.65398148,8.63138889,4.84500000,0,1.29611111,0.19661458,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,1.49565171,2.06152778,17.41444444,0.15326389,0.13894731,0.36784723,0,0.14844444,0,0,0.02281046,0.01479010 -2017-01-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv deleted file mode 100644 index 9ead1fa0fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall 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,19.56861111,24.00000000,8.50644444,0.76098291,0,0 -2016-12-30,3.56833333,24.00000000,18.07555556,0.53023103,0.43603175,0.02760417 -2016-12-31,0,16.57072222,16.29814815,17.41444444,0.15326389,0.02281046 -2017-01-01,0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv deleted file mode 100644 index 105bd79350..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Wall Hours: Per Job" -2016-12-30,9.48777778 -2016-12-31,4.70839506 -2017-01-01,4.94488095 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv deleted file mode 100644 index 3de3637031..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" -2016-12,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -2017-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv deleted file mode 100644 index 3de3637031..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" -2016-12,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -2017-01,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv deleted file mode 100644 index db61ce0317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall Hours: Per Job" -2016-12,87.43875000,78.12005556,38.73828704,0.56853008,0.33320707,0.02434444 -2017-01,0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv deleted file mode 100644 index eae2d23ddc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Wall Hours: Per Job" -2016-12,5.76259259 -2017-01,4.94488095 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 7ec8892b94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" -"2016 Q4",99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -"2017 Q1",20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 7ec8892b94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" -"2016 Q4",99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -"2017 Q1",20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 6e3fb96592..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall Hours: Per Job" -"2016 Q4",87.43875000,78.12005556,38.73828704,0.56853008,0.33320707,0.02434444 -"2017 Q1",0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 5eee5c1bb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Wall Hours: Per Job" -"2016 Q4",5.76259259 -"2017 Q1",4.94488095 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv deleted file mode 100644 index 16fa86967c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" -2016,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -2017,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv deleted file mode 100644 index 16fa86967c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[chaff] Wall Hours: Per Job","[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[mamwa] Wall Hours: Per Job","[aytinis] Wall Hours: Per Job","[siski] Wall Hours: Per Job","[ferdu] Wall Hours: Per Job","[meapi] Wall Hours: Per Job","[garwa] Wall Hours: Per Job","[lapwi] Wall Hours: Per Job","[yebsa] Wall Hours: Per Job","[gloib] Wall Hours: Per Job","[shttr] Wall Hours: Per Job","[whtpl] Wall Hours: Per Job","[misth] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[velsc] Wall Hours: Per Job","[smew1] Wall Hours: Per Job","[ribgu] Wall Hours: Per Job","[corsh] Wall Hours: Per Job","[whtsp] Wall Hours: Per Job","[moorh] Wall Hours: Per Job","[yebbu] Wall Hours: Per Job","[pereg] Wall Hours: Per Job","[jackd] Wall Hours: Per Job","[hoowa] Wall Hours: Per Job","[shag1] Wall Hours: Per Job","[lesre] Wall Hours: Per Job","[sposa] Wall Hours: Per Job","[boowa] Wall Hours: Per Job","[egygo] Wall Hours: Per Job","[duswa] Wall Hours: Per Job","[field] Wall Hours: Per Job","[crane] Wall Hours: Per Job","[evegr] Wall Hours: Per Job","[pibgr] Wall Hours: Per Job","[sarwa] Wall Hours: Per Job","[noror] Wall Hours: Per Job","[legsh] Wall Hours: Per Job","[grath] Wall Hours: Per Job","[sancr] Wall Hours: Per Job","[litau] Wall Hours: Per Job","[whimb] Wall Hours: Per Job","[blhbu] Wall Hours: Per Job","[henha] Wall Hours: Per Job","[rolle] Wall Hours: Per Job","[yebwa] Wall Hours: Per Job","[lanhach] Wall Hours: Per Job","[caspl] Wall Hours: Per Job","[turdo] Wall Hours: Per Job","[coot1] Wall Hours: Per Job","[proubis] Wall Hours: Per Job","[categ] Wall Hours: Per Job","[sogsh] Wall Hours: Per Job","[vertera] Wall Hours: Per Job","[alpsw] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[reebu] Wall Hours: Per Job","[honbu] Wall Hours: Per Job","[allga] Wall Hours: Per Job","[dunli] Wall Hours: Per Job","[crama] Wall Hours: Per Job","[relpa] Wall Hours: Per Job","[savsp] Wall Hours: Per Job","[grgsh] Wall Hours: Per Job" -2016,99.79972222,87.43875000,78.12005556,72.00694444,72.00432099,70.03500000,51.00194444,68.23159091,42.39165094,48.78758939,41.90614198,48.00666667,41.05276515,44.13648148,38.92045455,38.73828704,37.18166667,36.49007937,31.90972222,39.70576389,16.61129630,23.01874399,25.17486111,23.96870370,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,15.78250000,15.43750000,13.89625000,12.84722222,10.08083333,10.00406111,10.95135135,46.59677778,8.59051583,7.77245050,7.43894097,8.66552083,5.76259259,5.98691667,5.04208333,4.68518519,9.00638889,5.99888889,0.19661458,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,1.05606884,1.09781250,0.56853008,0.33320707,0.26789938,0.35657536,0.26055556,0.14305278,0.08049603,0.06500000,0.02434444,0.02076714 -2017,20.20750000,0,23.22416667,0,0,0,19.00583333,2.74435185,11.20848700,13.34534574,12.85083333,0,17.62535714,0,5.04583333,0,0,0,0,8.59888889,8.88361111,11.50582962,0,2.63722222,0,0,4.95388889,11.49055556,5.29138889,0,0,0,7.66472222,6.95507937,0,0,2.04793210,1.56342949,0,17.62916667,0,0.47638889,4.94488095,0,0,4.28111111,0.02166667,2.25132716,2.11436355,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0.30830000,0.22246528,0,0,2.34518519,0.05680123,0,0.22250400,0,0,0.02555556,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv deleted file mode 100644 index 466fef289f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[sante] Wall Hours: Per Job","[ovenb] Wall Hours: Per Job","[ybsbu] Wall Hours: Per Job","[swath] Wall Hours: Per Job","[litst] Wall Hours: Per Job","[savsp] Wall Hours: Per Job" -2016,87.43875000,78.12005556,38.73828704,0.56853008,0.33320707,0.02434444 -2017,0,23.22416667,0,0,0,0.02555556 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv deleted file mode 100644 index 797c19bfd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/avg_wallduration_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Per Job: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Wall Hours: Per Job" -2016,5.76259259 -2017,4.94488095 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv deleted file mode 100644 index fec6b21de5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -savsp,1.5760 -litst,1.2706 -ovenb,1.2280 -sante,1.1633 -ybsbu,1.0557 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv deleted file mode 100644 index 87ad5ad66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -whimb,1.3852 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv deleted file mode 100644 index fec6b21de5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -savsp,1.5760 -litst,1.2706 -ovenb,1.2280 -sante,1.1633 -ybsbu,1.0557 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv deleted file mode 100644 index 87ad5ad66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -whimb,1.3852 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv deleted file mode 100644 index fec6b21de5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -savsp,1.5760 -litst,1.2706 -ovenb,1.2280 -sante,1.1633 -ybsbu,1.0557 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv deleted file mode 100644 index 87ad5ad66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -whimb,1.3852 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv deleted file mode 100644 index 9c7c55bd54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -dunli,69.2703 -grgsh,36.7227 -honbu,8.0226 -yebwa,7.8723 -shttr,6.0105 -sancr,4.9154 -grath,4.3697 -caspl,3.5459 -meapi,2.2845 -velsc,2.0824 -yebbu,2.0475 -siski,1.8065 -savsp,1.5760 -pereg,1.5251 -boowa,1.4886 -legsh,1.4572 -vertera,1.4161 -whimb,1.3852 -allga,1.3753 -duswa,1.3348 -sposa,1.3167 -litst,1.2706 -ovenb,1.2280 -reebu,1.2101 -sante,1.1633 -crane,1.1487 -misth,1.1120 -yebsa,1.1023 -evegr,1.0980 -sogsh,1.0932 -sarwa,1.0922 -whtpl,1.0844 -whtsp,1.0844 -shag1,1.0658 -henha,1.0642 -ybsbu,1.0557 -smew1,1.0545 -turdo,1.0197 -rolle,1.0148 -hoowa,1.0142 -garwa,1.0132 -crama,1.0131 -moorh,1.0081 -noror,1.0045 -corsh,1.0029 -litau,1.0025 -blhbu,1.0024 -lapwi,1.0012 -pibgr,1.0011 -lanhach,1.0005 -ferdu,1.0004 -alpsw,1.0002 -coot1,1.0002 -ribgu,1.0002 -categ,1.0001 -proubis,1.0001 -aytinis,1.0000 -chaff,1.0000 -egygo,1.0000 -field,1.0000 -gloib,1.0000 -jackd,1.0000 -lesre,1.0000 -mamwa,1.0000 -relpa,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv deleted file mode 100644 index fec6b21de5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -swath,297.8504 -savsp,1.5760 -litst,1.2706 -ovenb,1.2280 -sante,1.1633 -ybsbu,1.0557 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv deleted file mode 100644 index 87ad5ad66e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","User Expansion Factor" -whimb,1.3852 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv deleted file mode 100644 index 68b2d5aa53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -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,1.0495,0,0,0,0,0,1.0000,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.6127,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0454,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,0,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,0,0,0,0,1.5220,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,1.0000,0,4.9152,1.6524,0,0,2.5533,2.0942,0,2.0864,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.3723,1.0610,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0 -2016-12-28,0,0,0,1.0000,0,4.8768,2.1450,0,0,2.5716,2.0942,0,1.8919,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.0942,1.0610,0,1.1095,0,0,0,1.0771,1.0866,0,1.1209,0,1.0000,0,1.0250,0,1.0107,1.0025,0,1.0010,1.0000,0,0,0,1.0013,0,0,0,0,0,0,0,0,1.0000,1.0000,0,0,1.0000,0,0,1.0000,0 -2016-12-29,42.4492,0,0,6.0683,3.8567,4.9177,3.0158,1.0001,0,2.3143,2.0942,1.0000,1.8065,0,1.3890,1.7260,0,0,0,0,0,1.0513,0,1.0000,1.1847,1.4529,1.2430,1.1207,1.0000,1.0394,0,1.0561,1.0866,0,1.0778,1.0011,1.0057,1.0379,1.0201,0,1.0101,1.0228,0,1.0011,1.0000,1.0071,1.0000,0,1.0011,1.0011,1.0006,1.0004,0,0,0,0,0,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0 -2016-12-30,361.2347,82.2879,36.1385,5.3347,3.8567,5.2630,5.9186,1.8025,0,2.2784,1.8784,3.1975,1.5568,1.5748,1.7197,1.4078,1.1806,2.1933,2.7189,1.3753,1.4992,1.4642,1.0085,1.0000,1.2290,1.4170,1.1539,1.1173,1.0160,1.1042,1.1123,1.0488,1.0801,0,1.0671,1.0787,1.0778,1.0500,1.0094,1.0094,1.0112,1.0292,1.0131,1.0022,1.0000,1.0032,1.0000,1.0041,1.0011,1.0011,1.0008,1.0004,1.0014,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.9179,30.3841,38.4517,8.5117,0,7.3737,13.7412,4.7123,1.0162,1.9224,0,1.0000,1.5265,1.5974,1.4660,1.2386,1.6099,1.2202,1.1623,0,1.1213,1.1316,2.5754,1.2516,1.2538,0,1.0513,1.0205,1.2604,0,1.0199,1.1407,0,1.0760,1.0379,1.0006,1.0874,1.1462,1.0368,1.0172,1.0269,1.0100,0,1.0187,1.0002,1.0017,1.0039,1.0018,1.0012,0,1.0006,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000,0,0 -2017-01-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv deleted file mode 100644 index 68b2d5aa53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -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,1.0495,0,0,0,0,0,1.0000,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0495,0,0,0,0,0,1.0000,0,0,0,0,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,1.6127,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0454,0,0,0,0,0,1.0000,0,0,0,0,0,0,0,0,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,0,0,0,0,1.5220,1.0610,0,0,0,0,0,0,0,0,0,0,0,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,1.0000,0,4.9152,1.6524,0,0,2.5533,2.0942,0,2.0864,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.3723,1.0610,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0250,0,0,1.0000,0,0,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,0,1.0000,0 -2016-12-28,0,0,0,1.0000,0,4.8768,2.1450,0,0,2.5716,2.0942,0,1.8919,0,0,1.7260,0,0,0,0,0,0,0,1.0000,1.0942,1.0610,0,1.1095,0,0,0,1.0771,1.0866,0,1.1209,0,1.0000,0,1.0250,0,1.0107,1.0025,0,1.0010,1.0000,0,0,0,1.0013,0,0,0,0,0,0,0,0,1.0000,1.0000,0,0,1.0000,0,0,1.0000,0 -2016-12-29,42.4492,0,0,6.0683,3.8567,4.9177,3.0158,1.0001,0,2.3143,2.0942,1.0000,1.8065,0,1.3890,1.7260,0,0,0,0,0,1.0513,0,1.0000,1.1847,1.4529,1.2430,1.1207,1.0000,1.0394,0,1.0561,1.0866,0,1.0778,1.0011,1.0057,1.0379,1.0201,0,1.0101,1.0228,0,1.0011,1.0000,1.0071,1.0000,0,1.0011,1.0011,1.0006,1.0004,0,0,0,0,0,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0 -2016-12-30,361.2347,82.2879,36.1385,5.3347,3.8567,5.2630,5.9186,1.8025,0,2.2784,1.8784,3.1975,1.5568,1.5748,1.7197,1.4078,1.1806,2.1933,2.7189,1.3753,1.4992,1.4642,1.0085,1.0000,1.2290,1.4170,1.1539,1.1173,1.0160,1.1042,1.1123,1.0488,1.0801,0,1.0671,1.0787,1.0778,1.0500,1.0094,1.0094,1.0112,1.0292,1.0131,1.0022,1.0000,1.0032,1.0000,1.0041,1.0011,1.0011,1.0008,1.0004,1.0014,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,1.9179,30.3841,38.4517,8.5117,0,7.3737,13.7412,4.7123,1.0162,1.9224,0,1.0000,1.5265,1.5974,1.4660,1.2386,1.6099,1.2202,1.1623,0,1.1213,1.1316,2.5754,1.2516,1.2538,0,1.0513,1.0205,1.2604,0,1.0199,1.1407,0,1.0760,1.0379,1.0006,1.0874,1.1462,1.0368,1.0172,1.0269,1.0100,0,1.0187,1.0002,1.0017,1.0039,1.0018,1.0012,0,1.0006,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000,0,0 -2017-01-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv deleted file mode 100644 index 3ab2d93e3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" -2016-12-23,0,0,0,0,1.0610,0 -2016-12-24,0,0,0,0,1.0610,0 -2016-12-25,0,0,0,0,1.0610,0 -2016-12-26,0,0,0,0,1.0610,0 -2016-12-27,0,0,0,1.0000,1.0610,1.0000 -2016-12-28,0,0,0,1.0000,1.0610,1.0000 -2016-12-29,42.4492,0,0,1.0000,1.4529,1.0057 -2016-12-30,361.2347,1.5748,1.0085,1.0000,1.4170,1.0778 -2016-12-31,1.9179,1.5974,2.5754,1.2516,0,1.0874 -2017-01-01,0,1.2609,0,4.1649,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv deleted file mode 100644 index 7b1ecede04..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] User Expansion Factor" -2016-12-30,2.7189 -2016-12-31,1.1623 -2017-01-01,1.1798 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv deleted file mode 100644 index 5f7cb57817..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -2016-12,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv deleted file mode 100644 index 5f7cb57817..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -2016-12,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv deleted file mode 100644 index 678a4efaa1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" -2016-12,297.8504,1.5892,1.2706,1.0534,1.1633,1.0557 -2017-01,0,1.2609,0,4.1649,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv deleted file mode 100644 index 1c2268d472..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] User Expansion Factor" -2016-12,1.5129 -2017-01,1.1798 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv deleted file mode 100644 index 0fb35f1c7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -"2016 Q4",297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv deleted file mode 100644 index 0fb35f1c7c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -"2016 Q4",297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv deleted file mode 100644 index 6764b39e1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" -"2016 Q4",297.8504,1.5892,1.2706,1.0534,1.1633,1.0557 -"2017 Q1",0,1.2609,0,4.1649,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv deleted file mode 100644 index d90ffa8456..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] User Expansion Factor" -"2016 Q4",1.5129 -"2017 Q1",1.1798 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv deleted file mode 100644 index 68c7e541ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -2016,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv deleted file mode 100644 index 68c7e541ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] User Expansion Factor","[dunli] User Expansion Factor","[grgsh] User Expansion Factor","[honbu] User Expansion Factor","[yebwa] User Expansion Factor","[shttr] User Expansion Factor","[sancr] User Expansion Factor","[grath] User Expansion Factor","[caspl] User Expansion Factor","[meapi] User Expansion Factor","[velsc] User Expansion Factor","[yebbu] User Expansion Factor","[siski] User Expansion Factor","[savsp] User Expansion Factor","[pereg] User Expansion Factor","[boowa] User Expansion Factor","[legsh] User Expansion Factor","[vertera] User Expansion Factor","[whimb] User Expansion Factor","[allga] User Expansion Factor","[duswa] User Expansion Factor","[sposa] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[reebu] User Expansion Factor","[sante] User Expansion Factor","[crane] User Expansion Factor","[misth] User Expansion Factor","[yebsa] User Expansion Factor","[evegr] User Expansion Factor","[sogsh] User Expansion Factor","[sarwa] User Expansion Factor","[whtpl] User Expansion Factor","[whtsp] User Expansion Factor","[shag1] User Expansion Factor","[henha] User Expansion Factor","[ybsbu] User Expansion Factor","[smew1] User Expansion Factor","[turdo] User Expansion Factor","[rolle] User Expansion Factor","[hoowa] User Expansion Factor","[garwa] User Expansion Factor","[crama] User Expansion Factor","[moorh] User Expansion Factor","[noror] User Expansion Factor","[corsh] User Expansion Factor","[litau] User Expansion Factor","[blhbu] User Expansion Factor","[lapwi] User Expansion Factor","[pibgr] User Expansion Factor","[lanhach] User Expansion Factor","[ferdu] User Expansion Factor","[alpsw] User Expansion Factor","[coot1] User Expansion Factor","[ribgu] User Expansion Factor","[categ] User Expansion Factor","[proubis] User Expansion Factor","[aytinis] User Expansion Factor","[chaff] User Expansion Factor","[egygo] User Expansion Factor","[field] User Expansion Factor","[gloib] User Expansion Factor","[jackd] User Expansion Factor","[lesre] User Expansion Factor","[mamwa] User Expansion Factor","[relpa] User Expansion Factor" -2016,297.8504,73.4926,36.7227,7.1098,3.8567,5.4865,4.9154,4.4454,1.0162,2.2881,2.0824,2.0475,1.8065,1.5892,1.5272,1.4886,1.4572,1.4765,1.5129,1.3753,1.3348,1.3201,1.2706,1.0534,1.2157,1.1633,1.1175,1.1131,1.1179,1.0980,1.0944,1.0933,1.0844,1.0760,1.0673,1.0642,1.0557,1.0545,1.0252,1.0160,1.0142,1.0149,1.0131,1.0080,1.0000,1.0029,1.0025,1.0024,1.0011,1.0011,1.0007,1.0004,1.0001,1.0001,1.0002,1.0001,1.0001,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,66.3373,0,25.1217,1677.0769,9.8468,0,1.0001,3.5509,2.0647,0,0,0,1.2609,1.4660,0,0,1.0524,1.1798,0,0,1.1604,0,4.1649,1.1661,0,1.2473,1.0205,1.0186,0,1.0037,1.0650,0,1.1002,1.0001,0,0,0,1.0040,1.0001,0,1.0058,0,1.0088,1.0304,1.0029,1.0000,0,1.0013,0,1.0001,1.0004,1.0006,1.0002,0,1.0002,1.0001,0,1.0000,0,1.0000,0,0,1.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv deleted file mode 100644 index 4ab145272a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] User Expansion Factor","[savsp] User Expansion Factor","[litst] User Expansion Factor","[ovenb] User Expansion Factor","[sante] User Expansion Factor","[ybsbu] User Expansion Factor" -2016,297.8504,1.5892,1.2706,1.0534,1.1633,1.0557 -2017,0,1.2609,0,4.1649,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv deleted file mode 100644 index e353198a4f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/expansion_factor/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Expansion Factor: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] User Expansion Factor" -2016,1.5129 -2017,1.1798 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv deleted file mode 100644 index 5e981b200f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-usr.csv deleted file mode 100644 index e5796b528b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv deleted file mode 100644 index 5e981b200f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-usr.csv deleted file mode 100644 index e5796b528b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 5e981b200f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv deleted file mode 100644 index e5796b528b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv deleted file mode 100644 index 4856cc93ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv deleted file mode 100644 index 5e981b200f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-usr.csv deleted file mode 100644 index e5796b528b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Ended" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv deleted file mode 100644 index 1c91692ef6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -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,0,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,0,0,0,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-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,0,0,0,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-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,0,0,0,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-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,0,0,0,0,0,0,0,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-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19043,3457,1698,788,1,333,0,712,34,90,68,61,3,20,36,5,50,28,12,0,8,8,8,3,10,5,19,1,4,2,5,4,11,14,0,7,10,5,4,1,0,0,4,6,3,0,2,1,2,1,2,3,2,1,2,1,2,1,1,1,0,0,1,1,1,0 -2016-12-31,22020,2365,933,869,999,341,4,1,180,10,24,83,97,24,20,1,0,8,12,4,17,8,8,12,5,16,1,6,4,0,4,3,4,0,7,4,0,5,6,7,9,0,4,1,3,4,2,2,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1 -2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv deleted file mode 100644 index 1c91692ef6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -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,0,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,0,0,0,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-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,0,0,0,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-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,0,0,0,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-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,0,0,0,0,0,0,0,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-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-30,19043,3457,1698,788,1,333,0,712,34,90,68,61,3,20,36,5,50,28,12,0,8,8,8,3,10,5,19,1,4,2,5,4,11,14,0,7,10,5,4,1,0,0,4,6,3,0,2,1,2,1,2,3,2,1,2,1,2,1,1,1,0,0,1,1,1,0 -2016-12-31,22020,2365,933,869,999,341,4,1,180,10,24,83,97,24,20,1,0,8,12,4,17,8,8,12,5,16,1,6,4,0,4,3,4,0,7,4,0,5,6,7,9,0,4,1,3,4,2,2,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1 -2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv deleted file mode 100644 index 2f8f0cd0cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" -2016-12-23,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0 -2016-12-29,0,0,0,0,0,0 -2016-12-30,712,8,7,3,0,2 -2016-12-31,1,17,4,3,4,0 -2017-01-01,0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-usr.csv deleted file mode 100644 index c7413a01c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of Jobs Ended" -2016-12-30,0 -2016-12-31,7 -2017-01-01,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv deleted file mode 100644 index 649bd2b48c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -2016-12,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 -2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv deleted file mode 100644 index 649bd2b48c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -2016-12,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 -2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv deleted file mode 100644 index c81b5066e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" -2016-12,713,25,11,6,4,2 -2017-01,0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-usr.csv deleted file mode 100644 index 5deb40e5fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of Jobs Ended" -2016-12,7 -2017-01,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv deleted file mode 100644 index f047510cce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -"2016 Q4",41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 -"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv deleted file mode 100644 index f047510cce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -"2016 Q4",41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 -"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 80b9fbd035..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" -"2016 Q4",713,25,11,6,4,2 -"2017 Q1",0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv deleted file mode 100644 index 31ffbaabb0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of Jobs Ended" -"2016 Q4",7 -"2017 Q1",7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv deleted file mode 100644 index 516b59b36e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -2016,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 -2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv deleted file mode 100644 index 516b59b36e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Ended","[reebu] Number of Jobs Ended","[grgsh] Number of Jobs Ended","[moorh] Number of Jobs Ended","[legsh] Number of Jobs Ended","[turdo] Number of Jobs Ended","[caspl] Number of Jobs Ended","[swath] Number of Jobs Ended","[lapwi] Number of Jobs Ended","[dunli] Number of Jobs Ended","[sogsh] Number of Jobs Ended","[sancr] Number of Jobs Ended","[grath] Number of Jobs Ended","[vertera] Number of Jobs Ended","[sposa] Number of Jobs Ended","[garwa] Number of Jobs Ended","[pibgr] Number of Jobs Ended","[sarwa] Number of Jobs Ended","[proubis] Number of Jobs Ended","[noror] Number of Jobs Ended","[savsp] Number of Jobs Ended","[categ] Number of Jobs Ended","[coot1] Number of Jobs Ended","[meapi] Number of Jobs Ended","[shttr] Number of Jobs Ended","[hoowa] Number of Jobs Ended","[henha] Number of Jobs Ended","[yebsa] Number of Jobs Ended","[alpsw] Number of Jobs Ended","[corsh] Number of Jobs Ended","[crane] Number of Jobs Ended","[lanhach] Number of Jobs Ended","[boowa] Number of Jobs Ended","[crama] Number of Jobs Ended","[whimb] Number of Jobs Ended","[litst] Number of Jobs Ended","[misth] Number of Jobs Ended","[shag1] Number of Jobs Ended","[blhbu] Number of Jobs Ended","[litau] Number of Jobs Ended","[aytinis] Number of Jobs Ended","[whtsp] Number of Jobs Ended","[egygo] Number of Jobs Ended","[smew1] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[jackd] Number of Jobs Ended","[rolle] Number of Jobs Ended","[duswa] Number of Jobs Ended","[field] Number of Jobs Ended","[pereg] Number of Jobs Ended","[whtpl] Number of Jobs Ended","[evegr] Number of Jobs Ended","[lesre] Number of Jobs Ended","[sante] Number of Jobs Ended","[siski] Number of Jobs Ended","[velsc] Number of Jobs Ended","[yebbu] Number of Jobs Ended","[yebwa] Number of Jobs Ended","[allga] Number of Jobs Ended","[chaff] Number of Jobs Ended","[ferdu] Number of Jobs Ended","[gloib] Number of Jobs Ended","[mamwa] Number of Jobs Ended","[relpa] Number of Jobs Ended","[ribgu] Number of Jobs Ended" -2016,41063,5822,2631,1657,1000,674,4,713,214,100,92,144,100,44,56,6,50,36,24,4,25,16,16,15,15,21,20,7,8,2,9,7,15,14,7,11,10,10,10,8,9,0,8,7,6,4,4,3,3,1,2,3,2,1,2,2,2,2,1,1,0,0,1,1,1,1 -2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv deleted file mode 100644 index a38b365d0b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Number of Jobs Ended","[savsp] Number of Jobs Ended","[litst] Number of Jobs Ended","[ybsbu] Number of Jobs Ended","[ovenb] Number of Jobs Ended","[sante] Number of Jobs Ended" -2016,713,25,11,6,4,2 -2017,0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-usr.csv deleted file mode 100644 index 32fee121c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/job_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Ended: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of Jobs Ended" -2016,7 -2017,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv deleted file mode 100644 index e67868b6ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (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: Max (Core Count)" -swath,64 -litst,16 -ovenb,16 -ybsbu,16 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv deleted file mode 100644 index 23cda93317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -whimb,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv deleted file mode 100644 index e67868b6ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (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: Max (Core Count)" -swath,64 -litst,16 -ovenb,16 -ybsbu,16 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv deleted file mode 100644 index 23cda93317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -whimb,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv deleted file mode 100644 index e67868b6ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (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: Max (Core Count)" -swath,64 -litst,16 -ovenb,16 -ybsbu,16 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv deleted file mode 100644 index 23cda93317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -whimb,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv deleted file mode 100644 index 6a3dab09fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -duswa,336 -aytinis,192 -dunli,192 -yebwa,160 -velsc,144 -egygo,112 -allga,108 -crane,96 -meapi,96 -sarwa,96 -siski,72 -smew1,72 -whimb,72 -alpsw,64 -chaff,64 -swath,64 -ferdu,60 -pereg,60 -rolle,60 -evegr,56 -vertera,48 -yebbu,40 -noror,32 -reebu,32 -sancr,32 -shag1,32 -shttr,32 -whtsp,24 -crama,20 -gloib,20 -lanhach,20 -garwa,16 -litst,16 -ovenb,16 -relpa,16 -ybsbu,16 -boowa,12 -caspl,12 -grath,12 -honbu,12 -hoowa,12 -litau,12 -misth,12 -sposa,12 -turdo,12 -whtpl,12 -corsh,8 -field,8 -lesre,4 -yebsa,4 -blhbu,1 -categ,1 -coot1,1 -grgsh,1 -henha,1 -jackd,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -sogsh,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv deleted file mode 100644 index e67868b6ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Max (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: Max (Core Count)" -swath,64 -litst,16 -ovenb,16 -ybsbu,16 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv deleted file mode 100644 index 23cda93317..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Max (Core Count)" -whimb,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv deleted file mode 100644 index b1d4ca5c12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -2016-12-27,0,0,0,0,144,0,0,0,96,0,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,0,8,0,0,0,0,16,0,16,0,16,12,0,0,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0 -2016-12-28,0,192,0,0,144,0,0,0,96,32,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,32,8,0,0,20,0,16,0,16,0,16,12,0,0,1,8,0,12,0,12,12,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0 -2016-12-29,0,192,0,160,144,112,0,96,96,32,72,72,0,0,64,64,60,60,0,56,0,40,12,32,32,32,8,0,0,20,1,16,0,16,0,16,12,0,2,12,8,5,12,12,12,12,8,0,4,4,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0 -2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,12,32,32,32,32,0,20,20,20,16,16,16,16,16,12,0,12,12,12,5,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,336,192,192,0,0,112,0,96,96,96,48,72,72,64,64,64,60,60,60,0,48,40,32,16,20,32,8,24,0,0,20,16,16,16,0,8,1,12,2,12,12,12,12,12,8,0,8,8,4,4,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1 -2017-01-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv deleted file mode 100644 index b1d4ca5c12..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,12,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -2016-12-27,0,0,0,0,144,0,0,0,96,0,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,0,8,0,0,0,0,16,0,16,0,16,12,0,0,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0 -2016-12-28,0,192,0,0,144,0,0,0,96,32,72,0,0,0,64,0,0,0,0,0,0,0,12,32,32,32,8,0,0,20,0,16,0,16,0,16,12,0,0,1,8,0,12,0,12,12,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0 -2016-12-29,0,192,0,160,144,112,0,96,96,32,72,72,0,0,64,64,60,60,0,56,0,40,12,32,32,32,8,0,0,20,1,16,0,16,0,16,12,0,2,12,8,5,12,12,12,12,8,0,4,4,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0 -2016-12-30,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,12,32,32,32,32,0,20,20,20,16,16,16,16,16,12,0,12,12,12,5,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2016-12-31,336,192,192,0,0,112,0,96,96,96,48,72,72,64,64,64,60,60,60,0,48,40,32,16,20,32,8,24,0,0,20,16,16,16,0,8,1,12,2,12,12,12,12,12,8,0,8,8,4,4,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1 -2017-01-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv deleted file mode 100644 index 8078917608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" -2016-12-23,0,0,0,0,1,0 -2016-12-24,0,0,0,0,1,0 -2016-12-25,0,0,0,0,1,0 -2016-12-26,0,0,0,0,1,0 -2016-12-27,0,0,16,16,1,0 -2016-12-28,0,0,16,16,1,0 -2016-12-29,64,0,16,16,1,0 -2016-12-30,64,16,16,16,1,1 -2016-12-31,64,16,16,8,0,1 -2017-01-01,0,0,16,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv deleted file mode 100644 index 26596761f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Job Size: Max (Core Count)" -2016-12-30,72 -2016-12-31,72 -2017-01-01,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv deleted file mode 100644 index fbbc80782e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" -2016-12,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv deleted file mode 100644 index fbbc80782e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" -2016-12,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017-01,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv deleted file mode 100644 index 01a07ea061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" -2016-12,64,16,16,16,1,1 -2017-01,0,0,16,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv deleted file mode 100644 index 4804974119..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Job Size: Max (Core Count)" -2016-12,72 -2017-01,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv deleted file mode 100644 index 0a360f458a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv deleted file mode 100644 index 0a360f458a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" -"2016 Q4",336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2017 Q1",0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv deleted file mode 100644 index 6705781299..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" -"2016 Q4",64,16,16,16,1,1 -"2017 Q1",0,0,16,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv deleted file mode 100644 index 1b59d5a5e4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Job Size: Max (Core Count)" -"2016 Q4",72 -"2017 Q1",72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv deleted file mode 100644 index eace0c508e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" -2016,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv deleted file mode 100644 index eace0c508e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[duswa] Job Size: Max (Core Count)","[aytinis] Job Size: Max (Core Count)","[dunli] Job Size: Max (Core Count)","[yebwa] Job Size: Max (Core Count)","[velsc] Job Size: Max (Core Count)","[egygo] Job Size: Max (Core Count)","[allga] Job Size: Max (Core Count)","[crane] Job Size: Max (Core Count)","[meapi] Job Size: Max (Core Count)","[sarwa] Job Size: Max (Core Count)","[siski] Job Size: Max (Core Count)","[smew1] Job Size: Max (Core Count)","[whimb] Job Size: Max (Core Count)","[alpsw] Job Size: Max (Core Count)","[chaff] Job Size: Max (Core Count)","[swath] Job Size: Max (Core Count)","[ferdu] Job Size: Max (Core Count)","[pereg] Job Size: Max (Core Count)","[rolle] Job Size: Max (Core Count)","[evegr] Job Size: Max (Core Count)","[vertera] Job Size: Max (Core Count)","[yebbu] Job Size: Max (Core Count)","[noror] Job Size: Max (Core Count)","[reebu] Job Size: Max (Core Count)","[sancr] Job Size: Max (Core Count)","[shag1] Job Size: Max (Core Count)","[shttr] Job Size: Max (Core Count)","[whtsp] Job Size: Max (Core Count)","[crama] Job Size: Max (Core Count)","[gloib] Job Size: Max (Core Count)","[lanhach] Job Size: Max (Core Count)","[garwa] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[relpa] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[boowa] Job Size: Max (Core Count)","[caspl] Job Size: Max (Core Count)","[grath] Job Size: Max (Core Count)","[honbu] Job Size: Max (Core Count)","[hoowa] Job Size: Max (Core Count)","[litau] Job Size: Max (Core Count)","[misth] Job Size: Max (Core Count)","[sposa] Job Size: Max (Core Count)","[turdo] Job Size: Max (Core Count)","[whtpl] Job Size: Max (Core Count)","[corsh] Job Size: Max (Core Count)","[field] Job Size: Max (Core Count)","[lesre] Job Size: Max (Core Count)","[yebsa] Job Size: Max (Core Count)","[blhbu] Job Size: Max (Core Count)","[categ] Job Size: Max (Core Count)","[coot1] Job Size: Max (Core Count)","[grgsh] Job Size: Max (Core Count)","[henha] Job Size: Max (Core Count)","[jackd] Job Size: Max (Core Count)","[lapwi] Job Size: Max (Core Count)","[legsh] Job Size: Max (Core Count)","[mamwa] Job Size: Max (Core Count)","[moorh] Job Size: Max (Core Count)","[pibgr] Job Size: Max (Core Count)","[proubis] Job Size: Max (Core Count)","[ribgu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)","[sogsh] Job Size: Max (Core Count)" -2016,336,192,192,160,144,112,108,96,96,96,72,72,72,64,64,64,60,60,60,56,48,40,32,32,32,32,32,24,20,20,20,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,8,8,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2017,0,0,192,160,0,0,0,96,96,48,0,0,72,32,64,0,60,60,5,0,48,0,12,24,0,24,8,24,0,0,20,16,0,16,0,0,0,12,2,12,0,12,12,12,8,0,8,8,4,4,0,1,1,0,0,0,1,0,0,1,0,1,0,0,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv deleted file mode 100644 index 924df04519..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Job Size: Max (Core Count)","[litst] Job Size: Max (Core Count)","[ovenb] Job Size: Max (Core Count)","[ybsbu] Job Size: Max (Core Count)","[sante] Job Size: Max (Core Count)","[savsp] Job Size: Max (Core Count)" -2016,64,16,16,16,1,1 -2017,0,0,16,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv deleted file mode 100644 index 3c668d6e60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/max_processors/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Max (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Job Size: Max (Core Count)" -2016,72 -2017,72 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv deleted file mode 100644 index 521f18d2e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (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: Min (Core Count)" -ovenb,16 -litst,12 -ybsbu,8 -swath,4 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv deleted file mode 100644 index 33e1ebacbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -whimb,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv deleted file mode 100644 index 521f18d2e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (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: Min (Core Count)" -ovenb,16 -litst,12 -ybsbu,8 -swath,4 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv deleted file mode 100644 index 33e1ebacbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -whimb,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv deleted file mode 100644 index 521f18d2e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (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: Min (Core Count)" -ovenb,16 -litst,12 -ybsbu,8 -swath,4 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv deleted file mode 100644 index 33e1ebacbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -whimb,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv deleted file mode 100644 index 144ab64663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -yebwa,160 -aytinis,112 -egygo,112 -allga,108 -crane,96 -meapi,96 -velsc,80 -smew1,72 -chaff,64 -ferdu,60 -pereg,60 -evegr,56 -duswa,48 -siski,48 -whimb,36 -alpsw,32 -crama,20 -gloib,20 -ovenb,16 -relpa,16 -whtsp,16 -yebbu,16 -caspl,12 -litst,12 -misth,12 -sancr,12 -sarwa,12 -shag1,12 -sposa,12 -whtpl,12 -corsh,8 -dunli,8 -field,8 -hoowa,8 -reebu,8 -turdo,8 -ybsbu,8 -litau,5 -rolle,5 -lesre,4 -swath,4 -yebsa,4 -grath,2 -blhbu,1 -boowa,1 -categ,1 -coot1,1 -garwa,1 -grgsh,1 -henha,1 -honbu,1 -jackd,1 -lanhach,1 -lapwi,1 -legsh,1 -mamwa,1 -moorh,1 -noror,1 -pibgr,1 -proubis,1 -ribgu,1 -sante,1 -savsp,1 -shttr,1 -sogsh,1 -vertera,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv deleted file mode 100644 index 521f18d2e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Job Size: Min (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: Min (Core Count)" -ovenb,16 -litst,12 -ybsbu,8 -swath,4 -sante,1 -savsp,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv deleted file mode 100644 index 33e1ebacbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Job Size: Min (Core Count)" -whimb,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv deleted file mode 100644 index 7481442c87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0 -2016-12-27,0,0,0,0,0,96,144,0,64,0,0,0,0,72,0,0,0,0,16,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,0,0,1,0,12,0,0,0,1,0,8,0,0 -2016-12-28,0,112,0,0,0,96,144,0,64,0,0,0,0,48,0,0,0,20,16,0,0,0,0,0,12,12,32,12,0,12,0,0,0,8,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,1,0,1,1,12,0,0,0,1,0,8,0,0 -2016-12-29,160,112,112,0,96,96,144,72,64,60,60,56,0,48,0,0,0,20,16,0,0,40,0,0,12,12,32,12,12,12,8,0,0,8,8,8,8,5,0,4,4,4,2,0,12,0,0,16,0,1,1,0,1,1,0,1,1,12,1,0,0,1,0,8,0,0 -2016-12-30,160,112,112,108,96,96,80,72,64,60,60,56,48,48,72,32,20,20,16,16,0,16,0,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,16,1,1,1,1,1,1,1,1,1,12,1,1,1,1,1,1,1,1 -2016-12-31,0,112,112,0,96,96,0,72,64,60,60,0,336,48,36,64,0,0,16,0,16,40,12,16,12,12,12,12,12,0,8,12,8,8,8,8,8,8,5,4,64,4,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,8,0,1,1,0,1,8,1,12 -2017-01-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv deleted file mode 100644 index 7481442c87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,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,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0 -2016-12-27,0,0,0,0,0,96,144,0,64,0,0,0,0,72,0,0,0,0,16,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,0,0,1,0,12,0,0,0,1,0,8,0,0 -2016-12-28,0,112,0,0,0,96,144,0,64,0,0,0,0,48,0,0,0,20,16,0,0,0,0,0,12,12,32,12,0,12,0,0,0,8,8,12,16,0,0,0,0,0,0,0,12,0,0,16,0,0,1,0,0,1,0,1,1,12,0,0,0,1,0,8,0,0 -2016-12-29,160,112,112,0,96,96,144,72,64,60,60,56,0,48,0,0,0,20,16,0,0,40,0,0,12,12,32,12,12,12,8,0,0,8,8,8,8,5,0,4,4,4,2,0,12,0,0,16,0,1,1,0,1,1,0,1,1,12,1,0,0,1,0,8,0,0 -2016-12-30,160,112,112,108,96,96,80,72,64,60,60,56,48,48,72,32,20,20,16,16,0,16,0,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,16,1,1,1,1,1,1,1,1,1,12,1,1,1,1,1,1,1,1 -2016-12-31,0,112,112,0,96,96,0,72,64,60,60,0,336,48,36,64,0,0,16,0,16,40,12,16,12,12,12,12,12,0,8,12,8,8,8,8,8,8,5,4,64,4,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,8,0,1,1,0,1,8,1,12 -2017-01-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv deleted file mode 100644 index 333f846e7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" -2016-12-23,0,0,0,0,1,0 -2016-12-24,0,0,0,0,1,0 -2016-12-25,0,0,0,0,1,0 -2016-12-26,0,0,0,0,1,0 -2016-12-27,16,0,16,0,1,0 -2016-12-28,16,0,16,0,1,0 -2016-12-29,16,0,8,4,1,0 -2016-12-30,16,12,8,4,1,1 -2016-12-31,16,16,8,64,0,1 -2017-01-01,16,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv deleted file mode 100644 index c32826dea6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Job Size: Min (Core Count)" -2016-12-30,72 -2016-12-31,36 -2017-01-01,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv deleted file mode 100644 index ce8a7c0ace..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" -2016-12,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -2017-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv deleted file mode 100644 index ce8a7c0ace..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" -2016-12,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -2017-01,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv deleted file mode 100644 index 7dbc159f2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" -2016-12,16,12,8,4,1,1 -2017-01,16,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv deleted file mode 100644 index fe537e772a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Job Size: Min (Core Count)" -2016-12,36 -2017-01,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv deleted file mode 100644 index 42fc50e850..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" -"2016 Q4",160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -"2017 Q1",160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv deleted file mode 100644 index 42fc50e850..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" -"2016 Q4",160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -"2017 Q1",160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv deleted file mode 100644 index 7c4f9b5341..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" -"2016 Q4",16,12,8,4,1,1 -"2017 Q1",16,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv deleted file mode 100644 index ad2e0cbcb6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Job Size: Min (Core Count)" -"2016 Q4",36 -"2017 Q1",36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv deleted file mode 100644 index b3bdf30f3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" -2016,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -2017,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv deleted file mode 100644 index b3bdf30f3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[yebwa] Job Size: Min (Core Count)","[aytinis] Job Size: Min (Core Count)","[egygo] Job Size: Min (Core Count)","[allga] Job Size: Min (Core Count)","[crane] Job Size: Min (Core Count)","[meapi] Job Size: Min (Core Count)","[velsc] Job Size: Min (Core Count)","[smew1] Job Size: Min (Core Count)","[chaff] Job Size: Min (Core Count)","[ferdu] Job Size: Min (Core Count)","[pereg] Job Size: Min (Core Count)","[evegr] Job Size: Min (Core Count)","[duswa] Job Size: Min (Core Count)","[siski] Job Size: Min (Core Count)","[whimb] Job Size: Min (Core Count)","[alpsw] Job Size: Min (Core Count)","[crama] Job Size: Min (Core Count)","[gloib] Job Size: Min (Core Count)","[ovenb] Job Size: Min (Core Count)","[relpa] Job Size: Min (Core Count)","[whtsp] Job Size: Min (Core Count)","[yebbu] Job Size: Min (Core Count)","[caspl] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[misth] Job Size: Min (Core Count)","[sancr] Job Size: Min (Core Count)","[sarwa] Job Size: Min (Core Count)","[shag1] Job Size: Min (Core Count)","[sposa] Job Size: Min (Core Count)","[whtpl] Job Size: Min (Core Count)","[corsh] Job Size: Min (Core Count)","[dunli] Job Size: Min (Core Count)","[field] Job Size: Min (Core Count)","[hoowa] Job Size: Min (Core Count)","[reebu] Job Size: Min (Core Count)","[turdo] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[litau] Job Size: Min (Core Count)","[rolle] Job Size: Min (Core Count)","[lesre] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[yebsa] Job Size: Min (Core Count)","[grath] Job Size: Min (Core Count)","[blhbu] Job Size: Min (Core Count)","[boowa] Job Size: Min (Core Count)","[categ] Job Size: Min (Core Count)","[coot1] Job Size: Min (Core Count)","[garwa] Job Size: Min (Core Count)","[grgsh] Job Size: Min (Core Count)","[henha] Job Size: Min (Core Count)","[honbu] Job Size: Min (Core Count)","[jackd] Job Size: Min (Core Count)","[lanhach] Job Size: Min (Core Count)","[lapwi] Job Size: Min (Core Count)","[legsh] Job Size: Min (Core Count)","[mamwa] Job Size: Min (Core Count)","[moorh] Job Size: Min (Core Count)","[noror] Job Size: Min (Core Count)","[pibgr] Job Size: Min (Core Count)","[proubis] Job Size: Min (Core Count)","[ribgu] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)","[shttr] Job Size: Min (Core Count)","[sogsh] Job Size: Min (Core Count)","[vertera] Job Size: Min (Core Count)" -2016,160,112,112,108,96,96,80,72,64,60,60,56,48,48,36,32,20,20,16,16,16,16,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,5,5,4,4,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,1,1,1,1 -2017,160,0,0,0,96,96,0,0,64,60,60,0,0,0,36,32,0,0,16,0,16,0,12,0,12,0,16,24,12,0,8,8,8,0,8,8,0,12,5,4,0,4,2,0,0,1,1,8,0,0,1,0,20,1,0,0,1,1,0,1,0,0,1,8,1,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv deleted file mode 100644 index b03c000ce2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[ovenb] Job Size: Min (Core Count)","[litst] Job Size: Min (Core Count)","[ybsbu] Job Size: Min (Core Count)","[swath] Job Size: Min (Core Count)","[sante] Job Size: Min (Core Count)","[savsp] Job Size: Min (Core Count)" -2016,16,12,8,4,1,1 -2017,16,0,0,0,0,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv deleted file mode 100644 index 8fdd206747..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/min_processors/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Min (Core Count): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Job Size: Min (Core Count)" -2016,36 -2017,36 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv deleted file mode 100644 index dd39128d49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv deleted file mode 100644 index a96bb9eb6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv deleted file mode 100644 index dd39128d49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv deleted file mode 100644 index a96bb9eb6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv deleted file mode 100644 index dd39128d49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv deleted file mode 100644 index a96bb9eb6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv deleted file mode 100644 index d4321b2153..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv deleted file mode 100644 index dd39128d49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv deleted file mode 100644 index a96bb9eb6f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv deleted file mode 100644 index 97501c63a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -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)","[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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv deleted file mode 100644 index 97501c63a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -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)","[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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv deleted file mode 100644 index ab5d786055..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -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 ---------- -Day,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" -2016-12-23,0,0,0,0,0.025000000,0 -2016-12-24,0,0,0,0,0.025000000,0 -2016-12-25,0,0,0,0,0.025000000,0 -2016-12-26,0,0,0,0,0.025000000,0 -2016-12-27,0.400000000,0,0.400000000,0,0.025000000,0 -2016-12-28,0.400000000,0,0.400000000,0,0.025000000,0 -2016-12-29,0.400000000,0,0.120000000,0.107692308,0.025000000,0 -2016-12-30,0.400000000,0.164285714,0.116666667,0.051051893,0.025000000,0.025000000 -2016-12-31,0.400000000,0.400000000,0.200000000,1.600000000,0,0.025000000 -2017-01-01,0.400000000,0,0,0,0,0.025000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv deleted file mode 100644 index cdfc72805a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Job Size: Normalized (% of Total Cores)" -2016-12-30,1.800000000 -2016-12-31,1.300000000 -2017-01-01,1.157142857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv deleted file mode 100644 index af431a3a64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -2017-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/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv deleted file mode 100644 index af431a3a64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -2017-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/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv deleted file mode 100644 index e2f3ab3dc4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Month,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" -2016-12,0.400000000,0.177272727,0.116666667,0.051051893,0.025000000,0.025000000 -2017-01,0.400000000,0,0,0,0,0.025000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv deleted file mode 100644 index 7d4628a813..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Job Size: Normalized (% of Total Cores)" -2016-12,1.300000000 -2017-01,1.157142857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv deleted file mode 100644 index e1d8bc46a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -"2017 Q1",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/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv deleted file mode 100644 index e1d8bc46a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[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 Q4",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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -"2017 Q1",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/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv deleted file mode 100644 index 75add28fc6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Quarter,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" -"2016 Q4",0.400000000,0.177272727,0.116666667,0.051051893,0.025000000,0.025000000 -"2017 Q1",0.400000000,0,0,0,0,0.025000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv deleted file mode 100644 index 366ab63b3d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Job Size: Normalized (% of Total Cores)" -"2016 Q4",1.300000000 -"2017 Q1",1.157142857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv deleted file mode 100644 index 213c18bfda..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -2017,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/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv deleted file mode 100644 index 213c18bfda..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[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,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.300000000,1.400000000,1.222000000,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.336486486,0.350000000,0.300000000,0.300000000,0.300000000,0.265625000,0.272169811,0.252380952,0.182142857,0.580000000,0.200289855,0.200000000,0.200000000,0.195454545,0.186363636,0.177272727,0.300000000,0.146990741,0.116666667,0.100000000,0.100000000,0.067565093,0.051051893,0.047583530,0.043333333,0.028712871,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 -2017,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/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv deleted file mode 100644 index 95c9c1e0aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -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 ---------- -Year,"[ovenb] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)" -2016,0.400000000,0.177272727,0.116666667,0.051051893,0.025000000,0.025000000 -2017,0.400000000,0,0,0,0,0.025000000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv deleted file mode 100644 index faf6b8fbb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/normalized_avg_processors/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Job Size: Normalized (% of Total Cores): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Job Size: Normalized (% of Total Cores)" -2016,1.300000000 -2017,1.157142857 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv deleted file mode 100644 index 4a9636f915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv deleted file mode 100644 index 0a1bc8739d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv deleted file mode 100644 index 4a9636f915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv deleted file mode 100644 index 0a1bc8739d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 4a9636f915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 0a1bc8739d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv deleted file mode 100644 index dc8f14d235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv deleted file mode 100644 index 4a9636f915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv deleted file mode 100644 index 0a1bc8739d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Running" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv deleted file mode 100644 index 38753be810..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1,12,0,0,0,2,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0 -2016-12-28,1,13,0,190,0,2,0,0,147,0,0,11,0,0,0,16,0,3,0,1,0,0,0,15,10,5,0,0,0,0,0,0,1,0,0,0,9,2,0,0,9,0,0,0,1,4,0,0,0,0,0,3,0,0,1,2,1,0,0,0,1,0,1,1,0,0 -2016-12-29,249,25,0,960,0,19,0,13,235,0,0,24,1,0,10,20,50,7,0,1,0,0,0,22,12,10,5,7,0,6,3,1,1,0,0,0,9,3,0,1,9,0,4,7,5,4,0,0,0,0,1,3,1,1,2,2,1,1,1,0,1,1,1,1,0,0 -2016-12-30,19298,3466,1698,1635,719,349,0,713,252,90,68,94,4,20,60,20,50,35,12,1,8,8,8,22,18,16,20,15,4,8,8,4,15,14,1,7,11,9,4,1,9,0,8,7,6,4,4,3,3,1,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1 -2016-12-31,22499,2368,933,1637,999,357,16,1,255,10,24,83,98,26,24,48,0,9,12,5,17,8,8,19,12,16,1,17,4,6,7,3,4,0,9,4,1,6,6,7,9,9,4,1,3,5,2,2,1,1,1,0,0,1,0,1,0,1,0,0,1,1,0,0,0,1 -2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv deleted file mode 100644 index 38753be810..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,1,12,0,0,0,2,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0 -2016-12-28,1,13,0,190,0,2,0,0,147,0,0,11,0,0,0,16,0,3,0,1,0,0,0,15,10,5,0,0,0,0,0,0,1,0,0,0,9,2,0,0,9,0,0,0,1,4,0,0,0,0,0,3,0,0,1,2,1,0,0,0,1,0,1,1,0,0 -2016-12-29,249,25,0,960,0,19,0,13,235,0,0,24,1,0,10,20,50,7,0,1,0,0,0,22,12,10,5,7,0,6,3,1,1,0,0,0,9,3,0,1,9,0,4,7,5,4,0,0,0,0,1,3,1,1,2,2,1,1,1,0,1,1,1,1,0,0 -2016-12-30,19298,3466,1698,1635,719,349,0,713,252,90,68,94,4,20,60,20,50,35,12,1,8,8,8,22,18,16,20,15,4,8,8,4,15,14,1,7,11,9,4,1,9,0,8,7,6,4,4,3,3,1,3,3,2,1,2,2,2,2,1,1,1,1,1,1,1,1 -2016-12-31,22499,2368,933,1637,999,357,16,1,255,10,24,83,98,26,24,48,0,9,12,5,17,8,8,19,12,16,1,17,4,6,7,3,4,0,9,4,1,6,6,7,9,9,4,1,3,5,2,2,1,1,1,0,0,1,0,1,0,1,0,0,1,1,0,0,0,1 -2017-01-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv deleted file mode 100644 index 3e50faea1f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" -2016-12-23,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,1 -2016-12-25,0,0,0,0,0,1 -2016-12-26,0,0,0,0,0,1 -2016-12-27,0,0,0,1,4,1 -2016-12-28,0,0,0,1,4,1 -2016-12-29,13,0,0,5,4,2 -2016-12-30,713,8,7,6,4,2 -2016-12-31,1,17,4,3,5,0 -2017-01-01,0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv deleted file mode 100644 index 0c3a2e70bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of Jobs Running" -2016-12-30,1 -2016-12-31,9 -2017-01-01,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv deleted file mode 100644 index 2526a9ee41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv deleted file mode 100644 index 2526a9ee41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv deleted file mode 100644 index 826b7723d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" -2016-12,713,25,11,6,5,2 -2017-01,0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv deleted file mode 100644 index e92b751661..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of Jobs Running" -2016-12,9 -2017-01,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv deleted file mode 100644 index acdae6c360..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv deleted file mode 100644 index acdae6c360..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 944cb09d03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" -"2016 Q4",713,25,11,6,5,2 -"2017 Q1",0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv deleted file mode 100644 index 1e4dba7dad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of Jobs Running" -"2016 Q4",9 -"2017 Q1",7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv deleted file mode 100644 index f2ccae642a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv deleted file mode 100644 index f2ccae642a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Running","[reebu] Number of Jobs Running","[grgsh] Number of Jobs Running","[moorh] Number of Jobs Running","[legsh] Number of Jobs Running","[turdo] Number of Jobs Running","[caspl] Number of Jobs Running","[swath] Number of Jobs Running","[lapwi] Number of Jobs Running","[dunli] Number of Jobs Running","[sogsh] Number of Jobs Running","[sancr] Number of Jobs Running","[grath] Number of Jobs Running","[vertera] Number of Jobs Running","[sposa] Number of Jobs Running","[garwa] Number of Jobs Running","[pibgr] Number of Jobs Running","[sarwa] Number of Jobs Running","[proubis] Number of Jobs Running","[noror] Number of Jobs Running","[savsp] Number of Jobs Running","[categ] Number of Jobs Running","[coot1] Number of Jobs Running","[meapi] Number of Jobs Running","[shttr] Number of Jobs Running","[hoowa] Number of Jobs Running","[henha] Number of Jobs Running","[yebsa] Number of Jobs Running","[alpsw] Number of Jobs Running","[corsh] Number of Jobs Running","[crane] Number of Jobs Running","[lanhach] Number of Jobs Running","[boowa] Number of Jobs Running","[crama] Number of Jobs Running","[whimb] Number of Jobs Running","[litst] Number of Jobs Running","[misth] Number of Jobs Running","[shag1] Number of Jobs Running","[blhbu] Number of Jobs Running","[litau] Number of Jobs Running","[aytinis] Number of Jobs Running","[whtsp] Number of Jobs Running","[egygo] Number of Jobs Running","[smew1] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[jackd] Number of Jobs Running","[rolle] Number of Jobs Running","[duswa] Number of Jobs Running","[field] Number of Jobs Running","[pereg] Number of Jobs Running","[whtpl] Number of Jobs Running","[evegr] Number of Jobs Running","[lesre] Number of Jobs Running","[sante] Number of Jobs Running","[siski] Number of Jobs Running","[velsc] Number of Jobs Running","[yebbu] Number of Jobs Running","[yebwa] Number of Jobs Running","[allga] Number of Jobs Running","[chaff] Number of Jobs Running","[ferdu] Number of Jobs Running","[gloib] Number of Jobs Running","[mamwa] Number of Jobs Running","[relpa] Number of Jobs Running","[ribgu] Number of Jobs Running" -2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,13920,84,0,972,0,308,752,0,94,139,62,0,1,25,4,47,0,9,12,26,1,8,8,9,7,0,0,11,8,14,7,9,0,0,7,0,1,1,0,2,0,9,0,0,0,1,0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv deleted file mode 100644 index 8756c96685..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Number of Jobs Running","[savsp] Number of Jobs Running","[litst] Number of Jobs Running","[ybsbu] Number of Jobs Running","[ovenb] Number of Jobs Running","[sante] Number of Jobs Running" -2016,713,25,11,6,5,2 -2017,0,1,0,0,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv deleted file mode 100644 index 109af732fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/running_job_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Running: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of Jobs Running" -2016,9 -2017,7 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv deleted file mode 100644 index d3164746c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv deleted file mode 100644 index 847f86f884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv deleted file mode 100644 index d3164746c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv deleted file mode 100644 index 847f86f884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv deleted file mode 100644 index d3164746c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 847f86f884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv deleted file mode 100644 index fc2ea79995..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -honbu,54983 -reebu,5906 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -caspl,756 -swath,713 -lapwi,308 -dunli,239 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -yebwa,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv deleted file mode 100644 index d3164746c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv deleted file mode 100644 index 847f86f884..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Started" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv deleted file mode 100644 index c2e90a647f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0 -2016-12-28,0,1,0,190,0,0,0,0,147,0,0,9,0,0,0,11,0,3,0,0,0,0,0,12,5,5,0,0,0,0,0,0,0,0,0,0,9,2,0,0,9,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0 -2016-12-29,248,12,0,770,0,17,0,13,88,0,0,13,1,0,10,4,50,4,0,0,0,0,0,7,2,5,5,7,0,6,3,1,0,0,0,0,0,1,0,1,0,0,4,7,4,0,0,0,0,0,1,0,1,1,1,0,0,1,1,0,0,1,0,0,0,0 -2016-12-30,19049,3441,1698,675,719,330,0,700,17,90,68,70,3,20,50,0,0,28,12,0,8,8,8,0,6,6,15,8,4,2,5,3,14,14,1,7,2,6,4,0,0,0,4,0,1,0,4,3,3,1,2,0,1,0,0,0,1,1,0,1,0,0,0,0,1,1 -2016-12-31,22244,2359,933,790,281,341,16,0,37,10,24,50,97,26,0,33,0,2,12,4,17,8,8,0,4,5,0,3,4,0,4,3,0,0,8,4,0,2,6,7,0,9,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv deleted file mode 100644 index c2e90a647f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -2016-12-22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0 -2016-12-28,0,1,0,190,0,0,0,0,147,0,0,9,0,0,0,11,0,3,0,0,0,0,0,12,5,5,0,0,0,0,0,0,0,0,0,0,9,2,0,0,9,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0 -2016-12-29,248,12,0,770,0,17,0,13,88,0,0,13,1,0,10,4,50,4,0,0,0,0,0,7,2,5,5,7,0,6,3,1,0,0,0,0,0,1,0,1,0,0,4,7,4,0,0,0,0,0,1,0,1,1,1,0,0,1,1,0,0,1,0,0,0,0 -2016-12-30,19049,3441,1698,675,719,330,0,700,17,90,68,70,3,20,50,0,0,28,12,0,8,8,8,0,6,6,15,8,4,2,5,3,14,14,1,7,2,6,4,0,0,0,4,0,1,0,4,3,3,1,2,0,1,0,0,0,1,1,0,1,0,0,0,0,1,1 -2016-12-31,22244,2359,933,790,281,341,16,0,37,10,24,50,97,26,0,33,0,2,12,4,17,8,8,0,4,5,0,3,4,0,4,3,0,0,8,4,0,2,6,7,0,9,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv deleted file mode 100644 index 5cd2ee1f58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" -2016-12-23,0,0,0,0,0,1 -2016-12-24,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0 -2016-12-27,0,0,0,1,4,0 -2016-12-28,0,0,0,0,0,0 -2016-12-29,13,0,0,4,0,1 -2016-12-30,700,8,7,1,0,0 -2016-12-31,0,17,4,0,1,0 -2017-01-01,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv deleted file mode 100644 index 409847ac71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of Jobs Started" -2016-12-30,1 -2016-12-31,8 -2017-01-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv deleted file mode 100644 index 885fa5e012..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv deleted file mode 100644 index 885fa5e012..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -2016-12,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv deleted file mode 100644 index f685b5de5e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" -2016-12,713,25,11,6,5,2 -2017-01,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv deleted file mode 100644 index 1e2d599d66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of Jobs Started" -2016-12,9 -2017-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv deleted file mode 100644 index f7a705c787..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv deleted file mode 100644 index f7a705c787..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -"2016 Q4",41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 60942c46f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" -"2016 Q4",713,25,11,6,5,2 -"2017 Q1",0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv deleted file mode 100644 index d3cd933915..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of Jobs Started" -"2016 Q4",9 -"2017 Q1",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv deleted file mode 100644 index 2e7ece8a63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv deleted file mode 100644 index 2e7ece8a63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Started","[reebu] Number of Jobs Started","[grgsh] Number of Jobs Started","[moorh] Number of Jobs Started","[legsh] Number of Jobs Started","[turdo] Number of Jobs Started","[caspl] Number of Jobs Started","[swath] Number of Jobs Started","[lapwi] Number of Jobs Started","[dunli] Number of Jobs Started","[sogsh] Number of Jobs Started","[sancr] Number of Jobs Started","[grath] Number of Jobs Started","[vertera] Number of Jobs Started","[sposa] Number of Jobs Started","[garwa] Number of Jobs Started","[pibgr] Number of Jobs Started","[sarwa] Number of Jobs Started","[proubis] Number of Jobs Started","[noror] Number of Jobs Started","[savsp] Number of Jobs Started","[categ] Number of Jobs Started","[coot1] Number of Jobs Started","[meapi] Number of Jobs Started","[shttr] Number of Jobs Started","[hoowa] Number of Jobs Started","[henha] Number of Jobs Started","[yebsa] Number of Jobs Started","[alpsw] Number of Jobs Started","[corsh] Number of Jobs Started","[crane] Number of Jobs Started","[lanhach] Number of Jobs Started","[boowa] Number of Jobs Started","[crama] Number of Jobs Started","[whimb] Number of Jobs Started","[litst] Number of Jobs Started","[misth] Number of Jobs Started","[shag1] Number of Jobs Started","[blhbu] Number of Jobs Started","[litau] Number of Jobs Started","[aytinis] Number of Jobs Started","[whtsp] Number of Jobs Started","[egygo] Number of Jobs Started","[smew1] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[jackd] Number of Jobs Started","[rolle] Number of Jobs Started","[duswa] Number of Jobs Started","[field] Number of Jobs Started","[pereg] Number of Jobs Started","[whtpl] Number of Jobs Started","[evegr] Number of Jobs Started","[lesre] Number of Jobs Started","[sante] Number of Jobs Started","[siski] Number of Jobs Started","[velsc] Number of Jobs Started","[yebbu] Number of Jobs Started","[yebwa] Number of Jobs Started","[allga] Number of Jobs Started","[chaff] Number of Jobs Started","[ferdu] Number of Jobs Started","[gloib] Number of Jobs Started","[mamwa] Number of Jobs Started","[relpa] Number of Jobs Started","[ribgu] Number of Jobs Started" -2016,41542,5825,2631,2425,1000,690,16,713,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,13441,81,0,204,0,292,740,0,19,139,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv deleted file mode 100644 index 5f79dcf0af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Number of Jobs Started","[savsp] Number of Jobs Started","[litst] Number of Jobs Started","[ybsbu] Number of Jobs Started","[ovenb] Number of Jobs Started","[sante] Number of Jobs Started" -2016,713,25,11,6,5,2 -2017,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv deleted file mode 100644 index 3eb624eb04..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/started_job_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Started: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of Jobs Started" -2016,9 -2017,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv deleted file mode 100644 index 03becd905e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,49649 -reebu,5892 -grgsh,2631 -moorh,2586 -turdo,981 -legsh,719 -caspl,693 -lapwi,308 -sogsh,154 -dunli,123 -vertera,69 -pibgr,50 -garwa,49 -sarwa,44 -proubis,36 -noror,30 -savsp,26 -sposa,25 -categ,24 -coot1,24 -hoowa,21 -henha,20 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -yebsa,15 -boowa,14 -crama,14 -sancr,12 -whimb,12 -litst,11 -misth,11 -blhbu,10 -litau,10 -shag1,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -shttr,5 -ybsbu,5 -jackd,4 -ovenb,4 -rolle,4 -field,3 -whtpl,3 -evegr,2 -lesre,2 -meapi,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -grath,1 -mamwa,1 -pereg,1 -relpa,1 -ribgu,1 -sante,1 -velsc,1 -yebbu,1 -duswa,0 -siski,0 -swath,0 -yebwa,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv deleted file mode 100644 index 03becd905e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,49649 -reebu,5892 -grgsh,2631 -moorh,2586 -turdo,981 -legsh,719 -caspl,693 -lapwi,308 -sogsh,154 -dunli,123 -vertera,69 -pibgr,50 -garwa,49 -sarwa,44 -proubis,36 -noror,30 -savsp,26 -sposa,25 -categ,24 -coot1,24 -hoowa,21 -henha,20 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -yebsa,15 -boowa,14 -crama,14 -sancr,12 -whimb,12 -litst,11 -misth,11 -blhbu,10 -litau,10 -shag1,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -shttr,5 -ybsbu,5 -jackd,4 -ovenb,4 -rolle,4 -field,3 -whtpl,3 -evegr,2 -lesre,2 -meapi,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -grath,1 -mamwa,1 -pereg,1 -relpa,1 -ribgu,1 -sante,1 -velsc,1 -yebbu,1 -duswa,0 -siski,0 -swath,0 -yebwa,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv deleted file mode 100644 index 17d5ede6d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -savsp,26 -litst,11 -ybsbu,5 -ovenb,4 -sante,1 -swath,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv deleted file mode 100644 index 6cc406ea89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -whimb,12 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv deleted file mode 100644 index 99ff8ca61d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,53053 -reebu,5905 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -swath,713 -caspl,693 -lapwi,308 -dunli,164 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv deleted file mode 100644 index 99ff8ca61d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,53053 -reebu,5905 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -swath,713 -caspl,693 -lapwi,308 -dunli,164 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv deleted file mode 100644 index d2b040548f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv deleted file mode 100644 index ab79c55b9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv deleted file mode 100644 index 99ff8ca61d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,53053 -reebu,5905 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -swath,713 -caspl,693 -lapwi,308 -dunli,164 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv deleted file mode 100644 index 99ff8ca61d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,53053 -reebu,5905 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -swath,713 -caspl,693 -lapwi,308 -dunli,164 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv deleted file mode 100644 index d2b040548f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv deleted file mode 100644 index ab79c55b9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv deleted file mode 100644 index 99ff8ca61d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,53053 -reebu,5905 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -swath,713 -caspl,693 -lapwi,308 -dunli,164 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv deleted file mode 100644 index 99ff8ca61d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -honbu,53053 -reebu,5905 -grgsh,2631 -moorh,2629 -legsh,1000 -turdo,982 -swath,713 -caspl,693 -lapwi,308 -dunli,164 -sogsh,154 -sancr,144 -grath,101 -vertera,69 -sposa,60 -garwa,53 -pibgr,50 -sarwa,45 -proubis,36 -noror,30 -savsp,26 -categ,24 -coot1,24 -meapi,24 -shttr,22 -hoowa,21 -henha,20 -yebsa,18 -alpsw,16 -corsh,16 -crane,16 -lanhach,16 -boowa,15 -crama,14 -whimb,14 -litst,11 -misth,11 -shag1,11 -blhbu,10 -litau,10 -aytinis,9 -whtsp,9 -egygo,8 -smew1,7 -ybsbu,6 -ovenb,5 -jackd,4 -rolle,4 -duswa,3 -field,3 -pereg,3 -whtpl,3 -evegr,2 -lesre,2 -sante,2 -siski,2 -velsc,2 -yebbu,2 -allga,1 -chaff,1 -ferdu,1 -gloib,1 -mamwa,1 -relpa,1 -ribgu,1 -yebwa,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv deleted file mode 100644 index d2b040548f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -swath,713 -savsp,26 -litst,11 -ybsbu,6 -ovenb,5 -sante,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv deleted file mode 100644 index ab79c55b9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Number of Jobs Submitted" -whimb,14 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv deleted file mode 100644 index e1d02dd076..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[field] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,190,0,0,0,147,0,0,0,0,11,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,198,10,0,770,17,0,0,88,0,0,0,50,0,4,0,0,0,10,0,0,5,5,0,6,3,1,7,0,0,10,0,0,0,0,1,1,0,0,4,7,0,4,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0 -2016-12-30,18454,3437,1698,675,330,719,0,17,68,50,20,0,0,28,12,0,8,15,8,8,6,15,4,2,5,3,8,14,14,0,0,7,2,4,0,6,0,0,4,0,5,0,4,0,3,1,0,1,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0 -2016-12-31,19485,2355,933,747,341,0,16,37,24,9,26,0,33,1,12,4,17,0,8,8,5,0,4,0,4,3,0,0,0,2,7,4,0,6,7,2,0,9,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,11511,80,0,204,292,0,677,19,62,64,23,0,0,8,12,25,1,0,8,8,0,0,8,8,4,9,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv deleted file mode 100644 index e1d02dd076..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[field] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,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-25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-26,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-27,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,190,0,0,0,147,0,0,0,0,11,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,198,10,0,770,17,0,0,88,0,0,0,50,0,4,0,0,0,10,0,0,5,5,0,6,3,1,7,0,0,10,0,0,0,0,1,1,0,0,4,7,0,4,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0 -2016-12-30,18454,3437,1698,675,330,719,0,17,68,50,20,0,0,28,12,0,8,15,8,8,6,15,4,2,5,3,8,14,14,0,0,7,2,4,0,6,0,0,4,0,5,0,4,0,3,1,0,1,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0 -2016-12-31,19485,2355,933,747,341,0,16,37,24,9,26,0,33,1,12,4,17,0,8,8,5,0,4,0,4,3,0,0,0,2,7,4,0,6,7,2,0,9,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2017-01-01,11511,80,0,204,292,0,677,19,62,64,23,0,0,8,12,25,1,0,8,8,0,0,8,8,4,9,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv deleted file mode 100644 index 14f73692a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[swath] Number of Jobs Submitted" -2016-12-23,0,0,0,0,1,0 -2016-12-24,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0 -2016-12-27,0,0,1,4,0,0 -2016-12-28,0,0,0,0,0,0 -2016-12-29,0,0,4,0,0,0 -2016-12-30,8,7,0,0,0,0 -2016-12-31,17,4,0,0,0,0 -2017-01-01,1,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv deleted file mode 100644 index 64acaa5062..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Number of Jobs Submitted" -2016-12-30,0 -2016-12-31,7 -2017-01-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv deleted file mode 100644 index 7f4d10365d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -2016-12,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv deleted file mode 100644 index 7f4d10365d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -2016-12,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017-01,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv deleted file mode 100644 index 283d44125b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted" -2016-12,713,25,11,6,5,2 -2017-01,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv deleted file mode 100644 index 6c5cbdb607..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Number of Jobs Submitted" -2016-12,9 -2017-01,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv deleted file mode 100644 index dfb935ca91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -"2016 Q4",41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv deleted file mode 100644 index dfb935ca91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -"2016 Q4",41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -"2017 Q1",11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 0c93d1fb9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted" -"2016 Q4",713,25,11,6,5,2 -"2017 Q1",0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv deleted file mode 100644 index 86b8d14710..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Number of Jobs Submitted" -"2016 Q4",9 -"2017 Q1",5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv deleted file mode 100644 index 3ba95bc77f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -2016,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv deleted file mode 100644 index 3ba95bc77f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] Number of Jobs Submitted","[reebu] Number of Jobs Submitted","[grgsh] Number of Jobs Submitted","[moorh] Number of Jobs Submitted","[legsh] Number of Jobs Submitted","[turdo] Number of Jobs Submitted","[swath] Number of Jobs Submitted","[caspl] Number of Jobs Submitted","[lapwi] Number of Jobs Submitted","[dunli] Number of Jobs Submitted","[sogsh] Number of Jobs Submitted","[sancr] Number of Jobs Submitted","[grath] Number of Jobs Submitted","[vertera] Number of Jobs Submitted","[sposa] Number of Jobs Submitted","[garwa] Number of Jobs Submitted","[pibgr] Number of Jobs Submitted","[sarwa] Number of Jobs Submitted","[proubis] Number of Jobs Submitted","[noror] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[categ] Number of Jobs Submitted","[coot1] Number of Jobs Submitted","[meapi] Number of Jobs Submitted","[shttr] Number of Jobs Submitted","[hoowa] Number of Jobs Submitted","[henha] Number of Jobs Submitted","[yebsa] Number of Jobs Submitted","[alpsw] Number of Jobs Submitted","[corsh] Number of Jobs Submitted","[crane] Number of Jobs Submitted","[lanhach] Number of Jobs Submitted","[boowa] Number of Jobs Submitted","[crama] Number of Jobs Submitted","[whimb] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[misth] Number of Jobs Submitted","[shag1] Number of Jobs Submitted","[blhbu] Number of Jobs Submitted","[litau] Number of Jobs Submitted","[aytinis] Number of Jobs Submitted","[whtsp] Number of Jobs Submitted","[egygo] Number of Jobs Submitted","[smew1] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[jackd] Number of Jobs Submitted","[rolle] Number of Jobs Submitted","[duswa] Number of Jobs Submitted","[field] Number of Jobs Submitted","[pereg] Number of Jobs Submitted","[whtpl] Number of Jobs Submitted","[evegr] Number of Jobs Submitted","[lesre] Number of Jobs Submitted","[sante] Number of Jobs Submitted","[siski] Number of Jobs Submitted","[velsc] Number of Jobs Submitted","[yebbu] Number of Jobs Submitted","[allga] Number of Jobs Submitted","[chaff] Number of Jobs Submitted","[ferdu] Number of Jobs Submitted","[gloib] Number of Jobs Submitted","[mamwa] Number of Jobs Submitted","[relpa] Number of Jobs Submitted","[ribgu] Number of Jobs Submitted","[yebwa] Number of Jobs Submitted" -2016,41542,5825,2631,2425,1000,690,713,16,289,100,92,144,101,46,60,53,50,37,24,5,25,16,16,22,22,21,20,18,8,8,12,7,15,14,9,11,11,11,10,8,9,9,8,7,6,5,4,3,3,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1 -2017,11511,80,0,204,0,292,0,677,19,64,62,0,0,23,0,0,0,8,12,25,1,8,8,2,0,0,0,0,8,8,4,9,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv deleted file mode 100644 index 8391b8804b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Number of Jobs Submitted","[savsp] Number of Jobs Submitted","[litst] Number of Jobs Submitted","[ybsbu] Number of Jobs Submitted","[ovenb] Number of Jobs Submitted","[sante] Number of Jobs Submitted" -2016,713,25,11,6,5,2 -2017,0,1,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv deleted file mode 100644 index c39e7a3ea2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/submitted_job_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Number of Jobs Submitted: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Number of Jobs Submitted" -2016,9 -2017,5 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv deleted file mode 100644 index f7686ab618..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: 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: Total" -ovenb,6621.1911 -swath,4528.0644 -ybsbu,2430.7267 -sante,174.8775 -litst,49.3589 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv deleted file mode 100644 index 0c7e04d719..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -whimb,4918.4700 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv deleted file mode 100644 index f7686ab618..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: 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: Total" -ovenb,6621.1911 -swath,4528.0644 -ybsbu,2430.7267 -sante,174.8775 -litst,49.3589 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv deleted file mode 100644 index 0c7e04d719..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -whimb,4918.4700 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index f7686ab618..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: 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: Total" -ovenb,6621.1911 -swath,4528.0644 -ybsbu,2430.7267 -sante,174.8775 -litst,49.3589 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 0c7e04d719..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -whimb,4918.4700 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv deleted file mode 100644 index 07e45b0c8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -honbu,157078.4431 -meapi,146476.2400 -aytinis,118663.3556 -moorh,67004.1206 -reebu,35441.0778 -garwa,34825.7219 -sancr,22888.9811 -crane,19473.8133 -caspl,19117.7667 -smew1,18391.0000 -sarwa,16661.9989 -lapwi,15354.0758 -egygo,14141.1200 -duswa,13105.9733 -turdo,12550.4967 -sposa,12178.1900 -velsc,10557.5822 -legsh,8590.5158 -siski,8404.1933 -shttr,8206.8872 -chaff,7680.4622 -ovenb,6621.1911 -whtsp,5262.3156 -misth,5198.0500 -whimb,4918.4700 -shag1,4577.8556 -swath,4528.0644 -pereg,4472.6000 -ferdu,4200.4667 -hoowa,3862.9211 -yebsa,3582.6789 -corsh,3504.2444 -noror,3199.8106 -ybsbu,2430.7267 -grath,2039.1683 -yebbu,2013.9756 -whtpl,1588.9133 -dunli,1518.1478 -vertera,1446.9428 -yebwa,1444.4889 -evegr,1129.0533 -boowa,1021.5447 -gloib,960.1333 -litau,622.6494 -alpsw,610.7733 -rolle,590.3347 -lanhach,521.3100 -pibgr,500.2031 -field,344.9756 -sante,174.8775 -lesre,151.1833 -sogsh,135.7597 -henha,100.8417 -jackd,87.3878 -mamwa,72.0069 -blhbu,59.8692 -grgsh,54.6383 -litst,49.3589 -proubis,34.9861 -ribgu,31.9097 -allga,28.1400 -coot1,23.3244 -categ,23.3156 -crama,22.5389 -relpa,1.0400 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv deleted file mode 100644 index f7686ab618..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"CPU Hours: Total: 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: Total" -ovenb,6621.1911 -swath,4528.0644 -ybsbu,2430.7267 -sante,174.8775 -litst,49.3589 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv deleted file mode 100644 index 0c7e04d719..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","CPU Hours: Total" -whimb,4918.4700 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv deleted file mode 100644 index 69cdd4bc18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0,0,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6036,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,152.3533,0,0,0,0,0,0,0,0,0,313.9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,1152.0000,216.3333,0,0,0,0,0,0,0,0,576.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,3.2167,3739.4133,0,0,1717.7600,1920.0000,1301.6889,0,0,0,0,0,0,0,576.0000,0,2997.1200,0,1487.8200,558.6133,243.1822,315.9467,0,0,0,0,0,0,0,0,0,0,288.0000,136.7956,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,24.0000,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,24.0000,21931.9200,29467.4711,953.0369,8192.9511,2310.7378,3131.9644,0,0,0,799.6267,1962.8444,0,0,576.0000,0,3456.0000,0,2341.3467,1411.0667,1536.0000,1536.0000,0,336.4567,0,386.2533,0,0,0,351.5933,0,0,288.0000,384.0000,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,1237.5364,49534.0800,39552.0000,12583.2597,10099.5600,7644.0844,8585.5822,1834.4800,0,5821.2600,3747.4933,3901.6422,1643.9111,0,729.5867,487.3967,3456.0000,0,2880.0000,1970.9511,1536.0000,1536.0000,0,2592.0000,0,1161.6300,461.3211,1406.2833,180.1167,1111.6444,555.8656,238.3022,288.0000,532.2578,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,22.2422,233.0019,0,39.1372,28.6944,0,10.0983,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,61332.1356,46895.6533,39552.0000,21766.1511,7632.3833,6055.3111,7303.0711,6126.0000,0,10979.2200,4526.2344,5473.3125,9211.3156,7404.4267,3076.4911,6875.1400,648.4622,3055.8617,1250.6800,1841.5117,1536.0000,1536.0000,0,1921.0433,683.1200,1564.5567,2952.2189,1468.0833,1440.0000,1479.8411,1166.4433,1150.8667,288.0000,986.5178,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1021.1444,198.9664,386.1222,68.0319,26.0711,65.9958,16.0939,267.2011,64.0356,7.1367,52.5422,108.1047,82.1119,43.3692,19.2856,13.9453,40.8392,39.5500,11.6692,17.7975,28.1400,7.7811,7.7806,22.5389,1.0400,0.2208 -2016-12-31,86581.6175,22004.0533,10091.8844,20518.0064,3452.2700,11780.8131,2566.6744,6839.5200,37.7500,1590.5200,6955.7733,2761.8142,3285.8933,5701.5467,2976.8089,4561.6667,0,5534.6542,444.3467,1437.7244,1536.0000,1325.6578,3473.9867,288.0000,2349.9100,1346.5222,1114.5244,1440.0000,1440.0000,919.8422,1294.9333,1152.0000,291.6067,391.1556,1428.0200,294.9778,0,125.4733,914.2433,0,0,7.7117,0,491.1800,527.7511,502.9333,77.7350,0,158.3044,0,23.9844,25.9131,8.6314,44.0186,0,45.9239,13.7992,9.8089,11.6819,14.1122,0,7.7850,7.7769,0,0,0.3878 -2017-01-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv deleted file mode 100644 index 69cdd4bc18..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.9567,0,0,0,0,0,0,0,0,0,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6036,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,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,152.3533,0,0,0,0,0,0,0,0,0,313.9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,1152.0000,216.3333,0,0,0,0,0,0,0,0,576.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,3.2167,3739.4133,0,0,1717.7600,1920.0000,1301.6889,0,0,0,0,0,0,0,576.0000,0,2997.1200,0,1487.8200,558.6133,243.1822,315.9467,0,0,0,0,0,0,0,0,0,0,288.0000,136.7956,0,0,0,0,0,0,0,238.8667,0,0,0,0,0,0,0,24.0000,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,24.0000,21931.9200,29467.4711,953.0369,8192.9511,2310.7378,3131.9644,0,0,0,799.6267,1962.8444,0,0,576.0000,0,3456.0000,0,2341.3467,1411.0667,1536.0000,1536.0000,0,336.4567,0,386.2533,0,0,0,351.5933,0,0,288.0000,384.0000,0,0,181.4300,0,0,0,0,288.0000,94.0111,0,0,0,0,0,0,24.0000,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,1237.5364,49534.0800,39552.0000,12583.2597,10099.5600,7644.0844,8585.5822,1834.4800,0,5821.2600,3747.4933,3901.6422,1643.9111,0,729.5867,487.3967,3456.0000,0,2880.0000,1970.9511,1536.0000,1536.0000,0,2592.0000,0,1161.6300,461.3211,1406.2833,180.1167,1111.6444,555.8656,238.3022,288.0000,532.2578,7.2400,758.9889,864.0000,0,0,1038.2222,107.9089,288.0000,480.0000,52.0042,0,0,22.2422,233.0019,0,39.1372,28.6944,0,10.0983,0,24.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,61332.1356,46895.6533,39552.0000,21766.1511,7632.3833,6055.3111,7303.0711,6126.0000,0,10979.2200,4526.2344,5473.3125,9211.3156,7404.4267,3076.4911,6875.1400,648.4622,3055.8617,1250.6800,1841.5117,1536.0000,1536.0000,0,1921.0433,683.1200,1564.5567,2952.2189,1468.0833,1440.0000,1479.8411,1166.4433,1150.8667,288.0000,986.5178,568.6500,960.0089,543.4833,522.1678,326.5894,402.8000,1021.1444,198.9664,386.1222,68.0319,26.0711,65.9958,16.0939,267.2011,64.0356,7.1367,52.5422,108.1047,82.1119,43.3692,19.2856,13.9453,40.8392,39.5500,11.6692,17.7975,28.1400,7.7811,7.7806,22.5389,1.0400,0.2208 -2016-12-31,86581.6175,22004.0533,10091.8844,20518.0064,3452.2700,11780.8131,2566.6744,6839.5200,37.7500,1590.5200,6955.7733,2761.8142,3285.8933,5701.5467,2976.8089,4561.6667,0,5534.6542,444.3467,1437.7244,1536.0000,1325.6578,3473.9867,288.0000,2349.9100,1346.5222,1114.5244,1440.0000,1440.0000,919.8422,1294.9333,1152.0000,291.6067,391.1556,1428.0200,294.9778,0,125.4733,914.2433,0,0,7.7117,0,491.1800,527.7511,502.9333,77.7350,0,158.3044,0,23.9844,25.9131,8.6314,44.0186,0,45.9239,13.7992,9.8089,11.6819,14.1122,0,7.7850,7.7769,0,0,0.3878 -2017-01-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv deleted file mode 100644 index 2dda7eb1b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" -2016-12-23,0,0,0,8.6036,0,0 -2016-12-24,0,0,0,24.0000,0,0 -2016-12-25,0,0,0,24.0000,0,0 -2016-12-26,0,0,0,24.0000,0,0 -2016-12-27,315.9467,0,136.7956,24.0000,0,0 -2016-12-28,1536.0000,0,384.0000,24.0000,0,0 -2016-12-29,1536.0000,461.3211,532.2578,39.1372,0,0 -2016-12-30,1536.0000,2952.2189,986.5178,7.1367,39.5500,0.2208 -2016-12-31,1325.6578,1114.5244,391.1556,0,9.8089,0.3878 -2017-01-01,371.5867,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv deleted file mode 100644 index 2a5775161b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] CPU Hours: Total" -2016-12-30,683.1200 -2016-12-31,2349.9100 -2017-01-01,1885.4400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv deleted file mode 100644 index 933e12b1a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -2016-12,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -2017-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv deleted file mode 100644 index 933e12b1a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -2016-12,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -2017-01,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv deleted file mode 100644 index caf03bd859..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" -2016-12,6249.6044,4528.0644,2430.7267,174.8775,49.3589,0.6086 -2017-01,371.5867,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv deleted file mode 100644 index 1fddea9d26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] CPU Hours: Total" -2016-12,3033.0300 -2017-01,1885.4400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index ac494f6b81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -"2016 Q4",149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -"2017 Q1",7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index ac494f6b81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -"2016 Q4",149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -"2017 Q1",7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index eea6ccd61c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" -"2016 Q4",6249.6044,4528.0644,2430.7267,174.8775,49.3589,0.6086 -"2017 Q1",371.5867,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 3283e02235..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] CPU Hours: Total" -"2016 Q4",3033.0300 -"2017 Q1",1885.4400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv deleted file mode 100644 index da79dd758e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -2016,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -2017,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv deleted file mode 100644 index da79dd758e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[honbu] CPU Hours: Total","[meapi] CPU Hours: Total","[aytinis] CPU Hours: Total","[moorh] CPU Hours: Total","[reebu] CPU Hours: Total","[garwa] CPU Hours: Total","[sancr] CPU Hours: Total","[crane] CPU Hours: Total","[caspl] CPU Hours: Total","[smew1] CPU Hours: Total","[sarwa] CPU Hours: Total","[lapwi] CPU Hours: Total","[egygo] CPU Hours: Total","[duswa] CPU Hours: Total","[turdo] CPU Hours: Total","[sposa] CPU Hours: Total","[velsc] CPU Hours: Total","[legsh] CPU Hours: Total","[siski] CPU Hours: Total","[shttr] CPU Hours: Total","[chaff] CPU Hours: Total","[ovenb] CPU Hours: Total","[whtsp] CPU Hours: Total","[misth] CPU Hours: Total","[whimb] CPU Hours: Total","[shag1] CPU Hours: Total","[swath] CPU Hours: Total","[pereg] CPU Hours: Total","[ferdu] CPU Hours: Total","[hoowa] CPU Hours: Total","[yebsa] CPU Hours: Total","[corsh] CPU Hours: Total","[noror] CPU Hours: Total","[ybsbu] CPU Hours: Total","[grath] CPU Hours: Total","[yebbu] CPU Hours: Total","[whtpl] CPU Hours: Total","[dunli] CPU Hours: Total","[vertera] CPU Hours: Total","[yebwa] CPU Hours: Total","[evegr] CPU Hours: Total","[boowa] CPU Hours: Total","[gloib] CPU Hours: Total","[litau] CPU Hours: Total","[alpsw] CPU Hours: Total","[rolle] CPU Hours: Total","[lanhach] CPU Hours: Total","[pibgr] CPU Hours: Total","[field] CPU Hours: Total","[sante] CPU Hours: Total","[lesre] CPU Hours: Total","[sogsh] CPU Hours: Total","[henha] CPU Hours: Total","[jackd] CPU Hours: Total","[mamwa] CPU Hours: Total","[blhbu] CPU Hours: Total","[grgsh] CPU Hours: Total","[litst] CPU Hours: Total","[proubis] CPU Hours: Total","[ribgu] CPU Hours: Total","[allga] CPU Hours: Total","[coot1] CPU Hours: Total","[categ] CPU Hours: Total","[crama] CPU Hours: Total","[relpa] CPU Hours: Total","[savsp] CPU Hours: Total" -2016,149178.5061,144105.1200,118663.3556,55820.4542,32399.2778,29927.2797,22888.9811,14800.0000,37.7500,18391.0000,16029.1278,14099.6133,14141.1200,13105.9733,9604.1033,11924.2033,10557.5822,8590.5158,8404.1933,7219.8672,6387.1822,6249.6044,3473.9867,5137.5000,3033.0300,4458.9622,4528.0644,4314.3667,3060.1167,3862.9211,3017.2422,2541.1689,2796.5633,2430.7267,2003.9100,2013.9756,1588.9133,647.6411,1240.8328,1441.0222,1129.0533,1021.5447,960.1333,611.2161,553.8222,568.9292,116.0711,500.2031,222.3400,174.8775,105.2211,134.0178,100.8417,87.3878,72.0069,59.8692,54.6383,49.3589,23.3511,31.9097,28.1400,15.5661,15.5575,22.5389,1.0400,0.6086 -2017,7899.9369,2371.1200,0,11183.6664,3041.8000,4898.4422,0,4673.8133,19080.0167,0,632.8711,1254.4625,0,0,2946.3933,253.9867,0,0,0,987.0200,1293.2800,371.5867,1788.3289,60.5500,1885.4400,118.8933,0,158.2333,1140.3500,0,565.4367,963.0756,403.2472,0,35.2583,0,0,870.5067,206.1100,3.4667,0,0,0,11.4333,56.9511,21.4056,405.2389,0,122.6356,0,45.9622,1.7419,0,0,0,0,0,0,11.6350,0,0,7.7583,7.7581,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv deleted file mode 100644 index 94c4fc8e1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[ovenb] CPU Hours: Total","[swath] CPU Hours: Total","[ybsbu] CPU Hours: Total","[sante] CPU Hours: Total","[litst] CPU Hours: Total","[savsp] CPU Hours: Total" -2016,6249.6044,4528.0644,2430.7267,174.8775,49.3589,0.6086 -2017,371.5867,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv deleted file mode 100644 index b2013eb7ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_cpu_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"CPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] CPU Hours: Total" -2016,3033.0300 -2017,1885.4400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv deleted file mode 100644 index b3c02de7c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv deleted file mode 100644 index e542bc700e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv deleted file mode 100644 index b3c02de7c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv deleted file mode 100644 index e542bc700e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index b3c02de7c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index e542bc700e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv deleted file mode 100644 index 1c07c5387d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -noror,506.9128 -allga,0.0000 -alpsw,0.0000 -aytinis,0.0000 -blhbu,0.0000 -boowa,0.0000 -caspl,0.0000 -categ,0.0000 -chaff,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crane,0.0000 -dunli,0.0000 -duswa,0.0000 -egygo,0.0000 -evegr,0.0000 -ferdu,0.0000 -field,0.0000 -garwa,0.0000 -gloib,0.0000 -grath,0.0000 -grgsh,0.0000 -henha,0.0000 -honbu,0.0000 -hoowa,0.0000 -jackd,0.0000 -lanhach,0.0000 -lapwi,0.0000 -legsh,0.0000 -lesre,0.0000 -litau,0.0000 -litst,0.0000 -mamwa,0.0000 -meapi,0.0000 -misth,0.0000 -moorh,0.0000 -ovenb,0.0000 -pereg,0.0000 -pibgr,0.0000 -proubis,0.0000 -reebu,0.0000 -relpa,0.0000 -ribgu,0.0000 -rolle,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -shag1,0.0000 -shttr,0.0000 -siski,0.0000 -smew1,0.0000 -sogsh,0.0000 -sposa,0.0000 -swath,0.0000 -turdo,0.0000 -velsc,0.0000 -vertera,0.0000 -whimb,0.0000 -whtpl,0.0000 -whtsp,0.0000 -ybsbu,0.0000 -yebbu,0.0000 -yebsa,0.0000 -yebwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv deleted file mode 100644 index b3c02de7c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -litst,0.0000 -ovenb,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 -ybsbu,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv deleted file mode 100644 index e542bc700e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","GPU Hours: Total" -whimb,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv deleted file mode 100644 index 191e00009f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,48.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 -2016-12-29,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv deleted file mode 100644 index 191e00009f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-23,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-24,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-25,48.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 -2016-12-27,48.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 -2016-12-28,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 -2016-12-29,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 -2016-12-31,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 -2017-01-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv deleted file mode 100644 index 077f95179a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" -2016-12-23,0,0,0.0000,0,0,0 -2016-12-24,0,0,0.0000,0,0,0 -2016-12-25,0,0,0.0000,0,0,0 -2016-12-26,0,0,0.0000,0,0,0 -2016-12-27,0,0.0000,0.0000,0,0,0.0000 -2016-12-28,0,0.0000,0.0000,0,0,0.0000 -2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 -2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 -2017-01-01,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv deleted file mode 100644 index 1bd87ab109..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] GPU Hours: Total" -2016-12-30,0.0000 -2016-12-31,0.0000 -2017-01-01,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv deleted file mode 100644 index 8a6892474a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv deleted file mode 100644 index 8a6892474a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv deleted file mode 100644 index 9b7e0e5494..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" -2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017-01,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv deleted file mode 100644 index 3138a9b874..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] GPU Hours: Total" -2016-12,0.0000 -2017-01,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 02d822c5ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 02d822c5ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 6c1457d625..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" -"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 893e9ef464..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] GPU Hours: Total" -"2016 Q4",0.0000 -"2017 Q1",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv deleted file mode 100644 index 49cba0629a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv deleted file mode 100644 index 49cba0629a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" -2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv deleted file mode 100644 index 058213c69d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" -2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2017,0,0.0000,0,0.0000,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv deleted file mode 100644 index 0e77529567..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"GPU Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] GPU Hours: Total" -2016,0.0000 -2017,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv deleted file mode 100644 index ca72832e78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: 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: Total" -swath,550.6928 -ovenb,413.8244 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv deleted file mode 100644 index 622378d394..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -whimb,409.8725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv deleted file mode 100644 index ca72832e78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: 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: Total" -swath,550.6928 -ovenb,413.8244 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv deleted file mode 100644 index 622378d394..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -whimb,409.8725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index ca72832e78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: 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: Total" -swath,550.6928 -ovenb,413.8244 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 622378d394..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -whimb,409.8725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv deleted file mode 100644 index c41419e2a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -meapi,12206.3533 -legsh,8590.5158 -aytinis,7416.4597 -garwa,2773.5564 -sarwa,2004.2244 -reebu,1757.5094 -crane,1622.8178 -caspl,1593.1472 -smew1,1532.5833 -sancr,1494.1239 -turdo,1423.1372 -duswa,1092.1644 -shttr,1026.5661 -sposa,1014.8492 -chaff,960.0578 -yebsa,895.6697 -egygo,883.8200 -velsc,873.5178 -siski,840.4200 -grath,802.6467 -swath,550.6928 -pibgr,500.2031 -whtsp,458.9083 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -ovenb,413.8244 -whimb,409.8725 -pereg,372.7167 -ferdu,350.0389 -evegr,282.2633 -noror,273.8464 -boowa,251.4806 -ybsbu,232.4297 -shag1,227.8806 -yebwa,180.5611 -sante,174.8775 -dunli,150.5339 -sogsh,135.7597 -whtpl,132.4094 -vertera,120.6086 -henha,100.8417 -yebbu,100.6989 -jackd,87.3878 -alpsw,76.3467 -mamwa,72.0069 -litau,70.2769 -lanhach,62.2542 -blhbu,59.8692 -grgsh,54.6383 -rolle,54.6022 -gloib,48.0067 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -litst,3.6653 -allga,2.3450 -crama,1.1269 -savsp,0.6342 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv deleted file mode 100644 index ca72832e78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Node Hours: Total: 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: Total" -swath,550.6928 -ovenb,413.8244 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv deleted file mode 100644 index 622378d394..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Node Hours: Total" -whimb,409.8725 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv deleted file mode 100644 index eec0e9ee9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,8.6036,0,0,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-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-25,0,0,0,0,0,0,0,0,6.3481,0,0,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-26,0,0,0,0,0,0,13.5208,0,48.0000,0,0,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-27,0,3.2167,0,311.6178,0,0,120.0000,0,67.3094,0,0,0,81.3556,48.0000,0,69.8267,0,30.3978,0,0,249.7600,123.9850,0,0,0,0,0,0,0,19.7467,0,0,0,0,24.0000,19.9056,8.5497,0,0,24.0000,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,144.4211,99.9533,292.0297,0,0,0,214.6856,48.0000,0,176.3833,0,192.0000,0,0,288.0000,220.6683,0,0,0,0,43.9492,0,28.0381,96.0000,0,0,0,0,24.0000,24.0000,24.0000,21.4100,0,24.0000,0,0,15.1192,0,0,0,0,0,24.0000,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,12583.2597,162.8525,3901.6422,4127.8400,0,2472.0000,477.7553,453.1217,356.2911,152.8733,0,485.1050,560.2247,67.1983,0,246.3689,40.6164,192.0000,138.9664,102.7444,288.0000,288.0000,3.6200,30.9803,233.0019,0,138.9556,29.7878,216.0000,96.0000,0,117.1903,15.0097,26.9772,24.0000,24.0000,42.5322,56.8025,129.7778,39.1372,0,0,72.0000,0,10.0983,37.9494,0,0,24.0000,10.4008,22.2422,0,0,0,24.0000,0,7.1736,0,0,0,0,0,0,0,0,0 -2016-12-30,21766.1511,6346.5897,5473.3125,3907.9711,3055.8617,2472.0000,378.4569,506.1717,461.5083,510.5000,0,914.9350,473.6558,380.4372,617.0356,230.8942,572.9283,192.0000,291.6108,575.7072,47.7578,152.2233,67.3875,450.0547,267.2011,0,178.1372,143.8583,160.0869,96.0000,56.9267,122.3403,120.0000,255.2861,24.0000,175.8633,108.4533,85.7392,50.3500,7.1367,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,43.3692,3.2589,19.2856,13.6064,15.8617,13.9453,40.8392,7.5778,19.3061,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,3.0522,2.3450,1.1269,0.2208,0.0650 -2016-12-31,20518.0064,8276.1947,2761.8142,1833.6711,5534.6542,630.7428,1112.6033,865.8689,329.0272,569.9600,3.1458,132.5433,164.2022,372.1011,475.1289,179.7156,380.1389,192.0000,323.7333,205.3683,0,55.5433,714.0100,69.6578,0,299.0033,97.5139,144.0000,24.0000,82.8536,195.8258,120.0000,120.0000,0,24.4508,7.7117,48.8944,58.9750,0,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,44.0186,65.9689,0,45.3169,3.8883,45.9239,13.7992,42.7433,0,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0.6131,0,0,0.3878,0 -2017-01-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv deleted file mode 100644 index eec0e9ee9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,8.6036,0,0,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-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-25,0,0,0,0,0,0,0,0,6.3481,0,0,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-26,0,0,0,0,0,0,13.5208,0,48.0000,0,0,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,24.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,0,0 -2016-12-27,0,3.2167,0,311.6178,0,0,120.0000,0,67.3094,0,0,0,81.3556,48.0000,0,69.8267,0,30.3978,0,0,249.7600,123.9850,0,0,0,0,0,0,0,19.7467,0,0,0,0,24.0000,19.9056,8.5497,0,0,24.0000,0,0,0,0,0,0,0,0,4.7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,953.0369,24.0000,1962.8444,1827.6600,0,1841.7169,144.4211,99.9533,292.0297,0,0,0,214.6856,48.0000,0,176.3833,0,192.0000,0,0,288.0000,220.6683,0,0,0,0,43.9492,0,28.0381,96.0000,0,0,0,0,24.0000,24.0000,24.0000,21.4100,0,24.0000,0,0,15.1192,0,0,0,0,0,24.0000,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,12583.2597,162.8525,3901.6422,4127.8400,0,2472.0000,477.7553,453.1217,356.2911,152.8733,0,485.1050,560.2247,67.1983,0,246.3689,40.6164,192.0000,138.9664,102.7444,288.0000,288.0000,3.6200,30.9803,233.0019,0,138.9556,29.7878,216.0000,96.0000,0,117.1903,15.0097,26.9772,24.0000,24.0000,42.5322,56.8025,129.7778,39.1372,0,0,72.0000,0,10.0983,37.9494,0,0,24.0000,10.4008,22.2422,0,0,0,24.0000,0,7.1736,0,0,0,0,0,0,0,0,0 -2016-12-30,21766.1511,6346.5897,5473.3125,3907.9711,3055.8617,2472.0000,378.4569,506.1717,461.5083,510.5000,0,914.9350,473.6558,380.4372,617.0356,230.8942,572.9283,192.0000,291.6108,575.7072,47.7578,152.2233,67.3875,450.0547,267.2011,0,178.1372,143.8583,160.0869,96.0000,56.9267,122.3403,120.0000,255.2861,24.0000,175.8633,108.4533,85.7392,50.3500,7.1367,51.2486,108.1047,45.2903,27.2458,82.1119,48.0006,43.3692,3.2589,19.2856,13.6064,15.8617,13.9453,40.8392,7.5778,19.3061,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,3.0522,2.3450,1.1269,0.2208,0.0650 -2016-12-31,20518.0064,8276.1947,2761.8142,1833.6711,5534.6542,630.7428,1112.6033,865.8689,329.0272,569.9600,3.1458,132.5433,164.2022,372.1011,475.1289,179.7156,380.1389,192.0000,323.7333,205.3683,0,55.5433,714.0100,69.6578,0,299.0033,97.5139,144.0000,24.0000,82.8536,195.8258,120.0000,120.0000,0,24.4508,7.7117,48.8944,58.9750,0,0,10.4561,25.9131,0,76.1869,8.6314,14.7489,44.0186,65.9689,0,45.3169,3.8883,45.9239,13.7992,42.7433,0,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0.6131,0,0,0.3878,0 -2017-01-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv deleted file mode 100644 index e01510845b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" -2016-12-23,0,0,0,8.6036,0,0 -2016-12-24,0,0,0,24.0000,0,0 -2016-12-25,0,0,0,24.0000,0,0 -2016-12-26,0,0,0,24.0000,0,0 -2016-12-27,0,19.7467,8.5497,24.0000,0,0 -2016-12-28,0,96.0000,24.0000,24.0000,0,0 -2016-12-29,30.9803,96.0000,42.5322,39.1372,0,0 -2016-12-30,450.0547,96.0000,108.4533,7.1367,3.0522,0.2208 -2016-12-31,69.6578,82.8536,48.8944,0,0.6131,0.3878 -2017-01-01,0,23.2242,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv deleted file mode 100644 index 80d66a5e91..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Node Hours: Total" -2016-12-30,56.9267 -2016-12-31,195.8258 -2017-01-01,157.1200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv deleted file mode 100644 index 82f6eb8eef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -2016-12,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -2017-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv deleted file mode 100644 index 82f6eb8eef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -2016-12,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -2017-01,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv deleted file mode 100644 index 4c2438aced..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" -2016-12,550.6928,390.6003,232.4297,174.8775,3.6653,0.6086 -2017-01,0,23.2242,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv deleted file mode 100644 index 7c4a2424b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Node Hours: Total" -2016-12,252.7525 -2017-01,157.1200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index c1e81de069..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -"2016 Q4",55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -"2017 Q1",11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index c1e81de069..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -"2016 Q4",55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -"2017 Q1",11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index aaf88a5bdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" -"2016 Q4",550.6928,390.6003,232.4297,174.8775,3.6653,0.6086 -"2017 Q1",0,23.2242,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index d2212692ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Node Hours: Total" -"2016 Q4",252.7525 -"2017 Q1",157.1200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv deleted file mode 100644 index 04a569cade..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -2016,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -2017,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv deleted file mode 100644 index 04a569cade..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[moorh] Node Hours: Total","[honbu] Node Hours: Total","[lapwi] Node Hours: Total","[meapi] Node Hours: Total","[legsh] Node Hours: Total","[aytinis] Node Hours: Total","[garwa] Node Hours: Total","[sarwa] Node Hours: Total","[reebu] Node Hours: Total","[crane] Node Hours: Total","[caspl] Node Hours: Total","[smew1] Node Hours: Total","[sancr] Node Hours: Total","[turdo] Node Hours: Total","[duswa] Node Hours: Total","[shttr] Node Hours: Total","[sposa] Node Hours: Total","[chaff] Node Hours: Total","[yebsa] Node Hours: Total","[egygo] Node Hours: Total","[velsc] Node Hours: Total","[siski] Node Hours: Total","[grath] Node Hours: Total","[swath] Node Hours: Total","[pibgr] Node Hours: Total","[whtsp] Node Hours: Total","[hoowa] Node Hours: Total","[corsh] Node Hours: Total","[misth] Node Hours: Total","[ovenb] Node Hours: Total","[whimb] Node Hours: Total","[pereg] Node Hours: Total","[ferdu] Node Hours: Total","[evegr] Node Hours: Total","[noror] Node Hours: Total","[boowa] Node Hours: Total","[ybsbu] Node Hours: Total","[shag1] Node Hours: Total","[yebwa] Node Hours: Total","[sante] Node Hours: Total","[dunli] Node Hours: Total","[sogsh] Node Hours: Total","[whtpl] Node Hours: Total","[vertera] Node Hours: Total","[henha] Node Hours: Total","[yebbu] Node Hours: Total","[jackd] Node Hours: Total","[alpsw] Node Hours: Total","[mamwa] Node Hours: Total","[litau] Node Hours: Total","[lanhach] Node Hours: Total","[blhbu] Node Hours: Total","[grgsh] Node Hours: Total","[rolle] Node Hours: Total","[gloib] Node Hours: Total","[field] Node Hours: Total","[lesre] Node Hours: Total","[proubis] Node Hours: Total","[ribgu] Node Hours: Total","[coot1] Node Hours: Total","[categ] Node Hours: Total","[litst] Node Hours: Total","[allga] Node Hours: Total","[crama] Node Hours: Total","[savsp] Node Hours: Total","[relpa] Node Hours: Total" -2016,55820.4542,14812.8536,14099.6133,12008.7600,8590.5158,7416.4597,2246.7575,1925.1156,1560.5139,1233.3333,3.1458,1532.5833,1494.1239,1054.8381,1092.1644,903.1886,993.6836,798.3978,754.3106,883.8200,873.5178,840.4200,785.0175,550.6928,500.2031,299.0033,458.5558,317.6461,428.1250,390.6003,252.7525,359.5306,255.0097,282.2633,233.1972,251.4806,232.4297,222.9267,180.1278,174.8775,61.7047,134.0178,132.4094,103.4328,100.8417,100.6989,87.3878,69.2278,72.0069,69.3242,41.9922,59.8692,54.6383,50.3211,48.0067,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,3.6653,2.3450,1.1269,0.6086,0.0650 -2017,11183.6664,790.6731,1254.4625,197.5933,0,0,526.7989,79.1089,196.9956,389.4844,1590.0014,0,0,368.2992,0,123.3775,21.1656,161.6600,141.3592,0,0,0,17.6292,0,0,159.9050,0,120.3844,5.0458,23.2242,157.1200,13.1861,95.0292,0,40.6492,0,0,4.9539,0.4333,0,88.8292,1.7419,0,17.1758,0,0,0,7.1189,0,0.9528,20.2619,0,0,4.2811,0,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,0,0,0.0256,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv deleted file mode 100644 index 789c00013b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Node Hours: Total","[ovenb] Node Hours: Total","[ybsbu] Node Hours: Total","[sante] Node Hours: Total","[litst] Node Hours: Total","[savsp] Node Hours: Total" -2016,550.6928,390.6003,232.4297,174.8775,3.6653,0.6086 -2017,0,23.2242,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv deleted file mode 100644 index 1fd1754397..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_node_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Node Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Node Hours: Total" -2016,252.7525 -2017,157.1200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv deleted file mode 100644 index bc3af6b968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -ovenb,94.3467 -sante,28.5511 -ybsbu,12.9547 -litst,0.9917 -savsp,0.3653 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv deleted file mode 100644 index 18dee34f96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -whimb,32.1656 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv deleted file mode 100644 index bc3af6b968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -ovenb,94.3467 -sante,28.5511 -ybsbu,12.9547 -litst,0.9917 -savsp,0.3653 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv deleted file mode 100644 index 18dee34f96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -whimb,32.1656 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index bc3af6b968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -ovenb,94.3467 -sante,28.5511 -ybsbu,12.9547 -litst,0.9917 -savsp,0.3653 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index 18dee34f96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -whimb,32.1656 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv deleted file mode 100644 index 50b4473100..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -honbu,112848.1472 -shttr,5136.3181 -sancr,5049.6606 -caspl,4056.0075 -legsh,3927.5247 -dunli,3030.4719 -grath,2704.6794 -meapi,1959.9103 -grgsh,1951.8286 -moorh,544.5967 -reebu,369.2550 -sposa,321.4444 -boowa,122.8625 -siski,112.9622 -yebbu,105.4822 -ovenb,94.3467 -yebsa,91.5858 -velsc,78.7900 -yebwa,62.0436 -misth,48.5308 -pereg,39.1408 -garwa,36.5339 -whimb,32.1656 -sarwa,30.8219 -crane,30.1542 -sante,28.5511 -turdo,28.0833 -vertera,20.6675 -duswa,20.0331 -whtsp,19.3700 -lapwi,17.6803 -shag1,14.9994 -smew1,13.9250 -ybsbu,12.9547 -sogsh,12.6592 -whtpl,11.1744 -hoowa,6.4889 -henha,6.4781 -evegr,1.9761 -corsh,1.2531 -noror,1.2361 -litst,0.9917 -pibgr,0.5497 -savsp,0.3653 -litau,0.1747 -rolle,0.1614 -blhbu,0.1408 -allga,0.0978 -ferdu,0.0311 -lanhach,0.0286 -crama,0.0147 -ribgu,0.0075 -egygo,0.0047 -proubis,0.0039 -coot1,0.0036 -categ,0.0031 -alpsw,0.0025 -aytinis,0.0017 -field,0.0017 -gloib,0.0003 -lesre,0.0003 -chaff,0.0000 -jackd,0.0000 -mamwa,0.0000 -relpa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv deleted file mode 100644 index bc3af6b968..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -swath,163339.9808 -ovenb,94.3467 -sante,28.5511 -ybsbu,12.9547 -litst,0.9917 -savsp,0.3653 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv deleted file mode 100644 index 18dee34f96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wait Hours: Total" -whimb,32.1656 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv deleted file mode 100644 index 353bde3f8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -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,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,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,9.5964,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-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.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-25,0,0,0,0,0,0,0,0,0,0,0,110.8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0633,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-26,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0033,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-27,0,0.0000,1367.4053,93.9833,0,0,0,0,311.1344,0,0,0.0289,0,50.8225,76.0861,0,0.0025,0,78.7886,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0.0000,0 -2016-12-28,0,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,20.5744,0,0.0000,36.8761,0,0.0000,0,0.0000,0,47.7519,0,18.4800,0,8.2136,0,0.0000,0.0000,0,0,0,10.5775,13.6594,0,0.0000,0,11.1744,2.3317,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0,0.0003,0,0.0000,0,0.0000,0 -2016-12-29,2680.9856,1973.6483,626.5147,288.5578,0,0,0,0.0044,334.2142,0,32.6300,43.9522,9.5844,0.0000,0.0000,0.0017,0.0000,0.0014,0.0000,25.7286,0.0000,11.6853,17.8439,0,1.1997,10.4372,18.9547,0.2917,0,0,0,3.9286,0.0011,13.9250,4.8561,0,0.0000,0.3786,0.0894,0.7922,1.0583,0.0000,0,0.5497,0,0.0000,0,0,0,0.0311,0.0225,0,0,0.0025,0,0,0,0,0.0000,0,0.0000,0.0003,0.0000,0,0.0000,0 -2016-12-30,160658.9953,26564.1575,331.7789,2269.2953,0,1857.6733,1170.3947,54.0756,0.0000,1435.0258,221.0947,77.6936,311.8600,72.0400,0.0000,105.4806,0.0000,14.4292,0.0014,0.0000,0.7789,27.4556,0.0000,17.2619,15.6439,7.3803,0.0000,3.3314,11.9272,20.0331,0,2.2686,1.3369,0.0000,8.0983,12.1381,0.0000,2.4739,6.3886,1.1839,0.0400,0.0000,0.0258,0.0000,0.1269,0.0000,0.1611,0.0575,0.0978,0.0000,0.0028,0.0147,0.0075,0.0022,0.0014,0.0008,0.0006,0.0008,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,64478.3575,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0000,516.8028,277.8381,83.4647,0.0000,0.0000,0.0000,0.0000,94.3442,77.1553,0,0,0.0000,0.0000,0.2067,7.6042,3.4903,0.3128,0,13.7414,8.7356,0.0000,19.3700,0.5711,0.0019,0.0000,0.0000,0.5147,0,1.3047,0.0000,0,0.0000,0.0011,0.9658,0,0.2317,0.1747,0.0000,0.0833,0,0.0000,0.0022,0,0.0000,0.0000,0.0011,0.0011,0.0008,0.0006,0.0000,0.0008,0,0.0000,0.0000,0.0000,0,0 -2017-01-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv deleted file mode 100644 index 353bde3f8c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -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,9.3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,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,9.5964,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-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.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-25,0,0,0,0,0,0,0,0,0,0,0,110.8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0633,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-26,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0033,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.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-27,0,0.0000,1367.4053,93.9833,0,0,0,0,311.1344,0,0,0.0289,0,50.8225,76.0861,0,0.0025,0,78.7886,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0.0003,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0.0000,0 -2016-12-28,0,0.0000,1403.6350,723.1878,0,0,0,0,1296.2100,0,5.6581,20.5744,0,0.0000,36.8761,0,0.0000,0,0.0000,0,47.7519,0,18.4800,0,8.2136,0,0.0000,0.0000,0,0,0,10.5775,13.6594,0,0.0000,0,11.1744,2.3317,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0,0.0003,0,0.0000,0,0.0000,0 -2016-12-29,2680.9856,1973.6483,626.5147,288.5578,0,0,0,0.0044,334.2142,0,32.6300,43.9522,9.5844,0.0000,0.0000,0.0017,0.0000,0.0014,0.0000,25.7286,0.0000,11.6853,17.8439,0,1.1997,10.4372,18.9547,0.2917,0,0,0,3.9286,0.0011,13.9250,4.8561,0,0.0000,0.3786,0.0894,0.7922,1.0583,0.0000,0,0.5497,0,0.0000,0,0,0,0.0311,0.0225,0,0,0.0025,0,0,0,0,0.0000,0,0.0000,0.0003,0.0000,0,0.0000,0 -2016-12-30,160658.9953,26564.1575,331.7789,2269.2953,0,1857.6733,1170.3947,54.0756,0.0000,1435.0258,221.0947,77.6936,311.8600,72.0400,0.0000,105.4806,0.0000,14.4292,0.0014,0.0000,0.7789,27.4556,0.0000,17.2619,15.6439,7.3803,0.0000,3.3314,11.9272,20.0331,0,2.2686,1.3369,0.0000,8.0983,12.1381,0.0000,2.4739,6.3886,1.1839,0.0400,0.0000,0.0258,0.0000,0.1269,0.0000,0.1611,0.0575,0.0978,0.0000,0.0028,0.0147,0.0075,0.0022,0.0014,0.0008,0.0006,0.0008,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2016-12-31,0.0000,64478.3575,1406.9842,1674.6364,0.3231,2069.8514,33.5839,2650.5994,0.0000,516.8028,277.8381,83.4647,0.0000,0.0000,0.0000,0.0000,94.3442,77.1553,0,0,0.0000,0.0000,0.2067,7.6042,3.4903,0.3128,0,13.7414,8.7356,0.0000,19.3700,0.5711,0.0019,0.0000,0.0000,0.5147,0,1.3047,0.0000,0,0.0000,0.0011,0.9658,0,0.2317,0.1747,0.0000,0.0833,0,0.0000,0.0022,0,0.0000,0.0000,0.0011,0.0011,0.0008,0.0006,0.0000,0.0008,0,0.0000,0.0000,0.0000,0,0 -2017-01-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv deleted file mode 100644 index abd7bfb01b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" -2016-12-23,0,0,9.5964,0,0,0 -2016-12-24,0,0,0.0000,0,0,0 -2016-12-25,0,0,0.0000,0,0,0 -2016-12-26,0,0,0.0000,0,0,0 -2016-12-27,0,0.0025,0.0000,0.0003,0,0 -2016-12-28,0,0.0000,0.0000,0.0000,0,0 -2016-12-29,2680.9856,0.0000,18.9547,4.8561,0,0 -2016-12-30,160658.9953,0.0000,0.0000,8.0983,0.0258,0.1269 -2016-12-31,0.0000,94.3442,0,0.0000,0.9658,0.2317 -2017-01-01,0,0.0000,0,0,0,0.0067 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv deleted file mode 100644 index 3338a1e736..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Wait Hours: Total" -2016-12-30,17.2619 -2016-12-31,7.6042 -2017-01-01,7.2994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv deleted file mode 100644 index 924f6dc24a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -2016-12,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -2017-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv deleted file mode 100644 index 924f6dc24a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -2016-12,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -2017-01,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv deleted file mode 100644 index ac71d184c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" -2016-12,163339.9808,94.3467,28.5511,12.9547,0.9917,0.3586 -2017-01,0,0.0000,0,0,0,0.0067 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv deleted file mode 100644 index 7698b04393..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Wait Hours: Total" -2016-12,24.8661 -2017-01,7.2994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 788e6ecc31..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -"2016 Q4",163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 788e6ecc31..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -"2016 Q4",163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -"2017 Q1",0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 609556edc6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" -"2016 Q4",163339.9808,94.3467,28.5511,12.9547,0.9917,0.3586 -"2017 Q1",0,0.0000,0,0,0,0.0067 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 9670dd3aa5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Wait Hours: Total" -"2016 Q4",24.8661 -"2017 Q1",7.2994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv deleted file mode 100644 index bdea4f1428..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -2016,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -2017,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv deleted file mode 100644 index bdea4f1428..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Wait Hours: Total","[honbu] Wait Hours: Total","[shttr] Wait Hours: Total","[sancr] Wait Hours: Total","[caspl] Wait Hours: Total","[legsh] Wait Hours: Total","[dunli] Wait Hours: Total","[grath] Wait Hours: Total","[meapi] Wait Hours: Total","[grgsh] Wait Hours: Total","[moorh] Wait Hours: Total","[reebu] Wait Hours: Total","[sposa] Wait Hours: Total","[boowa] Wait Hours: Total","[siski] Wait Hours: Total","[yebbu] Wait Hours: Total","[ovenb] Wait Hours: Total","[yebsa] Wait Hours: Total","[velsc] Wait Hours: Total","[yebwa] Wait Hours: Total","[misth] Wait Hours: Total","[pereg] Wait Hours: Total","[garwa] Wait Hours: Total","[whimb] Wait Hours: Total","[sarwa] Wait Hours: Total","[crane] Wait Hours: Total","[sante] Wait Hours: Total","[turdo] Wait Hours: Total","[vertera] Wait Hours: Total","[duswa] Wait Hours: Total","[whtsp] Wait Hours: Total","[lapwi] Wait Hours: Total","[shag1] Wait Hours: Total","[smew1] Wait Hours: Total","[ybsbu] Wait Hours: Total","[sogsh] Wait Hours: Total","[whtpl] Wait Hours: Total","[hoowa] Wait Hours: Total","[henha] Wait Hours: Total","[evegr] Wait Hours: Total","[corsh] Wait Hours: Total","[noror] Wait Hours: Total","[litst] Wait Hours: Total","[pibgr] Wait Hours: Total","[savsp] Wait Hours: Total","[litau] Wait Hours: Total","[rolle] Wait Hours: Total","[blhbu] Wait Hours: Total","[allga] Wait Hours: Total","[ferdu] Wait Hours: Total","[lanhach] Wait Hours: Total","[crama] Wait Hours: Total","[ribgu] Wait Hours: Total","[egygo] Wait Hours: Total","[proubis] Wait Hours: Total","[coot1] Wait Hours: Total","[categ] Wait Hours: Total","[alpsw] Wait Hours: Total","[aytinis] Wait Hours: Total","[field] Wait Hours: Total","[gloib] Wait Hours: Total","[lesre] Wait Hours: Total","[chaff] Wait Hours: Total","[jackd] Wait Hours: Total","[mamwa] Wait Hours: Total","[relpa] Wait Hours: Total" -2016,163339.9808,93016.1633,5136.3181,5049.6606,0.3231,3927.5247,1203.9786,2704.6794,1941.5586,1951.8286,537.2208,336.5361,321.4444,122.8625,112.9622,105.4822,94.3467,91.5858,78.7900,25.7286,48.5308,39.1408,36.5339,24.8661,28.5475,18.1303,28.5511,26.7600,20.6628,20.0331,19.3700,17.3458,14.9994,13.9250,12.9547,12.6528,11.1744,6.4889,6.4781,1.9761,1.0983,0.0014,0.9917,0.5497,0.3586,0.1747,0.1611,0.1408,0.0978,0.0311,0.0275,0.0147,0.0075,0.0047,0.0025,0.0019,0.0014,0.0014,0.0017,0.0017,0.0003,0.0003,0.0000,0.0000,0.0000,0.0000 -2017,0,19831.9839,0.0000,0,4055.6844,0,1826.4933,0.0000,18.3517,0,7.3758,32.7189,0.0000,0,0,0,0.0000,0.0000,0,36.3150,0.0000,0.0000,0.0000,7.2994,2.2744,12.0239,0,1.3233,0.0047,0,0.0000,0.3344,0.0000,0,0,0.0064,0,0,0,0,0.1547,1.2347,0,0,0.0067,0.0000,0.0003,0,0,0.0000,0.0011,0,0,0,0.0014,0.0017,0.0017,0.0011,0,0.0000,0,0.0000,0.0000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv deleted file mode 100644 index 14f4f9dad4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[swath] Wait Hours: Total","[ovenb] Wait Hours: Total","[sante] Wait Hours: Total","[ybsbu] Wait Hours: Total","[litst] Wait Hours: Total","[savsp] Wait Hours: Total" -2016,163339.9808,94.3467,28.5511,12.9547,0.9917,0.3586 -2017,0,0.0000,0,0,0,0.0067 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv deleted file mode 100644 index bba8931dd3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_waitduration_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wait Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Wait Hours: Total" -2016,24.8661 -2017,7.2994 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv deleted file mode 100644 index edf66096e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -ovenb,413.8244 -swath,405.3619 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv deleted file mode 100644 index b5768df9d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -whimb,86.4775 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv deleted file mode 100644 index edf66096e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -ovenb,413.8244 -swath,405.3619 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv deleted file mode 100644 index b5768df9d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -whimb,86.4775 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv deleted file mode 100644 index edf66096e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -ovenb,413.8244 -swath,405.3619 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv deleted file mode 100644 index b5768df9d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -whimb,86.4775 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv deleted file mode 100644 index 82e5be83a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -moorh,67004.1206 -honbu,15603.5267 -lapwi,15354.0758 -legsh,8590.5158 -garwa,2773.5564 -reebu,1757.5094 -caspl,1593.1472 -meapi,1525.7942 -turdo,1423.1372 -sancr,1071.2075 -shttr,1026.5383 -sposa,1014.8492 -yebsa,895.6697 -grath,802.6467 -aytinis,648.0389 -pibgr,500.2031 -hoowa,458.5558 -corsh,438.0306 -misth,433.1708 -sarwa,423.6314 -ovenb,413.8244 -swath,405.3619 -noror,273.6331 -smew1,255.4306 -boowa,251.4806 -ybsbu,232.4297 -whtsp,229.4542 -shag1,227.8806 -crane,202.8522 -sante,174.8775 -siski,140.0700 -sogsh,135.7597 -whtpl,132.4094 -egygo,126.2600 -chaff,120.0072 -henha,100.8417 -jackd,87.3878 -whimb,86.4775 -pereg,74.5433 -velsc,74.3633 -mamwa,72.0069 -litau,70.2769 -ferdu,70.0078 -lanhach,62.2542 -blhbu,59.8692 -vertera,56.2867 -grgsh,54.6383 -yebbu,50.3497 -gloib,48.0067 -duswa,46.3125 -dunli,45.2333 -field,43.1219 -lesre,37.7958 -proubis,34.9861 -ribgu,31.9097 -coot1,23.3244 -categ,23.3156 -evegr,20.1617 -rolle,18.3367 -alpsw,10.5622 -yebwa,9.0281 -litst,3.6653 -crama,1.1269 -savsp,0.6342 -allga,0.2606 -relpa,0.0650 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv deleted file mode 100644 index edf66096e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -ovenb,413.8244 -swath,405.3619 -ybsbu,232.4297 -sante,174.8775 -litst,3.6653 -savsp,0.6342 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv deleted file mode 100644 index b5768df9d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Wall Hours: Total" -whimb,86.4775 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv deleted file mode 100644 index 680a9a9129..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,8.6036,0,0,0,0,0,0,0,0,0,0,0,0,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-24,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,6.3481,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,13.5208,48.0000,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.2167,0,0,120.0000,67.3094,0,38.9522,48.0000,40.6778,69.8267,0,0,0,0,0,0,0,0,0,19.7467,0,24.0000,0,19.9056,8.5497,0,0,0,24.0000,20.6642,0,0,0,3.7997,0,0,0,0,20.8133,4.7214,0,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-28,953.0369,24.0000,1962.8444,0,144.4211,292.0297,0,228.4575,48.0000,145.2183,176.3833,0,0,0,160.7689,0,43.9492,0,28.0381,24.9883,96.0000,0,24.0000,0,24.0000,24.0000,0,21.4100,0,24.0000,36.7781,0,15.1192,0,24.0000,0,0,0,0,24.0000,24.0000,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,12583.2597,162.8525,3901.6422,0,477.7553,356.2911,0,515.9800,67.1983,332.3561,246.3689,40.6164,138.9664,3.6200,216.0000,233.0019,138.9556,29.7878,216.0000,117.1092,96.0000,9.8928,24.0000,80.8508,24.0000,42.5322,0,56.8025,19.1092,39.1372,48.0000,0,72.0000,14.6778,24.0000,10.0983,0,0,23.4381,24.0000,24.0000,10.4008,3.0019,22.2422,0,0,0,18.9747,24.0000,0,0,0,7.1736,0,0,0,0,1.9269,0,0,6.4889,0,0,0,0,0 -2016-12-30,21766.1511,6346.5897,5473.3125,3055.8617,378.4569,461.5083,0,488.4964,380.4372,388.7531,230.8664,572.9283,291.6108,67.3875,216.0000,267.2011,178.1372,143.8583,160.0869,134.0756,96.0000,378.0547,24.0000,152.4892,175.8633,108.4533,0,85.7392,63.8125,7.1367,25.3706,108.1047,45.2903,82.2439,24.0000,82.1119,43.3692,9.4878,24.4681,5.5500,19.2856,13.6064,24.0000,15.8617,13.9453,9.6922,40.8392,24.0006,19.3061,29.3436,12.8208,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,18.2347,4.3656,0.5364,2.5175,3.0522,1.1269,0.2208,0.2606,0.0650 -2016-12-31,20518.0064,8276.1947,2761.8142,5534.6542,1112.6033,329.0272,3.1458,229.2089,372.1011,164.2022,179.7156,380.1389,323.7333,714.0100,55.2700,0,97.5139,144.0000,24.0000,129.0269,82.8536,17.4144,24.2375,22.0906,7.7117,48.8944,149.5017,58.9750,71.2450,0,9.2572,25.9131,0,29.3383,24.0000,8.6314,44.0186,42.3756,24.0000,0,0,45.3169,24.0000,3.8883,45.9239,38.8869,13.7992,7.3744,0,16.9689,1.4844,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0,9.6900,8.2461,0,0.6131,0,0.3878,0,0 -2017-01-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv deleted file mode 100644 index 680a9a9129..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -2016-12-22,0,0,0,0,0,0,0,0,16.9417,0,0,0,0,0,0,0,0,0,0,0,0,0,16.7464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,8.6036,0,0,0,0,0,0,0,0,0,0,0,0,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-24,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,6.3481,0,0,26.1597,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,13.5208,48.0000,0,0,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.0000,0,0,0,0,0,0,24.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,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.2167,0,0,120.0000,67.3094,0,38.9522,48.0000,40.6778,69.8267,0,0,0,0,0,0,0,0,0,19.7467,0,24.0000,0,19.9056,8.5497,0,0,0,24.0000,20.6642,0,0,0,3.7997,0,0,0,0,20.8133,4.7214,0,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-28,953.0369,24.0000,1962.8444,0,144.4211,292.0297,0,228.4575,48.0000,145.2183,176.3833,0,0,0,160.7689,0,43.9492,0,28.0381,24.9883,96.0000,0,24.0000,0,24.0000,24.0000,0,21.4100,0,24.0000,36.7781,0,15.1192,0,24.0000,0,0,0,0,24.0000,24.0000,0,0,0,0,0,0,0,4.7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,12583.2597,162.8525,3901.6422,0,477.7553,356.2911,0,515.9800,67.1983,332.3561,246.3689,40.6164,138.9664,3.6200,216.0000,233.0019,138.9556,29.7878,216.0000,117.1092,96.0000,9.8928,24.0000,80.8508,24.0000,42.5322,0,56.8025,19.1092,39.1372,48.0000,0,72.0000,14.6778,24.0000,10.0983,0,0,23.4381,24.0000,24.0000,10.4008,3.0019,22.2422,0,0,0,18.9747,24.0000,0,0,0,7.1736,0,0,0,0,1.9269,0,0,6.4889,0,0,0,0,0 -2016-12-30,21766.1511,6346.5897,5473.3125,3055.8617,378.4569,461.5083,0,488.4964,380.4372,388.7531,230.8664,572.9283,291.6108,67.3875,216.0000,267.2011,178.1372,143.8583,160.0869,134.0756,96.0000,378.0547,24.0000,152.4892,175.8633,108.4533,0,85.7392,63.8125,7.1367,25.3706,108.1047,45.2903,82.2439,24.0000,82.1119,43.3692,9.4878,24.4681,5.5500,19.2856,13.6064,24.0000,15.8617,13.9453,9.6922,40.8392,24.0006,19.3061,29.3436,12.8208,8.0044,13.1356,11.6692,17.7975,7.7811,7.7806,18.2347,4.3656,0.5364,2.5175,3.0522,1.1269,0.2208,0.2606,0.0650 -2016-12-31,20518.0064,8276.1947,2761.8142,5534.6542,1112.6033,329.0272,3.1458,229.2089,372.1011,164.2022,179.7156,380.1389,323.7333,714.0100,55.2700,0,97.5139,144.0000,24.0000,129.0269,82.8536,17.4144,24.2375,22.0906,7.7117,48.8944,149.5017,58.9750,71.2450,0,9.2572,25.9131,0,29.3383,24.0000,8.6314,44.0186,42.3756,24.0000,0,0,45.3169,24.0000,3.8883,45.9239,38.8869,13.7992,7.3744,0,16.9689,1.4844,19.7881,5.9961,11.6819,14.1122,7.7850,7.7769,0,9.6900,8.2461,0,0.6131,0,0.3878,0,0 -2017-01-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv deleted file mode 100644 index a573e2ee2c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" -2016-12-23,0,0,0,8.6036,0,0 -2016-12-24,0,0,0,24.0000,0,0 -2016-12-25,0,0,0,24.0000,0,0 -2016-12-26,0,0,0,24.0000,0,0 -2016-12-27,19.7467,0,8.5497,24.0000,0,0 -2016-12-28,96.0000,0,24.0000,24.0000,0,0 -2016-12-29,96.0000,9.8928,42.5322,39.1372,0,0 -2016-12-30,96.0000,378.0547,108.4533,7.1367,3.0522,0.2208 -2016-12-31,82.8536,17.4144,48.8944,0,0.6131,0.3878 -2017-01-01,23.2242,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv deleted file mode 100644 index 84645922b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Wall Hours: Total" -2016-12-30,9.4878 -2016-12-31,42.3756 -2017-01-01,34.6142 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv deleted file mode 100644 index ba01402dbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -2016-12,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -2017-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv deleted file mode 100644 index ba01402dbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -2016-12,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -2017-01,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv deleted file mode 100644 index 463937cf61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" -2016-12,390.6003,405.3619,232.4297,174.8775,3.6653,0.6086 -2017-01,23.2242,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv deleted file mode 100644 index 64488193cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Wall Hours: Total" -2016-12,51.8633 -2017-01,34.6142 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv deleted file mode 100644 index 18885b5efc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -"2016 Q4",55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -"2017 Q1",11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv deleted file mode 100644 index 18885b5efc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -"2016 Q4",55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -"2017 Q1",11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv deleted file mode 100644 index 115ef8945d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" -"2016 Q4",390.6003,405.3619,232.4297,174.8775,3.6653,0.6086 -"2017 Q1",23.2242,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv deleted file mode 100644 index 37d516bd45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Wall Hours: Total" -"2016 Q4",51.8633 -"2017 Q1",34.6142 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv deleted file mode 100644 index 56b37159a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -2016,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -2017,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv deleted file mode 100644 index 56b37159a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[moorh] Wall Hours: Total","[honbu] Wall Hours: Total","[lapwi] Wall Hours: Total","[legsh] Wall Hours: Total","[garwa] Wall Hours: Total","[reebu] Wall Hours: Total","[caspl] Wall Hours: Total","[meapi] Wall Hours: Total","[turdo] Wall Hours: Total","[sancr] Wall Hours: Total","[shttr] Wall Hours: Total","[sposa] Wall Hours: Total","[yebsa] Wall Hours: Total","[grath] Wall Hours: Total","[aytinis] Wall Hours: Total","[pibgr] Wall Hours: Total","[hoowa] Wall Hours: Total","[corsh] Wall Hours: Total","[misth] Wall Hours: Total","[sarwa] Wall Hours: Total","[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[noror] Wall Hours: Total","[smew1] Wall Hours: Total","[boowa] Wall Hours: Total","[ybsbu] Wall Hours: Total","[whtsp] Wall Hours: Total","[shag1] Wall Hours: Total","[crane] Wall Hours: Total","[sante] Wall Hours: Total","[siski] Wall Hours: Total","[sogsh] Wall Hours: Total","[whtpl] Wall Hours: Total","[egygo] Wall Hours: Total","[chaff] Wall Hours: Total","[henha] Wall Hours: Total","[jackd] Wall Hours: Total","[whimb] Wall Hours: Total","[pereg] Wall Hours: Total","[velsc] Wall Hours: Total","[mamwa] Wall Hours: Total","[litau] Wall Hours: Total","[ferdu] Wall Hours: Total","[lanhach] Wall Hours: Total","[blhbu] Wall Hours: Total","[vertera] Wall Hours: Total","[grgsh] Wall Hours: Total","[yebbu] Wall Hours: Total","[gloib] Wall Hours: Total","[duswa] Wall Hours: Total","[dunli] Wall Hours: Total","[field] Wall Hours: Total","[lesre] Wall Hours: Total","[proubis] Wall Hours: Total","[ribgu] Wall Hours: Total","[coot1] Wall Hours: Total","[categ] Wall Hours: Total","[evegr] Wall Hours: Total","[rolle] Wall Hours: Total","[alpsw] Wall Hours: Total","[yebwa] Wall Hours: Total","[litst] Wall Hours: Total","[crama] Wall Hours: Total","[savsp] Wall Hours: Total","[allga] Wall Hours: Total","[relpa] Wall Hours: Total" -2016,55820.4542,14812.8536,14099.6133,8590.5158,2246.7575,1560.5139,3.1458,1501.0950,1054.8381,1071.2075,903.1608,993.6836,754.3106,785.0175,648.0389,500.2031,458.5558,317.6461,428.1250,405.2000,390.6003,405.3619,232.9839,255.4306,251.4806,232.4297,149.5017,222.9267,154.1667,174.8775,140.0700,134.0178,132.4094,126.2600,99.7997,100.8417,87.3878,51.8633,71.9061,74.3633,72.0069,69.3242,51.0019,41.9922,59.8692,48.5792,54.6383,50.3497,48.0067,46.3125,14.3053,27.7925,26.3053,23.3511,31.9097,15.5661,15.5575,20.1617,14.0556,8.7825,9.0064,3.6653,1.1269,0.6086,0.2606,0.0650 -2017,11183.6664,790.6731,1254.4625,0,526.7989,196.9956,1590.0014,24.6992,368.2992,0,123.3775,21.1656,141.3592,17.6292,0,0,0,120.3844,5.0458,18.4314,23.2242,0,40.6492,0,0,0,79.9525,4.9539,48.6856,0,0,1.7419,0,0,20.2075,0,0,34.6142,2.6372,0,0,0.9528,19.0058,20.2619,0,7.7075,0,0,0,0,30.9281,15.3294,11.4906,11.6350,0,7.7583,7.7581,0,4.2811,1.7797,0.0217,0,0,0.0256,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv deleted file mode 100644 index b47ba80c03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[ovenb] Wall Hours: Total","[swath] Wall Hours: Total","[ybsbu] Wall Hours: Total","[sante] Wall Hours: Total","[litst] Wall Hours: Total","[savsp] Wall Hours: Total" -2016,390.6003,405.3619,232.4297,174.8775,3.6653,0.6086 -2017,23.2242,0,0,0,0,0.0256 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv deleted file mode 100644 index 4c6e08a745..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/total_wallduration_hours/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Wall Hours: Total: by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Wall Hours: Total" -2016,51.8633 -2017,34.6142 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv deleted file mode 100644 index fe8426d87f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -aytinis,20.6013 -meapi,13.8709 -moorh,6.3451 -garwa,5.1824 -honbu,3.5570 -egygo,2.4551 -crane,1.8441 -smew1,1.7416 -lapwi,1.4540 -reebu,1.3185 -duswa,1.2411 -turdo,1.1885 -sposa,1.1532 -caspl,1.1064 -sancr,0.8515 -legsh,0.8135 -siski,0.7959 -sarwa,0.7889 -shttr,0.7772 -chaff,0.7273 -ovenb,0.6270 -velsc,0.4999 -whtsp,0.4983 -misth,0.4922 -whimb,0.4658 -pereg,0.4235 -ferdu,0.3978 -hoowa,0.3658 -yebsa,0.3393 -corsh,0.3318 -noror,0.3030 -shag1,0.2168 -swath,0.2144 -whtpl,0.1505 -ybsbu,0.1489 -dunli,0.1438 -gloib,0.1429 -vertera,0.1370 -yebwa,0.1368 -evegr,0.1069 -boowa,0.0967 -grath,0.0966 -yebbu,0.0954 -litau,0.0590 -alpsw,0.0578 -rolle,0.0559 -pibgr,0.0474 -field,0.0327 -lanhach,0.0247 -lesre,0.0225 -sante,0.0166 -jackd,0.0130 -sogsh,0.0129 -henha,0.0095 -mamwa,0.0068 -proubis,0.0061 -blhbu,0.0057 -grgsh,0.0052 -categ,0.0040 -coot1,0.0040 -crama,0.0034 -ribgu,0.0030 -allga,0.0027 -litst,0.0023 -relpa,0.0001 -savsp,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv deleted file mode 100644 index fe8426d87f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -aytinis,20.6013 -meapi,13.8709 -moorh,6.3451 -garwa,5.1824 -honbu,3.5570 -egygo,2.4551 -crane,1.8441 -smew1,1.7416 -lapwi,1.4540 -reebu,1.3185 -duswa,1.2411 -turdo,1.1885 -sposa,1.1532 -caspl,1.1064 -sancr,0.8515 -legsh,0.8135 -siski,0.7959 -sarwa,0.7889 -shttr,0.7772 -chaff,0.7273 -ovenb,0.6270 -velsc,0.4999 -whtsp,0.4983 -misth,0.4922 -whimb,0.4658 -pereg,0.4235 -ferdu,0.3978 -hoowa,0.3658 -yebsa,0.3393 -corsh,0.3318 -noror,0.3030 -shag1,0.2168 -swath,0.2144 -whtpl,0.1505 -ybsbu,0.1489 -dunli,0.1438 -gloib,0.1429 -vertera,0.1370 -yebwa,0.1368 -evegr,0.1069 -boowa,0.0967 -grath,0.0966 -yebbu,0.0954 -litau,0.0590 -alpsw,0.0578 -rolle,0.0559 -pibgr,0.0474 -field,0.0327 -lanhach,0.0247 -lesre,0.0225 -sante,0.0166 -jackd,0.0130 -sogsh,0.0129 -henha,0.0095 -mamwa,0.0068 -proubis,0.0061 -blhbu,0.0057 -grgsh,0.0052 -categ,0.0040 -coot1,0.0040 -crama,0.0034 -ribgu,0.0030 -allga,0.0027 -litst,0.0023 -relpa,0.0001 -savsp,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv deleted file mode 100644 index 9458fbd987..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -ovenb,0.6270 -swath,0.2144 -ybsbu,0.1489 -sante,0.0166 -litst,0.0023 -savsp,0.0001 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-usr.csv deleted file mode 100644 index 2211c89854..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Day-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -whimb,0.4658 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv deleted file mode 100644 index ebc301163e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -aytinis,3.4335 -meapi,2.9918 -moorh,1.3685 -garwa,0.9805 -honbu,0.7905 -egygo,0.4092 -crane,0.3977 -smew1,0.3756 -lapwi,0.3136 -turdo,0.3113 -reebu,0.2862 -duswa,0.2677 -sposa,0.2487 -caspl,0.2263 -chaff,0.1951 -sarwa,0.1866 -sancr,0.1848 -legsh,0.1755 -siski,0.1717 -shttr,0.1676 -ovenb,0.1642 -velsc,0.1183 -whtsp,0.1075 -misth,0.1062 -whimb,0.1005 -pereg,0.0914 -yebsa,0.0889 -ferdu,0.0858 -noror,0.0813 -hoowa,0.0789 -corsh,0.0716 -shag1,0.0513 -swath,0.0507 -whtpl,0.0325 -ybsbu,0.0325 -dunli,0.0310 -vertera,0.0296 -yebwa,0.0295 -gloib,0.0270 -evegr,0.0231 -grath,0.0228 -yebbu,0.0226 -boowa,0.0209 -alpsw,0.0155 -litau,0.0127 -rolle,0.0121 -pibgr,0.0102 -field,0.0086 -lanhach,0.0058 -lesre,0.0043 -sante,0.0043 -sogsh,0.0028 -jackd,0.0025 -henha,0.0021 -mamwa,0.0015 -blhbu,0.0012 -grgsh,0.0011 -proubis,0.0010 -categ,0.0007 -coot1,0.0007 -ribgu,0.0007 -allga,0.0006 -crama,0.0006 -litst,0.0006 -relpa,0.0000 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv deleted file mode 100644 index ebc301163e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -aytinis,3.4335 -meapi,2.9918 -moorh,1.3685 -garwa,0.9805 -honbu,0.7905 -egygo,0.4092 -crane,0.3977 -smew1,0.3756 -lapwi,0.3136 -turdo,0.3113 -reebu,0.2862 -duswa,0.2677 -sposa,0.2487 -caspl,0.2263 -chaff,0.1951 -sarwa,0.1866 -sancr,0.1848 -legsh,0.1755 -siski,0.1717 -shttr,0.1676 -ovenb,0.1642 -velsc,0.1183 -whtsp,0.1075 -misth,0.1062 -whimb,0.1005 -pereg,0.0914 -yebsa,0.0889 -ferdu,0.0858 -noror,0.0813 -hoowa,0.0789 -corsh,0.0716 -shag1,0.0513 -swath,0.0507 -whtpl,0.0325 -ybsbu,0.0325 -dunli,0.0310 -vertera,0.0296 -yebwa,0.0295 -gloib,0.0270 -evegr,0.0231 -grath,0.0228 -yebbu,0.0226 -boowa,0.0209 -alpsw,0.0155 -litau,0.0127 -rolle,0.0121 -pibgr,0.0102 -field,0.0086 -lanhach,0.0058 -lesre,0.0043 -sante,0.0043 -sogsh,0.0028 -jackd,0.0025 -henha,0.0021 -mamwa,0.0015 -blhbu,0.0012 -grgsh,0.0011 -proubis,0.0010 -categ,0.0007 -coot1,0.0007 -ribgu,0.0007 -allga,0.0006 -crama,0.0006 -litst,0.0006 -relpa,0.0000 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv deleted file mode 100644 index 18e18b0d5e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -ovenb,0.1642 -swath,0.0507 -ybsbu,0.0325 -sante,0.0043 -litst,0.0006 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-usr.csv deleted file mode 100644 index 915f82f218..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Month-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -whimb,0.1005 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv deleted file mode 100644 index 71fc1c92bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -meapi,1.3871 -aytinis,1.3011 -moorh,0.6345 -garwa,0.3779 -honbu,0.3259 -crane,0.1844 -smew1,0.1742 -egygo,0.1551 -lapwi,0.1454 -turdo,0.1294 -duswa,0.1241 -reebu,0.1206 -sposa,0.1153 -caspl,0.0967 -sarwa,0.0823 -legsh,0.0813 -chaff,0.0800 -siski,0.0796 -sancr,0.0779 -shttr,0.0777 -ovenb,0.0683 -velsc,0.0521 -whtsp,0.0498 -misth,0.0492 -whimb,0.0466 -pereg,0.0424 -ferdu,0.0398 -yebsa,0.0370 -hoowa,0.0366 -noror,0.0333 -corsh,0.0332 -shag1,0.0226 -swath,0.0224 -whtpl,0.0150 -dunli,0.0144 -vertera,0.0137 -yebwa,0.0137 -ybsbu,0.0129 -evegr,0.0107 -gloib,0.0104 -grath,0.0101 -yebbu,0.0099 -boowa,0.0097 -alpsw,0.0064 -litau,0.0059 -rolle,0.0056 -pibgr,0.0047 -field,0.0036 -lanhach,0.0026 -sante,0.0018 -lesre,0.0016 -sogsh,0.0013 -henha,0.0010 -jackd,0.0009 -mamwa,0.0007 -blhbu,0.0006 -grgsh,0.0005 -proubis,0.0004 -allga,0.0003 -categ,0.0003 -coot1,0.0003 -ribgu,0.0003 -crama,0.0002 -litst,0.0002 -relpa,0.0000 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv deleted file mode 100644 index 71fc1c92bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -meapi,1.3871 -aytinis,1.3011 -moorh,0.6345 -garwa,0.3779 -honbu,0.3259 -crane,0.1844 -smew1,0.1742 -egygo,0.1551 -lapwi,0.1454 -turdo,0.1294 -duswa,0.1241 -reebu,0.1206 -sposa,0.1153 -caspl,0.0967 -sarwa,0.0823 -legsh,0.0813 -chaff,0.0800 -siski,0.0796 -sancr,0.0779 -shttr,0.0777 -ovenb,0.0683 -velsc,0.0521 -whtsp,0.0498 -misth,0.0492 -whimb,0.0466 -pereg,0.0424 -ferdu,0.0398 -yebsa,0.0370 -hoowa,0.0366 -noror,0.0333 -corsh,0.0332 -shag1,0.0226 -swath,0.0224 -whtpl,0.0150 -dunli,0.0144 -vertera,0.0137 -yebwa,0.0137 -ybsbu,0.0129 -evegr,0.0107 -gloib,0.0104 -grath,0.0101 -yebbu,0.0099 -boowa,0.0097 -alpsw,0.0064 -litau,0.0059 -rolle,0.0056 -pibgr,0.0047 -field,0.0036 -lanhach,0.0026 -sante,0.0018 -lesre,0.0016 -sogsh,0.0013 -henha,0.0010 -jackd,0.0009 -mamwa,0.0007 -blhbu,0.0006 -grgsh,0.0005 -proubis,0.0004 -allga,0.0003 -categ,0.0003 -coot1,0.0003 -ribgu,0.0003 -crama,0.0002 -litst,0.0002 -relpa,0.0000 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv deleted file mode 100644 index 07d2d3435c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -ovenb,0.0683 -swath,0.0224 -ybsbu,0.0129 -sante,0.0018 -litst,0.0002 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv deleted file mode 100644 index 895fbae7c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -whimb,0.0466 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv deleted file mode 100644 index ae9ee148ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cd.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -meapi,0.3963 -aytinis,0.3341 -moorh,0.1813 -garwa,0.0978 -honbu,0.0872 -crane,0.0527 -smew1,0.0498 -lapwi,0.0415 -egygo,0.0398 -duswa,0.0355 -turdo,0.0348 -sposa,0.0329 -reebu,0.0326 -caspl,0.0263 -legsh,0.0232 -sarwa,0.0228 -siski,0.0227 -shttr,0.0222 -chaff,0.0213 -sancr,0.0211 -ovenb,0.0183 -velsc,0.0145 -whtsp,0.0142 -misth,0.0141 -whimb,0.0133 -pereg,0.0121 -ferdu,0.0114 -hoowa,0.0105 -yebsa,0.0099 -corsh,0.0095 -noror,0.0089 -shag1,0.0063 -swath,0.0062 -whtpl,0.0043 -dunli,0.0041 -vertera,0.0039 -yebwa,0.0039 -ybsbu,0.0034 -evegr,0.0031 -boowa,0.0028 -grath,0.0028 -yebbu,0.0028 -gloib,0.0027 -alpsw,0.0017 -litau,0.0017 -rolle,0.0016 -pibgr,0.0014 -field,0.0010 -lanhach,0.0007 -sante,0.0005 -lesre,0.0004 -sogsh,0.0004 -henha,0.0003 -blhbu,0.0002 -jackd,0.0002 -mamwa,0.0002 -allga,0.0001 -categ,0.0001 -coot1,0.0001 -crama,0.0001 -grgsh,0.0001 -litst,0.0001 -proubis,0.0001 -ribgu,0.0001 -relpa,0.0000 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv deleted file mode 100644 index ae9ee148ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-cs.csv +++ /dev/null @@ -1,75 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -meapi,0.3963 -aytinis,0.3341 -moorh,0.1813 -garwa,0.0978 -honbu,0.0872 -crane,0.0527 -smew1,0.0498 -lapwi,0.0415 -egygo,0.0398 -duswa,0.0355 -turdo,0.0348 -sposa,0.0329 -reebu,0.0326 -caspl,0.0263 -legsh,0.0232 -sarwa,0.0228 -siski,0.0227 -shttr,0.0222 -chaff,0.0213 -sancr,0.0211 -ovenb,0.0183 -velsc,0.0145 -whtsp,0.0142 -misth,0.0141 -whimb,0.0133 -pereg,0.0121 -ferdu,0.0114 -hoowa,0.0105 -yebsa,0.0099 -corsh,0.0095 -noror,0.0089 -shag1,0.0063 -swath,0.0062 -whtpl,0.0043 -dunli,0.0041 -vertera,0.0039 -yebwa,0.0039 -ybsbu,0.0034 -evegr,0.0031 -boowa,0.0028 -grath,0.0028 -yebbu,0.0028 -gloib,0.0027 -alpsw,0.0017 -litau,0.0017 -rolle,0.0016 -pibgr,0.0014 -field,0.0010 -lanhach,0.0007 -sante,0.0005 -lesre,0.0004 -sogsh,0.0004 -henha,0.0003 -blhbu,0.0002 -jackd,0.0002 -mamwa,0.0002 -allga,0.0001 -categ,0.0001 -coot1,0.0001 -crama,0.0001 -grgsh,0.0001 -litst,0.0001 -proubis,0.0001 -ribgu,0.0001 -relpa,0.0000 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv deleted file mode 100644 index 4ccae36f6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-pi.csv +++ /dev/null @@ -1,16 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -ovenb,0.0183 -swath,0.0062 -ybsbu,0.0034 -sante,0.0005 -litst,0.0001 -savsp,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-usr.csv deleted file mode 100644 index 135878dc6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/aggregate-Year-usr.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -"System Username","Screwdriver CPU Utilization (%)" -whimb,0.0133 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv deleted file mode 100644 index b05f38792d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cd.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0090,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,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.1587,0,0.3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.2253,0,0,0,0,0,1.2000,0,0.6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.8952,0,2.0000,0.0034,0,0,0,0,0.8947,0,0.6000,0,0,1.3559,0,1.5498,0,0.5819,0.2533,0.3291,3.1220,0,0,0,0,0,0,0,0,0.3000,0,0,0,0.1425,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0049,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,0,0,0,2.0446,4.2672,0,0.6000,0,0,1.6312,0,2.4389,0.8329,1.4699,1.6000,1.6000,3.6000,0,0.3505,0,0,0,0.3662,0,0,0.3000,0.2012,0,0.1890,0.4000,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,41.2000,51.5980,13.1076,7.9626,0.3223,1.7124,1.9109,6.0638,4.0642,3.5068,0,0.7600,0.5077,0,2.9811,0,3.0000,3.9036,2.0531,1.6000,1.6000,3.6000,0,2.7000,0,1.4649,0.1876,1.1580,0.5790,0.2482,0.3000,0.6050,0.2403,0.9000,0.2772,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0.2427,0,0.0232,0.0299,0.0408,0,0,0.0105,0.0250,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,41.2000,48.8496,22.6731,6.3076,12.7775,9.5951,6.3813,11.4367,5.7014,2.6501,7.7129,3.2047,7.1616,0,2.5358,3.1832,1.3028,2.3574,1.9182,1.6000,1.6000,0.3377,0,2.0011,0.7116,1.5293,1.5000,1.5415,1.2150,1.1988,0.3000,0.8149,1.5376,0.5661,0.5138,0.5439,0.4022,0.3402,0.4196,1.0637,0.2073,0.2962,0.5000,0.0709,0.0272,0.0687,0.2783,0.0667,0.0084,0.0547,0.0074,0.0452,0.1126,0.0855,0.0201,0.0122,0.0145,0.0425,0.0081,0.0081,0.0235,0.0185,0.0293,0.0206,0.0011,0.0002 -2016-12-31,10.5124,22.9209,21.3729,12.2717,18.0378,3.4228,7.1245,1.6568,2.8769,1.1987,5.9391,3.1008,4.7517,0.0393,1.3368,5.7653,0.4629,3.6228,1.4976,1.6000,1.3809,0,3.6187,0.3000,2.4478,1.5000,1.5000,0.9582,1.3489,1.2000,0.3038,0.7013,1.1610,0,0.4075,0.1307,0,0.9523,0,0,0.0080,0.7438,0.3073,0.5116,0.5497,0.5239,0,0.1649,0.0405,0.0250,0,0.0459,0.0270,0.0090,0,0.0122,0.0478,0.0144,0.0081,0.0081,0,0.0147,0,0.0102,0,0.0004 -2017-01-01,0,2.4699,11.6497,5.1025,1.6458,0,4.8686,0,1.3067,1.5843,0,3.0692,0.2646,9.9375,0,0,0,0.6592,1.0281,1.3472,0.3871,0,1.8628,0.0631,1.9640,0.1648,1.1879,0,0.5890,1.0032,0.4200,0.1238,0,0,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0593,0.0223,0,0.1277,0.4221,0.0479,0,0,0.0018,0,0,0.0121,0,0,0.0081,0.0081,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv deleted file mode 100644 index b05f38792d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-cs.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Day,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0.2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2093,0,0,0,0,0,0,0,0,0,0,0,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0090,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.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,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.1587,0,0.3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0.2253,0,0,0,0,0,1.2000,0,0.6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,3.8952,0,2.0000,0.0034,0,0,0,0,0.8947,0,0.6000,0,0,1.3559,0,1.5498,0,0.5819,0.2533,0.3291,3.1220,0,0,0,0,0,0,0,0,0.3000,0,0,0,0.1425,0,0,0,0,0,0.2488,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0049,0,0,0,0,0,0,0,0,0,0,0 -2016-12-28,30.6953,22.8458,0.9927,2.4070,0.0250,0,0,0,2.0446,4.2672,0,0.6000,0,0,1.6312,0,2.4389,0.8329,1.4699,1.6000,1.6000,3.6000,0,0.3505,0,0,0,0.3662,0,0,0.3000,0.2012,0,0.1890,0.4000,0,0.0979,0,0,0,0.3000,0,0,0,0,0,0,0,0,0,0.0250,0,0,0,0.0250,0,0,0,0,0,0,0,0,0,0,0 -2016-12-29,41.2000,51.5980,13.1076,7.9626,0.3223,1.7124,1.9109,6.0638,4.0642,3.5068,0,0.7600,0.5077,0,2.9811,0,3.0000,3.9036,2.0531,1.6000,1.6000,3.6000,0,2.7000,0,1.4649,0.1876,1.1580,0.5790,0.2482,0.3000,0.6050,0.2403,0.9000,0.2772,0,0.5000,0,1.0815,0.1124,0.3000,0.0075,0.7906,0.0542,0,0,0.2427,0,0.0232,0.0299,0.0408,0,0,0.0105,0.0250,0,0,0,0,0,0,0,0,0,0,0 -2016-12-30,41.2000,48.8496,22.6731,6.3076,12.7775,9.5951,6.3813,11.4367,5.7014,2.6501,7.7129,3.2047,7.1616,0,2.5358,3.1832,1.3028,2.3574,1.9182,1.6000,1.6000,0.3377,0,2.0011,0.7116,1.5293,1.5000,1.5415,1.2150,1.1988,0.3000,0.8149,1.5376,0.5661,0.5138,0.5439,0.4022,0.3402,0.4196,1.0637,0.2073,0.2962,0.5000,0.0709,0.0272,0.0687,0.2783,0.0667,0.0084,0.0547,0.0074,0.0452,0.1126,0.0855,0.0201,0.0122,0.0145,0.0425,0.0081,0.0081,0.0235,0.0185,0.0293,0.0206,0.0011,0.0002 -2016-12-31,10.5124,22.9209,21.3729,12.2717,18.0378,3.4228,7.1245,1.6568,2.8769,1.1987,5.9391,3.1008,4.7517,0.0393,1.3368,5.7653,0.4629,3.6228,1.4976,1.6000,1.3809,0,3.6187,0.3000,2.4478,1.5000,1.5000,0.9582,1.3489,1.2000,0.3038,0.7013,1.1610,0,0.4075,0.1307,0,0.9523,0,0,0.0080,0.7438,0.3073,0.5116,0.5497,0.5239,0,0.1649,0.0405,0.0250,0,0.0459,0.0270,0.0090,0,0.0122,0.0478,0.0144,0.0081,0.0081,0,0.0147,0,0.0102,0,0.0004 -2017-01-01,0,2.4699,11.6497,5.1025,1.6458,0,4.8686,0,1.3067,1.5843,0,3.0692,0.2646,9.9375,0,0,0,0.6592,1.0281,1.3472,0.3871,0,1.8628,0.0631,1.9640,0.1648,1.1879,0,0.5890,1.0032,0.4200,0.1238,0,0,0,0.9068,0,0.2147,0.0036,0,0,0.0367,0,0.0119,0.0593,0.0223,0,0.1277,0.4221,0.0479,0,0,0.0018,0,0,0.0121,0,0,0.0081,0.0081,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv deleted file mode 100644 index 77ca25a54d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016-12-23,0,0,0,0.0090,0,0 -2016-12-24,0,0,0,0.0250,0,0 -2016-12-25,0,0,0,0.0250,0,0 -2016-12-26,0,0,0,0.0250,0,0 -2016-12-27,0.3291,0,0.1425,0.0250,0,0 -2016-12-28,1.6000,0,0.4000,0.0250,0,0 -2016-12-29,1.6000,0.2403,0.2772,0.0408,0,0 -2016-12-30,1.6000,1.5376,0.5138,0.0074,0.0206,0.0002 -2016-12-31,1.3809,1.1610,0.4075,0,0.0102,0.0004 -2017-01-01,0.3871,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-usr.csv deleted file mode 100644 index 6e6a9f7435..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Day-usr.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Day,"[whimb] Screwdriver CPU Utilization (%)" -2016-12-30,0.7116 -2016-12-31,2.4478 -2017-01-01,1.9640 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv deleted file mode 100644 index ce1fdd099f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016-12,24.7215,7.5055,2.9073,5.1957,2.9884,2.9461,0.7708,0.9579,0.7344,0.9095,0.9375,0.6826,0.6211,0.0066,0.6653,0.5386,0.6623,0.4474,0.4377,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.2857,0.1594,0.2913,0.2012,0.1324,0.1498,0.1522,0.0828,0.1583,0.0337,0.0646,0.0751,0.1667,0.0588,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0183,0.0166,0.0070,0.0152,0.0053,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0017,0.0015,0.0039,0.0017,0.0001,0.0001 -2017-01,0,0.0797,0.3758,0.1646,0.0531,0,0.1571,0,0.0422,0.0990,0.0511,0,0.0085,0.3206,0.0435,0.0213,0,0,0,0.0332,0.0125,0,0.0601,0.0020,0.0634,0.0053,0.0190,0.0383,0.0135,0,0.0324,0.0040,0,0,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0019,0.0004,0.0007,0,0.0041,0.0136,0.0015,0,0.0001,0,0,0,0,0,0.0004,0.0003,0.0003,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv deleted file mode 100644 index ce1fdd099f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Month,"[aytinis] Screwdriver CPU Utilization (%)","[meapi] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016-12,24.7215,7.5055,2.9073,5.1957,2.9884,2.9461,0.7708,0.9579,0.7344,0.9095,0.9375,0.6826,0.6211,0.0066,0.6653,0.5386,0.6623,0.4474,0.4377,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.2857,0.1594,0.2913,0.2012,0.1324,0.1498,0.1522,0.0828,0.1583,0.0337,0.0646,0.0751,0.1667,0.0588,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0183,0.0166,0.0070,0.0152,0.0053,0.0038,0.0031,0.0028,0.0049,0.0032,0.0032,0.0017,0.0015,0.0039,0.0017,0.0001,0.0001 -2017-01,0,0.0797,0.3758,0.1646,0.0531,0,0.1571,0,0.0422,0.0990,0.0511,0,0.0085,0.3206,0.0435,0.0213,0,0,0,0.0332,0.0125,0,0.0601,0.0020,0.0634,0.0053,0.0190,0.0383,0.0135,0,0.0324,0.0040,0,0,0,0.0293,0.0069,0.0001,0,0,0.0012,0,0,0.0019,0.0004,0.0007,0,0.0041,0.0136,0.0015,0,0.0001,0,0,0,0,0,0.0004,0.0003,0.0003,0,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv deleted file mode 100644 index 2a07f8d192..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016-12,0.5918,0.1522,0.1583,0.0166,0.0017,0.0001 -2017-01,0.0125,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-usr.csv deleted file mode 100644 index a2e4c22bc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Month-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Month,"[whimb] Screwdriver CPU Utilization (%)" -2016-12,0.1580 -2017-01,0.0634 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv deleted file mode 100644 index cd4a2a2bc9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -"2016 Q4",7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,2.9461,0.7344,0.9095,0.6826,0.9375,0.6211,0.0066,0.5386,0.4474,0.6653,0.4377,0.6623,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2857,0.2012,0.2913,0.1324,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.1667,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0152,0.0038,0.0031,0.0028,0.0049,0.0015,0.0032,0.0032,0.0017,0.0039,0.0017,0.0001,0.0001 -"2017 Q1",0.0274,0,0.1294,0.0567,0.0183,0.0541,0,0,0.0145,0.0341,0,0.0176,0.0029,0.1104,0.0073,0,0.0150,0,0,0.0114,0.0043,0,0.0207,0.0007,0.0218,0.0018,0.0132,0.0065,0,0.0047,0.0111,0.0014,0,0,0.0101,0.0024,0.0000,0,0,0,0.0004,0,0,0.0007,0.0001,0.0002,0,0.0014,0.0047,0,0.0005,0.0000,0,0,0,0,0,0.0001,0,0.0001,0.0001,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv deleted file mode 100644 index cd4a2a2bc9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -"2016 Q4",7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,2.9461,0.7344,0.9095,0.6826,0.9375,0.6211,0.0066,0.5386,0.4474,0.6653,0.4377,0.6623,0.3760,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2857,0.2012,0.2913,0.1324,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.1667,0.0673,0.0677,0.0532,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0152,0.0038,0.0031,0.0028,0.0049,0.0015,0.0032,0.0032,0.0017,0.0039,0.0017,0.0001,0.0001 -"2017 Q1",0.0274,0,0.1294,0.0567,0.0183,0.0541,0,0,0.0145,0.0341,0,0.0176,0.0029,0.1104,0.0073,0,0.0150,0,0,0.0114,0.0043,0,0.0207,0.0007,0.0218,0.0018,0.0132,0.0065,0,0.0047,0.0111,0.0014,0,0,0.0101,0.0024,0.0000,0,0,0,0.0004,0,0,0.0007,0.0001,0.0002,0,0.0014,0.0047,0,0.0005,0.0000,0,0,0,0,0,0.0001,0,0.0001,0.0001,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv deleted file mode 100644 index 2de898d78e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -"2016 Q4",0.5918,0.1522,0.1583,0.0166,0.0017,0.0001 -"2017 Q1",0.0043,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv deleted file mode 100644 index c930ca430e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Quarter,"[whimb] Screwdriver CPU Utilization (%)" -"2016 Q4",0.1580 -"2017 Q1",0.0218 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv deleted file mode 100644 index 4b38ab52a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016,7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,0.7344,2.9461,0.6826,0.9095,0.6211,0.9375,0.0066,0.4474,0.5386,0.4377,0.3760,0.6653,0.6623,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2012,0.2857,0.1324,0.2913,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.0532,0.0673,0.0677,0.1667,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0031,0.0152,0.0038,0.0015,0.0032,0.0032,0.0039,0.0028,0.0017,0.0049,0.0017,0.0001,0.0001 -2017,0.0068,0,0.0319,0.0140,0.0045,0.0133,0,0.0036,0,0,0.0084,0.0007,0.0043,0.0272,0,0.0018,0,0.0028,0.0037,0,0.0011,0,0.0051,0.0002,0.0054,0.0005,0.0033,0,0.0016,0.0027,0.0012,0.0003,0,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0,0.0002,0.0000,0.0001,0,0.0003,0.0012,0,0.0001,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv deleted file mode 100644 index 4b38ab52a0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -start,end -2016-12-22,2017-01-01 ---------- -Year,"[meapi] Screwdriver CPU Utilization (%)","[aytinis] Screwdriver CPU Utilization (%)","[moorh] Screwdriver CPU Utilization (%)","[garwa] Screwdriver CPU Utilization (%)","[honbu] Screwdriver CPU Utilization (%)","[crane] Screwdriver CPU Utilization (%)","[smew1] Screwdriver CPU Utilization (%)","[lapwi] Screwdriver CPU Utilization (%)","[egygo] Screwdriver CPU Utilization (%)","[duswa] Screwdriver CPU Utilization (%)","[turdo] Screwdriver CPU Utilization (%)","[sposa] Screwdriver CPU Utilization (%)","[reebu] Screwdriver CPU Utilization (%)","[caspl] Screwdriver CPU Utilization (%)","[legsh] Screwdriver CPU Utilization (%)","[sarwa] Screwdriver CPU Utilization (%)","[siski] Screwdriver CPU Utilization (%)","[shttr] Screwdriver CPU Utilization (%)","[chaff] Screwdriver CPU Utilization (%)","[sancr] Screwdriver CPU Utilization (%)","[ovenb] Screwdriver CPU Utilization (%)","[velsc] Screwdriver CPU Utilization (%)","[whtsp] Screwdriver CPU Utilization (%)","[misth] Screwdriver CPU Utilization (%)","[whimb] Screwdriver CPU Utilization (%)","[pereg] Screwdriver CPU Utilization (%)","[ferdu] Screwdriver CPU Utilization (%)","[hoowa] Screwdriver CPU Utilization (%)","[yebsa] Screwdriver CPU Utilization (%)","[corsh] Screwdriver CPU Utilization (%)","[noror] Screwdriver CPU Utilization (%)","[shag1] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[whtpl] Screwdriver CPU Utilization (%)","[dunli] Screwdriver CPU Utilization (%)","[vertera] Screwdriver CPU Utilization (%)","[yebwa] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[evegr] Screwdriver CPU Utilization (%)","[boowa] Screwdriver CPU Utilization (%)","[grath] Screwdriver CPU Utilization (%)","[yebbu] Screwdriver CPU Utilization (%)","[gloib] Screwdriver CPU Utilization (%)","[alpsw] Screwdriver CPU Utilization (%)","[litau] Screwdriver CPU Utilization (%)","[rolle] Screwdriver CPU Utilization (%)","[pibgr] Screwdriver CPU Utilization (%)","[field] Screwdriver CPU Utilization (%)","[lanhach] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[lesre] Screwdriver CPU Utilization (%)","[sogsh] Screwdriver CPU Utilization (%)","[henha] Screwdriver CPU Utilization (%)","[blhbu] Screwdriver CPU Utilization (%)","[jackd] Screwdriver CPU Utilization (%)","[mamwa] Screwdriver CPU Utilization (%)","[allga] Screwdriver CPU Utilization (%)","[categ] Screwdriver CPU Utilization (%)","[coot1] Screwdriver CPU Utilization (%)","[crama] Screwdriver CPU Utilization (%)","[grgsh] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[proubis] Screwdriver CPU Utilization (%)","[ribgu] Screwdriver CPU Utilization (%)","[relpa] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016,7.5055,24.7215,2.9073,5.1957,2.9884,0.7708,0.9579,0.7344,2.9461,0.6826,0.9095,0.6211,0.9375,0.0066,0.4474,0.5386,0.4377,0.3760,0.6653,0.6623,0.5918,0.3548,0.1809,0.2676,0.1580,0.2247,0.1594,0.2012,0.2857,0.1324,0.2913,0.1498,0.1522,0.0828,0.0337,0.0646,0.0751,0.1583,0.0588,0.0532,0.0673,0.0677,0.1667,0.0577,0.0318,0.0296,0.0261,0.0211,0.0039,0.0166,0.0183,0.0070,0.0053,0.0031,0.0152,0.0038,0.0015,0.0032,0.0032,0.0039,0.0028,0.0017,0.0049,0.0017,0.0001,0.0001 -2017,0.0068,0,0.0319,0.0140,0.0045,0.0133,0,0.0036,0,0,0.0084,0.0007,0.0043,0.0272,0,0.0018,0,0.0028,0.0037,0,0.0011,0,0.0051,0.0002,0.0054,0.0005,0.0033,0,0.0016,0.0027,0.0012,0.0003,0,0,0.0025,0.0006,0.0000,0,0,0,0.0001,0,0,0.0002,0.0000,0.0001,0,0.0003,0.0012,0,0.0001,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv deleted file mode 100644 index 5d2973fec8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[ovenb] Screwdriver CPU Utilization (%)","[swath] Screwdriver CPU Utilization (%)","[ybsbu] Screwdriver CPU Utilization (%)","[sante] Screwdriver CPU Utilization (%)","[litst] Screwdriver CPU Utilization (%)","[savsp] Screwdriver CPU Utilization (%)" -2016,0.5918,0.1522,0.1583,0.0166,0.0017,0.0001 -2017,0.0011,0,0,0,0,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Jobs/username/utilization/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-usr.csv deleted file mode 100644 index 825def6935..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Jobs/username/utilization/timeseries-Year-usr.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Screwdriver CPU Utilization (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2016-12-22,2017-01-01 ---------- -Year,"[whimb] Screwdriver CPU Utilization (%)" -2016,0.1580 -2017,0.0054 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 42c0398e3f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Allocated (Core Count)" -Screwdriver,17882.3529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 024f8a0f3a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Allocated (Core Count)" -Screwdriver,16235.2941 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 7dbe6d718f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Allocated (Core Count)" -Screwdriver,18254.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index 3c17833107..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Allocated (Core Count)" -Screwdriver,19501.2987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index a1efed0951..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" -2016-12-22,12000.0000 -2016-12-23,12000.0000 -2016-12-24,12000.0000 -2016-12-25,12000.0000 -2016-12-26,16000.0000 -2016-12-27,20000.0000 -2016-12-28,20000.0000 -2016-12-29,20000.0000 -2016-12-30,20000.0000 -2016-12-31,20000.0000 -2017-01-01,20000.0000 -2017-01-02,20000.0000 -2017-01-03,20000.0000 -2017-01-04,20000.0000 -2017-01-05,20000.0000 -2017-01-06,20000.0000 -2017-01-07,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index a46338c087..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" -2016-12,10400.0000 -2017-01,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index 09f6b32e21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" -"2016 Q4",10400.0000 -"2017 Q1",20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 5514302425..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of CPU Cores: Allocated (Core Count)" -2016,10400.0000 -2017,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 64c0bb9b70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Allocated" -Screwdriver,1788.2353 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 7fce163edb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Allocated" -Screwdriver,1623.5294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index acc46bfa37..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Allocated" -Screwdriver,1825.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 9412d427a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Allocated" -Screwdriver,1950.1299 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index f9f63b996e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of CPU Nodes: Allocated" -2016-12-22,1200.0000 -2016-12-23,1200.0000 -2016-12-24,1200.0000 -2016-12-25,1200.0000 -2016-12-26,1600.0000 -2016-12-27,2000.0000 -2016-12-28,2000.0000 -2016-12-29,2000.0000 -2016-12-30,2000.0000 -2016-12-31,2000.0000 -2017-01-01,2000.0000 -2017-01-02,2000.0000 -2017-01-03,2000.0000 -2017-01-04,2000.0000 -2017-01-05,2000.0000 -2017-01-06,2000.0000 -2017-01-07,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 9bbe3bdedc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of CPU Nodes: Allocated" -2016-12,1040.0000 -2017-01,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index c93238ccdf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of CPU Nodes: Allocated" -"2016 Q4",1040.0000 -"2017 Q1",2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index bfd18b6120..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of CPU Nodes: Allocated" -2016,1040.0000 -2017,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index a9315795e2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Allocated" -Screwdriver,705.8824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index a197297e14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Allocated" -Screwdriver,690.1961 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 86a25e4db4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Allocated" -Screwdriver,749.0909 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index d590413bed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Allocated" -Screwdriver,785.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 3ec9cc8d19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of GPU Nodes: Allocated" -2016-12-22,400.0000 -2016-12-23,400.0000 -2016-12-24,400.0000 -2016-12-25,400.0000 -2016-12-26,800.0000 -2016-12-27,800.0000 -2016-12-28,800.0000 -2016-12-29,800.0000 -2016-12-30,800.0000 -2016-12-31,800.0000 -2017-01-01,800.0000 -2017-01-02,800.0000 -2017-01-03,800.0000 -2017-01-04,800.0000 -2017-01-05,800.0000 -2017-01-06,800.0000 -2017-01-07,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index dc2cfb3f02..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of GPU Nodes: Allocated" -2016-12,520.0000 -2017-01,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index a98b9ee862..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of GPU Nodes: Allocated" -"2016 Q4",520.0000 -"2017 Q1",800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 91beabc15a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of GPU Nodes: Allocated" -2016,520.0000 -2017,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index e778ad090b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Allocated (GPU Count)" -Screwdriver,7058.8235 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 83f7be387b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Allocated (GPU Count)" -Screwdriver,6901.9608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 1f5e3151b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Allocated (GPU Count)" -Screwdriver,7490.9091 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 7248d20331..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Allocated (GPU Count)" -Screwdriver,7854.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index ea98eabd07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" -2016-12-22,4000.0000 -2016-12-23,4000.0000 -2016-12-24,4000.0000 -2016-12-25,4000.0000 -2016-12-26,8000.0000 -2016-12-27,8000.0000 -2016-12-28,8000.0000 -2016-12-29,8000.0000 -2016-12-30,8000.0000 -2016-12-31,8000.0000 -2017-01-01,8000.0000 -2017-01-02,8000.0000 -2017-01-03,8000.0000 -2017-01-04,8000.0000 -2017-01-05,8000.0000 -2017-01-06,8000.0000 -2017-01-07,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 85ea602ef9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" -2016-12,5200.0000 -2017-01,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 1ee9d1ff5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" -"2016 Q4",5200.0000 -"2017 Q1",8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 92e3056799..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of GPUs: Allocated (GPU Count)" -2016,5200.0000 -2017,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index c44da59ae9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Allocated" -Screwdriver,7296000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9988c02004..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Allocated" -Screwdriver,19872000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ab5c1933a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Allocated" -Screwdriver,48192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9d408161e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Allocated" -Screwdriver,180192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 3cd117a809..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] CPU Hours: Allocated" -2016-12-22,288000.0000 -2016-12-23,288000.0000 -2016-12-24,288000.0000 -2016-12-25,288000.0000 -2016-12-26,384000.0000 -2016-12-27,480000.0000 -2016-12-28,480000.0000 -2016-12-29,480000.0000 -2016-12-30,480000.0000 -2016-12-31,480000.0000 -2017-01-01,480000.0000 -2017-01-02,480000.0000 -2017-01-03,480000.0000 -2017-01-04,480000.0000 -2017-01-05,480000.0000 -2017-01-06,480000.0000 -2017-01-07,480000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index a85695aabb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] CPU Hours: Allocated" -2016-12,4992000.0000 -2017-01,14880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b019d3990b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] CPU Hours: Allocated" -"2016 Q4",4992000.0000 -"2017 Q1",43200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index ee29a47c2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] CPU Hours: Allocated" -2016,4992000.0000 -2017,175200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index f6bef579be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Allocated" -Screwdriver,729600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 982e0ab5fc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Allocated" -Screwdriver,1987200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index bb8f49b042..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Allocated" -Screwdriver,4819200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8eace7b41d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Allocated" -Screwdriver,18019200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index ea6cc3e6ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] CPU Node Hours: Allocated" -2016-12-22,28800.0000 -2016-12-23,28800.0000 -2016-12-24,28800.0000 -2016-12-25,28800.0000 -2016-12-26,38400.0000 -2016-12-27,48000.0000 -2016-12-28,48000.0000 -2016-12-29,48000.0000 -2016-12-30,48000.0000 -2016-12-31,48000.0000 -2017-01-01,48000.0000 -2017-01-02,48000.0000 -2017-01-03,48000.0000 -2017-01-04,48000.0000 -2017-01-05,48000.0000 -2017-01-06,48000.0000 -2017-01-07,48000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 4fc0cf2b30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] CPU Node Hours: Allocated" -2016-12,499200.0000 -2017-01,1488000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 6ebbef7a4c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] CPU Node Hours: Allocated" -"2016 Q4",499200.0000 -"2017 Q1",4320000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index a6726c92ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] CPU Node Hours: Allocated" -2016,499200.0000 -2017,17520000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 14c0fbc254..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Allocated" -Screwdriver,2880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 93cd0e556e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Allocated" -Screwdriver,8448000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 47e7ce50ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Allocated" -Screwdriver,19776000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 16b9f116c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Allocated" -Screwdriver,72576000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9aeb16997b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] GPU Hours: Allocated" -2016-12-22,96000.0000 -2016-12-23,96000.0000 -2016-12-24,96000.0000 -2016-12-25,96000.0000 -2016-12-26,192000.0000 -2016-12-27,192000.0000 -2016-12-28,192000.0000 -2016-12-29,192000.0000 -2016-12-30,192000.0000 -2016-12-31,192000.0000 -2017-01-01,192000.0000 -2017-01-02,192000.0000 -2017-01-03,192000.0000 -2017-01-04,192000.0000 -2017-01-05,192000.0000 -2017-01-06,192000.0000 -2017-01-07,192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 21fd5bedcc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] GPU Hours: Allocated" -2016-12,2496000.0000 -2017-01,5952000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b21a928810..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] GPU Hours: Allocated" -"2016 Q4",2496000.0000 -"2017 Q1",17280000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 825acbd553..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] GPU Hours: Allocated" -2016,2496000.0000 -2017,70080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 45e88fbedb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Allocated" -Screwdriver,288000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index db0e64b71e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Allocated" -Screwdriver,844800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 8bd85f17e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Allocated" -Screwdriver,1977600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9182a8dff0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Allocated" -Screwdriver,7257600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 188272625b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] GPU Node Hours: Allocated" -2016-12-22,9600.0000 -2016-12-23,9600.0000 -2016-12-24,9600.0000 -2016-12-25,9600.0000 -2016-12-26,19200.0000 -2016-12-27,19200.0000 -2016-12-28,19200.0000 -2016-12-29,19200.0000 -2016-12-30,19200.0000 -2016-12-31,19200.0000 -2017-01-01,19200.0000 -2017-01-02,19200.0000 -2017-01-03,19200.0000 -2017-01-04,19200.0000 -2017-01-05,19200.0000 -2017-01-06,19200.0000 -2017-01-07,19200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index ee3143806f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] GPU Node Hours: Allocated" -2016-12,249600.0000 -2017-01,595200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index e44232c876..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] GPU Node Hours: Allocated" -"2016 Q4",249600.0000 -"2017 Q1",1728000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 39585fa2dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/allocated_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] GPU Node Hours: Allocated" -2016,249600.0000 -2017,7008000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index fe45ad7ae0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Total (Core Count)" -Screwdriver,17882.3529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 2f6a908be0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Total (Core Count)" -Screwdriver,16235.2941 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 140ec3b47e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Total (Core Count)" -Screwdriver,18254.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index a6799c07cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Cores: Total (Core Count)" -Screwdriver,19501.2987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index f1ced9c730..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" -2016-12-22,12000.0000 -2016-12-23,12000.0000 -2016-12-24,12000.0000 -2016-12-25,12000.0000 -2016-12-26,16000.0000 -2016-12-27,20000.0000 -2016-12-28,20000.0000 -2016-12-29,20000.0000 -2016-12-30,20000.0000 -2016-12-31,20000.0000 -2017-01-01,20000.0000 -2017-01-02,20000.0000 -2017-01-03,20000.0000 -2017-01-04,20000.0000 -2017-01-05,20000.0000 -2017-01-06,20000.0000 -2017-01-07,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 64395fefdd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" -2016-12,10400.0000 -2017-01,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index a9fb7c3191..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" -"2016 Q4",10400.0000 -"2017 Q1",20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 74219afb00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of CPU Cores: Total (Core Count)" -2016,10400.0000 -2017,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 6990a579ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Total" -Screwdriver,1788.2353 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 5457ec8d95..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Total" -Screwdriver,1623.5294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 4d93b1b4fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Total" -Screwdriver,1825.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 50c54c0b05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of CPU Nodes: Total" -Screwdriver,1950.1299 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 070a78ed87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of CPU Nodes: Total" -2016-12-22,1200.0000 -2016-12-23,1200.0000 -2016-12-24,1200.0000 -2016-12-25,1200.0000 -2016-12-26,1600.0000 -2016-12-27,2000.0000 -2016-12-28,2000.0000 -2016-12-29,2000.0000 -2016-12-30,2000.0000 -2016-12-31,2000.0000 -2017-01-01,2000.0000 -2017-01-02,2000.0000 -2017-01-03,2000.0000 -2017-01-04,2000.0000 -2017-01-05,2000.0000 -2017-01-06,2000.0000 -2017-01-07,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 2020cf0e1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of CPU Nodes: Total" -2016-12,1040.0000 -2017-01,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 9324efe1d4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of CPU Nodes: Total" -"2016 Q4",1040.0000 -"2017 Q1",2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 4c3d0da0b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of CPU Nodes: Total" -2016,1040.0000 -2017,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index a8b919ef74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Total" -Screwdriver,705.8824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index c35e2ed8e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Total" -Screwdriver,690.1961 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 4bf1504b60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Total" -Screwdriver,749.0909 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 77b8b448c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPU Nodes: Total" -Screwdriver,785.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 3d1a14161d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of GPU Nodes: Total" -2016-12-22,400.0000 -2016-12-23,400.0000 -2016-12-24,400.0000 -2016-12-25,400.0000 -2016-12-26,800.0000 -2016-12-27,800.0000 -2016-12-28,800.0000 -2016-12-29,800.0000 -2016-12-30,800.0000 -2016-12-31,800.0000 -2017-01-01,800.0000 -2017-01-02,800.0000 -2017-01-03,800.0000 -2017-01-04,800.0000 -2017-01-05,800.0000 -2017-01-06,800.0000 -2017-01-07,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index b124423c49..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of GPU Nodes: Total" -2016-12,520.0000 -2017-01,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index e71e7d7575..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of GPU Nodes: Total" -"2016 Q4",520.0000 -"2017 Q1",800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index dece531113..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of GPU Nodes: Total" -2016,520.0000 -2017,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index b21d878249..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Total (GPU Count)" -Screwdriver,7058.8235 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 833a6bf896..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Total (GPU Count)" -Screwdriver,6901.9608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index c36d9e5939..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Total (GPU Count)" -Screwdriver,7490.9091 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 6e53c23a2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"Average Number of GPUs: Total (GPU Count)" -Screwdriver,7854.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 3a1cdac052..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" -2016-12-22,4000.0000 -2016-12-23,4000.0000 -2016-12-24,4000.0000 -2016-12-25,4000.0000 -2016-12-26,8000.0000 -2016-12-27,8000.0000 -2016-12-28,8000.0000 -2016-12-29,8000.0000 -2016-12-30,8000.0000 -2016-12-31,8000.0000 -2017-01-01,8000.0000 -2017-01-02,8000.0000 -2017-01-03,8000.0000 -2017-01-04,8000.0000 -2017-01-05,8000.0000 -2017-01-06,8000.0000 -2017-01-07,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 89acacf136..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" -2016-12,5200.0000 -2017-01,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 4066f7d76c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" -"2016 Q4",5200.0000 -"2017 Q1",8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index f709d139c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count)" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] Average Number of GPUs: Total (GPU Count)" -2016,5200.0000 -2017,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4d1e648c36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Total" -Screwdriver,7296000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index e3f378b9b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Total" -Screwdriver,19872000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3aed7bef4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Total" -Screwdriver,48192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 2d06d0cb23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Hours: Total" -Screwdriver,180192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index ac51964571..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] CPU Hours: Total" -2016-12-22,288000.0000 -2016-12-23,288000.0000 -2016-12-24,288000.0000 -2016-12-25,288000.0000 -2016-12-26,384000.0000 -2016-12-27,480000.0000 -2016-12-28,480000.0000 -2016-12-29,480000.0000 -2016-12-30,480000.0000 -2016-12-31,480000.0000 -2017-01-01,480000.0000 -2017-01-02,480000.0000 -2017-01-03,480000.0000 -2017-01-04,480000.0000 -2017-01-05,480000.0000 -2017-01-06,480000.0000 -2017-01-07,480000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 2c3f2a064c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] CPU Hours: Total" -2016-12,4992000.0000 -2017-01,14880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 9bd40ec35f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] CPU Hours: Total" -"2016 Q4",4992000.0000 -"2017 Q1",43200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 0236f18bad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] CPU Hours: Total" -2016,4992000.0000 -2017,175200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index fae749164b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Total" -Screwdriver,729600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 24d1cd1554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Total" -Screwdriver,1987200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3e1301d1ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Total" -Screwdriver,4819200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index fca3d81d90..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"CPU Node Hours: Total" -Screwdriver,18019200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b7236e0391..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] CPU Node Hours: Total" -2016-12-22,28800.0000 -2016-12-23,28800.0000 -2016-12-24,28800.0000 -2016-12-25,28800.0000 -2016-12-26,38400.0000 -2016-12-27,48000.0000 -2016-12-28,48000.0000 -2016-12-29,48000.0000 -2016-12-30,48000.0000 -2016-12-31,48000.0000 -2017-01-01,48000.0000 -2017-01-02,48000.0000 -2017-01-03,48000.0000 -2017-01-04,48000.0000 -2017-01-05,48000.0000 -2017-01-06,48000.0000 -2017-01-07,48000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index b4340fab36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] CPU Node Hours: Total" -2016-12,499200.0000 -2017-01,1488000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 50d3489d71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] CPU Node Hours: Total" -"2016 Q4",499200.0000 -"2017 Q1",4320000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6f21547783..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] CPU Node Hours: Total" -2016,499200.0000 -2017,17520000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index e5d49abbb7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Total" -Screwdriver,2880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 115c9d1c3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Total" -Screwdriver,8448000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index aa14b422b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Total" -Screwdriver,19776000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 796f8b795f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Hours: Total" -Screwdriver,72576000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index f5887c93b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] GPU Hours: Total" -2016-12-22,96000.0000 -2016-12-23,96000.0000 -2016-12-24,96000.0000 -2016-12-25,96000.0000 -2016-12-26,192000.0000 -2016-12-27,192000.0000 -2016-12-28,192000.0000 -2016-12-29,192000.0000 -2016-12-30,192000.0000 -2016-12-31,192000.0000 -2017-01-01,192000.0000 -2017-01-02,192000.0000 -2017-01-03,192000.0000 -2017-01-04,192000.0000 -2017-01-05,192000.0000 -2017-01-06,192000.0000 -2017-01-07,192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 73c0b5de4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] GPU Hours: Total" -2016-12,2496000.0000 -2017-01,5952000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 540a3894bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] GPU Hours: Total" -"2016 Q4",2496000.0000 -"2017 Q1",17280000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 20402c0990..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] GPU Hours: Total" -2016,2496000.0000 -2017,70080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index bd8a2d082e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Total" -Screwdriver,288000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index dccaf84d32..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Total" -Screwdriver,844800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c46caf44b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Total" -Screwdriver,1977600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index d48a774e7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Summary,"GPU Node Hours: Total" -Screwdriver,7257600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index a50c715e42..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[Screwdriver] GPU Node Hours: Total" -2016-12-22,9600.0000 -2016-12-23,9600.0000 -2016-12-24,9600.0000 -2016-12-25,9600.0000 -2016-12-26,19200.0000 -2016-12-27,19200.0000 -2016-12-28,19200.0000 -2016-12-29,19200.0000 -2016-12-30,19200.0000 -2016-12-31,19200.0000 -2017-01-01,19200.0000 -2017-01-02,19200.0000 -2017-01-03,19200.0000 -2017-01-04,19200.0000 -2017-01-05,19200.0000 -2017-01-06,19200.0000 -2017-01-07,19200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index b3086abf94..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[Screwdriver] GPU Node Hours: Total" -2016-12,249600.0000 -2017-01,595200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 57e67ea380..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[Screwdriver] GPU Node Hours: Total" -"2016 Q4",249600.0000 -"2017 Q1",1728000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 10715dc931..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/none/total_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[Screwdriver] GPU Node Hours: Total" -2016,249600.0000 -2017,7008000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 5d6c15b534..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,13882.3529 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 976a67f1ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,12941.1765 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 5c8f08d81a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,14581.8182 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index 0cf895f507..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Allocated (Core Count)" -screw,15594.8052 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index 669922d588..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" -2016-12-22,8000.0000,4000.0000 -2016-12-23,8000.0000,4000.0000 -2016-12-24,8000.0000,4000.0000 -2016-12-25,8000.0000,4000.0000 -2016-12-26,12000.0000,4000.0000 -2016-12-27,16000.0000,4000.0000 -2016-12-28,16000.0000,4000.0000 -2016-12-29,16000.0000,4000.0000 -2016-12-30,16000.0000,4000.0000 -2016-12-31,16000.0000,4000.0000 -2017-01-01,16000.0000,4000.0000 -2017-01-02,16000.0000,4000.0000 -2017-01-03,16000.0000,4000.0000 -2017-01-04,16000.0000,4000.0000 -2017-01-05,16000.0000,4000.0000 -2017-01-06,16000.0000,4000.0000 -2017-01-07,16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index ccaa2bea50..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" -2016-12,8200.0000,4000.0000 -2017-01,16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index a384cd3385..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" -"2016 Q4",8200.0000,4000.0000 -"2017 Q1",16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 618c834169..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of CPU Cores: Allocated (Core Count)","[wrench] Average Number of CPU Cores: Allocated (Core Count)" -2016,8200.0000,4000.0000 -2017,16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 3909c91132..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Allocated" -screw,1388.2353 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 02cf6391c0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Allocated" -screw,1294.1176 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 70d0b83d60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Allocated" -screw,1458.1818 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index d77cc1b763..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Allocated" -screw,1559.4805 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 9482e98c00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" -2016-12-22,800.0000,400.0000 -2016-12-23,800.0000,400.0000 -2016-12-24,800.0000,400.0000 -2016-12-25,800.0000,400.0000 -2016-12-26,1200.0000,400.0000 -2016-12-27,1600.0000,400.0000 -2016-12-28,1600.0000,400.0000 -2016-12-29,1600.0000,400.0000 -2016-12-30,1600.0000,400.0000 -2016-12-31,1600.0000,400.0000 -2017-01-01,1600.0000,400.0000 -2017-01-02,1600.0000,400.0000 -2017-01-03,1600.0000,400.0000 -2017-01-04,1600.0000,400.0000 -2017-01-05,1600.0000,400.0000 -2017-01-06,1600.0000,400.0000 -2017-01-07,1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index ee6797ddad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" -2016-12,820.0000,400.0000 -2017-01,1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 6dba34f2c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" -"2016 Q4",820.0000,400.0000 -"2017 Q1",1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index b217c4b6dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of CPU Nodes: Allocated","[wrench] Average Number of CPU Nodes: Allocated" -2016,820.0000,400.0000 -2017,1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index e0007961f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Allocated" -screw,705.8824 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index e73ece0755..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Allocated" -screw,690.1961 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index e210e6fe43..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Allocated" -screw,749.0909 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 9dc7f1c7af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Allocated" -screw,785.4545 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index a6503b19cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" -2016-12-22,400.0000,0.0000 -2016-12-23,400.0000,0.0000 -2016-12-24,400.0000,0.0000 -2016-12-25,400.0000,0.0000 -2016-12-26,800.0000,0.0000 -2016-12-27,800.0000,0.0000 -2016-12-28,800.0000,0.0000 -2016-12-29,800.0000,0.0000 -2016-12-30,800.0000,0.0000 -2016-12-31,800.0000,0.0000 -2017-01-01,800.0000,0.0000 -2017-01-02,800.0000,0.0000 -2017-01-03,800.0000,0.0000 -2017-01-04,800.0000,0.0000 -2017-01-05,800.0000,0.0000 -2017-01-06,800.0000,0.0000 -2017-01-07,800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 66c87ce6aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" -2016-12,520.0000,0.0000 -2017-01,800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 943d9896d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" -"2016 Q4",520.0000,0.0000 -"2017 Q1",800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index add9016b3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of GPU Nodes: Allocated","[wrench] Average Number of GPU Nodes: Allocated" -2016,520.0000,0.0000 -2017,800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 1d53ebe955..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Allocated (GPU Count)" -screw,7058.8235 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index e5396beaed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Allocated (GPU Count)" -screw,6901.9608 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 7304f9b576..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Allocated (GPU Count)" -screw,7490.9091 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 80ea4d256f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Allocated (GPU Count)" -screw,7854.5455 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 3209a4b162..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" -2016-12-22,4000.0000,0.0000 -2016-12-23,4000.0000,0.0000 -2016-12-24,4000.0000,0.0000 -2016-12-25,4000.0000,0.0000 -2016-12-26,8000.0000,0.0000 -2016-12-27,8000.0000,0.0000 -2016-12-28,8000.0000,0.0000 -2016-12-29,8000.0000,0.0000 -2016-12-30,8000.0000,0.0000 -2016-12-31,8000.0000,0.0000 -2017-01-01,8000.0000,0.0000 -2017-01-02,8000.0000,0.0000 -2017-01-03,8000.0000,0.0000 -2017-01-04,8000.0000,0.0000 -2017-01-05,8000.0000,0.0000 -2017-01-06,8000.0000,0.0000 -2017-01-07,8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 697c62e867..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" -2016-12,5200.0000,0.0000 -2017-01,8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 76a99f2d97..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" -"2016 Q4",5200.0000,0.0000 -"2017 Q1",8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index cc41b03c32..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of GPUs: Allocated (GPU Count)","[wrench] Average Number of GPUs: Allocated (GPU Count)" -2016,5200.0000,0.0000 -2017,8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5d4a9965ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Allocated" -screw,5664000.0000 -wrench,1632000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4785bf3afe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Allocated" -screw,15840000.0000 -wrench,4032000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5073c1bc24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Allocated" -screw,38496000.0000 -wrench,9696000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 2342b4c448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Allocated" -screw,144096000.0000 -wrench,36096000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7f4bd13d15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" -2016-12-22,192000.0000,96000.0000 -2016-12-23,192000.0000,96000.0000 -2016-12-24,192000.0000,96000.0000 -2016-12-25,192000.0000,96000.0000 -2016-12-26,288000.0000,96000.0000 -2016-12-27,384000.0000,96000.0000 -2016-12-28,384000.0000,96000.0000 -2016-12-29,384000.0000,96000.0000 -2016-12-30,384000.0000,96000.0000 -2016-12-31,384000.0000,96000.0000 -2017-01-01,384000.0000,96000.0000 -2017-01-02,384000.0000,96000.0000 -2017-01-03,384000.0000,96000.0000 -2017-01-04,384000.0000,96000.0000 -2017-01-05,384000.0000,96000.0000 -2017-01-06,384000.0000,96000.0000 -2017-01-07,384000.0000,96000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 153de17327..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" -2016-12,3936000.0000,1056000.0000 -2017-01,11904000.0000,2976000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7dc700c798..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" -"2016 Q4",3936000.0000,1056000.0000 -"2017 Q1",34560000.0000,8640000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5d6fb2ac76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] CPU Hours: Allocated","[wrench] CPU Hours: Allocated" -2016,3936000.0000,1056000.0000 -2017,140160000.0000,35040000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 5c8e65486e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Allocated" -screw,566400.0000 -wrench,163200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0811d7b70e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Allocated" -screw,1584000.0000 -wrench,403200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 6fd45da5cb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Allocated" -screw,3849600.0000 -wrench,969600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 4a05206b82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Allocated" -screw,14409600.0000 -wrench,3609600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index db398f940b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" -2016-12-22,19200.0000,9600.0000 -2016-12-23,19200.0000,9600.0000 -2016-12-24,19200.0000,9600.0000 -2016-12-25,19200.0000,9600.0000 -2016-12-26,28800.0000,9600.0000 -2016-12-27,38400.0000,9600.0000 -2016-12-28,38400.0000,9600.0000 -2016-12-29,38400.0000,9600.0000 -2016-12-30,38400.0000,9600.0000 -2016-12-31,38400.0000,9600.0000 -2017-01-01,38400.0000,9600.0000 -2017-01-02,38400.0000,9600.0000 -2017-01-03,38400.0000,9600.0000 -2017-01-04,38400.0000,9600.0000 -2017-01-05,38400.0000,9600.0000 -2017-01-06,38400.0000,9600.0000 -2017-01-07,38400.0000,9600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 093df6377a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" -2016-12,393600.0000,105600.0000 -2017-01,1190400.0000,297600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 12dc1ff119..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" -"2016 Q4",393600.0000,105600.0000 -"2017 Q1",3456000.0000,864000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 3115dc6ad4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] CPU Node Hours: Allocated","[wrench] CPU Node Hours: Allocated" -2016,393600.0000,105600.0000 -2017,14016000.0000,3504000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6c198f4b6d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Allocated" -screw,2880000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index a0f4e088b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Allocated" -screw,8448000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9283bba469..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Allocated" -screw,19776000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index d27a58e248..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Allocated" -screw,72576000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 2e71577893..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" -2016-12-22,96000.0000,0.0000 -2016-12-23,96000.0000,0.0000 -2016-12-24,96000.0000,0.0000 -2016-12-25,96000.0000,0.0000 -2016-12-26,192000.0000,0.0000 -2016-12-27,192000.0000,0.0000 -2016-12-28,192000.0000,0.0000 -2016-12-29,192000.0000,0.0000 -2016-12-30,192000.0000,0.0000 -2016-12-31,192000.0000,0.0000 -2017-01-01,192000.0000,0.0000 -2017-01-02,192000.0000,0.0000 -2017-01-03,192000.0000,0.0000 -2017-01-04,192000.0000,0.0000 -2017-01-05,192000.0000,0.0000 -2017-01-06,192000.0000,0.0000 -2017-01-07,192000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index c418e380ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" -2016-12,2496000.0000,0.0000 -2017-01,5952000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 6f133395b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" -"2016 Q4",2496000.0000,0.0000 -"2017 Q1",17280000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index cd826fd660..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] GPU Hours: Allocated","[wrench] GPU Hours: Allocated" -2016,2496000.0000,0.0000 -2017,70080000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 92911cbcfc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Allocated" -screw,288000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 0f2db032ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Allocated" -screw,844800.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 937f3c90a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Allocated" -screw,1977600.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 86041432aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Allocated" -screw,7257600.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index ae18812e59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" -2016-12-22,9600.0000,0.0000 -2016-12-23,9600.0000,0.0000 -2016-12-24,9600.0000,0.0000 -2016-12-25,9600.0000,0.0000 -2016-12-26,19200.0000,0.0000 -2016-12-27,19200.0000,0.0000 -2016-12-28,19200.0000,0.0000 -2016-12-29,19200.0000,0.0000 -2016-12-30,19200.0000,0.0000 -2016-12-31,19200.0000,0.0000 -2017-01-01,19200.0000,0.0000 -2017-01-02,19200.0000,0.0000 -2017-01-03,19200.0000,0.0000 -2017-01-04,19200.0000,0.0000 -2017-01-05,19200.0000,0.0000 -2017-01-06,19200.0000,0.0000 -2017-01-07,19200.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 7d6a51cb6d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" -2016-12,249600.0000,0.0000 -2017-01,595200.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b9682d6b63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" -"2016 Q4",249600.0000,0.0000 -"2017 Q1",1728000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 4f74e1da23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/allocated_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] GPU Node Hours: Allocated","[wrench] GPU Node Hours: Allocated" -2016,249600.0000,0.0000 -2017,7008000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 973817347b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,13882.3529 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index fab31495cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,12941.1765 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index e68ca5551e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,14581.8182 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index f28d790ff9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Cores: Total (Core Count)" -screw,15594.8052 -wrench,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index 96bdb81ec7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" -2016-12-22,8000.0000,4000.0000 -2016-12-23,8000.0000,4000.0000 -2016-12-24,8000.0000,4000.0000 -2016-12-25,8000.0000,4000.0000 -2016-12-26,12000.0000,4000.0000 -2016-12-27,16000.0000,4000.0000 -2016-12-28,16000.0000,4000.0000 -2016-12-29,16000.0000,4000.0000 -2016-12-30,16000.0000,4000.0000 -2016-12-31,16000.0000,4000.0000 -2017-01-01,16000.0000,4000.0000 -2017-01-02,16000.0000,4000.0000 -2017-01-03,16000.0000,4000.0000 -2017-01-04,16000.0000,4000.0000 -2017-01-05,16000.0000,4000.0000 -2017-01-06,16000.0000,4000.0000 -2017-01-07,16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 6e1eea1551..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" -2016-12,8200.0000,4000.0000 -2017-01,16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index d5a4bfd260..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" -"2016 Q4",8200.0000,4000.0000 -"2017 Q1",16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 2f0f0470e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of CPU Cores: Total (Core Count)","[wrench] Average Number of CPU Cores: Total (Core Count)" -2016,8200.0000,4000.0000 -2017,16000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 106419a091..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Total" -screw,1388.2353 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 4bd8ba11a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Total" -screw,1294.1176 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 0772084496..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Total" -screw,1458.1818 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index ff62c11744..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of CPU Nodes: Total" -screw,1559.4805 -wrench,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 6e34fe95b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" -2016-12-22,800.0000,400.0000 -2016-12-23,800.0000,400.0000 -2016-12-24,800.0000,400.0000 -2016-12-25,800.0000,400.0000 -2016-12-26,1200.0000,400.0000 -2016-12-27,1600.0000,400.0000 -2016-12-28,1600.0000,400.0000 -2016-12-29,1600.0000,400.0000 -2016-12-30,1600.0000,400.0000 -2016-12-31,1600.0000,400.0000 -2017-01-01,1600.0000,400.0000 -2017-01-02,1600.0000,400.0000 -2017-01-03,1600.0000,400.0000 -2017-01-04,1600.0000,400.0000 -2017-01-05,1600.0000,400.0000 -2017-01-06,1600.0000,400.0000 -2017-01-07,1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 88ba64d745..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" -2016-12,820.0000,400.0000 -2017-01,1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 07c1563d5a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" -"2016 Q4",820.0000,400.0000 -"2017 Q1",1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index d998d6f4e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of CPU Nodes: Total","[wrench] Average Number of CPU Nodes: Total" -2016,820.0000,400.0000 -2017,1600.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index e0194ac6d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Total" -screw,705.8824 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 52c5508bac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Total" -screw,690.1961 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 7e058ac616..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Total" -screw,749.0909 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 295331a6a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPU Nodes: Total" -screw,785.4545 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 4e6a498cc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" -2016-12-22,400.0000,0.0000 -2016-12-23,400.0000,0.0000 -2016-12-24,400.0000,0.0000 -2016-12-25,400.0000,0.0000 -2016-12-26,800.0000,0.0000 -2016-12-27,800.0000,0.0000 -2016-12-28,800.0000,0.0000 -2016-12-29,800.0000,0.0000 -2016-12-30,800.0000,0.0000 -2016-12-31,800.0000,0.0000 -2017-01-01,800.0000,0.0000 -2017-01-02,800.0000,0.0000 -2017-01-03,800.0000,0.0000 -2017-01-04,800.0000,0.0000 -2017-01-05,800.0000,0.0000 -2017-01-06,800.0000,0.0000 -2017-01-07,800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index d71dc5b20a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" -2016-12,520.0000,0.0000 -2017-01,800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index bc68d779bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" -"2016 Q4",520.0000,0.0000 -"2017 Q1",800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 8190d4ea3d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of GPU Nodes: Total","[wrench] Average Number of GPU Nodes: Total" -2016,520.0000,0.0000 -2017,800.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index e00601d26a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Total (GPU Count)" -screw,7058.8235 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index a7fb730e3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Total (GPU Count)" -screw,6901.9608 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 3ba701c307..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Total (GPU Count)" -screw,7490.9091 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 9ddd2bbab0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","Average Number of GPUs: Total (GPU Count)" -screw,7854.5455 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 06013272de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" -2016-12-22,4000.0000,0.0000 -2016-12-23,4000.0000,0.0000 -2016-12-24,4000.0000,0.0000 -2016-12-25,4000.0000,0.0000 -2016-12-26,8000.0000,0.0000 -2016-12-27,8000.0000,0.0000 -2016-12-28,8000.0000,0.0000 -2016-12-29,8000.0000,0.0000 -2016-12-30,8000.0000,0.0000 -2016-12-31,8000.0000,0.0000 -2017-01-01,8000.0000,0.0000 -2017-01-02,8000.0000,0.0000 -2017-01-03,8000.0000,0.0000 -2017-01-04,8000.0000,0.0000 -2017-01-05,8000.0000,0.0000 -2017-01-06,8000.0000,0.0000 -2017-01-07,8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 1e21595c8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" -2016-12,5200.0000,0.0000 -2017-01,8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 957dcd14dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" -"2016 Q4",5200.0000,0.0000 -"2017 Q1",8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 1930569961..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] Average Number of GPUs: Total (GPU Count)","[wrench] Average Number of GPUs: Total (GPU Count)" -2016,5200.0000,0.0000 -2017,8000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3bea31de0f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Total" -screw,5664000.0000 -wrench,1632000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index ae8db1b3bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Total" -screw,15840000.0000 -wrench,4032000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 2f7d3a301b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Total" -screw,38496000.0000 -wrench,9696000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index caa54e641c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Hours: Total" -screw,144096000.0000 -wrench,36096000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 25d4673573..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -2016-12-22,192000.0000,96000.0000 -2016-12-23,192000.0000,96000.0000 -2016-12-24,192000.0000,96000.0000 -2016-12-25,192000.0000,96000.0000 -2016-12-26,288000.0000,96000.0000 -2016-12-27,384000.0000,96000.0000 -2016-12-28,384000.0000,96000.0000 -2016-12-29,384000.0000,96000.0000 -2016-12-30,384000.0000,96000.0000 -2016-12-31,384000.0000,96000.0000 -2017-01-01,384000.0000,96000.0000 -2017-01-02,384000.0000,96000.0000 -2017-01-03,384000.0000,96000.0000 -2017-01-04,384000.0000,96000.0000 -2017-01-05,384000.0000,96000.0000 -2017-01-06,384000.0000,96000.0000 -2017-01-07,384000.0000,96000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 17b44ced00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -2016-12,3936000.0000,1056000.0000 -2017-01,11904000.0000,2976000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 2509261c59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -"2016 Q4",3936000.0000,1056000.0000 -"2017 Q1",34560000.0000,8640000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index c1c6948504..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] CPU Hours: Total","[wrench] CPU Hours: Total" -2016,3936000.0000,1056000.0000 -2017,140160000.0000,35040000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9c0ce48607..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Total" -screw,566400.0000 -wrench,163200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 8b307cf39e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Total" -screw,1584000.0000 -wrench,403200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 743810bc17..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Total" -screw,3849600.0000 -wrench,969600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 65590d956a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","CPU Node Hours: Total" -screw,14409600.0000 -wrench,3609600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 42f68bda2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" -2016-12-22,19200.0000,9600.0000 -2016-12-23,19200.0000,9600.0000 -2016-12-24,19200.0000,9600.0000 -2016-12-25,19200.0000,9600.0000 -2016-12-26,28800.0000,9600.0000 -2016-12-27,38400.0000,9600.0000 -2016-12-28,38400.0000,9600.0000 -2016-12-29,38400.0000,9600.0000 -2016-12-30,38400.0000,9600.0000 -2016-12-31,38400.0000,9600.0000 -2017-01-01,38400.0000,9600.0000 -2017-01-02,38400.0000,9600.0000 -2017-01-03,38400.0000,9600.0000 -2017-01-04,38400.0000,9600.0000 -2017-01-05,38400.0000,9600.0000 -2017-01-06,38400.0000,9600.0000 -2017-01-07,38400.0000,9600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9c6f466f3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" -2016-12,393600.0000,105600.0000 -2017-01,1190400.0000,297600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7d79d8dd57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" -"2016 Q4",393600.0000,105600.0000 -"2017 Q1",3456000.0000,864000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 981f63fdef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] CPU Node Hours: Total","[wrench] CPU Node Hours: Total" -2016,393600.0000,105600.0000 -2017,14016000.0000,3504000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index af54345d07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Total" -screw,2880000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index f7e5f65df7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Total" -screw,8448000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index fd4e6d70e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Total" -screw,19776000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 71e6702604..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Hours: Total" -screw,72576000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7be065834f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -2016-12-22,96000.0000,0.0000 -2016-12-23,96000.0000,0.0000 -2016-12-24,96000.0000,0.0000 -2016-12-25,96000.0000,0.0000 -2016-12-26,192000.0000,0.0000 -2016-12-27,192000.0000,0.0000 -2016-12-28,192000.0000,0.0000 -2016-12-29,192000.0000,0.0000 -2016-12-30,192000.0000,0.0000 -2016-12-31,192000.0000,0.0000 -2017-01-01,192000.0000,0.0000 -2017-01-02,192000.0000,0.0000 -2017-01-03,192000.0000,0.0000 -2017-01-04,192000.0000,0.0000 -2017-01-05,192000.0000,0.0000 -2017-01-06,192000.0000,0.0000 -2017-01-07,192000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 4243b64940..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -2016-12,2496000.0000,0.0000 -2017-01,5952000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 516f0947f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -"2016 Q4",2496000.0000,0.0000 -"2017 Q1",17280000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6f82cee0cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] GPU Hours: Total","[wrench] GPU Hours: Total" -2016,2496000.0000,0.0000 -2017,70080000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index a3c1885cd9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Total" -screw,288000.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index f24d1c95de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Total" -screw,844800.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 15fbd62ea5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Total" -screw,1977600.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 921d8b826a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Service Provider","GPU Node Hours: Total" -screw,7257600.0000 -wrench,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 1a8704d42a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" -2016-12-22,9600.0000,0.0000 -2016-12-23,9600.0000,0.0000 -2016-12-24,9600.0000,0.0000 -2016-12-25,9600.0000,0.0000 -2016-12-26,19200.0000,0.0000 -2016-12-27,19200.0000,0.0000 -2016-12-28,19200.0000,0.0000 -2016-12-29,19200.0000,0.0000 -2016-12-30,19200.0000,0.0000 -2016-12-31,19200.0000,0.0000 -2017-01-01,19200.0000,0.0000 -2017-01-02,19200.0000,0.0000 -2017-01-03,19200.0000,0.0000 -2017-01-04,19200.0000,0.0000 -2017-01-05,19200.0000,0.0000 -2017-01-06,19200.0000,0.0000 -2017-01-07,19200.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 25fdd3c585..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" -2016-12,249600.0000,0.0000 -2017-01,595200.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index d89f4fe1ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" -"2016 Q4",249600.0000,0.0000 -"2017 Q1",1728000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 994aa1dd22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/provider/total_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Service Provider" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[screw] GPU Node Hours: Total","[wrench] GPU Node Hours: Total" -2016,249600.0000,0.0000 -2017,7008000.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 02a6714500..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Allocated (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 02a6714500..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Allocated (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 02a6714500..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Allocated (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index 02a6714500..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Allocated (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index 99de3082a5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" -2016-12-22,0,0,4000.0000,4000.0000,4000.0000 -2016-12-23,0,0,4000.0000,4000.0000,4000.0000 -2016-12-24,0,0,4000.0000,4000.0000,4000.0000 -2016-12-25,0,0,4000.0000,4000.0000,4000.0000 -2016-12-26,0,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-27,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-28,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-29,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-30,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-31,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-02,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-03,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-04,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-05,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-06,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-07,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 90cad4a034..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" -2016-12,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index a3ebaa10f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" -"2016 Q4",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -"2017 Q1",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 31946376c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[frearson] Average Number of CPU Cores: Allocated (Core Count)","[mortorq] Average Number of CPU Cores: Allocated (Core Count)","[phillips] Average Number of CPU Cores: Allocated (Core Count)","[pozidriv] Average Number of CPU Cores: Allocated (Core Count)","[robertson] Average Number of CPU Cores: Allocated (Core Count)" -2016,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index fa6fdb3703..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Allocated" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index fa6fdb3703..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Allocated" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index fa6fdb3703..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Allocated" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index fa6fdb3703..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Allocated" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 996511ba59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" -2016-12-22,0,0,400.0000,400.0000,400.0000 -2016-12-23,0,0,400.0000,400.0000,400.0000 -2016-12-24,0,0,400.0000,400.0000,400.0000 -2016-12-25,0,0,400.0000,400.0000,400.0000 -2016-12-26,0,400.0000,400.0000,400.0000,400.0000 -2016-12-27,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-28,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-29,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-30,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-31,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-01,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-02,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-03,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-04,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-05,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-06,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-07,400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 8be9a57087..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" -2016-12,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01,400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index b6f0c456d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" -"2016 Q4",400.0000,400.0000,400.0000,400.0000,400.0000 -"2017 Q1",400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 82d16bf310..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[frearson] Average Number of CPU Nodes: Allocated","[mortorq] Average Number of CPU Nodes: Allocated","[phillips] Average Number of CPU Nodes: Allocated","[pozidriv] Average Number of CPU Nodes: Allocated","[robertson] Average Number of CPU Nodes: Allocated" -2016,400.0000,400.0000,400.0000,400.0000,400.0000 -2017,400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 28cbf9dfe8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Allocated" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 28cbf9dfe8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Allocated" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 28cbf9dfe8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Allocated" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 28cbf9dfe8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Allocated" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index cfbee63681..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" -2016-12-22,0,400.0000,0,0.0000,0.0000 -2016-12-23,0,400.0000,0,0.0000,0.0000 -2016-12-24,0,400.0000,0,0.0000,0.0000 -2016-12-25,0,400.0000,0,0.0000,0.0000 -2016-12-26,400.0000,400.0000,0,0.0000,0.0000 -2016-12-27,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-28,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-29,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-30,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-31,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-01,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-02,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-03,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-04,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-05,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-06,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-07,400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 05ac1d670c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" -2016-12,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01,400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 3043b6c58e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" -"2016 Q4",400.0000,400.0000,0.0000,0.0000,0.0000 -"2017 Q1",400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 05bf628906..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[mortorq] Average Number of GPU Nodes: Allocated","[robertson] Average Number of GPU Nodes: Allocated","[frearson] Average Number of GPU Nodes: Allocated","[phillips] Average Number of GPU Nodes: Allocated","[pozidriv] Average Number of GPU Nodes: Allocated" -2016,400.0000,400.0000,0.0000,0.0000,0.0000 -2017,400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 064e7c3071..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Allocated (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 064e7c3071..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Allocated (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 064e7c3071..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Allocated (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 064e7c3071..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Allocated (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 556e7861a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" -2016-12-22,0,4000.0000,0,0.0000,0.0000 -2016-12-23,0,4000.0000,0,0.0000,0.0000 -2016-12-24,0,4000.0000,0,0.0000,0.0000 -2016-12-25,0,4000.0000,0,0.0000,0.0000 -2016-12-26,4000.0000,4000.0000,0,0.0000,0.0000 -2016-12-27,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-28,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-29,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-30,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-31,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-02,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-03,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-04,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-05,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-06,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-07,4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index a870cc1abe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" -2016-12,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 60c5dcd2fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" -"2016 Q4",4000.0000,4000.0000,0.0000,0.0000,0.0000 -"2017 Q1",4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 7ee190558a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[mortorq] Average Number of GPUs: Allocated (GPU Count)","[robertson] Average Number of GPUs: Allocated (GPU Count)","[frearson] Average Number of GPUs: Allocated (GPU Count)","[phillips] Average Number of GPUs: Allocated (GPU Count)","[pozidriv] Average Number of GPUs: Allocated (GPU Count)" -2016,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017,4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 64377d1b99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Allocated" -phillips,1632000.0000 -pozidriv,1632000.0000 -robertson,1632000.0000 -mortorq,1248000.0000 -frearson,1152000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index d00ec9a3bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Allocated" -robertson,4896000.0000 -pozidriv,4032000.0000 -phillips,3936000.0000 -mortorq,3552000.0000 -frearson,3456000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index ce3acd6f8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Allocated" -robertson,10560000.0000 -pozidriv,9696000.0000 -phillips,9600000.0000 -mortorq,9216000.0000 -frearson,9120000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 1d1f92fdde..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Allocated" -robertson,36960000.0000 -pozidriv,36096000.0000 -phillips,36000000.0000 -mortorq,35616000.0000 -frearson,35520000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index cfaf954864..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[phillips] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[robertson] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" -2016-12-22,96000.0000,96000.0000,96000.0000,0,0 -2016-12-23,96000.0000,96000.0000,96000.0000,0,0 -2016-12-24,96000.0000,96000.0000,96000.0000,0,0 -2016-12-25,96000.0000,96000.0000,96000.0000,0,0 -2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000,0 -2016-12-27,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-28,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-29,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-30,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-31,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-01,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-02,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-03,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-04,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-05,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-06,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-07,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index c409513f28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[phillips] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" -2016-12,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 -2017-01,2976000.0000,2976000.0000,2976000.0000,2976000.0000,2976000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 872cc46ccc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[phillips] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" -"2016 Q4",1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 -"2017 Q1",8640000.0000,8640000.0000,8640000.0000,8640000.0000,8640000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 23da84692e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] CPU Hours: Allocated","[pozidriv] CPU Hours: Allocated","[phillips] CPU Hours: Allocated","[mortorq] CPU Hours: Allocated","[frearson] CPU Hours: Allocated" -2016,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 -2017,35040000.0000,35040000.0000,35040000.0000,35040000.0000,35040000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 446f98b6bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Allocated" -phillips,163200.0000 -pozidriv,163200.0000 -robertson,163200.0000 -mortorq,124800.0000 -frearson,115200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 51b910eb44..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Allocated" -robertson,489600.0000 -pozidriv,403200.0000 -phillips,393600.0000 -mortorq,355200.0000 -frearson,345600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 9b93fe7e87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Allocated" -robertson,1056000.0000 -pozidriv,969600.0000 -phillips,960000.0000 -mortorq,921600.0000 -frearson,912000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 3b4bde7121..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Allocated" -robertson,3696000.0000 -pozidriv,3609600.0000 -phillips,3600000.0000 -mortorq,3561600.0000 -frearson,3552000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 488e6c8e7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[phillips] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[robertson] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" -2016-12-22,9600.0000,9600.0000,9600.0000,0,0 -2016-12-23,9600.0000,9600.0000,9600.0000,0,0 -2016-12-24,9600.0000,9600.0000,9600.0000,0,0 -2016-12-25,9600.0000,9600.0000,9600.0000,0,0 -2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000,0 -2016-12-27,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-28,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-29,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-30,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-31,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-01,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-02,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-03,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-04,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-05,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-06,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-07,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index c00a5acf0c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[phillips] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" -2016-12,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 -2017-01,297600.0000,297600.0000,297600.0000,297600.0000,297600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ddc3084cb8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[phillips] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" -"2016 Q4",192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 -"2017 Q1",864000.0000,864000.0000,864000.0000,864000.0000,864000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index fc43db338a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] CPU Node Hours: Allocated","[pozidriv] CPU Node Hours: Allocated","[phillips] CPU Node Hours: Allocated","[mortorq] CPU Node Hours: Allocated","[frearson] CPU Node Hours: Allocated" -2016,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 -2017,3504000.0000,3504000.0000,3504000.0000,3504000.0000,3504000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index cf633dd984..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Allocated" -robertson,1632000.0000 -mortorq,1248000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4705a93a2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Allocated" -robertson,4896000.0000 -mortorq,3552000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4b75d1edcb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Allocated" -robertson,10560000.0000 -mortorq,9216000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 7887419531..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Allocated" -robertson,36960000.0000 -mortorq,35616000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5e18924a1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" -2016-12-22,96000.0000,0,0,0.0000,0.0000 -2016-12-23,96000.0000,0,0,0.0000,0.0000 -2016-12-24,96000.0000,0,0,0.0000,0.0000 -2016-12-25,96000.0000,0,0,0.0000,0.0000 -2016-12-26,96000.0000,96000.0000,0,0.0000,0.0000 -2016-12-27,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-28,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-29,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-30,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-31,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-01,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-02,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-03,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-04,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-05,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-06,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-07,96000.0000,96000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5c9698f9ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" -2016-12,1920000.0000,576000.0000,0.0000,0.0000,0.0000 -2017-01,2976000.0000,2976000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 12b9ad07ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" -"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000,0.0000 -"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 69533182b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] GPU Hours: Allocated","[mortorq] GPU Hours: Allocated","[frearson] GPU Hours: Allocated","[phillips] GPU Hours: Allocated","[pozidriv] GPU Hours: Allocated" -2016,1920000.0000,576000.0000,0.0000,0.0000,0.0000 -2017,35040000.0000,35040000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 3538532379..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Allocated" -robertson,163200.0000 -mortorq,124800.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 02efa24e84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Allocated" -robertson,489600.0000 -mortorq,355200.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4dd3db750e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Allocated" -robertson,1056000.0000 -mortorq,921600.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 712fa71a8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Allocated" -robertson,3696000.0000 -mortorq,3561600.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 7b70c34c23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" -2016-12-22,9600.0000,0,0,0.0000,0.0000 -2016-12-23,9600.0000,0,0,0.0000,0.0000 -2016-12-24,9600.0000,0,0,0.0000,0.0000 -2016-12-25,9600.0000,0,0,0.0000,0.0000 -2016-12-26,9600.0000,9600.0000,0,0.0000,0.0000 -2016-12-27,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-28,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-29,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-30,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-31,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-01,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-02,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-03,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-04,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-05,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-06,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-07,9600.0000,9600.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index f78f391841..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" -2016-12,192000.0000,57600.0000,0.0000,0.0000,0.0000 -2017-01,297600.0000,297600.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 8342ba5186..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" -"2016 Q4",192000.0000,57600.0000,0.0000,0.0000,0.0000 -"2017 Q1",864000.0000,864000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index b793124914..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/allocated_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] GPU Node Hours: Allocated","[mortorq] GPU Node Hours: Allocated","[frearson] GPU Node Hours: Allocated","[phillips] GPU Node Hours: Allocated","[pozidriv] GPU Node Hours: Allocated" -2016,192000.0000,57600.0000,0.0000,0.0000,0.0000 -2017,3504000.0000,3504000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 050429717c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Total (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 050429717c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Total (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 050429717c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Total (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index 050429717c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Cores: Total (Core Count)" -frearson,4000.0000 -mortorq,4000.0000 -phillips,4000.0000 -pozidriv,4000.0000 -robertson,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index 99a5e16ec0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" -2016-12-22,0,0,4000.0000,4000.0000,4000.0000 -2016-12-23,0,0,4000.0000,4000.0000,4000.0000 -2016-12-24,0,0,4000.0000,4000.0000,4000.0000 -2016-12-25,0,0,4000.0000,4000.0000,4000.0000 -2016-12-26,0,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-27,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-28,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-29,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-30,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-31,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-02,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-03,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-04,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-05,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-06,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01-07,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 00344bea3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" -2016-12,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017-01,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index 1d6ce3c8b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" -"2016 Q4",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -"2017 Q1",4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 82fe6d2bfb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[frearson] Average Number of CPU Cores: Total (Core Count)","[mortorq] Average Number of CPU Cores: Total (Core Count)","[phillips] Average Number of CPU Cores: Total (Core Count)","[pozidriv] Average Number of CPU Cores: Total (Core Count)","[robertson] Average Number of CPU Cores: Total (Core Count)" -2016,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 -2017,4000.0000,4000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index da761b26d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Total" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index da761b26d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Total" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index da761b26d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Total" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index da761b26d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of CPU Nodes: Total" -frearson,400.0000 -mortorq,400.0000 -phillips,400.0000 -pozidriv,400.0000 -robertson,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 17008960bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" -2016-12-22,0,0,400.0000,400.0000,400.0000 -2016-12-23,0,0,400.0000,400.0000,400.0000 -2016-12-24,0,0,400.0000,400.0000,400.0000 -2016-12-25,0,0,400.0000,400.0000,400.0000 -2016-12-26,0,400.0000,400.0000,400.0000,400.0000 -2016-12-27,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-28,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-29,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-30,400.0000,400.0000,400.0000,400.0000,400.0000 -2016-12-31,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-01,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-02,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-03,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-04,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-05,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-06,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01-07,400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 671e5b0975..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" -2016-12,400.0000,400.0000,400.0000,400.0000,400.0000 -2017-01,400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index ef35cfd757..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" -"2016 Q4",400.0000,400.0000,400.0000,400.0000,400.0000 -"2017 Q1",400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 1f884bef41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[frearson] Average Number of CPU Nodes: Total","[mortorq] Average Number of CPU Nodes: Total","[phillips] Average Number of CPU Nodes: Total","[pozidriv] Average Number of CPU Nodes: Total","[robertson] Average Number of CPU Nodes: Total" -2016,400.0000,400.0000,400.0000,400.0000,400.0000 -2017,400.0000,400.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index ce0e98b4d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Total" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index ce0e98b4d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Total" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index ce0e98b4d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Total" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index ce0e98b4d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPU Nodes: Total" -mortorq,400.0000 -robertson,400.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 1c17c5e5fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" -2016-12-22,0,400.0000,0,0.0000,0.0000 -2016-12-23,0,400.0000,0,0.0000,0.0000 -2016-12-24,0,400.0000,0,0.0000,0.0000 -2016-12-25,0,400.0000,0,0.0000,0.0000 -2016-12-26,400.0000,400.0000,0,0.0000,0.0000 -2016-12-27,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-28,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-29,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-30,400.0000,400.0000,0.0000,0.0000,0.0000 -2016-12-31,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-01,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-02,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-03,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-04,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-05,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-06,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01-07,400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 73603ba097..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" -2016-12,400.0000,400.0000,0.0000,0.0000,0.0000 -2017-01,400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index a2b8b63152..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" -"2016 Q4",400.0000,400.0000,0.0000,0.0000,0.0000 -"2017 Q1",400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 13a38d47c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[mortorq] Average Number of GPU Nodes: Total","[robertson] Average Number of GPU Nodes: Total","[frearson] Average Number of GPU Nodes: Total","[phillips] Average Number of GPU Nodes: Total","[pozidriv] Average Number of GPU Nodes: Total" -2016,400.0000,400.0000,0.0000,0.0000,0.0000 -2017,400.0000,400.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index b1a1999314..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Total (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index b1a1999314..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Total (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index b1a1999314..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Total (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index b1a1999314..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"Average Number of GPUs: Total (GPU Count)" -mortorq,4000.0000 -robertson,4000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index f890f4cdf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" -2016-12-22,0,4000.0000,0,0.0000,0.0000 -2016-12-23,0,4000.0000,0,0.0000,0.0000 -2016-12-24,0,4000.0000,0,0.0000,0.0000 -2016-12-25,0,4000.0000,0,0.0000,0.0000 -2016-12-26,4000.0000,4000.0000,0,0.0000,0.0000 -2016-12-27,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-28,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-29,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-30,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2016-12-31,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-02,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-03,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-04,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-05,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-06,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01-07,4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 7a1fcc8404..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" -2016-12,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017-01,4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index b5e1bcedf1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" -"2016 Q4",4000.0000,4000.0000,0.0000,0.0000,0.0000 -"2017 Q1",4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 375d7d2e92..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[mortorq] Average Number of GPUs: Total (GPU Count)","[robertson] Average Number of GPUs: Total (GPU Count)","[frearson] Average Number of GPUs: Total (GPU Count)","[phillips] Average Number of GPUs: Total (GPU Count)","[pozidriv] Average Number of GPUs: Total (GPU Count)" -2016,4000.0000,4000.0000,0.0000,0.0000,0.0000 -2017,4000.0000,4000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 912fc4907c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Total" -phillips,1632000.0000 -pozidriv,1632000.0000 -robertson,1632000.0000 -mortorq,1248000.0000 -frearson,1152000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index 31acc00bd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Total" -robertson,4896000.0000 -pozidriv,4032000.0000 -phillips,3936000.0000 -mortorq,3552000.0000 -frearson,3456000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 0e164670f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Total" -robertson,10560000.0000 -pozidriv,9696000.0000 -phillips,9600000.0000 -mortorq,9216000.0000 -frearson,9120000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 89211c364d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Hours: Total" -robertson,36960000.0000 -pozidriv,36096000.0000 -phillips,36000000.0000 -mortorq,35616000.0000 -frearson,35520000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8650857c03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[phillips] CPU Hours: Total","[pozidriv] CPU Hours: Total","[robertson] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" -2016-12-22,96000.0000,96000.0000,96000.0000,0,0 -2016-12-23,96000.0000,96000.0000,96000.0000,0,0 -2016-12-24,96000.0000,96000.0000,96000.0000,0,0 -2016-12-25,96000.0000,96000.0000,96000.0000,0,0 -2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000,0 -2016-12-27,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-28,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-29,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-30,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-31,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-01,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-02,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-03,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-04,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-05,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-06,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 -2017-01-07,96000.0000,96000.0000,96000.0000,96000.0000,96000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index e18ea86daa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" -2016-12,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 -2017-01,2976000.0000,2976000.0000,2976000.0000,2976000.0000,2976000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 5d70821776..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" -"2016 Q4",1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 -"2017 Q1",8640000.0000,8640000.0000,8640000.0000,8640000.0000,8640000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7ab8527e95..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] CPU Hours: Total","[pozidriv] CPU Hours: Total","[phillips] CPU Hours: Total","[mortorq] CPU Hours: Total","[frearson] CPU Hours: Total" -2016,1920000.0000,1056000.0000,960000.0000,576000.0000,480000.0000 -2017,35040000.0000,35040000.0000,35040000.0000,35040000.0000,35040000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6c8a7f90e3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Total" -phillips,163200.0000 -pozidriv,163200.0000 -robertson,163200.0000 -mortorq,124800.0000 -frearson,115200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index f688877565..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Total" -robertson,489600.0000 -pozidriv,403200.0000 -phillips,393600.0000 -mortorq,355200.0000 -frearson,345600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 3ad87b8db0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Total" -robertson,1056000.0000 -pozidriv,969600.0000 -phillips,960000.0000 -mortorq,921600.0000 -frearson,912000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index dfb6d3c597..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"CPU Node Hours: Total" -robertson,3696000.0000 -pozidriv,3609600.0000 -phillips,3600000.0000 -mortorq,3561600.0000 -frearson,3552000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 456f2dc349..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[phillips] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[robertson] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" -2016-12-22,9600.0000,9600.0000,9600.0000,0,0 -2016-12-23,9600.0000,9600.0000,9600.0000,0,0 -2016-12-24,9600.0000,9600.0000,9600.0000,0,0 -2016-12-25,9600.0000,9600.0000,9600.0000,0,0 -2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000,0 -2016-12-27,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-28,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-29,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-30,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-31,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-01,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-02,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-03,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-04,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-05,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-06,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 -2017-01-07,9600.0000,9600.0000,9600.0000,9600.0000,9600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 71fbc0e6a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[phillips] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" -2016-12,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 -2017-01,297600.0000,297600.0000,297600.0000,297600.0000,297600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index a16a773aab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[phillips] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" -"2016 Q4",192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 -"2017 Q1",864000.0000,864000.0000,864000.0000,864000.0000,864000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2462564c45..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] CPU Node Hours: Total","[pozidriv] CPU Node Hours: Total","[phillips] CPU Node Hours: Total","[mortorq] CPU Node Hours: Total","[frearson] CPU Node Hours: Total" -2016,192000.0000,105600.0000,96000.0000,57600.0000,48000.0000 -2017,3504000.0000,3504000.0000,3504000.0000,3504000.0000,3504000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index 55b76f0b7f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Total" -robertson,1632000.0000 -mortorq,1248000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index a538cb9f63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Total" -robertson,4896000.0000 -mortorq,3552000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index efa854d761..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Total" -robertson,10560000.0000 -mortorq,9216000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 6bfcf673d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Hours: Total" -robertson,36960000.0000 -mortorq,35616000.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 5966da8620..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" -2016-12-22,96000.0000,0,0,0.0000,0.0000 -2016-12-23,96000.0000,0,0,0.0000,0.0000 -2016-12-24,96000.0000,0,0,0.0000,0.0000 -2016-12-25,96000.0000,0,0,0.0000,0.0000 -2016-12-26,96000.0000,96000.0000,0,0.0000,0.0000 -2016-12-27,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-28,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-29,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-30,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2016-12-31,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-01,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-02,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-03,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-04,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-05,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-06,96000.0000,96000.0000,0.0000,0.0000,0.0000 -2017-01-07,96000.0000,96000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5b7db6bc3c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" -2016-12,1920000.0000,576000.0000,0.0000,0.0000,0.0000 -2017-01,2976000.0000,2976000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 90b7781863..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" -"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000,0.0000 -"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8d155e5667..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] GPU Hours: Total","[mortorq] GPU Hours: Total","[frearson] GPU Hours: Total","[phillips] GPU Hours: Total","[pozidriv] GPU Hours: Total" -2016,1920000.0000,576000.0000,0.0000,0.0000,0.0000 -2017,35040000.0000,35040000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 4ee6494180..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Total" -robertson,163200.0000 -mortorq,124800.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index da1b6714f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Total" -robertson,489600.0000 -mortorq,355200.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 92e08b76cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Total" -robertson,1056000.0000 -mortorq,921600.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index c57594ae6d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,14 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Resource,"GPU Node Hours: Total" -robertson,3696000.0000 -mortorq,3561600.0000 -frearson,0.0000 -phillips,0.0000 -pozidriv,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index a137db0dd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" -2016-12-22,9600.0000,0,0,0.0000,0.0000 -2016-12-23,9600.0000,0,0,0.0000,0.0000 -2016-12-24,9600.0000,0,0,0.0000,0.0000 -2016-12-25,9600.0000,0,0,0.0000,0.0000 -2016-12-26,9600.0000,9600.0000,0,0.0000,0.0000 -2016-12-27,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-28,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-29,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-30,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2016-12-31,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-01,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-02,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-03,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-04,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-05,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-06,9600.0000,9600.0000,0.0000,0.0000,0.0000 -2017-01-07,9600.0000,9600.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index e02fcee774..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" -2016-12,192000.0000,57600.0000,0.0000,0.0000,0.0000 -2017-01,297600.0000,297600.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7a44ada10e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" -"2016 Q4",192000.0000,57600.0000,0.0000,0.0000,0.0000 -"2017 Q1",864000.0000,864000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 513a8b5812..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource/total_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[robertson] GPU Node Hours: Total","[mortorq] GPU Node Hours: Total","[frearson] GPU Node Hours: Total","[phillips] GPU Node Hours: Total","[pozidriv] GPU Node Hours: Total" -2016,192000.0000,57600.0000,0.0000,0.0000,0.0000 -2017,3504000.0000,3504000.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 90ef540aca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" -"CPU Allocated",6823.5294 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 63abd4da4f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" -"CPU Allocated",7428.5714 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 002548410d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" -"CPU Allocated",7762.3762 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index be4c4862fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Allocated (Core Count)" -"CPU Allocated",7936.1702 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index 7a06b0ea27..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" -2016-12-22,4000.0000,0,4000.0000,4000.0000 -2016-12-23,4000.0000,0,4000.0000,4000.0000 -2016-12-24,4000.0000,0,4000.0000,4000.0000 -2016-12-25,4000.0000,0,4000.0000,4000.0000 -2016-12-26,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-27,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-28,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-29,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-30,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-31,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-01,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-02,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-03,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-04,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-05,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-06,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-07,8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 7074e29043..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" -2016-12,5818.1818,4000.0000,4000.0000,4000.0000 -2017-01,8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index 992280939a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" -"2016 Q4",5818.1818,4000.0000,4000.0000,4000.0000 -"2017 Q1",8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index dad43c8b36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Allocated] Average Number of CPU Cores: Allocated (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Allocated (Core Count)" -2016,5818.1818,4000.0000,4000.0000,4000.0000 -2017,8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 3ee8ae4125..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Allocated" -"CPU Allocated",682.3529 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 694de44e13..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Allocated" -"CPU Allocated",742.8571 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 2d556c6e19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Allocated" -"CPU Allocated",776.2376 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 82abd2ed9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Allocated" -"CPU Allocated",793.6170 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 244d61de15..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" -2016-12-22,400.0000,0,400.0000,400.0000 -2016-12-23,400.0000,0,400.0000,400.0000 -2016-12-24,400.0000,0,400.0000,400.0000 -2016-12-25,400.0000,0,400.0000,400.0000 -2016-12-26,400.0000,400.0000,400.0000,400.0000 -2016-12-27,800.0000,400.0000,400.0000,400.0000 -2016-12-28,800.0000,400.0000,400.0000,400.0000 -2016-12-29,800.0000,400.0000,400.0000,400.0000 -2016-12-30,800.0000,400.0000,400.0000,400.0000 -2016-12-31,800.0000,400.0000,400.0000,400.0000 -2017-01-01,800.0000,400.0000,400.0000,400.0000 -2017-01-02,800.0000,400.0000,400.0000,400.0000 -2017-01-03,800.0000,400.0000,400.0000,400.0000 -2017-01-04,800.0000,400.0000,400.0000,400.0000 -2017-01-05,800.0000,400.0000,400.0000,400.0000 -2017-01-06,800.0000,400.0000,400.0000,400.0000 -2017-01-07,800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 18d96f6172..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" -2016-12,581.8182,400.0000,400.0000,400.0000 -2017-01,800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 2b5db35cfd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" -"2016 Q4",581.8182,400.0000,400.0000,400.0000 -"2017 Q1",800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 2cecb02b3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] Average Number of CPU Nodes: Allocated","[GPU Allocated] Average Number of CPU Nodes: Allocated","[CPU Node Allocated] Average Number of CPU Nodes: Allocated","[GPU Node Allocated] Average Number of CPU Nodes: Allocated" -2016,581.8182,400.0000,400.0000,400.0000 -2017,800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index deffebdce5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Allocated" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index deffebdce5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Allocated" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index deffebdce5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Allocated" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index deffebdce5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Allocated" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index cfd5a1f89d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" -2016-12-22,0,400.0000,0.0000,0.0000 -2016-12-23,0,400.0000,0.0000,0.0000 -2016-12-24,0,400.0000,0.0000,0.0000 -2016-12-25,0,400.0000,0.0000,0.0000 -2016-12-26,400.0000,400.0000,0.0000,0.0000 -2016-12-27,400.0000,400.0000,0.0000,0.0000 -2016-12-28,400.0000,400.0000,0.0000,0.0000 -2016-12-29,400.0000,400.0000,0.0000,0.0000 -2016-12-30,400.0000,400.0000,0.0000,0.0000 -2016-12-31,400.0000,400.0000,0.0000,0.0000 -2017-01-01,400.0000,400.0000,0.0000,0.0000 -2017-01-02,400.0000,400.0000,0.0000,0.0000 -2017-01-03,400.0000,400.0000,0.0000,0.0000 -2017-01-04,400.0000,400.0000,0.0000,0.0000 -2017-01-05,400.0000,400.0000,0.0000,0.0000 -2017-01-06,400.0000,400.0000,0.0000,0.0000 -2017-01-07,400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index e39c00ef2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" -2016-12,400.0000,400.0000,0.0000,0.0000 -2017-01,400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 5749549d00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" -"2016 Q4",400.0000,400.0000,0.0000,0.0000 -"2017 Q1",400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index e28a408ccf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Allocated] Average Number of GPU Nodes: Allocated","[GPU Node Allocated] Average Number of GPU Nodes: Allocated","[CPU Allocated] Average Number of GPU Nodes: Allocated","[CPU Node Allocated] Average Number of GPU Nodes: Allocated" -2016,400.0000,400.0000,0.0000,0.0000 -2017,400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 5683081f06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 5683081f06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 5683081f06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 5683081f06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Allocated (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index c89b7fa1fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" -2016-12-22,0,4000.0000,0.0000,0.0000 -2016-12-23,0,4000.0000,0.0000,0.0000 -2016-12-24,0,4000.0000,0.0000,0.0000 -2016-12-25,0,4000.0000,0.0000,0.0000 -2016-12-26,4000.0000,4000.0000,0.0000,0.0000 -2016-12-27,4000.0000,4000.0000,0.0000,0.0000 -2016-12-28,4000.0000,4000.0000,0.0000,0.0000 -2016-12-29,4000.0000,4000.0000,0.0000,0.0000 -2016-12-30,4000.0000,4000.0000,0.0000,0.0000 -2016-12-31,4000.0000,4000.0000,0.0000,0.0000 -2017-01-01,4000.0000,4000.0000,0.0000,0.0000 -2017-01-02,4000.0000,4000.0000,0.0000,0.0000 -2017-01-03,4000.0000,4000.0000,0.0000,0.0000 -2017-01-04,4000.0000,4000.0000,0.0000,0.0000 -2017-01-05,4000.0000,4000.0000,0.0000,0.0000 -2017-01-06,4000.0000,4000.0000,0.0000,0.0000 -2017-01-07,4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 7936bbc38e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" -2016-12,4000.0000,4000.0000,0.0000,0.0000 -2017-01,4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 6e677959bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" -"2016 Q4",4000.0000,4000.0000,0.0000,0.0000 -"2017 Q1",4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 583e485ba6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Allocated] Average Number of GPUs: Allocated (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Allocated (GPU Count)" -2016,4000.0000,4000.0000,0.0000,0.0000 -2017,4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index a258e8e5fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Allocated" -"CPU Allocated",2784000.0000 -"CPU Node Allocated",1632000.0000 -"GPU Node Allocated",1632000.0000 -"GPU Allocated",1248000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index fdafdb6ffc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Allocated" -"CPU Allocated",7488000.0000 -"GPU Node Allocated",4896000.0000 -"CPU Node Allocated",3936000.0000 -"GPU Allocated",3552000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 60857f89a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Allocated" -"CPU Allocated",18816000.0000 -"GPU Node Allocated",10560000.0000 -"CPU Node Allocated",9600000.0000 -"GPU Allocated",9216000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 8c5a1052d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Allocated" -"CPU Allocated",71616000.0000 -"GPU Node Allocated",36960000.0000 -"CPU Node Allocated",36000000.0000 -"GPU Allocated",35616000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 0e3a22a588..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" -2016-12-22,96000.0000,96000.0000,96000.0000,0 -2016-12-23,96000.0000,96000.0000,96000.0000,0 -2016-12-24,96000.0000,96000.0000,96000.0000,0 -2016-12-25,96000.0000,96000.0000,96000.0000,0 -2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-27,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-28,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-29,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-30,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-31,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-01,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-02,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-03,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-04,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-05,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-06,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-07,192000.0000,96000.0000,96000.0000,96000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 8fc3a3a349..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" -2016-12,1536000.0000,1920000.0000,960000.0000,576000.0000 -2017-01,5952000.0000,2976000.0000,2976000.0000,2976000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 10ae0f784f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" -"2016 Q4",1536000.0000,1920000.0000,960000.0000,576000.0000 -"2017 Q1",17280000.0000,8640000.0000,8640000.0000,8640000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 971aeb1450..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] CPU Hours: Allocated","[GPU Node Allocated] CPU Hours: Allocated","[CPU Node Allocated] CPU Hours: Allocated","[GPU Allocated] CPU Hours: Allocated" -2016,1536000.0000,1920000.0000,960000.0000,576000.0000 -2017,70080000.0000,35040000.0000,35040000.0000,35040000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 1f6b0d28e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Allocated" -"CPU Allocated",278400.0000 -"CPU Node Allocated",163200.0000 -"GPU Node Allocated",163200.0000 -"GPU Allocated",124800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index dbfb53d5fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Allocated" -"CPU Allocated",748800.0000 -"GPU Node Allocated",489600.0000 -"CPU Node Allocated",393600.0000 -"GPU Allocated",355200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 5feb5de0ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Allocated" -"CPU Allocated",1881600.0000 -"GPU Node Allocated",1056000.0000 -"CPU Node Allocated",960000.0000 -"GPU Allocated",921600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index f092a7eebb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Allocated" -"CPU Allocated",7161600.0000 -"GPU Node Allocated",3696000.0000 -"CPU Node Allocated",3600000.0000 -"GPU Allocated",3561600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b60f5f6fa0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" -2016-12-22,9600.0000,9600.0000,9600.0000,0 -2016-12-23,9600.0000,9600.0000,9600.0000,0 -2016-12-24,9600.0000,9600.0000,9600.0000,0 -2016-12-25,9600.0000,9600.0000,9600.0000,0 -2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-27,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-28,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-29,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-30,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-31,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-01,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-02,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-03,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-04,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-05,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-06,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-07,19200.0000,9600.0000,9600.0000,9600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index aaf8923e58..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" -2016-12,153600.0000,192000.0000,96000.0000,57600.0000 -2017-01,595200.0000,297600.0000,297600.0000,297600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 4aedf2259b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" -"2016 Q4",153600.0000,192000.0000,96000.0000,57600.0000 -"2017 Q1",1728000.0000,864000.0000,864000.0000,864000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 9ec6f59cd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] CPU Node Hours: Allocated","[GPU Node Allocated] CPU Node Hours: Allocated","[CPU Node Allocated] CPU Node Hours: Allocated","[GPU Allocated] CPU Node Hours: Allocated" -2016,153600.0000,192000.0000,96000.0000,57600.0000 -2017,7008000.0000,3504000.0000,3504000.0000,3504000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index e352b212ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Allocated" -"GPU Node Allocated",1632000.0000 -"GPU Allocated",1248000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 89edbe693c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Allocated" -"GPU Node Allocated",4896000.0000 -"GPU Allocated",3552000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c698df1e4b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Allocated" -"GPU Node Allocated",10560000.0000 -"GPU Allocated",9216000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 42982bd507..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Allocated" -"GPU Node Allocated",36960000.0000 -"GPU Allocated",35616000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index eb9c87c7a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" -2016-12-22,96000.0000,0,0.0000,0.0000 -2016-12-23,96000.0000,0,0.0000,0.0000 -2016-12-24,96000.0000,0,0.0000,0.0000 -2016-12-25,96000.0000,0,0.0000,0.0000 -2016-12-26,96000.0000,96000.0000,0.0000,0.0000 -2016-12-27,96000.0000,96000.0000,0.0000,0.0000 -2016-12-28,96000.0000,96000.0000,0.0000,0.0000 -2016-12-29,96000.0000,96000.0000,0.0000,0.0000 -2016-12-30,96000.0000,96000.0000,0.0000,0.0000 -2016-12-31,96000.0000,96000.0000,0.0000,0.0000 -2017-01-01,96000.0000,96000.0000,0.0000,0.0000 -2017-01-02,96000.0000,96000.0000,0.0000,0.0000 -2017-01-03,96000.0000,96000.0000,0.0000,0.0000 -2017-01-04,96000.0000,96000.0000,0.0000,0.0000 -2017-01-05,96000.0000,96000.0000,0.0000,0.0000 -2017-01-06,96000.0000,96000.0000,0.0000,0.0000 -2017-01-07,96000.0000,96000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index a92c6c1592..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" -2016-12,1920000.0000,576000.0000,0.0000,0.0000 -2017-01,2976000.0000,2976000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c2a2e13e9b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" -"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000 -"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 631ed3fd1f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Node Allocated] GPU Hours: Allocated","[GPU Allocated] GPU Hours: Allocated","[CPU Allocated] GPU Hours: Allocated","[CPU Node Allocated] GPU Hours: Allocated" -2016,1920000.0000,576000.0000,0.0000,0.0000 -2017,35040000.0000,35040000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6598151c07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Allocated" -"GPU Node Allocated",163200.0000 -"GPU Allocated",124800.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index e328f8841f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Allocated" -"GPU Node Allocated",489600.0000 -"GPU Allocated",355200.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index f9a127a3fd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Allocated" -"GPU Node Allocated",1056000.0000 -"GPU Allocated",921600.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 688576006e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Allocated" -"GPU Node Allocated",3696000.0000 -"GPU Allocated",3561600.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b6ac641bb2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" -2016-12-22,9600.0000,0,0.0000,0.0000 -2016-12-23,9600.0000,0,0.0000,0.0000 -2016-12-24,9600.0000,0,0.0000,0.0000 -2016-12-25,9600.0000,0,0.0000,0.0000 -2016-12-26,9600.0000,9600.0000,0.0000,0.0000 -2016-12-27,9600.0000,9600.0000,0.0000,0.0000 -2016-12-28,9600.0000,9600.0000,0.0000,0.0000 -2016-12-29,9600.0000,9600.0000,0.0000,0.0000 -2016-12-30,9600.0000,9600.0000,0.0000,0.0000 -2016-12-31,9600.0000,9600.0000,0.0000,0.0000 -2017-01-01,9600.0000,9600.0000,0.0000,0.0000 -2017-01-02,9600.0000,9600.0000,0.0000,0.0000 -2017-01-03,9600.0000,9600.0000,0.0000,0.0000 -2017-01-04,9600.0000,9600.0000,0.0000,0.0000 -2017-01-05,9600.0000,9600.0000,0.0000,0.0000 -2017-01-06,9600.0000,9600.0000,0.0000,0.0000 -2017-01-07,9600.0000,9600.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 0c38ff238f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" -2016-12,192000.0000,57600.0000,0.0000,0.0000 -2017-01,297600.0000,297600.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index f275f3f597..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" -"2016 Q4",192000.0000,57600.0000,0.0000,0.0000 -"2017 Q1",864000.0000,864000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7fedf89597..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/allocated_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Node Allocated] GPU Node Hours: Allocated","[GPU Allocated] GPU Node Hours: Allocated","[CPU Allocated] GPU Node Hours: Allocated","[CPU Node Allocated] GPU Node Hours: Allocated" -2016,192000.0000,57600.0000,0.0000,0.0000 -2017,3504000.0000,3504000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 225dbb0115..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" -"CPU Allocated",6823.5294 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 8744742552..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" -"CPU Allocated",7428.5714 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 05aa05a8d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" -"CPU Allocated",7762.3762 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index ab0ffe194f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Cores: Total (Core Count)" -"CPU Allocated",7936.1702 -"GPU Allocated",4000.0000 -"CPU Node Allocated",4000.0000 -"GPU Node Allocated",4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index d2cfd758bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" -2016-12-22,4000.0000,0,4000.0000,4000.0000 -2016-12-23,4000.0000,0,4000.0000,4000.0000 -2016-12-24,4000.0000,0,4000.0000,4000.0000 -2016-12-25,4000.0000,0,4000.0000,4000.0000 -2016-12-26,4000.0000,4000.0000,4000.0000,4000.0000 -2016-12-27,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-28,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-29,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-30,8000.0000,4000.0000,4000.0000,4000.0000 -2016-12-31,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-01,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-02,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-03,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-04,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-05,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-06,8000.0000,4000.0000,4000.0000,4000.0000 -2017-01-07,8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 4b7eeeecdf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" -2016-12,5818.1818,4000.0000,4000.0000,4000.0000 -2017-01,8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index cb76fa473c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" -"2016 Q4",5818.1818,4000.0000,4000.0000,4000.0000 -"2017 Q1",8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 046de60ae2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Allocated] Average Number of CPU Cores: Total (Core Count)","[CPU Node Allocated] Average Number of CPU Cores: Total (Core Count)","[GPU Node Allocated] Average Number of CPU Cores: Total (Core Count)" -2016,5818.1818,4000.0000,4000.0000,4000.0000 -2017,8000.0000,4000.0000,4000.0000,4000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 3d5998fce4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Total" -"CPU Allocated",682.3529 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index b636a48abb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Total" -"CPU Allocated",742.8571 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index f8ec2abfd6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Total" -"CPU Allocated",776.2376 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 2bee62bebb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of CPU Nodes: Total" -"CPU Allocated",793.6170 -"GPU Allocated",400.0000 -"CPU Node Allocated",400.0000 -"GPU Node Allocated",400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 80824c632e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" -2016-12-22,400.0000,0,400.0000,400.0000 -2016-12-23,400.0000,0,400.0000,400.0000 -2016-12-24,400.0000,0,400.0000,400.0000 -2016-12-25,400.0000,0,400.0000,400.0000 -2016-12-26,400.0000,400.0000,400.0000,400.0000 -2016-12-27,800.0000,400.0000,400.0000,400.0000 -2016-12-28,800.0000,400.0000,400.0000,400.0000 -2016-12-29,800.0000,400.0000,400.0000,400.0000 -2016-12-30,800.0000,400.0000,400.0000,400.0000 -2016-12-31,800.0000,400.0000,400.0000,400.0000 -2017-01-01,800.0000,400.0000,400.0000,400.0000 -2017-01-02,800.0000,400.0000,400.0000,400.0000 -2017-01-03,800.0000,400.0000,400.0000,400.0000 -2017-01-04,800.0000,400.0000,400.0000,400.0000 -2017-01-05,800.0000,400.0000,400.0000,400.0000 -2017-01-06,800.0000,400.0000,400.0000,400.0000 -2017-01-07,800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index cc6dd27d64..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" -2016-12,581.8182,400.0000,400.0000,400.0000 -2017-01,800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 54ad32077d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" -"2016 Q4",581.8182,400.0000,400.0000,400.0000 -"2017 Q1",800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 24f594f0e6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] Average Number of CPU Nodes: Total","[GPU Allocated] Average Number of CPU Nodes: Total","[CPU Node Allocated] Average Number of CPU Nodes: Total","[GPU Node Allocated] Average Number of CPU Nodes: Total" -2016,581.8182,400.0000,400.0000,400.0000 -2017,800.0000,400.0000,400.0000,400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 805b57e030..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Total" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 805b57e030..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Total" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 805b57e030..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Total" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 805b57e030..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPU Nodes: Total" -"GPU Allocated",400.0000 -"GPU Node Allocated",400.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 756e6c4d74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" -2016-12-22,0,400.0000,0.0000,0.0000 -2016-12-23,0,400.0000,0.0000,0.0000 -2016-12-24,0,400.0000,0.0000,0.0000 -2016-12-25,0,400.0000,0.0000,0.0000 -2016-12-26,400.0000,400.0000,0.0000,0.0000 -2016-12-27,400.0000,400.0000,0.0000,0.0000 -2016-12-28,400.0000,400.0000,0.0000,0.0000 -2016-12-29,400.0000,400.0000,0.0000,0.0000 -2016-12-30,400.0000,400.0000,0.0000,0.0000 -2016-12-31,400.0000,400.0000,0.0000,0.0000 -2017-01-01,400.0000,400.0000,0.0000,0.0000 -2017-01-02,400.0000,400.0000,0.0000,0.0000 -2017-01-03,400.0000,400.0000,0.0000,0.0000 -2017-01-04,400.0000,400.0000,0.0000,0.0000 -2017-01-05,400.0000,400.0000,0.0000,0.0000 -2017-01-06,400.0000,400.0000,0.0000,0.0000 -2017-01-07,400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 16c6130969..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" -2016-12,400.0000,400.0000,0.0000,0.0000 -2017-01,400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 50c743849a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" -"2016 Q4",400.0000,400.0000,0.0000,0.0000 -"2017 Q1",400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 25eec88c3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Allocated] Average Number of GPU Nodes: Total","[GPU Node Allocated] Average Number of GPU Nodes: Total","[CPU Allocated] Average Number of GPU Nodes: Total","[CPU Node Allocated] Average Number of GPU Nodes: Total" -2016,400.0000,400.0000,0.0000,0.0000 -2017,400.0000,400.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 0545625c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 0545625c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 0545625c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 0545625c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","Average Number of GPUs: Total (GPU Count)" -"GPU Allocated",4000.0000 -"GPU Node Allocated",4000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 78bb793996..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" -2016-12-22,0,4000.0000,0.0000,0.0000 -2016-12-23,0,4000.0000,0.0000,0.0000 -2016-12-24,0,4000.0000,0.0000,0.0000 -2016-12-25,0,4000.0000,0.0000,0.0000 -2016-12-26,4000.0000,4000.0000,0.0000,0.0000 -2016-12-27,4000.0000,4000.0000,0.0000,0.0000 -2016-12-28,4000.0000,4000.0000,0.0000,0.0000 -2016-12-29,4000.0000,4000.0000,0.0000,0.0000 -2016-12-30,4000.0000,4000.0000,0.0000,0.0000 -2016-12-31,4000.0000,4000.0000,0.0000,0.0000 -2017-01-01,4000.0000,4000.0000,0.0000,0.0000 -2017-01-02,4000.0000,4000.0000,0.0000,0.0000 -2017-01-03,4000.0000,4000.0000,0.0000,0.0000 -2017-01-04,4000.0000,4000.0000,0.0000,0.0000 -2017-01-05,4000.0000,4000.0000,0.0000,0.0000 -2017-01-06,4000.0000,4000.0000,0.0000,0.0000 -2017-01-07,4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 3b0a21236e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" -2016-12,4000.0000,4000.0000,0.0000,0.0000 -2017-01,4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 0556041708..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" -"2016 Q4",4000.0000,4000.0000,0.0000,0.0000 -"2017 Q1",4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 34c379017f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Allocated] Average Number of GPUs: Total (GPU Count)","[GPU Node Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Allocated] Average Number of GPUs: Total (GPU Count)","[CPU Node Allocated] Average Number of GPUs: Total (GPU Count)" -2016,4000.0000,4000.0000,0.0000,0.0000 -2017,4000.0000,4000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 78398c9b00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Total" -"CPU Allocated",2784000.0000 -"CPU Node Allocated",1632000.0000 -"GPU Node Allocated",1632000.0000 -"GPU Allocated",1248000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4254f218c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Total" -"CPU Allocated",7488000.0000 -"GPU Node Allocated",4896000.0000 -"CPU Node Allocated",3936000.0000 -"GPU Allocated",3552000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index cf95e93181..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Total" -"CPU Allocated",18816000.0000 -"GPU Node Allocated",10560000.0000 -"CPU Node Allocated",9600000.0000 -"GPU Allocated",9216000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 82cdd49d20..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Hours: Total" -"CPU Allocated",71616000.0000 -"GPU Node Allocated",36960000.0000 -"CPU Node Allocated",36000000.0000 -"GPU Allocated",35616000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 89a0f181d0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" -2016-12-22,96000.0000,96000.0000,96000.0000,0 -2016-12-23,96000.0000,96000.0000,96000.0000,0 -2016-12-24,96000.0000,96000.0000,96000.0000,0 -2016-12-25,96000.0000,96000.0000,96000.0000,0 -2016-12-26,96000.0000,96000.0000,96000.0000,96000.0000 -2016-12-27,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-28,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-29,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-30,192000.0000,96000.0000,96000.0000,96000.0000 -2016-12-31,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-01,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-02,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-03,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-04,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-05,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-06,192000.0000,96000.0000,96000.0000,96000.0000 -2017-01-07,192000.0000,96000.0000,96000.0000,96000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 86de7d71a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" -2016-12,1536000.0000,1920000.0000,960000.0000,576000.0000 -2017-01,5952000.0000,2976000.0000,2976000.0000,2976000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 120b96338f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" -"2016 Q4",1536000.0000,1920000.0000,960000.0000,576000.0000 -"2017 Q1",17280000.0000,8640000.0000,8640000.0000,8640000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2842026582..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] CPU Hours: Total","[GPU Node Allocated] CPU Hours: Total","[CPU Node Allocated] CPU Hours: Total","[GPU Allocated] CPU Hours: Total" -2016,1536000.0000,1920000.0000,960000.0000,576000.0000 -2017,70080000.0000,35040000.0000,35040000.0000,35040000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 8f4caa6bad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Total" -"CPU Allocated",278400.0000 -"CPU Node Allocated",163200.0000 -"GPU Node Allocated",163200.0000 -"GPU Allocated",124800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index a05ec77c6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Total" -"CPU Allocated",748800.0000 -"GPU Node Allocated",489600.0000 -"CPU Node Allocated",393600.0000 -"GPU Allocated",355200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7b9a52a1ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Total" -"CPU Allocated",1881600.0000 -"GPU Node Allocated",1056000.0000 -"CPU Node Allocated",960000.0000 -"GPU Allocated",921600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index bb07566264..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","CPU Node Hours: Total" -"CPU Allocated",7161600.0000 -"GPU Node Allocated",3696000.0000 -"CPU Node Allocated",3600000.0000 -"GPU Allocated",3561600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9d6f9e6315..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[CPU Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" -2016-12-22,9600.0000,9600.0000,9600.0000,0 -2016-12-23,9600.0000,9600.0000,9600.0000,0 -2016-12-24,9600.0000,9600.0000,9600.0000,0 -2016-12-25,9600.0000,9600.0000,9600.0000,0 -2016-12-26,9600.0000,9600.0000,9600.0000,9600.0000 -2016-12-27,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-28,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-29,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-30,19200.0000,9600.0000,9600.0000,9600.0000 -2016-12-31,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-01,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-02,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-03,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-04,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-05,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-06,19200.0000,9600.0000,9600.0000,9600.0000 -2017-01-07,19200.0000,9600.0000,9600.0000,9600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index fffeae2635..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[CPU Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" -2016-12,153600.0000,192000.0000,96000.0000,57600.0000 -2017-01,595200.0000,297600.0000,297600.0000,297600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 7c9763b3a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[CPU Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" -"2016 Q4",153600.0000,192000.0000,96000.0000,57600.0000 -"2017 Q1",1728000.0000,864000.0000,864000.0000,864000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index a0b0a16aed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[CPU Allocated] CPU Node Hours: Total","[GPU Node Allocated] CPU Node Hours: Total","[CPU Node Allocated] CPU Node Hours: Total","[GPU Allocated] CPU Node Hours: Total" -2016,153600.0000,192000.0000,96000.0000,57600.0000 -2017,7008000.0000,3504000.0000,3504000.0000,3504000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index dc6a08e343..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Total" -"GPU Node Allocated",1632000.0000 -"GPU Allocated",1248000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index b5e8d2e148..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Total" -"GPU Node Allocated",4896000.0000 -"GPU Allocated",3552000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index cfc71f062e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Total" -"GPU Node Allocated",10560000.0000 -"GPU Allocated",9216000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index c415b45947..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Hours: Total" -"GPU Node Allocated",36960000.0000 -"GPU Allocated",35616000.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 9c17b717d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" -2016-12-22,96000.0000,0,0.0000,0.0000 -2016-12-23,96000.0000,0,0.0000,0.0000 -2016-12-24,96000.0000,0,0.0000,0.0000 -2016-12-25,96000.0000,0,0.0000,0.0000 -2016-12-26,96000.0000,96000.0000,0.0000,0.0000 -2016-12-27,96000.0000,96000.0000,0.0000,0.0000 -2016-12-28,96000.0000,96000.0000,0.0000,0.0000 -2016-12-29,96000.0000,96000.0000,0.0000,0.0000 -2016-12-30,96000.0000,96000.0000,0.0000,0.0000 -2016-12-31,96000.0000,96000.0000,0.0000,0.0000 -2017-01-01,96000.0000,96000.0000,0.0000,0.0000 -2017-01-02,96000.0000,96000.0000,0.0000,0.0000 -2017-01-03,96000.0000,96000.0000,0.0000,0.0000 -2017-01-04,96000.0000,96000.0000,0.0000,0.0000 -2017-01-05,96000.0000,96000.0000,0.0000,0.0000 -2017-01-06,96000.0000,96000.0000,0.0000,0.0000 -2017-01-07,96000.0000,96000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index fbf7c3c69b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" -2016-12,1920000.0000,576000.0000,0.0000,0.0000 -2017-01,2976000.0000,2976000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index c14bc658ff..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" -"2016 Q4",1920000.0000,576000.0000,0.0000,0.0000 -"2017 Q1",8640000.0000,8640000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 497f1e1881..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Node Allocated] GPU Hours: Total","[GPU Allocated] GPU Hours: Total","[CPU Allocated] GPU Hours: Total","[CPU Node Allocated] GPU Hours: Total" -2016,1920000.0000,576000.0000,0.0000,0.0000 -2017,35040000.0000,35040000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 6e0dcaf357..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Total" -"GPU Node Allocated",163200.0000 -"GPU Allocated",124800.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index d4afd6aa55..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Total" -"GPU Node Allocated",489600.0000 -"GPU Allocated",355200.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 4c116a1d8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Total" -"GPU Node Allocated",1056000.0000 -"GPU Allocated",921600.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index ed80615ca8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,13 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Allocation Type","GPU Node Hours: Total" -"GPU Node Allocated",3696000.0000 -"GPU Allocated",3561600.0000 -"CPU Allocated",0.0000 -"CPU Node Allocated",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index c2e758a372..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" -2016-12-22,9600.0000,0,0.0000,0.0000 -2016-12-23,9600.0000,0,0.0000,0.0000 -2016-12-24,9600.0000,0,0.0000,0.0000 -2016-12-25,9600.0000,0,0.0000,0.0000 -2016-12-26,9600.0000,9600.0000,0.0000,0.0000 -2016-12-27,9600.0000,9600.0000,0.0000,0.0000 -2016-12-28,9600.0000,9600.0000,0.0000,0.0000 -2016-12-29,9600.0000,9600.0000,0.0000,0.0000 -2016-12-30,9600.0000,9600.0000,0.0000,0.0000 -2016-12-31,9600.0000,9600.0000,0.0000,0.0000 -2017-01-01,9600.0000,9600.0000,0.0000,0.0000 -2017-01-02,9600.0000,9600.0000,0.0000,0.0000 -2017-01-03,9600.0000,9600.0000,0.0000,0.0000 -2017-01-04,9600.0000,9600.0000,0.0000,0.0000 -2017-01-05,9600.0000,9600.0000,0.0000,0.0000 -2017-01-06,9600.0000,9600.0000,0.0000,0.0000 -2017-01-07,9600.0000,9600.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index bfeafcc231..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" -2016-12,192000.0000,57600.0000,0.0000,0.0000 -2017-01,297600.0000,297600.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ab067ed57d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" -"2016 Q4",192000.0000,57600.0000,0.0000,0.0000 -"2017 Q1",864000.0000,864000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8a21e51be7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_allocation_type/total_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Allocation Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[GPU Node Allocated] GPU Node Hours: Total","[GPU Allocated] GPU Node Hours: Total","[CPU Allocated] GPU Node Hours: Total","[CPU Node Allocated] GPU Node Hours: Total" -2016,192000.0000,57600.0000,0.0000,0.0000 -2017,3504000.0000,3504000.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index cee39cf979..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" -"High-performance computing",17882.3529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 58778f961c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" -"High-performance computing",16235.2941 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 2d20a643f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" -"High-performance computing",18254.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index e596aad411..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Allocated (Core Count)" -"High-performance computing",19501.2987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index 0ab5b37f65..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" -2016-12-22,12000.0000 -2016-12-23,12000.0000 -2016-12-24,12000.0000 -2016-12-25,12000.0000 -2016-12-26,16000.0000 -2016-12-27,20000.0000 -2016-12-28,20000.0000 -2016-12-29,20000.0000 -2016-12-30,20000.0000 -2016-12-31,20000.0000 -2017-01-01,20000.0000 -2017-01-02,20000.0000 -2017-01-03,20000.0000 -2017-01-04,20000.0000 -2017-01-05,20000.0000 -2017-01-06,20000.0000 -2017-01-07,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index cfa59a8d28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" -2016-12,10400.0000 -2017-01,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index 4082dbfd96..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" -"2016 Q4",10400.0000 -"2017 Q1",20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index 502bc61d60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Allocated (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of CPU Cores: Allocated (Core Count)" -2016,10400.0000 -2017,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index b0f2827863..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Allocated" -"High-performance computing",1788.2353 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 6515427c3e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Allocated" -"High-performance computing",1623.5294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 1f0222fe9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Allocated" -"High-performance computing",1825.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 4769d9a6f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Allocated" -"High-performance computing",1950.1299 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index b13177e08e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of CPU Nodes: Allocated" -2016-12-22,1200.0000 -2016-12-23,1200.0000 -2016-12-24,1200.0000 -2016-12-25,1200.0000 -2016-12-26,1600.0000 -2016-12-27,2000.0000 -2016-12-28,2000.0000 -2016-12-29,2000.0000 -2016-12-30,2000.0000 -2016-12-31,2000.0000 -2017-01-01,2000.0000 -2017-01-02,2000.0000 -2017-01-03,2000.0000 -2017-01-04,2000.0000 -2017-01-05,2000.0000 -2017-01-06,2000.0000 -2017-01-07,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 12231730a9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of CPU Nodes: Allocated" -2016-12,1040.0000 -2017-01,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 26d7a7dee5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of CPU Nodes: Allocated" -"2016 Q4",1040.0000 -"2017 Q1",2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 2c09d13c7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of CPU Nodes: Allocated" -2016,1040.0000 -2017,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 99df266f53..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Allocated" -"High-performance computing",705.8824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 00156aa56b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Allocated" -"High-performance computing",690.1961 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 5dac11ac95..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Allocated" -"High-performance computing",749.0909 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 5997780d95..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Allocated" -"High-performance computing",785.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 7e3d7c0a65..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of GPU Nodes: Allocated" -2016-12-22,400.0000 -2016-12-23,400.0000 -2016-12-24,400.0000 -2016-12-25,400.0000 -2016-12-26,800.0000 -2016-12-27,800.0000 -2016-12-28,800.0000 -2016-12-29,800.0000 -2016-12-30,800.0000 -2016-12-31,800.0000 -2017-01-01,800.0000 -2017-01-02,800.0000 -2017-01-03,800.0000 -2017-01-04,800.0000 -2017-01-05,800.0000 -2017-01-06,800.0000 -2017-01-07,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index c0a3a5f285..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of GPU Nodes: Allocated" -2016-12,520.0000 -2017-01,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index f8f321c1f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of GPU Nodes: Allocated" -"2016 Q4",520.0000 -"2017 Q1",800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 3870eaa483..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of GPU Nodes: Allocated" -2016,520.0000 -2017,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index d1bc225d8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Allocated (GPU Count)" -"High-performance computing",7058.8235 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index d494c9418e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Allocated (GPU Count)" -"High-performance computing",6901.9608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index b15e1f33b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Allocated (GPU Count)" -"High-performance computing",7490.9091 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index a426fea5be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Allocated (GPU Count)" -"High-performance computing",7854.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index d2a563fa61..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" -2016-12-22,4000.0000 -2016-12-23,4000.0000 -2016-12-24,4000.0000 -2016-12-25,4000.0000 -2016-12-26,8000.0000 -2016-12-27,8000.0000 -2016-12-28,8000.0000 -2016-12-29,8000.0000 -2016-12-30,8000.0000 -2016-12-31,8000.0000 -2017-01-01,8000.0000 -2017-01-02,8000.0000 -2017-01-03,8000.0000 -2017-01-04,8000.0000 -2017-01-05,8000.0000 -2017-01-06,8000.0000 -2017-01-07,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 383f5121ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" -2016-12,5200.0000 -2017-01,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 5701d01f2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" -"2016 Q4",5200.0000 -"2017 Q1",8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index 939c6f080d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Allocated (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of GPUs: Allocated (GPU Count)" -2016,5200.0000 -2017,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index e2fcf36acb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Allocated" -"High-performance computing",7296000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index e3f3a3c952..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Allocated" -"High-performance computing",19872000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index aab308616c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Allocated" -"High-performance computing",48192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index bdbb7a84dc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Allocated" -"High-performance computing",180192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index 8cfe8ccc4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] CPU Hours: Allocated" -2016-12-22,288000.0000 -2016-12-23,288000.0000 -2016-12-24,288000.0000 -2016-12-25,288000.0000 -2016-12-26,384000.0000 -2016-12-27,480000.0000 -2016-12-28,480000.0000 -2016-12-29,480000.0000 -2016-12-30,480000.0000 -2016-12-31,480000.0000 -2017-01-01,480000.0000 -2017-01-02,480000.0000 -2017-01-03,480000.0000 -2017-01-04,480000.0000 -2017-01-05,480000.0000 -2017-01-06,480000.0000 -2017-01-07,480000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 09bb710429..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] CPU Hours: Allocated" -2016-12,4992000.0000 -2017-01,14880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index bf9b9a051f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] CPU Hours: Allocated" -"2016 Q4",4992000.0000 -"2017 Q1",43200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 7dd4b42392..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] CPU Hours: Allocated" -2016,4992000.0000 -2017,175200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 343a01de57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Allocated" -"High-performance computing",729600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index d65240874b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Allocated" -"High-performance computing",1987200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 2a3bb2b4a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Allocated" -"High-performance computing",4819200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 6daacc166d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Allocated" -"High-performance computing",18019200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 914377ce8a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] CPU Node Hours: Allocated" -2016-12-22,28800.0000 -2016-12-23,28800.0000 -2016-12-24,28800.0000 -2016-12-25,28800.0000 -2016-12-26,38400.0000 -2016-12-27,48000.0000 -2016-12-28,48000.0000 -2016-12-29,48000.0000 -2016-12-30,48000.0000 -2016-12-31,48000.0000 -2017-01-01,48000.0000 -2017-01-02,48000.0000 -2017-01-03,48000.0000 -2017-01-04,48000.0000 -2017-01-05,48000.0000 -2017-01-06,48000.0000 -2017-01-07,48000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9b1fd3474a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] CPU Node Hours: Allocated" -2016-12,499200.0000 -2017-01,1488000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ff39029068..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] CPU Node Hours: Allocated" -"2016 Q4",499200.0000 -"2017 Q1",4320000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 6b78af2a8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] CPU Node Hours: Allocated" -2016,499200.0000 -2017,17520000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index dd4c7655ab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Allocated" -"High-performance computing",2880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 76d34d27c4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Allocated" -"High-performance computing",8448000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 786d1a9507..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Allocated" -"High-performance computing",19776000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index ab92252bfd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Allocated" -"High-performance computing",72576000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index 53cb36dffa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] GPU Hours: Allocated" -2016-12-22,96000.0000 -2016-12-23,96000.0000 -2016-12-24,96000.0000 -2016-12-25,96000.0000 -2016-12-26,192000.0000 -2016-12-27,192000.0000 -2016-12-28,192000.0000 -2016-12-29,192000.0000 -2016-12-30,192000.0000 -2016-12-31,192000.0000 -2017-01-01,192000.0000 -2017-01-02,192000.0000 -2017-01-03,192000.0000 -2017-01-04,192000.0000 -2017-01-05,192000.0000 -2017-01-06,192000.0000 -2017-01-07,192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index 5baf04a01e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] GPU Hours: Allocated" -2016-12,2496000.0000 -2017-01,5952000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3537edee78..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] GPU Hours: Allocated" -"2016 Q4",2496000.0000 -"2017 Q1",17280000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index bc5753d5d5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] GPU Hours: Allocated" -2016,2496000.0000 -2017,70080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index c4e19c56f4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Allocated" -"High-performance computing",288000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 088e3fc57d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Allocated" -"High-performance computing",844800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index c26326ed4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Allocated" -"High-performance computing",1977600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 9f86d2923a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Allocated" -"High-performance computing",7257600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index a663926d90..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] GPU Node Hours: Allocated" -2016-12-22,9600.0000 -2016-12-23,9600.0000 -2016-12-24,9600.0000 -2016-12-25,9600.0000 -2016-12-26,19200.0000 -2016-12-27,19200.0000 -2016-12-28,19200.0000 -2016-12-29,19200.0000 -2016-12-30,19200.0000 -2016-12-31,19200.0000 -2017-01-01,19200.0000 -2017-01-02,19200.0000 -2017-01-03,19200.0000 -2017-01-04,19200.0000 -2017-01-05,19200.0000 -2017-01-06,19200.0000 -2017-01-07,19200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 9174a05247..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] GPU Node Hours: Allocated" -2016-12,249600.0000 -2017-01,595200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b8d4875bb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] GPU Node Hours: Allocated" -"2016 Q4",249600.0000 -"2017 Q1",1728000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 8cea1d0eb0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/allocated_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Allocated: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] GPU Node Hours: Allocated" -2016,249600.0000 -2017,7008000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv deleted file mode 100644 index 878497f86d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Total (Core Count)" -"High-performance computing",17882.3529 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv deleted file mode 100644 index 48bfec8dbe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Total (Core Count)" -"High-performance computing",16235.2941 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv deleted file mode 100644 index 30f2f21c5b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Total (Core Count)" -"High-performance computing",18254.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv deleted file mode 100644 index 103234f9af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Cores: Total (Core Count)" -"High-performance computing",19501.2987 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv deleted file mode 100644 index c0e4456373..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" -2016-12-22,12000.0000 -2016-12-23,12000.0000 -2016-12-24,12000.0000 -2016-12-25,12000.0000 -2016-12-26,16000.0000 -2016-12-27,20000.0000 -2016-12-28,20000.0000 -2016-12-29,20000.0000 -2016-12-30,20000.0000 -2016-12-31,20000.0000 -2017-01-01,20000.0000 -2017-01-02,20000.0000 -2017-01-03,20000.0000 -2017-01-04,20000.0000 -2017-01-05,20000.0000 -2017-01-06,20000.0000 -2017-01-07,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv deleted file mode 100644 index 322a3040fe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" -2016-12,10400.0000 -2017-01,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv deleted file mode 100644 index dcb2cf9dfe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" -"2016 Q4",10400.0000 -"2017 Q1",20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv deleted file mode 100644 index d21e8f17a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_cores/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Cores: Total (Core Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of CPU Cores: Total (Core Count)" -2016,10400.0000 -2017,20000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 2c73c41926..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Total" -"High-performance computing",1788.2353 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 5b46f719e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Total" -"High-performance computing",1623.5294 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 00a75a5321..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Total" -"High-performance computing",1825.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 2cfdebe37e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of CPU Nodes: Total" -"High-performance computing",1950.1299 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index 85d93a8491..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of CPU Nodes: Total" -2016-12-22,1200.0000 -2016-12-23,1200.0000 -2016-12-24,1200.0000 -2016-12-25,1200.0000 -2016-12-26,1600.0000 -2016-12-27,2000.0000 -2016-12-28,2000.0000 -2016-12-29,2000.0000 -2016-12-30,2000.0000 -2016-12-31,2000.0000 -2017-01-01,2000.0000 -2017-01-02,2000.0000 -2017-01-03,2000.0000 -2017-01-04,2000.0000 -2017-01-05,2000.0000 -2017-01-06,2000.0000 -2017-01-07,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index 5a8eb44c43..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of CPU Nodes: Total" -2016-12,1040.0000 -2017-01,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index c048df7226..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of CPU Nodes: Total" -"2016 Q4",1040.0000 -"2017 Q1",2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 677f1921f9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_cpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of CPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of CPU Nodes: Total" -2016,1040.0000 -2017,2000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv deleted file mode 100644 index 017ac7621d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Total" -"High-performance computing",705.8824 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv deleted file mode 100644 index 9b4ce85142..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Total" -"High-performance computing",690.1961 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv deleted file mode 100644 index 62aa01a4db..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Total" -"High-performance computing",749.0909 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv deleted file mode 100644 index 95cdc8703f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPU Nodes: Total" -"High-performance computing",785.4545 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv deleted file mode 100644 index f7fe802d21..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of GPU Nodes: Total" -2016-12-22,400.0000 -2016-12-23,400.0000 -2016-12-24,400.0000 -2016-12-25,400.0000 -2016-12-26,800.0000 -2016-12-27,800.0000 -2016-12-28,800.0000 -2016-12-29,800.0000 -2016-12-30,800.0000 -2016-12-31,800.0000 -2017-01-01,800.0000 -2017-01-02,800.0000 -2017-01-03,800.0000 -2017-01-04,800.0000 -2017-01-05,800.0000 -2017-01-06,800.0000 -2017-01-07,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv deleted file mode 100644 index ec83ba2c0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of GPU Nodes: Total" -2016-12,520.0000 -2017-01,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv deleted file mode 100644 index 6a72da52c0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of GPU Nodes: Total" -"2016 Q4",520.0000 -"2017 Q1",800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv deleted file mode 100644 index 436fbfd838..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpu_nodes/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPU Nodes: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of GPU Nodes: Total" -2016,520.0000 -2017,800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv deleted file mode 100644 index 3650432381..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Total (GPU Count)" -"High-performance computing",7058.8235 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv deleted file mode 100644 index 8e2e6361a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Total (GPU Count)" -"High-performance computing",6901.9608 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv deleted file mode 100644 index 971c4adc19..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Total (GPU Count)" -"High-performance computing",7490.9091 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv deleted file mode 100644 index 2d64faa954..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","Average Number of GPUs: Total (GPU Count)" -"High-performance computing",7854.5455 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv deleted file mode 100644 index 8783e6d434..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" -2016-12-22,4000.0000 -2016-12-23,4000.0000 -2016-12-24,4000.0000 -2016-12-25,4000.0000 -2016-12-26,8000.0000 -2016-12-27,8000.0000 -2016-12-28,8000.0000 -2016-12-29,8000.0000 -2016-12-30,8000.0000 -2016-12-31,8000.0000 -2017-01-01,8000.0000 -2017-01-02,8000.0000 -2017-01-03,8000.0000 -2017-01-04,8000.0000 -2017-01-05,8000.0000 -2017-01-06,8000.0000 -2017-01-07,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv deleted file mode 100644 index 28b1b83d6c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" -2016-12,5200.0000 -2017-01,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv deleted file mode 100644 index 46cdc69983..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" -"2016 Q4",5200.0000 -"2017 Q1",8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv deleted file mode 100644 index b483fdbfdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_avg_number_of_gpus/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Average Number of GPUs: Total (GPU Count): by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] Average Number of GPUs: Total (GPU Count)" -2016,5200.0000 -2017,8000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv deleted file mode 100644 index 9b77b53db1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",7296000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv deleted file mode 100644 index 9a109cac66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",19872000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 7563e682a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",48192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv deleted file mode 100644 index 073919dc36..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Hours: Total" -"High-performance computing",180192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv deleted file mode 100644 index fed7ca285d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] CPU Hours: Total" -2016-12-22,288000.0000 -2016-12-23,288000.0000 -2016-12-24,288000.0000 -2016-12-25,288000.0000 -2016-12-26,384000.0000 -2016-12-27,480000.0000 -2016-12-28,480000.0000 -2016-12-29,480000.0000 -2016-12-30,480000.0000 -2016-12-31,480000.0000 -2017-01-01,480000.0000 -2017-01-02,480000.0000 -2017-01-03,480000.0000 -2017-01-04,480000.0000 -2017-01-05,480000.0000 -2017-01-06,480000.0000 -2017-01-07,480000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv deleted file mode 100644 index 568352192d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] CPU Hours: Total" -2016-12,4992000.0000 -2017-01,14880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index b8f046d077..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] CPU Hours: Total" -"2016 Q4",4992000.0000 -"2017 Q1",43200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv deleted file mode 100644 index 5ce7961558..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_core_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] CPU Hours: Total" -2016,4992000.0000 -2017,175200000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index aa506e3bd1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Total" -"High-performance computing",729600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index cc2b3a7097..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Total" -"High-performance computing",1987200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 09c19448be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Total" -"High-performance computing",4819200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 5941214e54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","CPU Node Hours: Total" -"High-performance computing",18019200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index 85c8687476..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] CPU Node Hours: Total" -2016-12-22,28800.0000 -2016-12-23,28800.0000 -2016-12-24,28800.0000 -2016-12-25,28800.0000 -2016-12-26,38400.0000 -2016-12-27,48000.0000 -2016-12-28,48000.0000 -2016-12-29,48000.0000 -2016-12-30,48000.0000 -2016-12-31,48000.0000 -2017-01-01,48000.0000 -2017-01-02,48000.0000 -2017-01-03,48000.0000 -2017-01-04,48000.0000 -2017-01-05,48000.0000 -2017-01-06,48000.0000 -2017-01-07,48000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index 372843edab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] CPU Node Hours: Total" -2016-12,499200.0000 -2017-01,1488000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 1339ba9608..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] CPU Node Hours: Total" -"2016 Q4",499200.0000 -"2017 Q1",4320000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 2615611cfe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_cpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"CPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] CPU Node Hours: Total" -2016,499200.0000 -2017,17520000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv deleted file mode 100644 index e549b73877..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",2880000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv deleted file mode 100644 index 4d610e2a52..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",8448000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 91db1c8552..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",19776000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv deleted file mode 100644 index 29483d595b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Hours: Total" -"High-performance computing",72576000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv deleted file mode 100644 index fec0863e0c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] GPU Hours: Total" -2016-12-22,96000.0000 -2016-12-23,96000.0000 -2016-12-24,96000.0000 -2016-12-25,96000.0000 -2016-12-26,192000.0000 -2016-12-27,192000.0000 -2016-12-28,192000.0000 -2016-12-29,192000.0000 -2016-12-30,192000.0000 -2016-12-31,192000.0000 -2017-01-01,192000.0000 -2017-01-02,192000.0000 -2017-01-03,192000.0000 -2017-01-04,192000.0000 -2017-01-05,192000.0000 -2017-01-06,192000.0000 -2017-01-07,192000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv deleted file mode 100644 index d297e5f740..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] GPU Hours: Total" -2016-12,2496000.0000 -2017-01,5952000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index 3faec50387..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] GPU Hours: Total" -"2016 Q4",2496000.0000 -"2017 Q1",17280000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv deleted file mode 100644 index 74c0d2ee8d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] GPU Hours: Total" -2016,2496000.0000 -2017,70080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv deleted file mode 100644 index 7c275acb43..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Total" -"High-performance computing",288000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv deleted file mode 100644 index 3bf744521e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Total" -"High-performance computing",844800.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv deleted file mode 100644 index 6a67600752..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Total" -"High-performance computing",1977600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv deleted file mode 100644 index 0e5dfd94ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -"Resource Type","GPU Node Hours: Total" -"High-performance computing",7257600.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv deleted file mode 100644 index b6ab58f39e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Day,"[High-performance computing] GPU Node Hours: Total" -2016-12-22,9600.0000 -2016-12-23,9600.0000 -2016-12-24,9600.0000 -2016-12-25,9600.0000 -2016-12-26,19200.0000 -2016-12-27,19200.0000 -2016-12-28,19200.0000 -2016-12-29,19200.0000 -2016-12-30,19200.0000 -2016-12-31,19200.0000 -2017-01-01,19200.0000 -2017-01-02,19200.0000 -2017-01-03,19200.0000 -2017-01-04,19200.0000 -2017-01-05,19200.0000 -2017-01-06,19200.0000 -2017-01-07,19200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv deleted file mode 100644 index c5a930ffc8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Month,"[High-performance computing] GPU Node Hours: Total" -2016-12,249600.0000 -2017-01,595200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv deleted file mode 100644 index ca26c7ba3f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Quarter,"[High-performance computing] GPU Node Hours: Total" -"2016 Q4",249600.0000 -"2017 Q1",1728000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv deleted file mode 100644 index 15f4d84e07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/ResourceSpecifications/resource_type/total_gpu_node_hours/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"GPU Node Hours: Total: by Resource Type" -parameters - -start,end -2016-12-22,2017-01-07 ---------- -Year,"[High-performance computing] GPU Node Hours: Total" -2016,249600.0000 -2017,7008000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index cd77d7bcbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","File Count (Number of files)" -Unknown,221213085.9000 -"Mechanics and Materials",3520651.6000 -Biophysics,2977661.6000 -"Algebra and Number Theory",2149021.2000 -"Organic and Macromolecular Chemistry",1526295.4000 -"Solid-State and Microstructures",915302.0000 -Seismology,321035.9000 -"Galactic Astronomy",223503.7000 -"Systematic and Population Biology",62708.5000 -Geophysics,44052.2000 -"Cell Biology",37273.8000 -"Geology and Paleontology",26641.7000 -"Theoretical Physics",20072.0000 -"Physical Chemistry",15086.8000 -"Structures and Building Systems",6979.0000 -"Solid State Chemistry and Polymers",6965.5000 -Sociology,6529.3000 -"Experimental Systems",5339.0000 -"Volcanology and Mantle Geochemistry",896.0000 -"Statistics and Probability",583.6000 -"Polar Aeronomy and Astrophysics",470.0000 -"Polar Meteorology",334.2000 -"Decision, Risk, and Management Science",81.0000 -"Quantum Electronics, Waves, and Beams",75.5000 -Tectonics,52.3000 -"Fluid, Particulate, and Hydraulic Systems",51.0000 -"Global Atmospheric Research",48.0000 -Economics,43.0000 -"Biochemistry and Molecular Structure and Function",36.0000 -Arts,8.0000 -"Law and Social Sciences",1.0000 -"Metals, Ceramics, and Electronic Materials",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 6fbbf215b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","File Count (Number of files)" -Unknown,221221886.0000 -"Mechanics and Materials",3520651.0000 -Biophysics,2977661.0000 -"Algebra and Number Theory",2149021.0000 -"Organic and Macromolecular Chemistry",1526295.5000 -"Solid-State and Microstructures",915302.0000 -Seismology,321036.0000 -"Galactic Astronomy",223503.5000 -"Systematic and Population Biology",62708.5000 -Geophysics,44053.0000 -"Cell Biology",37274.0000 -"Geology and Paleontology",26641.5000 -"Theoretical Physics",20072.0000 -"Physical Chemistry",15087.0000 -"Structures and Building Systems",6979.0000 -"Solid State Chemistry and Polymers",6965.5000 -Sociology,6529.5000 -"Experimental Systems",5339.0000 -"Volcanology and Mantle Geochemistry",896.0000 -"Statistics and Probability",583.5000 -"Polar Aeronomy and Astrophysics",470.0000 -"Polar Meteorology",334.0000 -"Decision, Risk, and Management Science",81.0000 -"Quantum Electronics, Waves, and Beams",75.5000 -Tectonics,52.5000 -"Fluid, Particulate, and Hydraulic Systems",51.0000 -"Global Atmospheric Research",48.0000 -Economics,43.0000 -"Biochemistry and Molecular Structure and Function",36.0000 -Arts,8.0000 -"Law and Social Sciences",1.0000 -"Metals, Ceramics, and Electronic Materials",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 6fbbf215b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","File Count (Number of files)" -Unknown,221221886.0000 -"Mechanics and Materials",3520651.0000 -Biophysics,2977661.0000 -"Algebra and Number Theory",2149021.0000 -"Organic and Macromolecular Chemistry",1526295.5000 -"Solid-State and Microstructures",915302.0000 -Seismology,321036.0000 -"Galactic Astronomy",223503.5000 -"Systematic and Population Biology",62708.5000 -Geophysics,44053.0000 -"Cell Biology",37274.0000 -"Geology and Paleontology",26641.5000 -"Theoretical Physics",20072.0000 -"Physical Chemistry",15087.0000 -"Structures and Building Systems",6979.0000 -"Solid State Chemistry and Polymers",6965.5000 -Sociology,6529.5000 -"Experimental Systems",5339.0000 -"Volcanology and Mantle Geochemistry",896.0000 -"Statistics and Probability",583.5000 -"Polar Aeronomy and Astrophysics",470.0000 -"Polar Meteorology",334.0000 -"Decision, Risk, and Management Science",81.0000 -"Quantum Electronics, Waves, and Beams",75.5000 -Tectonics,52.5000 -"Fluid, Particulate, and Hydraulic Systems",51.0000 -"Global Atmospheric Research",48.0000 -Economics,43.0000 -"Biochemistry and Molecular Structure and Function",36.0000 -Arts,8.0000 -"Law and Social Sciences",1.0000 -"Metals, Ceramics, and Electronic Materials",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 6fbbf215b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","File Count (Number of files)" -Unknown,221221886.0000 -"Mechanics and Materials",3520651.0000 -Biophysics,2977661.0000 -"Algebra and Number Theory",2149021.0000 -"Organic and Macromolecular Chemistry",1526295.5000 -"Solid-State and Microstructures",915302.0000 -Seismology,321036.0000 -"Galactic Astronomy",223503.5000 -"Systematic and Population Biology",62708.5000 -Geophysics,44053.0000 -"Cell Biology",37274.0000 -"Geology and Paleontology",26641.5000 -"Theoretical Physics",20072.0000 -"Physical Chemistry",15087.0000 -"Structures and Building Systems",6979.0000 -"Solid State Chemistry and Polymers",6965.5000 -Sociology,6529.5000 -"Experimental Systems",5339.0000 -"Volcanology and Mantle Geochemistry",896.0000 -"Statistics and Probability",583.5000 -"Polar Aeronomy and Astrophysics",470.0000 -"Polar Meteorology",334.0000 -"Decision, Risk, and Management Science",81.0000 -"Quantum Electronics, Waves, and Beams",75.5000 -Tectonics,52.5000 -"Fluid, Particulate, and Hydraulic Systems",51.0000 -"Global Atmospheric Research",48.0000 -Economics,43.0000 -"Biochemistry and Molecular Structure and Function",36.0000 -Arts,8.0000 -"Law and Social Sciences",1.0000 -"Metals, Ceramics, and Electronic Materials",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 6c44c14dba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" -2018-12-27,219505360,2933536,3012988,2147160,1513246,929384,321035,227914,62606,15705,37282,19294,20072,15126,6979,6975,6973,5339,896,600,470,270,81,77,55,51,48,43,36,8,1,1 -2018-12-28,220199493,2933773,3013062,2146330,1513519,942423,321035,253961,62604,123243,37279,28732,20072,15150,6979,6975,6971,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 -2018-12-29,220909652,3265079,3013110,2146330,1530321,942502,321035,221585,62690,39429,37279,31393,20072,15134,6979,6975,6974,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 -2018-12-30,220869065,3500581,3013153,2146330,1530320,913045,321035,252098,62719,57256,37279,31393,20072,15134,6979,6975,6974,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 -2018-12-31,220996200,3777518,2988859,2146330,1530282,913024,321035,245325,62713,68497,37272,29359,20072,15134,6979,6975,6923,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 -2019-01-01,221233693,3784793,2947443,2151475,1530282,900004,321035,232953,62732,70541,37274,28386,20072,15038,6979,6956,5845,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 -2019-01-02,221578786,3786969,2947498,2151475,1529662,899701,321038,202989,62739,17507,37267,25614,20072,15038,6979,6956,5943,5339,896,600,470,328,81,77,52,51,48,43,36,8,1,1 -2019-01-03,221982330,3664040,2945748,2151594,1528702,899847,321037,199890,62743,13829,37267,24429,20072,15038,6979,6956,6230,5339,896,396,470,328,81,72,52,51,48,43,36,8,1,1 -2019-01-04,222401952,3739730,2947361,2151594,1528310,911605,321037,197097,62736,16138,37270,24311,20072,15038,6979,6956,6230,5339,896,658,470,328,81,72,52,51,48,43,36,8,1,1 -2019-01-05,222454328,3820497,2947394,2151594,1528310,901485,321037,201225,62803,18377,37269,23506,20072,15038,6979,6956,6230,5339,896,582,470,448,81,72,52,51,48,43,36,8,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index 7bda39e5f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" -2018-12,220513553,3282097,3008234,2146496,1523538,928075,321035,240177,62666,60826,37279,28034,20072,15136,6979,6975,6963,5339,896,600,470,316,81,77,53,51,48,43,36,8,1,1 -2019-01,221930219,3759205,2947088,2151546,1529053,902529,321037,206830,62751,27280,37269,25249,20072,15038,6979,6956,6096,5339,896,567,470,352,81,74,52,51,48,43,36,8,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 8c0e408937..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" -"2018 Q4",220513553,3282097,3008234,2146496,1523538,928075,321035,240177,62666,60826,37279,28034,20072,15136,6979,6975,6963,5339,896,600,470,316,81,77,53,51,48,43,36,8,1,1 -"2019 Q1",221930219,3759205,2947088,2151546,1529053,902529,321037,206830,62751,27280,37269,25249,20072,15038,6979,6956,6096,5339,896,567,470,352,81,74,52,51,48,43,36,8,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 14c692c434..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] File Count (Number of files)","[Mechanics and Materials] File Count (Number of files)","[Biophysics] File Count (Number of files)","[Algebra and Number Theory] File Count (Number of files)","[Organic and Macromolecular Chemistry] File Count (Number of files)","[Solid-State and Microstructures] File Count (Number of files)","[Seismology] File Count (Number of files)","[Galactic Astronomy] File Count (Number of files)","[Systematic and Population Biology] File Count (Number of files)","[Geophysics] File Count (Number of files)","[Cell Biology] File Count (Number of files)","[Geology and Paleontology] File Count (Number of files)","[Theoretical Physics] File Count (Number of files)","[Physical Chemistry] File Count (Number of files)","[Structures and Building Systems] File Count (Number of files)","[Solid State Chemistry and Polymers] File Count (Number of files)","[Sociology] File Count (Number of files)","[Experimental Systems] File Count (Number of files)","[Volcanology and Mantle Geochemistry] File Count (Number of files)","[Statistics and Probability] File Count (Number of files)","[Polar Aeronomy and Astrophysics] File Count (Number of files)","[Polar Meteorology] File Count (Number of files)","[Decision, Risk, and Management Science] File Count (Number of files)","[Quantum Electronics, Waves, and Beams] File Count (Number of files)","[Tectonics] File Count (Number of files)","[Fluid, Particulate, and Hydraulic Systems] File Count (Number of files)","[Global Atmospheric Research] File Count (Number of files)","[Economics] File Count (Number of files)","[Biochemistry and Molecular Structure and Function] File Count (Number of files)","[Arts] File Count (Number of files)","[Law and Social Sciences] File Count (Number of files)","[Metals, Ceramics, and Electronic Materials] File Count (Number of files)" -2018,220513553,3282097,3008234,2146496,1523538,928075,321035,240177,62666,60826,37279,28034,20072,15136,6979,6975,6963,5339,896,600,470,316,81,77,53,51,48,43,36,8,1,1 -2019,221930219,3759205,2947088,2151546,1529053,902529,321037,206830,62751,27280,37269,25249,20072,15038,6979,6956,6096,5339,896,567,470,352,81,74,52,51,48,43,36,8,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 7ab9b57d82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Cell Biology",220015017984000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10005000192000.0000 -"Organic and Macromolecular Chemistry",10005000192000.0000 -Seismology,10005000192000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 7ab9b57d82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Cell Biology",220015017984000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10005000192000.0000 -"Organic and Macromolecular Chemistry",10005000192000.0000 -Seismology,10005000192000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 7ab9b57d82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Cell Biology",220015017984000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10005000192000.0000 -"Organic and Macromolecular Chemistry",10005000192000.0000 -Seismology,10005000192000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 7ab9b57d82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Cell Biology",220015017984000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10005000192000.0000 -"Organic and Macromolecular Chemistry",10005000192000.0000 -Seismology,10005000192000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index af8ac5988c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" -2018-12-27,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 32ce1a5cf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" -2018-12,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index b792807831..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" -"2018 Q4",1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 469ac8e519..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Quota: Hard Threshold (Bytes)","[Cell Biology] Quota: Hard Threshold (Bytes)","[Biophysics] Quota: Hard Threshold (Bytes)","[Solid-State and Microstructures] Quota: Hard Threshold (Bytes)","[Algebra and Number Theory] Quota: Hard Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Hard Threshold (Bytes)","[Seismology] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Hard Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Hard Threshold (Bytes)","[Economics] Quota: Hard Threshold (Bytes)","[Experimental Systems] Quota: Hard Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Hard Threshold (Bytes)","[Galactic Astronomy] Quota: Hard Threshold (Bytes)","[Geology and Paleontology] Quota: Hard Threshold (Bytes)","[Geophysics] Quota: Hard Threshold (Bytes)","[Global Atmospheric Research] Quota: Hard Threshold (Bytes)","[Law and Social Sciences] Quota: Hard Threshold (Bytes)","[Mechanics and Materials] Quota: Hard Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Hard Threshold (Bytes)","[Physical Chemistry] Quota: Hard Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Hard Threshold (Bytes)","[Polar Meteorology] Quota: Hard Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Hard Threshold (Bytes)","[Sociology] Quota: Hard Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Hard Threshold (Bytes)","[Statistics and Probability] Quota: Hard Threshold (Bytes)","[Structures and Building Systems] Quota: Hard Threshold (Bytes)","[Systematic and Population Biology] Quota: Hard Threshold (Bytes)","[Tectonics] Quota: Hard Threshold (Bytes)","[Theoretical Physics] Quota: Hard Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Hard Threshold (Bytes)" -2018,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,1042015019008000,220015017984000,30000001024000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 1ab53c24f0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Logical Usage (Bytes)" -Unknown,533918117529600.0000 -Biophysics,157675908224000.0000 -Seismology,50376874368000.0000 -"Mechanics and Materials",14837865497600.0000 -"Galactic Astronomy",10697016486400.0000 -"Algebra and Number Theory",8972348544000.0000 -"Organic and Macromolecular Chemistry",8639812684800.0000 -"Cell Biology",1507261952000.0000 -Geophysics,1340020812800.0000 -"Geology and Paleontology",1336851827200.0000 -"Solid-State and Microstructures",635384230400.0000 -"Physical Chemistry",143814592000.0000 -"Polar Meteorology",129129152000.0000 -"Systematic and Population Biology",91059212800.0000 -"Statistics and Probability",6953753600.0000 -Tectonics,3000576000.0000 -Sociology,2518976000.0000 -"Quantum Electronics, Waves, and Beams",1986227200.0000 -"Solid State Chemistry and Polymers",821760000.0000 -"Biochemistry and Molecular Structure and Function",178432000.0000 -"Theoretical Physics",8576000.0000 -"Decision, Risk, and Management Science",6272000.0000 -"Structures and Building Systems",2176000.0000 -"Volcanology and Mantle Geochemistry",1920000.0000 -Economics,896000.0000 -Arts,128000.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 7df7dfb39a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Logical Usage (Bytes)" -Unknown,533920377053866.5000 -Biophysics,157675908224000.0000 -Seismology,50376874368000.0000 -"Mechanics and Materials",14837865497600.0000 -"Galactic Astronomy",10697016486400.0000 -"Algebra and Number Theory",8972348544000.0000 -"Organic and Macromolecular Chemistry",8639812684800.0000 -"Cell Biology",1507261952000.0000 -Geophysics,1340020864000.0000 -"Geology and Paleontology",1336851827200.0000 -"Solid-State and Microstructures",635384230400.0000 -"Physical Chemistry",143814592000.0000 -"Polar Meteorology",129129152000.0000 -"Systematic and Population Biology",91059212800.0000 -"Statistics and Probability",6953753600.0000 -Tectonics,3000576000.0000 -Sociology,2518976000.0000 -"Quantum Electronics, Waves, and Beams",1986227200.0000 -"Solid State Chemistry and Polymers",821760000.0000 -"Biochemistry and Molecular Structure and Function",178432000.0000 -"Theoretical Physics",8576000.0000 -"Decision, Risk, and Management Science",6272000.0000 -"Structures and Building Systems",2176000.0000 -"Volcanology and Mantle Geochemistry",1920000.0000 -Economics,896000.0000 -Arts,128000.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 7df7dfb39a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Logical Usage (Bytes)" -Unknown,533920377053866.5000 -Biophysics,157675908224000.0000 -Seismology,50376874368000.0000 -"Mechanics and Materials",14837865497600.0000 -"Galactic Astronomy",10697016486400.0000 -"Algebra and Number Theory",8972348544000.0000 -"Organic and Macromolecular Chemistry",8639812684800.0000 -"Cell Biology",1507261952000.0000 -Geophysics,1340020864000.0000 -"Geology and Paleontology",1336851827200.0000 -"Solid-State and Microstructures",635384230400.0000 -"Physical Chemistry",143814592000.0000 -"Polar Meteorology",129129152000.0000 -"Systematic and Population Biology",91059212800.0000 -"Statistics and Probability",6953753600.0000 -Tectonics,3000576000.0000 -Sociology,2518976000.0000 -"Quantum Electronics, Waves, and Beams",1986227200.0000 -"Solid State Chemistry and Polymers",821760000.0000 -"Biochemistry and Molecular Structure and Function",178432000.0000 -"Theoretical Physics",8576000.0000 -"Decision, Risk, and Management Science",6272000.0000 -"Structures and Building Systems",2176000.0000 -"Volcanology and Mantle Geochemistry",1920000.0000 -Economics,896000.0000 -Arts,128000.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 7df7dfb39a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Logical Usage (Bytes)" -Unknown,533920377053866.5000 -Biophysics,157675908224000.0000 -Seismology,50376874368000.0000 -"Mechanics and Materials",14837865497600.0000 -"Galactic Astronomy",10697016486400.0000 -"Algebra and Number Theory",8972348544000.0000 -"Organic and Macromolecular Chemistry",8639812684800.0000 -"Cell Biology",1507261952000.0000 -Geophysics,1340020864000.0000 -"Geology and Paleontology",1336851827200.0000 -"Solid-State and Microstructures",635384230400.0000 -"Physical Chemistry",143814592000.0000 -"Polar Meteorology",129129152000.0000 -"Systematic and Population Biology",91059212800.0000 -"Statistics and Probability",6953753600.0000 -Tectonics,3000576000.0000 -Sociology,2518976000.0000 -"Quantum Electronics, Waves, and Beams",1986227200.0000 -"Solid State Chemistry and Polymers",821760000.0000 -"Biochemistry and Molecular Structure and Function",178432000.0000 -"Theoretical Physics",8576000.0000 -"Decision, Risk, and Management Science",6272000.0000 -"Structures and Building Systems",2176000.0000 -"Volcanology and Mantle Geochemistry",1920000.0000 -Economics,896000.0000 -Arts,128000.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 85e0d38934..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" -2018-12-27,524570273664000,167719861120000,50376874368000,15153054208000,14713539456000,8965095552000,8641234944000,1507901184000,339780224000,1304879616000,632371200000,173944704000,129027072000,87247488000,6572160000,3000576000,2500864000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2018-12-28,531035237504000,167789414016000,50376874368000,15153504768000,12472681088000,8966348544000,8641716736000,1507249024000,2218578560000,1522301312000,635075712000,177120768000,129104640000,87256320000,6572160000,3000576000,2500864000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2018-12-29,532739234688000,167857545344000,50376874368000,15161905024000,12238492160000,8966348544000,8644306560000,1507249280000,1754258944000,1715639680000,637568128000,178164736000,129104640000,91802240000,6572160000,3000576000,2501504000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2018-12-30,536250099456000,167913174144000,50376874368000,15166902528000,12078699776000,8966348544000,8644697600000,1507249536000,2039249152000,1715639680000,640210176000,178164736000,129104640000,91831296000,6572160000,3000576000,2501504000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2018-12-31,539090300288000,156896478080000,50376874368000,15172477696000,17173988480000,8966340608000,8644679808000,1507249792000,2326958080000,1655432960000,640387712000,178164736000,129104640000,91836928000,6572160000,3000576000,2490624000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019-01-01,538444631936000,152464707968000,50376874368000,15171164032000,14641606016000,8977937792000,8644679808000,1507249920000,2510009088000,1579033984000,638805248000,110517248000,129104640000,91868672000,6572160000,3000576000,2467328000,1986688000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019-01-02,535212295680000,152523825536000,50376874368000,15156379904000,8085082240000,8977937792000,8635160192000,1507117312000,641892992000,1081856128000,647182336000,110517248000,129104640000,91883648000,6572160000,3000576000,2399232000,1986688000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019-01-03,534387396736000,147763957376000,50376874368000,14191799040000,7385004544000,8979042688000,8634912256000,1507117568000,454935936000,940511616000,641761920000,110517248000,129104640000,91886720000,5099008000,3000576000,2609280000,1985152000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019-01-04,534486134016000,147868405376000,50376874368000,14026529408000,5711420288000,8979042688000,8633369472000,1507117824000,519761152000,937147392000,651415936000,110517248000,129104640000,91868800000,9945728000,3000576000,2609280000,1985152000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019-01-05,532965571328000,147961713280000,50376874368000,14024938368000,2469650816000,8979042688000,8633369472000,1507118080000,594784000000,916075904000,589063936000,110517248000,129427328000,93110016000,8487680000,3000576000,2609280000,1985152000,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index b59200db67..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" -2018-12,532741548168533,165635294540800,50376874368000,15161568844800,13735480192000,8966096358400,8643327129600,1507379763200,1735764992000,1582778649600,637122585600,177111936000,129089126400,89994854400,6572160000,3000576000,2499072000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019-01,535099205939200,149716521907200,50376874368000,14514162150400,7658552780800,8978600729600,8636298240000,1507144140800,944276736000,1090925004800,633645875200,110517248000,129169177600,92123571200,7335347200,3000576000,2538880000,1985766400,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 42d44bc82d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" -"2018 Q4",532741548168533,165635294540800,50376874368000,15161568844800,13735480192000,8966096358400,8643327129600,1507379763200,1735764992000,1582778649600,637122585600,177111936000,129089126400,89994854400,6572160000,3000576000,2499072000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -"2019 Q1",535099205939200,149716521907200,50376874368000,14514162150400,7658552780800,8978600729600,8636298240000,1507144140800,944276736000,1090925004800,633645875200,110517248000,129169177600,92123571200,7335347200,3000576000,2538880000,1985766400,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 0f8a77dbf5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Logical Usage (Bytes)","[Biophysics] Logical Usage (Bytes)","[Seismology] Logical Usage (Bytes)","[Mechanics and Materials] Logical Usage (Bytes)","[Galactic Astronomy] Logical Usage (Bytes)","[Algebra and Number Theory] Logical Usage (Bytes)","[Organic and Macromolecular Chemistry] Logical Usage (Bytes)","[Cell Biology] Logical Usage (Bytes)","[Geophysics] Logical Usage (Bytes)","[Geology and Paleontology] Logical Usage (Bytes)","[Solid-State and Microstructures] Logical Usage (Bytes)","[Physical Chemistry] Logical Usage (Bytes)","[Polar Meteorology] Logical Usage (Bytes)","[Systematic and Population Biology] Logical Usage (Bytes)","[Statistics and Probability] Logical Usage (Bytes)","[Tectonics] Logical Usage (Bytes)","[Sociology] Logical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Logical Usage (Bytes)","[Solid State Chemistry and Polymers] Logical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Logical Usage (Bytes)","[Theoretical Physics] Logical Usage (Bytes)","[Decision, Risk, and Management Science] Logical Usage (Bytes)","[Structures and Building Systems] Logical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Logical Usage (Bytes)","[Economics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Experimental Systems] Logical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Logical Usage (Bytes)","[Global Atmospheric Research] Logical Usage (Bytes)","[Law and Social Sciences] Logical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Logical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Logical Usage (Bytes)" -2018,532741548168533,165635294540800,50376874368000,15161568844800,13735480192000,8966096358400,8643327129600,1507379763200,1735764992000,1582778649600,637122585600,177111936000,129089126400,89994854400,6572160000,3000576000,2499072000,1986688000,1642112000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 -2019,535099205939200,149716521907200,50376874368000,14514162150400,7658552780800,8978600729600,8636298240000,1507144140800,944276736000,1090925004800,633645875200,110517248000,129169177600,92123571200,7335347200,3000576000,2538880000,1985766400,1408000,178432000,8576000,6272000,2176000,1920000,896000,128000,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 0b1b22b427..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota Utilization: Logical (%)" -Biophysics,525.5863 -Seismology,503.7686 -"Algebra and Number Theory",89.7235 -"Organic and Macromolecular Chemistry",86.3981 -Unknown,68.3634 -"Solid-State and Microstructures",2.5415 -"Cell Biology",1.2994 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index c304f7cb2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota Utilization: Logical (%)" -Biophysics,525.5863 -Seismology,503.7686 -"Algebra and Number Theory",89.7235 -"Organic and Macromolecular Chemistry",86.3981 -Unknown,68.3637 -"Solid-State and Microstructures",2.5415 -"Cell Biology",1.2994 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index c304f7cb2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota Utilization: Logical (%)" -Biophysics,525.5863 -Seismology,503.7686 -"Algebra and Number Theory",89.7235 -"Organic and Macromolecular Chemistry",86.3981 -Unknown,68.3637 -"Solid-State and Microstructures",2.5415 -"Cell Biology",1.2994 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index c304f7cb2a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota Utilization: Logical (%)" -Biophysics,525.5863 -Seismology,503.7686 -"Algebra and Number Theory",89.7235 -"Organic and Macromolecular Chemistry",86.3981 -Unknown,68.3637 -"Solid-State and Microstructures",2.5415 -"Cell Biology",1.2994 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 8899cc5be7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" -2018-12-27,559.0662,503.7686,89.6509,86.4123,67.1665,2.5295,1.2999,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,559.2980,503.7686,89.6635,86.4171,67.9943,2.5403,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,559.5251,503.7686,89.6635,86.4430,68.2124,2.5503,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,559.7106,503.7686,89.6635,86.4469,68.6620,2.5608,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,522.9882,503.7686,89.6634,86.4468,69.0256,2.5616,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,508.2157,503.7686,89.7794,86.4468,68.9430,2.5552,1.2994,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,508.4127,503.7686,89.7794,86.3516,68.5291,2.5887,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,492.5465,503.7686,89.7904,86.3491,68.4235,2.5670,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,492.8947,503.7686,89.7904,86.3337,68.4361,2.6057,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,493.2057,503.7686,89.7904,86.3337,68.2414,2.3563,1.2992,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 5c507bdcce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" -2018-12,552.1176,503.7686,89.6609,86.4332,68.2127,2.5485,1.2995,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,499.0551,503.7686,89.7860,86.3630,68.5146,2.5346,1.2993,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index fca9b545a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" -"2018 Q4",552.1176,503.7686,89.6609,86.4332,68.2127,2.5485,1.2995,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",499.0551,503.7686,89.7860,86.3630,68.5146,2.5346,1.2993,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 2c6d5e4c38..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Biophysics] Quota Utilization: Logical (%)","[Seismology] Quota Utilization: Logical (%)","[Algebra and Number Theory] Quota Utilization: Logical (%)","[Organic and Macromolecular Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Solid-State and Microstructures] Quota Utilization: Logical (%)","[Cell Biology] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Biochemistry and Molecular Structure and Function] Quota Utilization: Logical (%)","[Decision, Risk, and Management Science] Quota Utilization: Logical (%)","[Economics] Quota Utilization: Logical (%)","[Experimental Systems] Quota Utilization: Logical (%)","[Fluid, Particulate, and Hydraulic Systems] Quota Utilization: Logical (%)","[Galactic Astronomy] Quota Utilization: Logical (%)","[Geology and Paleontology] Quota Utilization: Logical (%)","[Geophysics] Quota Utilization: Logical (%)","[Global Atmospheric Research] Quota Utilization: Logical (%)","[Law and Social Sciences] Quota Utilization: Logical (%)","[Mechanics and Materials] Quota Utilization: Logical (%)","[Metals, Ceramics, and Electronic Materials] Quota Utilization: Logical (%)","[Physical Chemistry] Quota Utilization: Logical (%)","[Polar Aeronomy and Astrophysics] Quota Utilization: Logical (%)","[Polar Meteorology] Quota Utilization: Logical (%)","[Quantum Electronics, Waves, and Beams] Quota Utilization: Logical (%)","[Sociology] Quota Utilization: Logical (%)","[Solid State Chemistry and Polymers] Quota Utilization: Logical (%)","[Statistics and Probability] Quota Utilization: Logical (%)","[Structures and Building Systems] Quota Utilization: Logical (%)","[Systematic and Population Biology] Quota Utilization: Logical (%)","[Tectonics] Quota Utilization: Logical (%)","[Theoretical Physics] Quota Utilization: Logical (%)","[Volcanology and Mantle Geochemistry] Quota Utilization: Logical (%)" -2018,552.1176,503.7686,89.6609,86.4332,68.2127,2.5485,1.2995,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,499.0551,503.7686,89.7860,86.3630,68.5146,2.5346,1.2993,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 02546e0a3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Physical Usage (Bytes)" -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -Biophysics,0.0000 -"Cell Biology",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -Unknown,0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 02546e0a3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Physical Usage (Bytes)" -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -Biophysics,0.0000 -"Cell Biology",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -Unknown,0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 02546e0a3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Physical Usage (Bytes)" -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -Biophysics,0.0000 -"Cell Biology",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -Unknown,0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 02546e0a3b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Physical Usage (Bytes)" -"Algebra and Number Theory",0.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -Biophysics,0.0000 -"Cell Biology",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Organic and Macromolecular Chemistry",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Seismology,0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Solid-State and Microstructures",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -Unknown,0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 0915c04d22..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 6dcc52fe5d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 270fb8356b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 69838f0226..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Algebra and Number Theory] Physical Usage (Bytes)","[Arts] Physical Usage (Bytes)","[Biochemistry and Molecular Structure and Function] Physical Usage (Bytes)","[Biophysics] Physical Usage (Bytes)","[Cell Biology] Physical Usage (Bytes)","[Decision, Risk, and Management Science] Physical Usage (Bytes)","[Economics] Physical Usage (Bytes)","[Experimental Systems] Physical Usage (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Physical Usage (Bytes)","[Galactic Astronomy] Physical Usage (Bytes)","[Geology and Paleontology] Physical Usage (Bytes)","[Geophysics] Physical Usage (Bytes)","[Global Atmospheric Research] Physical Usage (Bytes)","[Law and Social Sciences] Physical Usage (Bytes)","[Mechanics and Materials] Physical Usage (Bytes)","[Metals, Ceramics, and Electronic Materials] Physical Usage (Bytes)","[Organic and Macromolecular Chemistry] Physical Usage (Bytes)","[Physical Chemistry] Physical Usage (Bytes)","[Polar Aeronomy and Astrophysics] Physical Usage (Bytes)","[Polar Meteorology] Physical Usage (Bytes)","[Quantum Electronics, Waves, and Beams] Physical Usage (Bytes)","[Seismology] Physical Usage (Bytes)","[Sociology] Physical Usage (Bytes)","[Solid State Chemistry and Polymers] Physical Usage (Bytes)","[Solid-State and Microstructures] Physical Usage (Bytes)","[Statistics and Probability] Physical Usage (Bytes)","[Structures and Building Systems] Physical Usage (Bytes)","[Systematic and Population Biology] Physical Usage (Bytes)","[Tectonics] Physical Usage (Bytes)","[Theoretical Physics] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)","[Volcanology and Mantle Geochemistry] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index c5000957dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Cell Biology",116000014336000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10000003072000.0000 -"Organic and Macromolecular Chemistry",10000003072000.0000 -Seismology,10000003072000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index c5000957dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Cell Biology",116000014336000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10000003072000.0000 -"Organic and Macromolecular Chemistry",10000003072000.0000 -Seismology,10000003072000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index c5000957dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Cell Biology",116000014336000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10000003072000.0000 -"Organic and Macromolecular Chemistry",10000003072000.0000 -Seismology,10000003072000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index c5000957dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Cell Biology",116000014336000.0000 -Biophysics,30000001024000.0000 -"Solid-State and Microstructures",25000001536000.0000 -"Algebra and Number Theory",10000003072000.0000 -"Organic and Macromolecular Chemistry",10000003072000.0000 -Seismology,10000003072000.0000 -Arts,0.0000 -"Biochemistry and Molecular Structure and Function",0.0000 -"Decision, Risk, and Management Science",0.0000 -Economics,0.0000 -"Experimental Systems",0.0000 -"Fluid, Particulate, and Hydraulic Systems",0.0000 -"Galactic Astronomy",0.0000 -"Geology and Paleontology",0.0000 -Geophysics,0.0000 -"Global Atmospheric Research",0.0000 -"Law and Social Sciences",0.0000 -"Mechanics and Materials",0.0000 -"Metals, Ceramics, and Electronic Materials",0.0000 -"Physical Chemistry",0.0000 -"Polar Aeronomy and Astrophysics",0.0000 -"Polar Meteorology",0.0000 -"Quantum Electronics, Waves, and Beams",0.0000 -Sociology,0.0000 -"Solid State Chemistry and Polymers",0.0000 -"Statistics and Probability",0.0000 -"Structures and Building Systems",0.0000 -"Systematic and Population Biology",0.0000 -Tectonics,0.0000 -"Theoretical Physics",0.0000 -"Volcanology and Mantle Geochemistry",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index adc9c15cf8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" -2018-12-27,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 7757855164..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" -2018-12,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index afa6bb9b1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" -"2018 Q4",781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 0625a536c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Quota: Soft Threshold (Bytes)","[Cell Biology] Quota: Soft Threshold (Bytes)","[Biophysics] Quota: Soft Threshold (Bytes)","[Solid-State and Microstructures] Quota: Soft Threshold (Bytes)","[Algebra and Number Theory] Quota: Soft Threshold (Bytes)","[Organic and Macromolecular Chemistry] Quota: Soft Threshold (Bytes)","[Seismology] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Biochemistry and Molecular Structure and Function] Quota: Soft Threshold (Bytes)","[Decision, Risk, and Management Science] Quota: Soft Threshold (Bytes)","[Economics] Quota: Soft Threshold (Bytes)","[Experimental Systems] Quota: Soft Threshold (Bytes)","[Fluid, Particulate, and Hydraulic Systems] Quota: Soft Threshold (Bytes)","[Galactic Astronomy] Quota: Soft Threshold (Bytes)","[Geology and Paleontology] Quota: Soft Threshold (Bytes)","[Geophysics] Quota: Soft Threshold (Bytes)","[Global Atmospheric Research] Quota: Soft Threshold (Bytes)","[Law and Social Sciences] Quota: Soft Threshold (Bytes)","[Mechanics and Materials] Quota: Soft Threshold (Bytes)","[Metals, Ceramics, and Electronic Materials] Quota: Soft Threshold (Bytes)","[Physical Chemistry] Quota: Soft Threshold (Bytes)","[Polar Aeronomy and Astrophysics] Quota: Soft Threshold (Bytes)","[Polar Meteorology] Quota: Soft Threshold (Bytes)","[Quantum Electronics, Waves, and Beams] Quota: Soft Threshold (Bytes)","[Sociology] Quota: Soft Threshold (Bytes)","[Solid State Chemistry and Polymers] Quota: Soft Threshold (Bytes)","[Statistics and Probability] Quota: Soft Threshold (Bytes)","[Structures and Building Systems] Quota: Soft Threshold (Bytes)","[Systematic and Population Biology] Quota: Soft Threshold (Bytes)","[Tectonics] Quota: Soft Threshold (Bytes)","[Theoretical Physics] Quota: Soft Threshold (Bytes)","[Volcanology and Mantle Geochemistry] Quota: Soft Threshold (Bytes)" -2018,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,781000019968000,116000014336000,30000001024000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv deleted file mode 100644 index 36d9a7293d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","User Count (Number of Users)" -Unknown,188 -"Mechanics and Materials",20 -"Cell Biology",15 -"Galactic Astronomy",15 -"Solid-State and Microstructures",12 -"Geology and Paleontology",10 -"Physical Chemistry",10 -Sociology,9 -"Organic and Macromolecular Chemistry",8 -Geophysics,6 -"Biochemistry and Molecular Structure and Function",5 -Biophysics,4 -"Experimental Systems",4 -"Decision, Risk, and Management Science",3 -"Polar Meteorology",3 -"Quantum Electronics, Waves, and Beams",3 -"Statistics and Probability",3 -"Theoretical Physics",3 -"Algebra and Number Theory",2 -Arts,2 -Economics,2 -"Fluid, Particulate, and Hydraulic Systems",2 -"Polar Aeronomy and Astrophysics",2 -Seismology,2 -"Solid State Chemistry and Polymers",2 -"Structures and Building Systems",2 -Tectonics,2 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Systematic and Population Biology",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv deleted file mode 100644 index 36d9a7293d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","User Count (Number of Users)" -Unknown,188 -"Mechanics and Materials",20 -"Cell Biology",15 -"Galactic Astronomy",15 -"Solid-State and Microstructures",12 -"Geology and Paleontology",10 -"Physical Chemistry",10 -Sociology,9 -"Organic and Macromolecular Chemistry",8 -Geophysics,6 -"Biochemistry and Molecular Structure and Function",5 -Biophysics,4 -"Experimental Systems",4 -"Decision, Risk, and Management Science",3 -"Polar Meteorology",3 -"Quantum Electronics, Waves, and Beams",3 -"Statistics and Probability",3 -"Theoretical Physics",3 -"Algebra and Number Theory",2 -Arts,2 -Economics,2 -"Fluid, Particulate, and Hydraulic Systems",2 -"Polar Aeronomy and Astrophysics",2 -Seismology,2 -"Solid State Chemistry and Polymers",2 -"Structures and Building Systems",2 -Tectonics,2 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Systematic and Population Biology",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 36d9a7293d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","User Count (Number of Users)" -Unknown,188 -"Mechanics and Materials",20 -"Cell Biology",15 -"Galactic Astronomy",15 -"Solid-State and Microstructures",12 -"Geology and Paleontology",10 -"Physical Chemistry",10 -Sociology,9 -"Organic and Macromolecular Chemistry",8 -Geophysics,6 -"Biochemistry and Molecular Structure and Function",5 -Biophysics,4 -"Experimental Systems",4 -"Decision, Risk, and Management Science",3 -"Polar Meteorology",3 -"Quantum Electronics, Waves, and Beams",3 -"Statistics and Probability",3 -"Theoretical Physics",3 -"Algebra and Number Theory",2 -Arts,2 -Economics,2 -"Fluid, Particulate, and Hydraulic Systems",2 -"Polar Aeronomy and Astrophysics",2 -Seismology,2 -"Solid State Chemistry and Polymers",2 -"Structures and Building Systems",2 -Tectonics,2 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Systematic and Population Biology",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv deleted file mode 100644 index 36d9a7293d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,41 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"PI Group","User Count (Number of Users)" -Unknown,188 -"Mechanics and Materials",20 -"Cell Biology",15 -"Galactic Astronomy",15 -"Solid-State and Microstructures",12 -"Geology and Paleontology",10 -"Physical Chemistry",10 -Sociology,9 -"Organic and Macromolecular Chemistry",8 -Geophysics,6 -"Biochemistry and Molecular Structure and Function",5 -Biophysics,4 -"Experimental Systems",4 -"Decision, Risk, and Management Science",3 -"Polar Meteorology",3 -"Quantum Electronics, Waves, and Beams",3 -"Statistics and Probability",3 -"Theoretical Physics",3 -"Algebra and Number Theory",2 -Arts,2 -Economics,2 -"Fluid, Particulate, and Hydraulic Systems",2 -"Polar Aeronomy and Astrophysics",2 -Seismology,2 -"Solid State Chemistry and Polymers",2 -"Structures and Building Systems",2 -Tectonics,2 -"Global Atmospheric Research",1 -"Law and Social Sciences",1 -"Metals, Ceramics, and Electronic Materials",1 -"Systematic and Population Biology",1 -"Volcanology and Mantle Geochemistry",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 051d97fe2f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" -2018-12-27,187,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2018-12-28,187,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2018-12-29,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2018-12-30,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2018-12-31,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019-01-01,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019-01-02,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019-01-03,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019-01-04,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019-01-05,188,20,15,15,12,10,10,9,8,5,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv deleted file mode 100644 index c923c3c005..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" -2018-12,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019-01,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 25e96060d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" -"2018 Q4",188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -"2019 Q1",188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv deleted file mode 100644 index a096d01ad4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/fieldofscience/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by PI Group" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] User Count (Number of Users)","[Mechanics and Materials] User Count (Number of Users)","[Cell Biology] User Count (Number of Users)","[Galactic Astronomy] User Count (Number of Users)","[Solid-State and Microstructures] User Count (Number of Users)","[Geology and Paleontology] User Count (Number of Users)","[Physical Chemistry] User Count (Number of Users)","[Sociology] User Count (Number of Users)","[Organic and Macromolecular Chemistry] User Count (Number of Users)","[Geophysics] User Count (Number of Users)","[Biochemistry and Molecular Structure and Function] User Count (Number of Users)","[Biophysics] User Count (Number of Users)","[Experimental Systems] User Count (Number of Users)","[Decision, Risk, and Management Science] User Count (Number of Users)","[Polar Meteorology] User Count (Number of Users)","[Quantum Electronics, Waves, and Beams] User Count (Number of Users)","[Statistics and Probability] User Count (Number of Users)","[Theoretical Physics] User Count (Number of Users)","[Algebra and Number Theory] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Economics] User Count (Number of Users)","[Fluid, Particulate, and Hydraulic Systems] User Count (Number of Users)","[Polar Aeronomy and Astrophysics] User Count (Number of Users)","[Seismology] User Count (Number of Users)","[Solid State Chemistry and Polymers] User Count (Number of Users)","[Structures and Building Systems] User Count (Number of Users)","[Tectonics] User Count (Number of Users)","[Global Atmospheric Research] User Count (Number of Users)","[Law and Social Sciences] User Count (Number of Users)","[Metals, Ceramics, and Electronic Materials] User Count (Number of Users)","[Systematic and Population Biology] User Count (Number of Users)","[Volcanology and Mantle Geochemistry] User Count (Number of Users)" -2018,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 -2019,188,20,15,15,12,10,10,9,8,6,5,4,4,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index f2f5c02bd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"File Count (Number of files)" -/data,110334700.8000 -/projects,106201985.8000 -/scratch,16544199.1000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index f0d71f0937..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"File Count (Number of files)" -/data,110334701.0000 -/projects,106201986.0000 -/scratch,16552998.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index f0d71f0937..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"File Count (Number of files)" -/data,110334701.0000 -/projects,106201986.0000 -/scratch,16552998.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index f0d71f0937..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"File Count (Number of files)" -/data,110334701.0000 -/projects,106201986.0000 -/scratch,16552998.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index f995bf140c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" -2018-12-27,110343256,105461206,14985149 -2018-12-28,110355316,105607366,15676950 -2018-12-29,110355409,105764653,16464508 -2018-12-30,110325883,105846614,16625942 -2018-12-31,110325953,105984506,16870069 -2019-01-01,110324741,106246430,16792361 -2019-01-02,110325091,106487415,16811758 -2019-01-03,110325197,106661455,16907901 -2019-01-04,110337548,106861134,17203818 -2019-01-05,110328614,107099079,17103535 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index 14339152e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" -2018-12,110341163,105732869,16142123 -2019-01,110328239,106671103,16963874 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index cb90a17d7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" -"2018 Q4",110341163,105732869,16142123 -"2019 Q1",110328239,106671103,16963874 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 525b859c9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/data] File Count (Number of files)","[/projects] File Count (Number of files)","[/scratch] File Count (Number of files)" -2018,110341163,105732869,16142123 -2019,110328239,106671103,16963874 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index c5ddd176fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Hard Threshold (Bytes)" -/projects,1219010023424000.0000 -/data,128035016704000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index c5ddd176fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Hard Threshold (Bytes)" -/projects,1219010023424000.0000 -/data,128035016704000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index c5ddd176fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Hard Threshold (Bytes)" -/projects,1219010023424000.0000 -/data,128035016704000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index c5ddd176fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Hard Threshold (Bytes)" -/projects,1219010023424000.0000 -/data,128035016704000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index c592e303fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" -2018-12-27,1219010023424000,128035016704000,0 -2018-12-28,1219010023424000,128035016704000,0 -2018-12-29,1219010023424000,128035016704000,0 -2018-12-30,1219010023424000,128035016704000,0 -2018-12-31,1219010023424000,128035016704000,0 -2019-01-01,1219010023424000,128035016704000,0 -2019-01-02,1219010023424000,128035016704000,0 -2019-01-03,1219010023424000,128035016704000,0 -2019-01-04,1219010023424000,128035016704000,0 -2019-01-05,1219010023424000,128035016704000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index c0b4725a30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" -2018-12,1219010023424000,128035016704000,0 -2019-01,1219010023424000,128035016704000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 486e4820b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" -"2018 Q4",1219010023424000,128035016704000,0 -"2019 Q1",1219010023424000,128035016704000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 7b6f9df692..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/projects] Quota: Hard Threshold (Bytes)","[/data] Quota: Hard Threshold (Bytes)","[/scratch] Quota: Hard Threshold (Bytes)" -2018,1219010023424000,128035016704000,0 -2019,1219010023424000,128035016704000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 1c6813e7da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Logical Usage (Bytes)" -/projects,405899529715200.0000 -/scratch,305008872128000.0000 -/data,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 352ef5f31d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Logical Usage (Bytes)" -/projects,405899529715200.0000 -/scratch,305011131703466.5000 -/data,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 352ef5f31d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Logical Usage (Bytes)" -/projects,405899529715200.0000 -/scratch,305011131703466.5000 -/data,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 352ef5f31d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Logical Usage (Bytes)" -/projects,405899529715200.0000 -/scratch,305011131703466.5000 -/data,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 172acc7d99..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" -2018-12-27,405199056512000,310083867648000,79048061440000 -2018-12-28,405348609536000,315914283776000,79465470848000 -2018-12-29,405521223424000,316922688256000,79570484096000 -2018-12-30,405639849856000,320418982784000,79655314432000 -2018-12-31,405820763776000,317371603840000,79673797120000 -2019-01-01,406010692736000,309597755648000,79693968896000 -2019-01-02,406167469952000,297237200512000,79786598016000 -2019-01-03,406303176576000,290475407744000,78829132160000 -2019-01-04,406419426560000,288469426048000,79157596544000 -2019-01-05,406565028224000,283597505024000,79205006080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index bbdaa02061..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" -2018-12,405505900620800,316146804309333,79482625587200 -2019-01,406293158809600,293875459097600,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 26dbb1a0ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" -"2018 Q4",405505900620800,316146804309333,79482625587200 -"2019 Q1",406293158809600,293875459097600,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 7ea1b7d099..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/projects] Logical Usage (Bytes)","[/scratch] Logical Usage (Bytes)","[/data] Logical Usage (Bytes)" -2018,405505900620800,316146804309333,79482625587200 -2019,406293158809600,293875459097600,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 01754a36c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota Utilization: Logical (%)" -/data,62.5264 -/projects,47.4736 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 01754a36c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota Utilization: Logical (%)" -/data,62.5264 -/projects,47.4736 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 01754a36c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota Utilization: Logical (%)" -/data,62.5264 -/projects,47.4736 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 01754a36c5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota Utilization: Logical (%)" -/data,62.5264 -/projects,47.4736 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index f7873ee8bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" -2018-12-27,62.2426,47.3917,0.0000 -2018-12-28,62.5712,47.4092,0.0000 -2018-12-29,62.6539,47.4294,0.0000 -2018-12-30,62.7207,47.4433,0.0000 -2018-12-31,62.7353,47.4644,0.0000 -2019-01-01,62.7511,47.4866,0.0000 -2019-01-02,62.8241,47.5050,0.0000 -2019-01-03,62.0702,47.5208,0.0000 -2019-01-04,62.3288,47.5344,0.0000 -2019-01-05,62.3661,47.5515,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index b25e0a89ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" -2018-12,62.5847,47.4276,0.0000 -2019-01,62.4681,47.5197,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 54e78d4848..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" -"2018 Q4",62.5847,47.4276,0.0000 -"2019 Q1",62.4681,47.5197,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 6ff062e57c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/data] Quota Utilization: Logical (%)","[/projects] Quota Utilization: Logical (%)","[/scratch] Quota Utilization: Logical (%)" -2018,62.5847,47.4276,0.0000 -2019,62.4681,47.5197,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index b4d26626ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Physical Usage (Bytes)" -/data,0.0000 -/projects,0.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index b4d26626ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Physical Usage (Bytes)" -/data,0.0000 -/projects,0.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index b4d26626ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Physical Usage (Bytes)" -/data,0.0000 -/projects,0.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index b4d26626ec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Physical Usage (Bytes)" -/data,0.0000 -/projects,0.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 1a157b06f1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" -2018-12-27,0,0,0 -2018-12-28,0,0,0 -2018-12-29,0,0,0 -2018-12-30,0,0,0 -2018-12-31,0,0,0 -2019-01-01,0,0,0 -2019-01-02,0,0,0 -2019-01-03,0,0,0 -2019-01-04,0,0,0 -2019-01-05,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index b1cd4679aa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" -2018-12,0,0,0 -2019-01,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 9d99280104..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" -"2018 Q4",0,0,0 -"2019 Q1",0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 4f0c424b24..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/data] Physical Usage (Bytes)","[/projects] Physical Usage (Bytes)","[/scratch] Physical Usage (Bytes)" -2018,0,0,0 -2019,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 9585cb60f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Soft Threshold (Bytes)" -/projects,855000018944000.0000 -/data,127000027136000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 9585cb60f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Soft Threshold (Bytes)" -/projects,855000018944000.0000 -/data,127000027136000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 9585cb60f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Soft Threshold (Bytes)" -/projects,855000018944000.0000 -/data,127000027136000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 9585cb60f7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"Quota: Soft Threshold (Bytes)" -/projects,855000018944000.0000 -/data,127000027136000.0000 -/scratch,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index a1a1800f8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" -2018-12-27,855000018944000,127000027136000,0 -2018-12-28,855000018944000,127000027136000,0 -2018-12-29,855000018944000,127000027136000,0 -2018-12-30,855000018944000,127000027136000,0 -2018-12-31,855000018944000,127000027136000,0 -2019-01-01,855000018944000,127000027136000,0 -2019-01-02,855000018944000,127000027136000,0 -2019-01-03,855000018944000,127000027136000,0 -2019-01-04,855000018944000,127000027136000,0 -2019-01-05,855000018944000,127000027136000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index d3412fa5c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" -2018-12,855000018944000,127000027136000,0 -2019-01,855000018944000,127000027136000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index bdf737cb81..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" -"2018 Q4",855000018944000,127000027136000,0 -"2019 Q1",855000018944000,127000027136000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 3cd1a63597..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/projects] Quota: Soft Threshold (Bytes)","[/data] Quota: Soft Threshold (Bytes)","[/scratch] Quota: Soft Threshold (Bytes)" -2018,855000018944000,127000027136000,0 -2019,855000018944000,127000027136000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv deleted file mode 100644 index fd2d155bdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"User Count (Number of Users)" -/scratch,334 -/data,10 -/projects,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv deleted file mode 100644 index fd2d155bdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"User Count (Number of Users)" -/scratch,334 -/data,10 -/projects,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index fd2d155bdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"User Count (Number of Users)" -/scratch,334 -/data,10 -/projects,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv deleted file mode 100644 index fd2d155bdb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Mountpoint,"User Count (Number of Users)" -/scratch,334 -/data,10 -/projects,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 3c6d2376c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" -2018-12-27,333,10,10 -2018-12-28,333,10,10 -2018-12-29,334,10,10 -2018-12-30,334,10,10 -2018-12-31,334,10,10 -2019-01-01,334,10,10 -2019-01-02,334,10,10 -2019-01-03,334,10,10 -2019-01-04,334,10,10 -2019-01-05,333,10,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 171a5dd43b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" -2018-12,334,10,10 -2019-01,334,10,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index f230bf99ee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" -"2018 Q4",334,10,10 -"2019 Q1",334,10,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 2370cd0abb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/mountpoint/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Mountpoint" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[/scratch] User Count (Number of Users)","[/data] User Count (Number of Users)","[/projects] User Count (Number of Users)" -2018,334,10,10 -2019,334,10,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index bb583ca102..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"File Count (Number of files)" -Screwdriver,233080885.7000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 4fc6e9dbab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"File Count (Number of files)" -Screwdriver,233089685.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 4fc6e9dbab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"File Count (Number of files)" -Screwdriver,233089685.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 4fc6e9dbab..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"File Count (Number of files)" -Screwdriver,233089685.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 0e88aca1ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] File Count (Number of files)" -2018-12-27,230789611 -2018-12-28,231639632 -2018-12-29,232584570 -2018-12-30,232798439 -2018-12-31,233180528 -2019-01-01,233363532 -2019-01-02,233624264 -2019-01-03,233894553 -2019-01-04,234402500 -2019-01-05,234531228 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index faff3c332a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] File Count (Number of files)" -2018-12,232216155 -2019-01,233963216 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 20a5117e57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] File Count (Number of files)" -"2018 Q4",232216155 -"2019 Q1",233963216 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 0cb10956dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] File Count (Number of files)" -2018,232216155 -2019,233963216 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 4f8c6290a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Hard Threshold (Bytes)" -Screwdriver,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 4f8c6290a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Hard Threshold (Bytes)" -Screwdriver,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 4f8c6290a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Hard Threshold (Bytes)" -Screwdriver,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 4f8c6290a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Hard Threshold (Bytes)" -Screwdriver,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 8d4eccb0ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] Quota: Hard Threshold (Bytes)" -2018-12-27,1347045040128000 -2018-12-28,1347045040128000 -2018-12-29,1347045040128000 -2018-12-30,1347045040128000 -2018-12-31,1347045040128000 -2019-01-01,1347045040128000 -2019-01-02,1347045040128000 -2019-01-03,1347045040128000 -2019-01-04,1347045040128000 -2019-01-05,1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index d78543fa76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] Quota: Hard Threshold (Bytes)" -2018-12,1347045040128000 -2019-01,1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index e8353a37de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] Quota: Hard Threshold (Bytes)" -"2018 Q4",1347045040128000 -"2019 Q1",1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 070d1d745d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] Quota: Hard Threshold (Bytes)" -2018,1347045040128000 -2019,1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 75040f3679..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Logical Usage (Bytes)" -Screwdriver,790316944806400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 26b79ea809..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Logical Usage (Bytes)" -Screwdriver,790319204381866.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 26b79ea809..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Logical Usage (Bytes)" -Screwdriver,790319204381866.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 26b79ea809..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Logical Usage (Bytes)" -Screwdriver,790319204381866.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 0186fa29f8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] Logical Usage (Bytes)" -2018-12-27,794330985600000 -2018-12-28,800728364160000 -2018-12-29,802014395776000 -2018-12-30,805714147072000 -2018-12-31,802866164736000 -2019-01-01,795302417280000 -2019-01-02,783191268480000 -2019-01-03,775607716480000 -2019-01-04,774046449152000 -2019-01-05,769367539328000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 97c75e5aa7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] Logical Usage (Bytes)" -2018-12,801135330517333 -2019-01,779503078246400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 8027eed7bf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] Logical Usage (Bytes)" -"2018 Q4",801135330517333 -"2019 Q1",779503078246400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 65b8a1b2df..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] Logical Usage (Bytes)" -2018,801135330517333 -2019,779503078246400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index cecd3eb40f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota Utilization: Logical (%)" -Screwdriver,80.4803 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index be34b6820e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota Utilization: Logical (%)" -Screwdriver,80.4806 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index be34b6820e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota Utilization: Logical (%)" -Screwdriver,80.4806 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index be34b6820e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota Utilization: Logical (%)" -Screwdriver,80.4806 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 62aa5b027a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] Quota Utilization: Logical (%)" -2018-12-27,80.8891 -2018-12-28,81.5406 -2018-12-29,81.6715 -2018-12-30,82.0483 -2018-12-31,81.7583 -2019-01-01,80.9880 -2019-01-02,79.7547 -2019-01-03,78.9825 -2019-01-04,78.8235 -2019-01-05,78.3470 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index d0bd9732ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] Quota Utilization: Logical (%)" -2018-12,81.5820 -2019-01,79.3791 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 082f9bc271..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] Quota Utilization: Logical (%)" -"2018 Q4",81.5820 -"2019 Q1",79.3791 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 9d82e7660d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] Quota Utilization: Logical (%)" -2018,81.5820 -2019,79.3791 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 698dd04769..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Physical Usage (Bytes)" -Screwdriver,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 698dd04769..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Physical Usage (Bytes)" -Screwdriver,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 698dd04769..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Physical Usage (Bytes)" -Screwdriver,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 698dd04769..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Physical Usage (Bytes)" -Screwdriver,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 8b005b7f5e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] Physical Usage (Bytes)" -2018-12-27,0 -2018-12-28,0 -2018-12-29,0 -2018-12-30,0 -2018-12-31,0 -2019-01-01,0 -2019-01-02,0 -2019-01-03,0 -2019-01-04,0 -2019-01-05,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 8aa9479b57..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] Physical Usage (Bytes)" -2018-12,0 -2019-01,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index e6378d0db8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] Physical Usage (Bytes)" -"2018 Q4",0 -"2019 Q1",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 4c6bf84971..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] Physical Usage (Bytes)" -2018,0 -2019,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index fe50a3f80b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Soft Threshold (Bytes)" -Screwdriver,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index fe50a3f80b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Soft Threshold (Bytes)" -Screwdriver,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index fe50a3f80b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Soft Threshold (Bytes)" -Screwdriver,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index fe50a3f80b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"Quota: Soft Threshold (Bytes)" -Screwdriver,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 92766324a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] Quota: Soft Threshold (Bytes)" -2018-12-27,982000046080000 -2018-12-28,982000046080000 -2018-12-29,982000046080000 -2018-12-30,982000046080000 -2018-12-31,982000046080000 -2019-01-01,982000046080000 -2019-01-02,982000046080000 -2019-01-03,982000046080000 -2019-01-04,982000046080000 -2019-01-05,982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 71921aacf6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] Quota: Soft Threshold (Bytes)" -2018-12,982000046080000 -2019-01,982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index d831178b05..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] Quota: Soft Threshold (Bytes)" -"2018 Q4",982000046080000 -"2019 Q1",982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 6cd6b97415..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] Quota: Soft Threshold (Bytes)" -2018,982000046080000 -2019,982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv deleted file mode 100644 index b78afd05cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"User Count (Number of Users)" -Screwdriver,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv deleted file mode 100644 index b78afd05cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"User Count (Number of Users)" -Screwdriver,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b78afd05cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"User Count (Number of Users)" -Screwdriver,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv deleted file mode 100644 index b78afd05cc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Summary,"User Count (Number of Users)" -Screwdriver,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 4af46babe5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Screwdriver] User Count (Number of Users)" -2018-12-27,343 -2018-12-28,343 -2018-12-29,344 -2018-12-30,344 -2018-12-31,344 -2019-01-01,344 -2019-01-02,344 -2019-01-03,344 -2019-01-04,344 -2019-01-05,343 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 2283747957..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Screwdriver] User Count (Number of Users)" -2018-12,344 -2019-01,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 5bfe0a033d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Screwdriver] User Count (Number of Users)" -"2018 Q4",344 -"2019 Q1",344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv deleted file mode 100644 index e36e889ea3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/none/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users)" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Screwdriver] User Count (Number of Users)" -2018,344 -2019,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index 618f87c321..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","File Count (Number of files)" -Unknown,221213085.9000 -Engineering,4443059.1000 -"Mathematical and Physical Sciences",3941529.2000 -"Biological Sciences",3077679.9000 -Geosciences,393530.3000 -"Social, Behavioral, and Economic Sciences",6654.3000 -"Computer and Information Science and Engineering",5339.0000 -Humanities/Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index a1501337d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","File Count (Number of files)" -Unknown,221221886.0000 -Engineering,4443058.5000 -"Mathematical and Physical Sciences",3941529.0000 -"Biological Sciences",3077679.5000 -Geosciences,393531.0000 -"Social, Behavioral, and Economic Sciences",6654.5000 -"Computer and Information Science and Engineering",5339.0000 -Humanities/Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index a1501337d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","File Count (Number of files)" -Unknown,221221886.0000 -Engineering,4443058.5000 -"Mathematical and Physical Sciences",3941529.0000 -"Biological Sciences",3077679.5000 -Geosciences,393531.0000 -"Social, Behavioral, and Economic Sciences",6654.5000 -"Computer and Information Science and Engineering",5339.0000 -Humanities/Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index a1501337d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","File Count (Number of files)" -Unknown,221221886.0000 -Engineering,4443058.5000 -"Mathematical and Physical Sciences",3941529.0000 -"Biological Sciences",3077679.5000 -Geosciences,393531.0000 -"Social, Behavioral, and Economic Sciences",6654.5000 -"Computer and Information Science and Engineering",5339.0000 -Humanities/Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 5408f67c4f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" -2018-12-27,219505360,3870027,3931094,3112912,357773,7098,5339,8 -2018-12-28,220199493,3883303,3956608,3112981,474804,7096,5339,8 -2018-12-29,220909652,4214688,3941018,3113115,393651,7099,5339,8 -2018-12-30,220869065,4420733,3971530,3113187,411478,7099,5339,8 -2018-12-31,220996200,4697649,3964719,3088880,420685,7048,5339,8 -2019-01-01,221233693,4691904,3957377,3047485,421756,5970,5339,8 -2019-01-02,221578786,4693777,3926793,3047540,365953,6068,5339,8 -2019-01-03,221982330,4570989,3922649,3045794,361089,6355,5339,8 -2019-01-04,222401952,4658437,3919726,3047403,363280,6355,5339,8 -2019-01-05,222454328,4729084,3923778,3047502,364834,6355,5339,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index ceb78a2d4f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" -2018-12,220513553,4217279,3952995,3108215,411678,7088,5339,8 -2019-01,221930219,4668838,3930063,3047144,375384,6221,5339,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 859fdd5f6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" -"2018 Q4",220513553,4217279,3952995,3108215,411678,7088,5339,8 -"2019 Q1",221930219,4668838,3930063,3047144,375384,6221,5339,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index c4d8885275..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] File Count (Number of files)","[Engineering] File Count (Number of files)","[Mathematical and Physical Sciences] File Count (Number of files)","[Biological Sciences] File Count (Number of files)","[Geosciences] File Count (Number of files)","[Social, Behavioral, and Economic Sciences] File Count (Number of files)","[Computer and Information Science and Engineering] File Count (Number of files)","[Humanities/Arts] File Count (Number of files)" -2018,220513553,4217279,3952995,3108215,411678,7088,5339,8 -2019,221930219,4668838,3930063,3047144,375384,6221,5339,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index e564fd355e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Biological Sciences",250015019008000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20010000384000.0000 -Geosciences,10005000192000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index e564fd355e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Biological Sciences",250015019008000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20010000384000.0000 -Geosciences,10005000192000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index e564fd355e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Biological Sciences",250015019008000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20010000384000.0000 -Geosciences,10005000192000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index e564fd355e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Biological Sciences",250015019008000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20010000384000.0000 -Geosciences,10005000192000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 650fd79392..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" -2018-12-27,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2018-12-28,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2018-12-29,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2018-12-30,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2018-12-31,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019-01-01,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019-01-02,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019-01-03,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019-01-04,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019-01-05,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 164c485e1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" -2018-12,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019-01,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 37180b1305..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" -"2018 Q4",1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -"2019 Q1",1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index c598eefefb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Quota: Hard Threshold (Bytes)","[Biological Sciences] Quota: Hard Threshold (Bytes)","[Engineering] Quota: Hard Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Hard Threshold (Bytes)","[Geosciences] Quota: Hard Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Hard Threshold (Bytes)","[Humanities/Arts] Quota: Hard Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Hard Threshold (Bytes)" -2018,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 -2019,1042015019008000,250015019008000,25000001536000,20010000384000,10005000192000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 90d72aa9b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Logical Usage (Bytes)" -Unknown,533918117529600.0000 -"Biological Sciences",159274407820800.0000 -Geosciences,53185878656000.0000 -"Mathematical and Physical Sciences",28460776396800.0000 -Engineering,15475238131200.0000 -"Social, Behavioral, and Economic Sciences",2526144000.0000 -Humanities/Arts,128000.0000 -"Computer and Information Science and Engineering",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index ac2b4e1f6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Logical Usage (Bytes)" -Unknown,533920377053866.5000 -"Biological Sciences",159274407820800.0000 -Geosciences,53185878707200.0000 -"Mathematical and Physical Sciences",28460776396800.0000 -Engineering,15475238131200.0000 -"Social, Behavioral, and Economic Sciences",2526144000.0000 -Humanities/Arts,128000.0000 -"Computer and Information Science and Engineering",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index ac2b4e1f6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Logical Usage (Bytes)" -Unknown,533920377053866.5000 -"Biological Sciences",159274407820800.0000 -Geosciences,53185878707200.0000 -"Mathematical and Physical Sciences",28460776396800.0000 -Engineering,15475238131200.0000 -"Social, Behavioral, and Economic Sciences",2526144000.0000 -Humanities/Arts,128000.0000 -"Computer and Information Science and Engineering",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index ac2b4e1f6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Logical Usage (Bytes)" -Unknown,533920377053866.5000 -"Biological Sciences",159274407820800.0000 -Geosciences,53185878707200.0000 -"Mathematical and Physical Sciences",28460776396800.0000 -Engineering,15475238131200.0000 -"Social, Behavioral, and Economic Sciences",2526144000.0000 -Humanities/Arts,128000.0000 -"Computer and Information Science and Engineering",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 207a0bf646..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" -2018-12-27,524570273664000,169315188224000,52153563776000,32502037504000,15787414272000,2508032000,128000,0 -2018-12-28,531035237504000,169384097792000,54249861376000,30266089984000,15790569344000,2508032000,128000,0 -2018-12-29,532739234688000,169456775296000,53978880128000,30035534848000,15801462016000,2508672000,128000,0 -2018-12-30,536250099456000,169512433408000,54263870336000,29876133504000,15809101568000,2508672000,128000,0 -2018-12-31,539090300288000,158495743232000,54491372544000,34971396480000,15814854272000,2497792000,128000,0 -2019-01-01,538444631936000,154064004992000,54598024576000,32381323008000,15811958144000,2474496000,128000,0 -2019-01-02,535212295680000,154123004928000,52232730624000,25815279616000,15805551104000,2406400000,128000,0 -2019-01-03,534387396736000,149363140096000,51904429056000,25114585728000,14835548288000,2616448000,128000,0 -2019-01-04,534486134016000,149467570432000,51965890048000,23444305408000,14679932672000,2616448000,128000,0 -2019-01-05,532965571328000,149562119808000,52020164096000,20201077888000,14615989632000,2616448000,128000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 81beade8ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" -2018-12,532741548168533,167232847590400,53827509632000,31530238464000,15800680294400,2506240000,128000,0 -2019-01,535099205939200,151315968051200,52544247782400,25391314329600,15149795968000,2546048000,128000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index ce0af8a7ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" -"2018 Q4",532741548168533,167232847590400,53827509632000,31530238464000,15800680294400,2506240000,128000,0 -"2019 Q1",535099205939200,151315968051200,52544247782400,25391314329600,15149795968000,2546048000,128000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 6209573806..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Logical Usage (Bytes)","[Biological Sciences] Logical Usage (Bytes)","[Geosciences] Logical Usage (Bytes)","[Mathematical and Physical Sciences] Logical Usage (Bytes)","[Engineering] Logical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Logical Usage (Bytes)","[Humanities/Arts] Logical Usage (Bytes)","[Computer and Information Science and Engineering] Logical Usage (Bytes)" -2018,532741548168533,167232847590400,53827509632000,31530238464000,15800680294400,2506240000,128000,0 -2019,535099205939200,151315968051200,52544247782400,25391314329600,15149795968000,2546048000,128000,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 39eae62cf1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota Utilization: Logical (%)" -Geosciences,531.8586 -"Mathematical and Physical Sciences",142.3038 -"Biological Sciences",109.0920 -Unknown,68.3634 -Engineering,61.9009 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 0ab854c191..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota Utilization: Logical (%)" -Geosciences,531.8586 -"Mathematical and Physical Sciences",142.3038 -"Biological Sciences",109.0920 -Unknown,68.3637 -Engineering,61.9009 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 0ab854c191..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota Utilization: Logical (%)" -Geosciences,531.8586 -"Mathematical and Physical Sciences",142.3038 -"Biological Sciences",109.0920 -Unknown,68.3637 -Engineering,61.9009 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 0ab854c191..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota Utilization: Logical (%)" -Geosciences,531.8586 -"Mathematical and Physical Sciences",142.3038 -"Biological Sciences",109.0920 -Unknown,68.3637 -Engineering,61.9009 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 2f882fa72f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" -2018-12-27,521.5355,162.5101,115.9693,67.1665,63.1497,0.0000,0.0000,0.0000 -2018-12-28,542.4984,151.3304,116.0165,67.9943,63.1623,0.0000,0.0000,0.0000 -2018-12-29,539.7886,150.1776,116.0663,68.2124,63.2058,0.0000,0.0000,0.0000 -2018-12-30,542.6385,149.3806,116.1044,68.6620,63.2364,0.0000,0.0000,0.0000 -2018-12-31,544.9136,174.8569,108.5587,69.0256,63.2594,0.0000,0.0000,0.0000 -2019-01-01,545.9801,161.9066,105.5233,68.9430,63.2478,0.0000,0.0000,0.0000 -2019-01-02,522.3271,129.0764,105.5637,68.5291,63.2222,0.0000,0.0000,0.0000 -2019-01-03,519.0441,125.5729,102.3035,68.4235,59.3422,0.0000,0.0000,0.0000 -2019-01-04,519.6587,117.2215,102.3750,68.4361,58.7197,0.0000,0.0000,0.0000 -2019-01-05,520.2015,101.0054,102.4398,68.2414,58.4640,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index e82dcdf481..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" -2018-12,538.2749,157.6511,114.5430,68.2127,63.2027,0.0000,0.0000,0.0000 -2019-01,525.4423,126.9565,103.6411,68.5146,60.5992,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index ae710aab54..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" -"2018 Q4",538.2749,157.6511,114.5430,68.2127,63.2027,0.0000,0.0000,0.0000 -"2019 Q1",525.4423,126.9565,103.6411,68.5146,60.5992,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 540064b306..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Geosciences] Quota Utilization: Logical (%)","[Mathematical and Physical Sciences] Quota Utilization: Logical (%)","[Biological Sciences] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Engineering] Quota Utilization: Logical (%)","[Computer and Information Science and Engineering] Quota Utilization: Logical (%)","[Humanities/Arts] Quota Utilization: Logical (%)","[Social, Behavioral, and Economic Sciences] Quota Utilization: Logical (%)" -2018,538.2749,157.6511,114.5430,68.2127,63.2027,0.0000,0.0000,0.0000 -2019,525.4423,126.9565,103.6411,68.5146,60.5992,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index d4e5baaeb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Physical Usage (Bytes)" -"Biological Sciences",0.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index d4e5baaeb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Physical Usage (Bytes)" -"Biological Sciences",0.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index d4e5baaeb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Physical Usage (Bytes)" -"Biological Sciences",0.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index d4e5baaeb4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Physical Usage (Bytes)" -"Biological Sciences",0.0000 -"Computer and Information Science and Engineering",0.0000 -Engineering,0.0000 -Geosciences,0.0000 -Humanities/Arts,0.0000 -"Mathematical and Physical Sciences",0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index fe5c7656b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 4b95a88b2b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index f77157aeea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 5035eb4e6a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Biological Sciences] Physical Usage (Bytes)","[Computer and Information Science and Engineering] Physical Usage (Bytes)","[Engineering] Physical Usage (Bytes)","[Geosciences] Physical Usage (Bytes)","[Humanities/Arts] Physical Usage (Bytes)","[Mathematical and Physical Sciences] Physical Usage (Bytes)","[Social, Behavioral, and Economic Sciences] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index da415ff4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Biological Sciences",146000015360000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20000006144000.0000 -Geosciences,10000003072000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index da415ff4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Biological Sciences",146000015360000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20000006144000.0000 -Geosciences,10000003072000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index da415ff4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Biological Sciences",146000015360000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20000006144000.0000 -Geosciences,10000003072000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index da415ff4a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Biological Sciences",146000015360000.0000 -Engineering,25000001536000.0000 -"Mathematical and Physical Sciences",20000006144000.0000 -Geosciences,10000003072000.0000 -"Computer and Information Science and Engineering",0.0000 -Humanities/Arts,0.0000 -"Social, Behavioral, and Economic Sciences",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 5072b33256..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" -2018-12-27,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2018-12-28,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2018-12-29,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2018-12-30,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2018-12-31,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019-01-01,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019-01-02,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019-01-03,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019-01-04,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019-01-05,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 4a453c6ed6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" -2018-12,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019-01,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 4fa52ccc9c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" -"2018 Q4",781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -"2019 Q1",781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index ad9f8d36c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Quota: Soft Threshold (Bytes)","[Biological Sciences] Quota: Soft Threshold (Bytes)","[Engineering] Quota: Soft Threshold (Bytes)","[Mathematical and Physical Sciences] Quota: Soft Threshold (Bytes)","[Geosciences] Quota: Soft Threshold (Bytes)","[Computer and Information Science and Engineering] Quota: Soft Threshold (Bytes)","[Humanities/Arts] Quota: Soft Threshold (Bytes)","[Social, Behavioral, and Economic Sciences] Quota: Soft Threshold (Bytes)" -2018,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 -2019,781000019968000,146000015360000,25000001536000,20000006144000,10000003072000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv deleted file mode 100644 index 67db1f8c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","User Count (Number of Users)" -Unknown,188 -"Mathematical and Physical Sciences",44 -Engineering,39 -Geosciences,27 -"Biological Sciences",25 -"Social, Behavioral, and Economic Sciences",15 -"Computer and Information Science and Engineering",4 -Humanities/Arts,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv deleted file mode 100644 index 67db1f8c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","User Count (Number of Users)" -Unknown,188 -"Mathematical and Physical Sciences",44 -Engineering,39 -Geosciences,27 -"Biological Sciences",25 -"Social, Behavioral, and Economic Sciences",15 -"Computer and Information Science and Engineering",4 -Humanities/Arts,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 67db1f8c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","User Count (Number of Users)" -Unknown,188 -"Mathematical and Physical Sciences",44 -Engineering,39 -Geosciences,27 -"Biological Sciences",25 -"Social, Behavioral, and Economic Sciences",15 -"Computer and Information Science and Engineering",4 -Humanities/Arts,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv deleted file mode 100644 index 67db1f8c40..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,17 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Decanal Unit","User Count (Number of Users)" -Unknown,188 -"Mathematical and Physical Sciences",44 -Engineering,39 -Geosciences,27 -"Biological Sciences",25 -"Social, Behavioral, and Economic Sciences",15 -"Computer and Information Science and Engineering",4 -Humanities/Arts,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 6093ba40ed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" -2018-12-27,187,44,39,27,25,15,4,2 -2018-12-28,187,44,39,27,25,15,4,2 -2018-12-29,188,44,39,27,25,15,4,2 -2018-12-30,188,44,39,27,25,15,4,2 -2018-12-31,188,44,39,27,25,15,4,2 -2019-01-01,188,44,39,27,25,15,4,2 -2019-01-02,188,44,39,27,25,15,4,2 -2019-01-03,188,44,39,27,25,15,4,2 -2019-01-04,188,44,39,27,25,15,4,2 -2019-01-05,188,44,39,26,25,15,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 361f6d89b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" -2018-12,188,44,39,27,25,15,4,2 -2019-01,188,44,39,27,25,15,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 068a085f13..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" -"2018 Q4",188,44,39,27,25,15,4,2 -"2019 Q1",188,44,39,27,25,15,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv deleted file mode 100644 index d2aa193963..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/nsfdirectorate/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Decanal Unit" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] User Count (Number of Users)","[Mathematical and Physical Sciences] User Count (Number of Users)","[Engineering] User Count (Number of Users)","[Geosciences] User Count (Number of Users)","[Biological Sciences] User Count (Number of Users)","[Social, Behavioral, and Economic Sciences] User Count (Number of Users)","[Computer and Information Science and Engineering] User Count (Number of Users)","[Humanities/Arts] User Count (Number of Users)" -2018,188,44,39,27,25,15,4,2 -2019,188,44,39,27,25,15,4,2 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index 6c23c1c1de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"File Count (Number of files)" -Unknown,221213085.9000 -"Mechanical and Structural Systems",3527630.6000 -"Molecular Biosciences",3014971.4000 -"Mathematical Sciences",2149604.8000 -Chemistry,1541382.2000 -"Electrical and Communication Systems",915377.5000 -"Earth Sciences",392678.1000 -"Astronomical Sciences",223503.7000 -"Environmental Biology",62708.5000 -Physics,20072.0000 -"Materials Research",6966.5000 -"Social and Economic Science",6654.3000 -"Microelectronic Information Processing Systems",5339.0000 -"Polar Programs",804.2000 -"Chemical, Thermal Systems",51.0000 -"Atmospheric Sciences",48.0000 -Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 1547caa3a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"File Count (Number of files)" -Unknown,221221886.0000 -"Mechanical and Structural Systems",3527630.0000 -"Molecular Biosciences",3014971.0000 -"Mathematical Sciences",2149604.5000 -Chemistry,1541382.5000 -"Electrical and Communication Systems",915377.5000 -"Earth Sciences",392679.0000 -"Astronomical Sciences",223503.5000 -"Environmental Biology",62708.5000 -Physics,20072.0000 -"Materials Research",6966.5000 -"Social and Economic Science",6654.5000 -"Microelectronic Information Processing Systems",5339.0000 -"Polar Programs",804.0000 -"Chemical, Thermal Systems",51.0000 -"Atmospheric Sciences",48.0000 -Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 1547caa3a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"File Count (Number of files)" -Unknown,221221886.0000 -"Mechanical and Structural Systems",3527630.0000 -"Molecular Biosciences",3014971.0000 -"Mathematical Sciences",2149604.5000 -Chemistry,1541382.5000 -"Electrical and Communication Systems",915377.5000 -"Earth Sciences",392679.0000 -"Astronomical Sciences",223503.5000 -"Environmental Biology",62708.5000 -Physics,20072.0000 -"Materials Research",6966.5000 -"Social and Economic Science",6654.5000 -"Microelectronic Information Processing Systems",5339.0000 -"Polar Programs",804.0000 -"Chemical, Thermal Systems",51.0000 -"Atmospheric Sciences",48.0000 -Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 1547caa3a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"File Count (Number of files)" -Unknown,221221886.0000 -"Mechanical and Structural Systems",3527630.0000 -"Molecular Biosciences",3014971.0000 -"Mathematical Sciences",2149604.5000 -Chemistry,1541382.5000 -"Electrical and Communication Systems",915377.5000 -"Earth Sciences",392679.0000 -"Astronomical Sciences",223503.5000 -"Environmental Biology",62708.5000 -Physics,20072.0000 -"Materials Research",6966.5000 -"Social and Economic Science",6654.5000 -"Microelectronic Information Processing Systems",5339.0000 -"Polar Programs",804.0000 -"Chemical, Thermal Systems",51.0000 -"Atmospheric Sciences",48.0000 -Arts,8.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 83006ebe2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" -2018-12-27,219505360,2940515,3050306,2147760,1528372,929461,356985,227914,62606,20072,6976,7098,5339,740,51,48,8 -2018-12-28,220199493,2940752,3050377,2146930,1528669,942500,473958,253961,62604,20072,6976,7096,5339,798,51,48,8 -2018-12-29,220909652,3272058,3050425,2146930,1545455,942579,392805,221585,62690,20072,6976,7099,5339,798,51,48,8 -2018-12-30,220869065,3507560,3050468,2146930,1545454,913122,410632,252098,62719,20072,6976,7099,5339,798,51,48,8 -2018-12-31,220996200,3784497,3026167,2146930,1545416,913101,419839,245325,62713,20072,6976,7048,5339,798,51,48,8 -2019-01-01,221233693,3791772,2984753,2152075,1545320,900081,420910,232953,62732,20072,6957,5970,5339,798,51,48,8 -2019-01-02,221578786,3793948,2984801,2152075,1544700,899778,365107,202989,62739,20072,6957,6068,5339,798,51,48,8 -2019-01-03,221982330,3671019,2983051,2151990,1543740,899919,360243,199890,62743,20072,6957,6355,5339,798,51,48,8 -2019-01-04,222401952,3746709,2984667,2152252,1543348,911677,362434,197097,62736,20072,6957,6355,5339,798,51,48,8 -2019-01-05,222454328,3827476,2984699,2152176,1543348,901557,363868,201225,62803,20072,6957,6355,5339,918,51,48,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index d821f516b9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" -2018-12,220513553,3289076,3045549,2147096,1538674,928152,410844,240177,62666,20072,6976,7088,5339,786,51,48,8 -2019-01,221930219,3766184,2984393,2152113,1544091,902603,374514,206830,62751,20072,6957,6221,5339,822,51,48,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 860dc9c264..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" -"2018 Q4",220513553,3289076,3045549,2147096,1538674,928152,410844,240177,62666,20072,6976,7088,5339,786,51,48,8 -"2019 Q1",221930219,3766184,2984393,2152113,1544091,902603,374514,206830,62751,20072,6957,6221,5339,822,51,48,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 3c50e5eadb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] File Count (Number of files)","[Mechanical and Structural Systems] File Count (Number of files)","[Molecular Biosciences] File Count (Number of files)","[Mathematical Sciences] File Count (Number of files)","[Chemistry] File Count (Number of files)","[Electrical and Communication Systems] File Count (Number of files)","[Earth Sciences] File Count (Number of files)","[Astronomical Sciences] File Count (Number of files)","[Environmental Biology] File Count (Number of files)","[Physics] File Count (Number of files)","[Materials Research] File Count (Number of files)","[Social and Economic Science] File Count (Number of files)","[Microelectronic Information Processing Systems] File Count (Number of files)","[Polar Programs] File Count (Number of files)","[Chemical, Thermal Systems] File Count (Number of files)","[Atmospheric Sciences] File Count (Number of files)","[Arts] File Count (Number of files)" -2018,220513553,3289076,3045549,2147096,1538674,928152,410844,240177,62666,20072,6976,7088,5339,786,51,48,8 -2019,221930219,3766184,2984393,2152113,1544091,902603,374514,206830,62751,20072,6957,6221,5339,822,51,48,8 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 006573f386..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Molecular Biosciences",250015019008000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10005000192000.0000 -"Earth Sciences",10005000192000.0000 -"Mathematical Sciences",10005000192000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 006573f386..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Molecular Biosciences",250015019008000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10005000192000.0000 -"Earth Sciences",10005000192000.0000 -"Mathematical Sciences",10005000192000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 006573f386..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Molecular Biosciences",250015019008000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10005000192000.0000 -"Earth Sciences",10005000192000.0000 -"Mathematical Sciences",10005000192000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 006573f386..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Hard Threshold (Bytes)" -Unknown,1042015019008000.0000 -"Molecular Biosciences",250015019008000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10005000192000.0000 -"Earth Sciences",10005000192000.0000 -"Mathematical Sciences",10005000192000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 21c77e980e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" -2018-12-27,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 2fd62bf975..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" -2018-12,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019-01,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 4522228598..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" -"2018 Q4",1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index de61dfed0a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Quota: Hard Threshold (Bytes)","[Molecular Biosciences] Quota: Hard Threshold (Bytes)","[Electrical and Communication Systems] Quota: Hard Threshold (Bytes)","[Chemistry] Quota: Hard Threshold (Bytes)","[Earth Sciences] Quota: Hard Threshold (Bytes)","[Mathematical Sciences] Quota: Hard Threshold (Bytes)","[Arts] Quota: Hard Threshold (Bytes)","[Astronomical Sciences] Quota: Hard Threshold (Bytes)","[Atmospheric Sciences] Quota: Hard Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Hard Threshold (Bytes)","[Environmental Biology] Quota: Hard Threshold (Bytes)","[Materials Research] Quota: Hard Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Hard Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Hard Threshold (Bytes)","[Physics] Quota: Hard Threshold (Bytes)","[Polar Programs] Quota: Hard Threshold (Bytes)","[Social and Economic Science] Quota: Hard Threshold (Bytes)" -2018,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 -2019,1042015019008000,250015019008000,25000001536000,10005000192000,10005000192000,10005000192000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index bfb8a246ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Logical Usage (Bytes)" -Unknown,533918117529600.0000 -"Molecular Biosciences",159183348608000.0000 -"Earth Sciences",53056749504000.0000 -"Mechanical and Structural Systems",14837867673600.0000 -"Astronomical Sciences",10697016486400.0000 -"Mathematical Sciences",8979302297600.0000 -Chemistry,8783627276800.0000 -"Electrical and Communication Systems",637370457600.0000 -"Polar Programs",129129152000.0000 -"Environmental Biology",91059212800.0000 -"Social and Economic Science",2526144000.0000 -"Materials Research",821760000.0000 -Physics,8576000.0000 -Arts,128000.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 8a7657ea6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Logical Usage (Bytes)" -Unknown,533920377053866.5000 -"Molecular Biosciences",159183348608000.0000 -"Earth Sciences",53056749555200.0000 -"Mechanical and Structural Systems",14837867673600.0000 -"Astronomical Sciences",10697016486400.0000 -"Mathematical Sciences",8979302297600.0000 -Chemistry,8783627276800.0000 -"Electrical and Communication Systems",637370457600.0000 -"Polar Programs",129129152000.0000 -"Environmental Biology",91059212800.0000 -"Social and Economic Science",2526144000.0000 -"Materials Research",821760000.0000 -Physics,8576000.0000 -Arts,128000.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 8a7657ea6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Logical Usage (Bytes)" -Unknown,533920377053866.5000 -"Molecular Biosciences",159183348608000.0000 -"Earth Sciences",53056749555200.0000 -"Mechanical and Structural Systems",14837867673600.0000 -"Astronomical Sciences",10697016486400.0000 -"Mathematical Sciences",8979302297600.0000 -Chemistry,8783627276800.0000 -"Electrical and Communication Systems",637370457600.0000 -"Polar Programs",129129152000.0000 -"Environmental Biology",91059212800.0000 -"Social and Economic Science",2526144000.0000 -"Materials Research",821760000.0000 -Physics,8576000.0000 -Arts,128000.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 8a7657ea6e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Logical Usage (Bytes)" -Unknown,533920377053866.5000 -"Molecular Biosciences",159183348608000.0000 -"Earth Sciences",53056749555200.0000 -"Mechanical and Structural Systems",14837867673600.0000 -"Astronomical Sciences",10697016486400.0000 -"Mathematical Sciences",8979302297600.0000 -Chemistry,8783627276800.0000 -"Electrical and Communication Systems",637370457600.0000 -"Polar Programs",129129152000.0000 -"Environmental Biology",91059212800.0000 -"Social and Economic Science",2526144000.0000 -"Materials Research",821760000.0000 -Physics,8576000.0000 -Arts,128000.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 19c25e5fc1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" -2018-12-27,524570273664000,169227940736000,52024536704000,15153056384000,14713539456000,8971667712000,8815179648000,634357888000,129027072000,87247488000,2508032000,1642112000,8576000,128000,0,0,0 -2018-12-28,531035237504000,169296841472000,54120756736000,15153506944000,12472681088000,8972920704000,8818837504000,637062400000,129104640000,87256320000,2508032000,1642112000,8576000,128000,0,0,0 -2018-12-29,532739234688000,169364973056000,53849775488000,15161907200000,12238492160000,8972920704000,8822471296000,639554816000,129104640000,91802240000,2508672000,1642112000,8576000,128000,0,0,0 -2018-12-30,536250099456000,169420602112000,54134765696000,15166904704000,12078699776000,8972920704000,8822862336000,642196864000,129104640000,91831296000,2508672000,1642112000,8576000,128000,0,0,0 -2018-12-31,539090300288000,158403906304000,54362267904000,15172479872000,17173988480000,8972912768000,8822844544000,642374400000,129104640000,91836928000,2497792000,1642112000,8576000,128000,0,0,0 -2019-01-01,538444631936000,153972136320000,54468919936000,15171166208000,14641606016000,8984509952000,8755197056000,640791936000,129104640000,91868672000,2474496000,1408000,8576000,128000,0,0,0 -2019-01-02,535212295680000,154031121280000,52103625984000,15156382080000,8085082240000,8984509952000,8745677440000,649169024000,129104640000,91883648000,2406400000,1408000,8576000,128000,0,0,0 -2019-01-03,534387396736000,149271253376000,51775324416000,14191801216000,7385004544000,8984141696000,8745429504000,643747072000,129104640000,91886720000,2616448000,1408000,8576000,128000,0,0,0 -2019-01-04,534486134016000,149375701632000,51836785408000,14026531584000,5711420288000,8988988416000,8743886720000,653401088000,129104640000,91868800000,2616448000,1408000,8576000,128000,0,0,0 -2019-01-05,532965571328000,149469009792000,51890736768000,14024940544000,2469650816000,8987530368000,8743886720000,591049088000,129427328000,93110016000,2616448000,1408000,8576000,128000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 1e51db463a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" -2018-12,532741548168533,167142852736000,53698420505600,15161571020800,13735480192000,8972668518400,8820439065600,639109273600,129089126400,89994854400,2506240000,1642112000,8576000,128000,0,0,0 -2019-01,535099205939200,151223844480000,52415078604800,14514164326400,7658552780800,8985936076800,8746815488000,635631641600,129169177600,92123571200,2546048000,1408000,8576000,128000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d2ffcd506d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" -"2018 Q4",532741548168533,167142852736000,53698420505600,15161571020800,13735480192000,8972668518400,8820439065600,639109273600,129089126400,89994854400,2506240000,1642112000,8576000,128000,0,0,0 -"2019 Q1",535099205939200,151223844480000,52415078604800,14514164326400,7658552780800,8985936076800,8746815488000,635631641600,129169177600,92123571200,2546048000,1408000,8576000,128000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 1435aeb016..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Logical Usage (Bytes)","[Molecular Biosciences] Logical Usage (Bytes)","[Earth Sciences] Logical Usage (Bytes)","[Mechanical and Structural Systems] Logical Usage (Bytes)","[Astronomical Sciences] Logical Usage (Bytes)","[Mathematical Sciences] Logical Usage (Bytes)","[Chemistry] Logical Usage (Bytes)","[Electrical and Communication Systems] Logical Usage (Bytes)","[Polar Programs] Logical Usage (Bytes)","[Environmental Biology] Logical Usage (Bytes)","[Social and Economic Science] Logical Usage (Bytes)","[Materials Research] Logical Usage (Bytes)","[Physics] Logical Usage (Bytes)","[Arts] Logical Usage (Bytes)","[Atmospheric Sciences] Logical Usage (Bytes)","[Chemical, Thermal Systems] Logical Usage (Bytes)","[Microelectronic Information Processing Systems] Logical Usage (Bytes)" -2018,532741548168533,167142852736000,53698420505600,15161571020800,13735480192000,8972668518400,8820439065600,639109273600,129089126400,89994854400,2506240000,1642112000,8576000,128000,0,0,0 -2019,535099205939200,151223844480000,52415078604800,14514164326400,7658552780800,8985936076800,8746815488000,635631641600,129169177600,92123571200,2546048000,1408000,8576000,128000,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 3a8269d0f5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota Utilization: Logical (%)" -"Earth Sciences",530.5673 -"Molecular Biosciences",109.0297 -"Mathematical Sciences",89.7930 -Chemistry,87.8362 -Unknown,68.3634 -"Electrical and Communication Systems",2.5495 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index cd7f629ca9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota Utilization: Logical (%)" -"Earth Sciences",530.5673 -"Molecular Biosciences",109.0297 -"Mathematical Sciences",89.7930 -Chemistry,87.8362 -Unknown,68.3637 -"Electrical and Communication Systems",2.5495 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index cd7f629ca9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota Utilization: Logical (%)" -"Earth Sciences",530.5673 -"Molecular Biosciences",109.0297 -"Mathematical Sciences",89.7930 -Chemistry,87.8362 -Unknown,68.3637 -"Electrical and Communication Systems",2.5495 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index cd7f629ca9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota Utilization: Logical (%)" -"Earth Sciences",530.5673 -"Molecular Biosciences",109.0297 -"Mathematical Sciences",89.7930 -Chemistry,87.8362 -Unknown,68.3637 -"Electrical and Communication Systems",2.5495 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 725af70db2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" -2018-12-27,520.2452,115.9095,89.7166,88.1518,67.1665,2.5374,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,541.2074,115.9567,89.7292,88.1883,67.9943,2.5482,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,538.4976,116.0034,89.7292,88.2247,68.2124,2.5582,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,541.3475,116.0415,89.7292,88.2286,68.6620,2.5688,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,543.6225,108.4958,89.7291,88.2284,69.0256,2.5695,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,544.6890,105.4604,89.8451,87.5519,68.9430,2.5632,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,521.0361,105.5008,89.8451,87.4567,68.5291,2.5967,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,517.7531,102.2406,89.8414,87.4543,68.4235,2.5750,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,518.3677,102.3121,89.8899,87.4388,68.4361,2.6136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,518.9072,102.3760,89.8753,87.4388,68.2414,2.3642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 60192285d7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" -2018-12,536.9840,114.4814,89.7267,88.2044,68.2127,2.5564,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,524.1506,103.5780,89.8593,87.4681,68.5146,2.5425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 433dcb942b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" -"2018 Q4",536.9840,114.4814,89.7267,88.2044,68.2127,2.5564,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",524.1506,103.5780,89.8593,87.4681,68.5146,2.5425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index b590d35b30..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Earth Sciences] Quota Utilization: Logical (%)","[Molecular Biosciences] Quota Utilization: Logical (%)","[Mathematical Sciences] Quota Utilization: Logical (%)","[Chemistry] Quota Utilization: Logical (%)","[Unknown] Quota Utilization: Logical (%)","[Electrical and Communication Systems] Quota Utilization: Logical (%)","[Arts] Quota Utilization: Logical (%)","[Astronomical Sciences] Quota Utilization: Logical (%)","[Atmospheric Sciences] Quota Utilization: Logical (%)","[Chemical, Thermal Systems] Quota Utilization: Logical (%)","[Environmental Biology] Quota Utilization: Logical (%)","[Materials Research] Quota Utilization: Logical (%)","[Mechanical and Structural Systems] Quota Utilization: Logical (%)","[Microelectronic Information Processing Systems] Quota Utilization: Logical (%)","[Physics] Quota Utilization: Logical (%)","[Polar Programs] Quota Utilization: Logical (%)","[Social and Economic Science] Quota Utilization: Logical (%)" -2018,536.9840,114.4814,89.7267,88.2044,68.2127,2.5564,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,524.1506,103.5780,89.8593,87.4681,68.5146,2.5425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index dce01550dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Physical Usage (Bytes)" -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -"Molecular Biosciences",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index dce01550dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Physical Usage (Bytes)" -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -"Molecular Biosciences",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index dce01550dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Physical Usage (Bytes)" -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -"Molecular Biosciences",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index dce01550dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Physical Usage (Bytes)" -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -Chemistry,0.0000 -"Earth Sciences",0.0000 -"Electrical and Communication Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mathematical Sciences",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -"Molecular Biosciences",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 -Unknown,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index c272be94dd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 1af2fd2558..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d6e07766a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 5e9d7c37cd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Arts] Physical Usage (Bytes)","[Astronomical Sciences] Physical Usage (Bytes)","[Atmospheric Sciences] Physical Usage (Bytes)","[Chemical, Thermal Systems] Physical Usage (Bytes)","[Chemistry] Physical Usage (Bytes)","[Earth Sciences] Physical Usage (Bytes)","[Electrical and Communication Systems] Physical Usage (Bytes)","[Environmental Biology] Physical Usage (Bytes)","[Materials Research] Physical Usage (Bytes)","[Mathematical Sciences] Physical Usage (Bytes)","[Mechanical and Structural Systems] Physical Usage (Bytes)","[Microelectronic Information Processing Systems] Physical Usage (Bytes)","[Molecular Biosciences] Physical Usage (Bytes)","[Physics] Physical Usage (Bytes)","[Polar Programs] Physical Usage (Bytes)","[Social and Economic Science] Physical Usage (Bytes)","[Unknown] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index f89b273b9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Molecular Biosciences",146000015360000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10000003072000.0000 -"Earth Sciences",10000003072000.0000 -"Mathematical Sciences",10000003072000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index f89b273b9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Molecular Biosciences",146000015360000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10000003072000.0000 -"Earth Sciences",10000003072000.0000 -"Mathematical Sciences",10000003072000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index f89b273b9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Molecular Biosciences",146000015360000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10000003072000.0000 -"Earth Sciences",10000003072000.0000 -"Mathematical Sciences",10000003072000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index f89b273b9e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"Quota: Soft Threshold (Bytes)" -Unknown,781000019968000.0000 -"Molecular Biosciences",146000015360000.0000 -"Electrical and Communication Systems",25000001536000.0000 -Chemistry,10000003072000.0000 -"Earth Sciences",10000003072000.0000 -"Mathematical Sciences",10000003072000.0000 -Arts,0.0000 -"Astronomical Sciences",0.0000 -"Atmospheric Sciences",0.0000 -"Chemical, Thermal Systems",0.0000 -"Environmental Biology",0.0000 -"Materials Research",0.0000 -"Mechanical and Structural Systems",0.0000 -"Microelectronic Information Processing Systems",0.0000 -Physics,0.0000 -"Polar Programs",0.0000 -"Social and Economic Science",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index b1840f8ab4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" -2018-12-27,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 829a98db9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" -2018-12,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019-01,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 6484e53f82..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" -"2018 Q4",781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 2302c3e98d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] Quota: Soft Threshold (Bytes)","[Molecular Biosciences] Quota: Soft Threshold (Bytes)","[Electrical and Communication Systems] Quota: Soft Threshold (Bytes)","[Chemistry] Quota: Soft Threshold (Bytes)","[Earth Sciences] Quota: Soft Threshold (Bytes)","[Mathematical Sciences] Quota: Soft Threshold (Bytes)","[Arts] Quota: Soft Threshold (Bytes)","[Astronomical Sciences] Quota: Soft Threshold (Bytes)","[Atmospheric Sciences] Quota: Soft Threshold (Bytes)","[Chemical, Thermal Systems] Quota: Soft Threshold (Bytes)","[Environmental Biology] Quota: Soft Threshold (Bytes)","[Materials Research] Quota: Soft Threshold (Bytes)","[Mechanical and Structural Systems] Quota: Soft Threshold (Bytes)","[Microelectronic Information Processing Systems] Quota: Soft Threshold (Bytes)","[Physics] Quota: Soft Threshold (Bytes)","[Polar Programs] Quota: Soft Threshold (Bytes)","[Social and Economic Science] Quota: Soft Threshold (Bytes)" -2018,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 -2019,781000019968000,146000015360000,25000001536000,10000003072000,10000003072000,10000003072000,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv deleted file mode 100644 index f1a39b715f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"User Count (Number of Users)" -Unknown,188 -"Molecular Biosciences",24 -"Mechanical and Structural Systems",22 -"Earth Sciences",21 -Chemistry,18 -"Astronomical Sciences",15 -"Electrical and Communication Systems",15 -"Social and Economic Science",15 -"Mathematical Sciences",5 -"Polar Programs",5 -"Microelectronic Information Processing Systems",4 -"Materials Research",3 -Physics,3 -Arts,2 -"Chemical, Thermal Systems",2 -"Atmospheric Sciences",1 -"Environmental Biology",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv deleted file mode 100644 index f1a39b715f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"User Count (Number of Users)" -Unknown,188 -"Molecular Biosciences",24 -"Mechanical and Structural Systems",22 -"Earth Sciences",21 -Chemistry,18 -"Astronomical Sciences",15 -"Electrical and Communication Systems",15 -"Social and Economic Science",15 -"Mathematical Sciences",5 -"Polar Programs",5 -"Microelectronic Information Processing Systems",4 -"Materials Research",3 -Physics,3 -Arts,2 -"Chemical, Thermal Systems",2 -"Atmospheric Sciences",1 -"Environmental Biology",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index f1a39b715f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"User Count (Number of Users)" -Unknown,188 -"Molecular Biosciences",24 -"Mechanical and Structural Systems",22 -"Earth Sciences",21 -Chemistry,18 -"Astronomical Sciences",15 -"Electrical and Communication Systems",15 -"Social and Economic Science",15 -"Mathematical Sciences",5 -"Polar Programs",5 -"Microelectronic Information Processing Systems",4 -"Materials Research",3 -Physics,3 -Arts,2 -"Chemical, Thermal Systems",2 -"Atmospheric Sciences",1 -"Environmental Biology",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv deleted file mode 100644 index f1a39b715f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,26 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Department,"User Count (Number of Users)" -Unknown,188 -"Molecular Biosciences",24 -"Mechanical and Structural Systems",22 -"Earth Sciences",21 -Chemistry,18 -"Astronomical Sciences",15 -"Electrical and Communication Systems",15 -"Social and Economic Science",15 -"Mathematical Sciences",5 -"Polar Programs",5 -"Microelectronic Information Processing Systems",4 -"Materials Research",3 -Physics,3 -Arts,2 -"Chemical, Thermal Systems",2 -"Atmospheric Sciences",1 -"Environmental Biology",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 616455154f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" -2018-12-27,187,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2018-12-28,187,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2018-12-29,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2018-12-30,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2018-12-31,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019-01-01,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019-01-02,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019-01-03,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019-01-04,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019-01-05,188,24,22,20,18,15,15,15,5,5,4,3,3,2,2,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 6c1884b60c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" -2018-12,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019-01,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index ba0aab272b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" -"2018 Q4",188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -"2019 Q1",188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 4b5d9cc800..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/parentscience/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Department" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Unknown] User Count (Number of Users)","[Molecular Biosciences] User Count (Number of Users)","[Mechanical and Structural Systems] User Count (Number of Users)","[Earth Sciences] User Count (Number of Users)","[Chemistry] User Count (Number of Users)","[Astronomical Sciences] User Count (Number of Users)","[Electrical and Communication Systems] User Count (Number of Users)","[Social and Economic Science] User Count (Number of Users)","[Mathematical Sciences] User Count (Number of Users)","[Polar Programs] User Count (Number of Users)","[Microelectronic Information Processing Systems] User Count (Number of Users)","[Materials Research] User Count (Number of Users)","[Physics] User Count (Number of Users)","[Arts] User Count (Number of Users)","[Chemical, Thermal Systems] User Count (Number of Users)","[Atmospheric Sciences] User Count (Number of Users)","[Environmental Biology] User Count (Number of Users)" -2018,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 -2019,188,24,22,21,18,15,15,15,5,5,4,3,3,2,2,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index ca7cb7f1b0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"File Count (Number of files)" -"Warbler, Magnolia",105192388.3000 -"Cowbird, Brown-headed",89120484.8000 -Bobolink,15196470.0000 -"Bunting, Chestnut-eared",6091664.1000 -"Reed, Pallas's",2275235.8000 -"Kestrel, Lesser",2148624.5000 -"Bunting, Little",1365060.7000 -Chaffinch,1227901.8000 -Coot,1185344.0000 -"Waterthrush, Northern",1135809.0000 -"Scaup, Lesser",943505.0000 -Yellowhammer,938054.4000 -"Chiffchaff, Iberian",785457.2000 -"Martin, Purple",748238.5000 -"Warbler, Black-and-white",630272.0000 -"Bunting, Cirl",595394.0000 -"Sparrow, White-crowned",509822.5000 -"Oriole, Baltimore",381957.1000 -"Junco, Dark-eyed",292582.3000 -"Auk, Little",288362.9000 -"Bunting, Pine",174607.9000 -"Thrush, Swainson's",160124.7000 -"Bunting, Rock",143440.2000 -"Grosbeak, Rose-breasted",123610.8000 -"Bunting, Black-faced",121125.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -"Bunting, Cretzschmar's",101637.5000 -"Swift, Alpine",86623.1000 -Twite,79552.6000 -"Bunting, Snow",73344.0000 -Dunlin,62708.5000 -Ovenbird,55522.9000 -"Tanager, Scarlet",54479.7000 -"Sparrow, Lark",51464.8000 -Linnet,33143.8000 -"Martin, Sand",32673.0000 -"Crossbill, Common",31883.8000 -"Thrush, Rock",30131.0000 -Roller,24220.7000 -"Wagtail, Citrine",23780.0000 -"Warbler, Yellow",21001.0000 -"Plover, White-tailed",20036.0000 -"Egret, Cattle",18325.0000 -"Sandpiper, Purple",16500.5000 -"Sparrow, Rock",15288.0000 -"Bunting, Reed",14496.8000 -"Warbler, Tennessee",14270.0000 -"Warbler, Hume's",13556.3000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Blyth's",12295.0000 -"Rock, Blue",11988.0000 -"Pipit, Tawny",11130.8000 -"Parula, Northern",10410.6000 -"Towhee, Eastern",8955.0000 -"Flycatcher, Collared",8530.0000 -"Wheatear, Black-eared",7417.0000 -"Crossbill, Parrot",7042.1000 -Bluethroat,7009.4000 -"Redstart, Moussier's",6970.0000 -"Crane, Sandhill",6954.5000 -"Grebe, Pied-billed",6781.0000 -"Treecreeper, Short-toed",6025.8000 -Serin,5866.0000 -Honey-buzzard,5423.0000 -"Warbler, Hooded",5262.0000 -"Grosbeak, Pine",4624.8000 -Redwing,4617.0000 -"Finch, Trumpeter",4360.0000 -"Warbler, Blackburnian",2916.0000 -"Black, White-crowned",2875.7000 -"Redpoll, Arctic",2842.6000 -"Pipit, Water",2828.3000 -"Wheatear, Isabelline",2742.0000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.3000 -Goldfinch,2503.8000 -"Thrush, Grey-cheeked",2498.3000 -"Thrush, Siberian",2362.0000 -"Thrush, Naumann's",2350.0000 -"Blue, Siberian",2215.0000 -Greenfinch,2199.3000 -"Rubythroat, Siberian",2063.0000 -"Crossbill, Two-barred",1958.5000 -"Redstart, Black",1648.0000 -Hawfinch,1548.7000 -Whinchat,1442.0000 -"Bunting, Corn",1334.0000 -Wheatear,1306.0000 -"Lark, Black",1225.0000 -Redstart,1111.0000 -Bullfinch,1058.3000 -"Flycatcher, Pied",1051.0000 -"Wagtail, Grey",995.9000 -Dipper,915.0000 -Starling,896.0000 -"Pipit, Olive-backed",822.7000 -"Lark, White-winged",788.0000 -"Crossbill, Scottish",776.0000 -"Sparrow, Savannah",678.0000 -Stonechat,609.0000 -"Wheatear, Pied",605.0000 -"Bluetail, Red-flanked",504.6000 -"Thrush, Eyebrowed",494.0000 -"Bunting, Yellow-browed",468.0000 -"Thrush, Varied",452.0000 -"Pipit, Pechora",448.0000 -Wren,425.0000 -"Lark, Bimaculated",404.0000 -"Sparrow, House",396.7000 -"Waxwing, Cedar",373.0000 -"Thrasher, Brown",368.0000 -"Nightingale, Thrush",352.7000 -"Pipit, Rock",328.0000 -"Grey, Southern",327.2000 -"Pipit, Richard's",321.4000 -"Grouse, Red",314.0000 -"Bush, Rufous",289.0000 -Treecreeper,175.0000 -"Mockingbird, Northern",171.0000 -"Martin, Crag",167.6000 -Robin,163.0000 -"Reed, Great",161.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.4000 -Brambling,142.6000 -"Dove, Turtle",138.0000 -"Lark, Calandra",130.0000 -"Ouzel, Ring",123.0000 -"Thrush, Black-throated",113.0000 -"Tit, Marsh",106.0000 -Veery,103.0000 -"Tit, Coal",102.0000 -"Sparrow, Spanish",101.5000 -"Tern, Sandwich",97.0000 -"Wheatear, Desert",91.4000 -"Warbler, River",90.0000 -"Tit, Crested",86.0000 -"Warbler, Garden",78.0000 -"Warbler, Cetti's",75.0000 -"Warbler, Dartford",75.0000 -"Tit, Great",72.0000 -"Thrush, Wood",69.0000 -"Shrike, Long-tailed",65.0000 -"Catbird, Grey",60.0000 -"Warbler, Olive-tree",57.0000 -"Warbler, Aquatic",53.0000 -"Flycatcher, Brown",52.8000 -"Warbler, Reed",52.0000 -"Flycatcher, Red-breasted",51.3000 -"Tit, Blue",51.0000 -"Warbler, Dusky",50.0000 -"Warbler, Spectacled",50.0000 -Whitethroat,50.0000 -"Tit, Penduline",49.0000 -"Warbler, Yellow-browed",48.0000 -Firecrest,43.0000 -"Robin, Rufous-tailed",42.0000 -"Warbler, Melodious",39.0000 -Raven,38.0000 -"Thrush, Song",37.0000 -"Warbler, Golden-winged",36.0000 -Dunnock,34.0000 -"Warbler, Marsh",34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Ruppell's",31.0000 -"Crow, Carrion",29.0000 -Nutcracker,29.0000 -Rook,29.0000 -Jay,28.0000 -Magpie,28.0000 -Chough,26.0000 -"Shearwater, Cory's",25.0000 -"Shrike, Masked",25.0000 -"Orphean, Western",24.0000 -"Robin, American",22.0000 -"Shrike, Woodchat",22.0000 -"Reed, Blyth's",19.0000 -"Shrike, Red-backed",17.0000 -"Oriole, Golden",15.0000 -"Shrike, Isabelline",15.0000 -"Vireo, Red-eyed",14.0000 -"Warbler, Sedge",13.0000 -"Tanager, Summer",12.0000 -"Phoebe, Eastern",11.0000 -"Shearwater, Balearic",11.0000 -"Vireo, Philadelphia",11.0000 -"Vireo, Yellow-throated",11.0000 -"Warbler, Grasshopper",11.0000 -"Warbler, Thick-billed",11.0000 -Blackbird,10.8889 -"Falcon, Gyr",10.0000 -Hobby,10.0000 -"Olivaceous, Eastern",10.0000 -"Parakeet, Ring-necked",10.0000 -Shag,10.0000 -"Warbler, Lanceolated",10.0000 -"Whitethroat, Lesser",10.0000 -"Falcon, Amur",9.0000 -"Falcon, Red-footed",9.0000 -"Kestrel, American",9.0000 -"Tit, Long-tailed",9.0000 -"Warbler, Greenish",9.0000 -Kestrel,7.0000 -"Swallow, Cliff",7.0000 -"Warbler, Icterine",7.0000 -"Woodpecker, Green",7.0000 -"Grasshopper, Pallas's",6.5000 -Waxwing,6.4000 -Bee-eater,6.0000 -"Bee-eater, Blue-cheeked",6.0000 -Hoopoe,6.0000 -Wryneck,6.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Nightjar, Egyptian",5.0000 -"Nightjar, Red-necked",5.0000 -Swift,5.0000 -"Swift, Chimney",5.0000 -"Swift, Needle-tailed",5.0000 -"Swift, Pacific",5.0000 -"Swift, Pallid",5.0000 -"Warbler, Yellow-rumped",5.0000 -"Crowned, Eastern",4.0000 -Nightjar,4.0000 -"Owl, Hawk",4.0000 -"Owl, Long-eared",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Owl, Tawny",4.0000 -"Owl, Tengmalm's",4.0000 -"Sandpiper, Spotted",4.0000 -"Scoter, Velvet",4.0000 -"Swallow, Red-rumped",4.0000 -"Warbler, Green",4.0000 -"Warbler, Subalpine",4.0000 -"Bonelli's, Western",3.0000 -Cuckoo,3.0000 -"Cuckoo, Yellow-billed",3.0000 -"Dove, Collared",3.0000 -"Dove, Mourning",3.0000 -"Dove, Stock",3.0000 -"Martin, House",3.0000 -"Owl, Barn",3.0000 -"Owl, Scops",3.0000 -"Spotted, Great",3.0000 -"Turtle, Rufous",3.0000 -Wallcreeper,3.0000 -Woodpigeon,3.0000 -"Black-backed, Great",2.0000 -"Black-backed, Lesser",2.0000 -Blackcap,2.0000 -"Dove, Rock",2.0000 -"Gull, Caspian",2.0000 -"Gull, Glaucous",2.0000 -"Gull, Iceland",2.0000 -"Gull, Slaty-backed",2.0000 -"Herring, American",2.0000 -"May, Cape",2.0000 -"Sandgrouse, Pallas's",2.0000 -Swallow,2.0000 -"Swallow, Tree",2.0000 -"Wagtail, Yellow",2.0000 -"Warbler, Pallas's",2.0000 -"Warbler, Willow",2.0000 -"Auk, Great",1.0000 -Bittern,1.0000 -"Black, White-winged",1.0000 -"Courser, Cream-coloured",1.0000 -"Crested, Lesser",1.0000 -"Dowitcher, Long-billed",1.0000 -Greenshank,1.0000 -"Grosbeak, Evening",1.0000 -Guillemot,1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Black-headed",1.0000 -"Gull, Common",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Ivory",1.0000 -"Gull, Laughing",1.0000 -"Gull, Little",1.0000 -"Gull, Mediterranean",1.0000 -"Gull, Ross's",1.0000 -"Gull, Sabine's",1.0000 -"Gull, Slender-billed",1.0000 -Kittiwake,1.0000 -"Lark, Crested",1.0000 -"Lark, Shore",1.0000 -"Lark, Short-toed",1.0000 -"Murrelet, Ancient",1.0000 -"Murrelet, Long-billed",1.0000 -"Phalarope, Grey",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -"Pipit, Tree",1.0000 -"Pratincole, Black-winged",1.0000 -"Pratincole, Collared",1.0000 -"Pratincole, Oriental",1.0000 -"Puffin, Tufted",1.0000 -Razorbill,1.0000 -Redshank,1.0000 -"Rosefinch, Common",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Common",1.0000 -"Sandpiper, Green",1.0000 -"Sandpiper, Least",1.0000 -"Sandpiper, Marsh",1.0000 -"Sandpiper, Pectoral",1.0000 -"Sandpiper, Semipalmated",1.0000 -"Sandpiper, Solitary",1.0000 -"Sandpiper, Terek",1.0000 -"Sandpiper, White-rumped",1.0000 -"Sandpiper, Wood",1.0000 -"Short-toed, Lesser",1.0000 -"Skua, Great",1.0000 -"Skua, Long-tailed",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Snipe, Jack",1.0000 -"Snipe, Wilson's",1.0000 -"Tattler, Grey-tailed",1.0000 -"Tern, Aleutian",1.0000 -"Tern, Arctic",1.0000 -"Tern, Black",1.0000 -"Tern, Bridled",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -"Tern, Forster's",1.0000 -"Tern, Little",1.0000 -"Tern, Roseate",1.0000 -"Tern, Royal",1.0000 -"Tern, Sooty",1.0000 -"Tern, Whiskered",1.0000 -"Warbler, Wood",1.0000 -Woodcock,1.0000 -Woodlark,1.0000 -"Yellowlegs, Greater",1.0000 -"Yellowlegs, Lesser",1.0000 -"Warbler, Sardinian",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 477a0ae44c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"File Count (Number of files)" -"Warbler, Magnolia",105192388.5000 -"Cowbird, Brown-headed",89120485.0000 -Bobolink,15196470.0000 -"Bunting, Chestnut-eared",6091664.0000 -"Reed, Pallas's",2275235.5000 -"Kestrel, Lesser",2148624.5000 -"Bunting, Little",1365060.5000 -Chaffinch,1227901.5000 -Coot,1185344.0000 -"Waterthrush, Northern",1135809.0000 -"Scaup, Lesser",943505.0000 -Yellowhammer,938054.0000 -"Chiffchaff, Iberian",785457.0000 -"Martin, Purple",748238.5000 -"Warbler, Black-and-white",630272.0000 -"Bunting, Cirl",595394.0000 -"Sparrow, White-crowned",509822.5000 -"Oriole, Baltimore",381957.0000 -"Junco, Dark-eyed",292582.5000 -"Auk, Little",288363.0000 -"Bunting, Pine",174608.0000 -"Thrush, Swainson's",160124.5000 -"Bunting, Rock",143440.0000 -"Grosbeak, Rose-breasted",123611.0000 -"Bunting, Black-faced",121125.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -"Bunting, Cretzschmar's",101637.5000 -"Swift, Alpine",86623.0000 -Twite,79552.5000 -"Bunting, Snow",73344.0000 -Dunlin,62708.5000 -Ovenbird,55523.0000 -"Tanager, Scarlet",54480.0000 -"Sparrow, Lark",51465.0000 -Linnet,33144.0000 -"Martin, Sand",32673.0000 -"Crossbill, Common",31883.5000 -"Thrush, Rock",30131.0000 -Roller,24220.5000 -"Wagtail, Citrine",23780.0000 -"Sandpiper, Purple",21999.5000 -"Warbler, Yellow",21001.0000 -"Plover, White-tailed",20036.0000 -"Egret, Cattle",18325.0000 -"Sparrow, Rock",15288.0000 -"Bunting, Reed",14497.0000 -"Warbler, Tennessee",14270.0000 -"Warbler, Hume's",13556.5000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Blyth's",12295.0000 -"Rock, Blue",11988.0000 -"Pipit, Tawny",11130.5000 -"Parula, Northern",10411.0000 -"Towhee, Eastern",8955.0000 -"Flycatcher, Collared",8530.0000 -"Wheatear, Black-eared",7417.0000 -"Crossbill, Parrot",7042.0000 -Bluethroat,7009.5000 -"Redstart, Moussier's",6970.0000 -"Crane, Sandhill",6954.5000 -"Grebe, Pied-billed",6781.0000 -"Treecreeper, Short-toed",6026.0000 -Serin,5866.0000 -Honey-buzzard,5423.0000 -"Warbler, Hooded",5262.0000 -"Grosbeak, Pine",4625.0000 -Redwing,4617.0000 -"Finch, Trumpeter",4360.0000 -"Warbler, Blackburnian",2916.0000 -"Black, White-crowned",2875.5000 -"Redpoll, Arctic",2842.5000 -"Pipit, Water",2828.5000 -"Wheatear, Isabelline",2742.0000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.5000 -Goldfinch,2503.5000 -"Thrush, Grey-cheeked",2498.5000 -"Thrush, Siberian",2362.0000 -"Thrush, Naumann's",2350.0000 -"Blue, Siberian",2215.0000 -Greenfinch,2199.5000 -"Rubythroat, Siberian",2063.0000 -"Crossbill, Two-barred",1958.5000 -"Redstart, Black",1648.0000 -Hawfinch,1548.5000 -Whinchat,1442.0000 -"Bunting, Corn",1334.0000 -Wheatear,1306.0000 -"Lark, Black",1225.0000 -Redstart,1111.0000 -Bullfinch,1058.0000 -"Flycatcher, Pied",1051.0000 -"Wagtail, Grey",996.0000 -Dipper,915.0000 -Starling,896.0000 -"Pipit, Olive-backed",822.5000 -"Lark, White-winged",788.0000 -"Crossbill, Scottish",776.0000 -"Sparrow, Savannah",678.0000 -Stonechat,609.0000 -"Wheatear, Pied",605.0000 -"Bluetail, Red-flanked",504.5000 -"Thrush, Eyebrowed",494.0000 -"Bunting, Yellow-browed",468.0000 -"Thrush, Varied",452.0000 -"Pipit, Pechora",448.0000 -Wren,425.0000 -"Lark, Bimaculated",404.0000 -"Sparrow, House",396.5000 -"Waxwing, Cedar",373.0000 -"Thrasher, Brown",368.0000 -"Nightingale, Thrush",352.5000 -"Pipit, Rock",328.0000 -"Grey, Southern",327.0000 -"Pipit, Richard's",321.5000 -"Grouse, Red",314.0000 -"Bush, Rufous",289.0000 -Treecreeper,175.0000 -"Mockingbird, Northern",171.0000 -"Martin, Crag",167.5000 -Robin,163.0000 -"Reed, Great",161.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.5000 -Brambling,142.5000 -"Dove, Turtle",138.0000 -"Lark, Calandra",130.0000 -"Ouzel, Ring",123.0000 -"Thrush, Black-throated",113.0000 -"Tit, Marsh",106.0000 -Veery,103.0000 -"Tit, Coal",102.0000 -"Sparrow, Spanish",101.5000 -"Tern, Sandwich",97.0000 -"Wheatear, Desert",91.5000 -"Warbler, River",90.0000 -"Tit, Crested",86.0000 -"Warbler, Garden",78.0000 -"Warbler, Cetti's",75.0000 -"Warbler, Dartford",75.0000 -"Tit, Great",72.0000 -"Thrush, Wood",69.0000 -"Shrike, Long-tailed",65.0000 -"Catbird, Grey",60.0000 -"Warbler, Olive-tree",57.0000 -"Flycatcher, Brown",53.0000 -"Warbler, Aquatic",53.0000 -"Warbler, Reed",52.0000 -"Flycatcher, Red-breasted",51.5000 -"Tit, Blue",51.0000 -"Warbler, Dusky",50.0000 -"Warbler, Spectacled",50.0000 -Whitethroat,50.0000 -"Tit, Penduline",49.0000 -"Warbler, Yellow-browed",48.0000 -Firecrest,43.0000 -"Robin, Rufous-tailed",42.0000 -"Warbler, Melodious",39.0000 -Raven,38.0000 -"Thrush, Song",37.0000 -"Warbler, Golden-winged",36.0000 -Dunnock,34.0000 -"Warbler, Marsh",34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Ruppell's",31.0000 -"Crow, Carrion",29.0000 -Nutcracker,29.0000 -Rook,29.0000 -Jay,28.0000 -Magpie,28.0000 -Chough,26.0000 -"Shearwater, Cory's",25.0000 -"Shrike, Masked",25.0000 -"Orphean, Western",24.0000 -"Robin, American",22.0000 -"Shrike, Woodchat",22.0000 -"Reed, Blyth's",19.0000 -"Shrike, Red-backed",17.0000 -"Oriole, Golden",15.0000 -"Shrike, Isabelline",15.0000 -"Vireo, Red-eyed",14.0000 -"Warbler, Sedge",13.0000 -"Tanager, Summer",12.0000 -Blackbird,11.0000 -"Phoebe, Eastern",11.0000 -"Shearwater, Balearic",11.0000 -"Vireo, Philadelphia",11.0000 -"Vireo, Yellow-throated",11.0000 -"Warbler, Grasshopper",11.0000 -"Warbler, Thick-billed",11.0000 -"Falcon, Gyr",10.0000 -Hobby,10.0000 -"Olivaceous, Eastern",10.0000 -"Parakeet, Ring-necked",10.0000 -Shag,10.0000 -"Warbler, Lanceolated",10.0000 -"Whitethroat, Lesser",10.0000 -"Falcon, Amur",9.0000 -"Falcon, Red-footed",9.0000 -"Kestrel, American",9.0000 -"Tit, Long-tailed",9.0000 -"Warbler, Greenish",9.0000 -Kestrel,7.0000 -"Swallow, Cliff",7.0000 -"Warbler, Icterine",7.0000 -"Woodpecker, Green",7.0000 -"Grasshopper, Pallas's",6.5000 -Waxwing,6.5000 -Bee-eater,6.0000 -"Bee-eater, Blue-cheeked",6.0000 -Hoopoe,6.0000 -Wryneck,6.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Nightjar, Egyptian",5.0000 -"Nightjar, Red-necked",5.0000 -Swift,5.0000 -"Swift, Chimney",5.0000 -"Swift, Needle-tailed",5.0000 -"Swift, Pacific",5.0000 -"Swift, Pallid",5.0000 -"Warbler, Yellow-rumped",5.0000 -"Crowned, Eastern",4.0000 -Nightjar,4.0000 -"Owl, Hawk",4.0000 -"Owl, Long-eared",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Owl, Tawny",4.0000 -"Owl, Tengmalm's",4.0000 -"Sandpiper, Spotted",4.0000 -"Scoter, Velvet",4.0000 -"Swallow, Red-rumped",4.0000 -"Warbler, Green",4.0000 -"Warbler, Subalpine",4.0000 -"Bonelli's, Western",3.0000 -Cuckoo,3.0000 -"Cuckoo, Yellow-billed",3.0000 -"Dove, Collared",3.0000 -"Dove, Mourning",3.0000 -"Dove, Stock",3.0000 -"Martin, House",3.0000 -"Owl, Barn",3.0000 -"Owl, Scops",3.0000 -"Spotted, Great",3.0000 -"Turtle, Rufous",3.0000 -Wallcreeper,3.0000 -Woodpigeon,3.0000 -"Black-backed, Great",2.0000 -"Black-backed, Lesser",2.0000 -Blackcap,2.0000 -"Dove, Rock",2.0000 -"Gull, Caspian",2.0000 -"Gull, Glaucous",2.0000 -"Gull, Iceland",2.0000 -"Gull, Slaty-backed",2.0000 -"Herring, American",2.0000 -"May, Cape",2.0000 -"Sandgrouse, Pallas's",2.0000 -Swallow,2.0000 -"Swallow, Tree",2.0000 -"Wagtail, Yellow",2.0000 -"Warbler, Pallas's",2.0000 -"Warbler, Willow",2.0000 -"Auk, Great",1.0000 -Bittern,1.0000 -"Black, White-winged",1.0000 -"Courser, Cream-coloured",1.0000 -"Crested, Lesser",1.0000 -"Dowitcher, Long-billed",1.0000 -Greenshank,1.0000 -"Grosbeak, Evening",1.0000 -Guillemot,1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Black-headed",1.0000 -"Gull, Common",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Ivory",1.0000 -"Gull, Laughing",1.0000 -"Gull, Little",1.0000 -"Gull, Mediterranean",1.0000 -"Gull, Ross's",1.0000 -"Gull, Sabine's",1.0000 -"Gull, Slender-billed",1.0000 -Kittiwake,1.0000 -"Lark, Crested",1.0000 -"Lark, Shore",1.0000 -"Lark, Short-toed",1.0000 -"Murrelet, Ancient",1.0000 -"Murrelet, Long-billed",1.0000 -"Phalarope, Grey",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -"Pipit, Tree",1.0000 -"Pratincole, Black-winged",1.0000 -"Pratincole, Collared",1.0000 -"Pratincole, Oriental",1.0000 -"Puffin, Tufted",1.0000 -Razorbill,1.0000 -Redshank,1.0000 -"Rosefinch, Common",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Common",1.0000 -"Sandpiper, Green",1.0000 -"Sandpiper, Least",1.0000 -"Sandpiper, Marsh",1.0000 -"Sandpiper, Pectoral",1.0000 -"Sandpiper, Semipalmated",1.0000 -"Sandpiper, Solitary",1.0000 -"Sandpiper, Terek",1.0000 -"Sandpiper, White-rumped",1.0000 -"Sandpiper, Wood",1.0000 -"Short-toed, Lesser",1.0000 -"Skua, Great",1.0000 -"Skua, Long-tailed",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Snipe, Jack",1.0000 -"Snipe, Wilson's",1.0000 -"Tattler, Grey-tailed",1.0000 -"Tern, Aleutian",1.0000 -"Tern, Arctic",1.0000 -"Tern, Black",1.0000 -"Tern, Bridled",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -"Tern, Forster's",1.0000 -"Tern, Little",1.0000 -"Tern, Roseate",1.0000 -"Tern, Royal",1.0000 -"Tern, Sooty",1.0000 -"Tern, Whiskered",1.0000 -"Warbler, Wood",1.0000 -Woodcock,1.0000 -Woodlark,1.0000 -"Yellowlegs, Greater",1.0000 -"Yellowlegs, Lesser",1.0000 -"Warbler, Sardinian",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 477a0ae44c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"File Count (Number of files)" -"Warbler, Magnolia",105192388.5000 -"Cowbird, Brown-headed",89120485.0000 -Bobolink,15196470.0000 -"Bunting, Chestnut-eared",6091664.0000 -"Reed, Pallas's",2275235.5000 -"Kestrel, Lesser",2148624.5000 -"Bunting, Little",1365060.5000 -Chaffinch,1227901.5000 -Coot,1185344.0000 -"Waterthrush, Northern",1135809.0000 -"Scaup, Lesser",943505.0000 -Yellowhammer,938054.0000 -"Chiffchaff, Iberian",785457.0000 -"Martin, Purple",748238.5000 -"Warbler, Black-and-white",630272.0000 -"Bunting, Cirl",595394.0000 -"Sparrow, White-crowned",509822.5000 -"Oriole, Baltimore",381957.0000 -"Junco, Dark-eyed",292582.5000 -"Auk, Little",288363.0000 -"Bunting, Pine",174608.0000 -"Thrush, Swainson's",160124.5000 -"Bunting, Rock",143440.0000 -"Grosbeak, Rose-breasted",123611.0000 -"Bunting, Black-faced",121125.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -"Bunting, Cretzschmar's",101637.5000 -"Swift, Alpine",86623.0000 -Twite,79552.5000 -"Bunting, Snow",73344.0000 -Dunlin,62708.5000 -Ovenbird,55523.0000 -"Tanager, Scarlet",54480.0000 -"Sparrow, Lark",51465.0000 -Linnet,33144.0000 -"Martin, Sand",32673.0000 -"Crossbill, Common",31883.5000 -"Thrush, Rock",30131.0000 -Roller,24220.5000 -"Wagtail, Citrine",23780.0000 -"Sandpiper, Purple",21999.5000 -"Warbler, Yellow",21001.0000 -"Plover, White-tailed",20036.0000 -"Egret, Cattle",18325.0000 -"Sparrow, Rock",15288.0000 -"Bunting, Reed",14497.0000 -"Warbler, Tennessee",14270.0000 -"Warbler, Hume's",13556.5000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Blyth's",12295.0000 -"Rock, Blue",11988.0000 -"Pipit, Tawny",11130.5000 -"Parula, Northern",10411.0000 -"Towhee, Eastern",8955.0000 -"Flycatcher, Collared",8530.0000 -"Wheatear, Black-eared",7417.0000 -"Crossbill, Parrot",7042.0000 -Bluethroat,7009.5000 -"Redstart, Moussier's",6970.0000 -"Crane, Sandhill",6954.5000 -"Grebe, Pied-billed",6781.0000 -"Treecreeper, Short-toed",6026.0000 -Serin,5866.0000 -Honey-buzzard,5423.0000 -"Warbler, Hooded",5262.0000 -"Grosbeak, Pine",4625.0000 -Redwing,4617.0000 -"Finch, Trumpeter",4360.0000 -"Warbler, Blackburnian",2916.0000 -"Black, White-crowned",2875.5000 -"Redpoll, Arctic",2842.5000 -"Pipit, Water",2828.5000 -"Wheatear, Isabelline",2742.0000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.5000 -Goldfinch,2503.5000 -"Thrush, Grey-cheeked",2498.5000 -"Thrush, Siberian",2362.0000 -"Thrush, Naumann's",2350.0000 -"Blue, Siberian",2215.0000 -Greenfinch,2199.5000 -"Rubythroat, Siberian",2063.0000 -"Crossbill, Two-barred",1958.5000 -"Redstart, Black",1648.0000 -Hawfinch,1548.5000 -Whinchat,1442.0000 -"Bunting, Corn",1334.0000 -Wheatear,1306.0000 -"Lark, Black",1225.0000 -Redstart,1111.0000 -Bullfinch,1058.0000 -"Flycatcher, Pied",1051.0000 -"Wagtail, Grey",996.0000 -Dipper,915.0000 -Starling,896.0000 -"Pipit, Olive-backed",822.5000 -"Lark, White-winged",788.0000 -"Crossbill, Scottish",776.0000 -"Sparrow, Savannah",678.0000 -Stonechat,609.0000 -"Wheatear, Pied",605.0000 -"Bluetail, Red-flanked",504.5000 -"Thrush, Eyebrowed",494.0000 -"Bunting, Yellow-browed",468.0000 -"Thrush, Varied",452.0000 -"Pipit, Pechora",448.0000 -Wren,425.0000 -"Lark, Bimaculated",404.0000 -"Sparrow, House",396.5000 -"Waxwing, Cedar",373.0000 -"Thrasher, Brown",368.0000 -"Nightingale, Thrush",352.5000 -"Pipit, Rock",328.0000 -"Grey, Southern",327.0000 -"Pipit, Richard's",321.5000 -"Grouse, Red",314.0000 -"Bush, Rufous",289.0000 -Treecreeper,175.0000 -"Mockingbird, Northern",171.0000 -"Martin, Crag",167.5000 -Robin,163.0000 -"Reed, Great",161.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.5000 -Brambling,142.5000 -"Dove, Turtle",138.0000 -"Lark, Calandra",130.0000 -"Ouzel, Ring",123.0000 -"Thrush, Black-throated",113.0000 -"Tit, Marsh",106.0000 -Veery,103.0000 -"Tit, Coal",102.0000 -"Sparrow, Spanish",101.5000 -"Tern, Sandwich",97.0000 -"Wheatear, Desert",91.5000 -"Warbler, River",90.0000 -"Tit, Crested",86.0000 -"Warbler, Garden",78.0000 -"Warbler, Cetti's",75.0000 -"Warbler, Dartford",75.0000 -"Tit, Great",72.0000 -"Thrush, Wood",69.0000 -"Shrike, Long-tailed",65.0000 -"Catbird, Grey",60.0000 -"Warbler, Olive-tree",57.0000 -"Flycatcher, Brown",53.0000 -"Warbler, Aquatic",53.0000 -"Warbler, Reed",52.0000 -"Flycatcher, Red-breasted",51.5000 -"Tit, Blue",51.0000 -"Warbler, Dusky",50.0000 -"Warbler, Spectacled",50.0000 -Whitethroat,50.0000 -"Tit, Penduline",49.0000 -"Warbler, Yellow-browed",48.0000 -Firecrest,43.0000 -"Robin, Rufous-tailed",42.0000 -"Warbler, Melodious",39.0000 -Raven,38.0000 -"Thrush, Song",37.0000 -"Warbler, Golden-winged",36.0000 -Dunnock,34.0000 -"Warbler, Marsh",34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Ruppell's",31.0000 -"Crow, Carrion",29.0000 -Nutcracker,29.0000 -Rook,29.0000 -Jay,28.0000 -Magpie,28.0000 -Chough,26.0000 -"Shearwater, Cory's",25.0000 -"Shrike, Masked",25.0000 -"Orphean, Western",24.0000 -"Robin, American",22.0000 -"Shrike, Woodchat",22.0000 -"Reed, Blyth's",19.0000 -"Shrike, Red-backed",17.0000 -"Oriole, Golden",15.0000 -"Shrike, Isabelline",15.0000 -"Vireo, Red-eyed",14.0000 -"Warbler, Sedge",13.0000 -"Tanager, Summer",12.0000 -Blackbird,11.0000 -"Phoebe, Eastern",11.0000 -"Shearwater, Balearic",11.0000 -"Vireo, Philadelphia",11.0000 -"Vireo, Yellow-throated",11.0000 -"Warbler, Grasshopper",11.0000 -"Warbler, Thick-billed",11.0000 -"Falcon, Gyr",10.0000 -Hobby,10.0000 -"Olivaceous, Eastern",10.0000 -"Parakeet, Ring-necked",10.0000 -Shag,10.0000 -"Warbler, Lanceolated",10.0000 -"Whitethroat, Lesser",10.0000 -"Falcon, Amur",9.0000 -"Falcon, Red-footed",9.0000 -"Kestrel, American",9.0000 -"Tit, Long-tailed",9.0000 -"Warbler, Greenish",9.0000 -Kestrel,7.0000 -"Swallow, Cliff",7.0000 -"Warbler, Icterine",7.0000 -"Woodpecker, Green",7.0000 -"Grasshopper, Pallas's",6.5000 -Waxwing,6.5000 -Bee-eater,6.0000 -"Bee-eater, Blue-cheeked",6.0000 -Hoopoe,6.0000 -Wryneck,6.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Nightjar, Egyptian",5.0000 -"Nightjar, Red-necked",5.0000 -Swift,5.0000 -"Swift, Chimney",5.0000 -"Swift, Needle-tailed",5.0000 -"Swift, Pacific",5.0000 -"Swift, Pallid",5.0000 -"Warbler, Yellow-rumped",5.0000 -"Crowned, Eastern",4.0000 -Nightjar,4.0000 -"Owl, Hawk",4.0000 -"Owl, Long-eared",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Owl, Tawny",4.0000 -"Owl, Tengmalm's",4.0000 -"Sandpiper, Spotted",4.0000 -"Scoter, Velvet",4.0000 -"Swallow, Red-rumped",4.0000 -"Warbler, Green",4.0000 -"Warbler, Subalpine",4.0000 -"Bonelli's, Western",3.0000 -Cuckoo,3.0000 -"Cuckoo, Yellow-billed",3.0000 -"Dove, Collared",3.0000 -"Dove, Mourning",3.0000 -"Dove, Stock",3.0000 -"Martin, House",3.0000 -"Owl, Barn",3.0000 -"Owl, Scops",3.0000 -"Spotted, Great",3.0000 -"Turtle, Rufous",3.0000 -Wallcreeper,3.0000 -Woodpigeon,3.0000 -"Black-backed, Great",2.0000 -"Black-backed, Lesser",2.0000 -Blackcap,2.0000 -"Dove, Rock",2.0000 -"Gull, Caspian",2.0000 -"Gull, Glaucous",2.0000 -"Gull, Iceland",2.0000 -"Gull, Slaty-backed",2.0000 -"Herring, American",2.0000 -"May, Cape",2.0000 -"Sandgrouse, Pallas's",2.0000 -Swallow,2.0000 -"Swallow, Tree",2.0000 -"Wagtail, Yellow",2.0000 -"Warbler, Pallas's",2.0000 -"Warbler, Willow",2.0000 -"Auk, Great",1.0000 -Bittern,1.0000 -"Black, White-winged",1.0000 -"Courser, Cream-coloured",1.0000 -"Crested, Lesser",1.0000 -"Dowitcher, Long-billed",1.0000 -Greenshank,1.0000 -"Grosbeak, Evening",1.0000 -Guillemot,1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Black-headed",1.0000 -"Gull, Common",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Ivory",1.0000 -"Gull, Laughing",1.0000 -"Gull, Little",1.0000 -"Gull, Mediterranean",1.0000 -"Gull, Ross's",1.0000 -"Gull, Sabine's",1.0000 -"Gull, Slender-billed",1.0000 -Kittiwake,1.0000 -"Lark, Crested",1.0000 -"Lark, Shore",1.0000 -"Lark, Short-toed",1.0000 -"Murrelet, Ancient",1.0000 -"Murrelet, Long-billed",1.0000 -"Phalarope, Grey",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -"Pipit, Tree",1.0000 -"Pratincole, Black-winged",1.0000 -"Pratincole, Collared",1.0000 -"Pratincole, Oriental",1.0000 -"Puffin, Tufted",1.0000 -Razorbill,1.0000 -Redshank,1.0000 -"Rosefinch, Common",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Common",1.0000 -"Sandpiper, Green",1.0000 -"Sandpiper, Least",1.0000 -"Sandpiper, Marsh",1.0000 -"Sandpiper, Pectoral",1.0000 -"Sandpiper, Semipalmated",1.0000 -"Sandpiper, Solitary",1.0000 -"Sandpiper, Terek",1.0000 -"Sandpiper, White-rumped",1.0000 -"Sandpiper, Wood",1.0000 -"Short-toed, Lesser",1.0000 -"Skua, Great",1.0000 -"Skua, Long-tailed",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Snipe, Jack",1.0000 -"Snipe, Wilson's",1.0000 -"Tattler, Grey-tailed",1.0000 -"Tern, Aleutian",1.0000 -"Tern, Arctic",1.0000 -"Tern, Black",1.0000 -"Tern, Bridled",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -"Tern, Forster's",1.0000 -"Tern, Little",1.0000 -"Tern, Roseate",1.0000 -"Tern, Royal",1.0000 -"Tern, Sooty",1.0000 -"Tern, Whiskered",1.0000 -"Warbler, Wood",1.0000 -Woodcock,1.0000 -Woodlark,1.0000 -"Yellowlegs, Greater",1.0000 -"Yellowlegs, Lesser",1.0000 -"Warbler, Sardinian",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 477a0ae44c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"File Count (Number of files)" -"Warbler, Magnolia",105192388.5000 -"Cowbird, Brown-headed",89120485.0000 -Bobolink,15196470.0000 -"Bunting, Chestnut-eared",6091664.0000 -"Reed, Pallas's",2275235.5000 -"Kestrel, Lesser",2148624.5000 -"Bunting, Little",1365060.5000 -Chaffinch,1227901.5000 -Coot,1185344.0000 -"Waterthrush, Northern",1135809.0000 -"Scaup, Lesser",943505.0000 -Yellowhammer,938054.0000 -"Chiffchaff, Iberian",785457.0000 -"Martin, Purple",748238.5000 -"Warbler, Black-and-white",630272.0000 -"Bunting, Cirl",595394.0000 -"Sparrow, White-crowned",509822.5000 -"Oriole, Baltimore",381957.0000 -"Junco, Dark-eyed",292582.5000 -"Auk, Little",288363.0000 -"Bunting, Pine",174608.0000 -"Thrush, Swainson's",160124.5000 -"Bunting, Rock",143440.0000 -"Grosbeak, Rose-breasted",123611.0000 -"Bunting, Black-faced",121125.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -"Bunting, Cretzschmar's",101637.5000 -"Swift, Alpine",86623.0000 -Twite,79552.5000 -"Bunting, Snow",73344.0000 -Dunlin,62708.5000 -Ovenbird,55523.0000 -"Tanager, Scarlet",54480.0000 -"Sparrow, Lark",51465.0000 -Linnet,33144.0000 -"Martin, Sand",32673.0000 -"Crossbill, Common",31883.5000 -"Thrush, Rock",30131.0000 -Roller,24220.5000 -"Wagtail, Citrine",23780.0000 -"Sandpiper, Purple",21999.5000 -"Warbler, Yellow",21001.0000 -"Plover, White-tailed",20036.0000 -"Egret, Cattle",18325.0000 -"Sparrow, Rock",15288.0000 -"Bunting, Reed",14497.0000 -"Warbler, Tennessee",14270.0000 -"Warbler, Hume's",13556.5000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Blyth's",12295.0000 -"Rock, Blue",11988.0000 -"Pipit, Tawny",11130.5000 -"Parula, Northern",10411.0000 -"Towhee, Eastern",8955.0000 -"Flycatcher, Collared",8530.0000 -"Wheatear, Black-eared",7417.0000 -"Crossbill, Parrot",7042.0000 -Bluethroat,7009.5000 -"Redstart, Moussier's",6970.0000 -"Crane, Sandhill",6954.5000 -"Grebe, Pied-billed",6781.0000 -"Treecreeper, Short-toed",6026.0000 -Serin,5866.0000 -Honey-buzzard,5423.0000 -"Warbler, Hooded",5262.0000 -"Grosbeak, Pine",4625.0000 -Redwing,4617.0000 -"Finch, Trumpeter",4360.0000 -"Warbler, Blackburnian",2916.0000 -"Black, White-crowned",2875.5000 -"Redpoll, Arctic",2842.5000 -"Pipit, Water",2828.5000 -"Wheatear, Isabelline",2742.0000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.5000 -Goldfinch,2503.5000 -"Thrush, Grey-cheeked",2498.5000 -"Thrush, Siberian",2362.0000 -"Thrush, Naumann's",2350.0000 -"Blue, Siberian",2215.0000 -Greenfinch,2199.5000 -"Rubythroat, Siberian",2063.0000 -"Crossbill, Two-barred",1958.5000 -"Redstart, Black",1648.0000 -Hawfinch,1548.5000 -Whinchat,1442.0000 -"Bunting, Corn",1334.0000 -Wheatear,1306.0000 -"Lark, Black",1225.0000 -Redstart,1111.0000 -Bullfinch,1058.0000 -"Flycatcher, Pied",1051.0000 -"Wagtail, Grey",996.0000 -Dipper,915.0000 -Starling,896.0000 -"Pipit, Olive-backed",822.5000 -"Lark, White-winged",788.0000 -"Crossbill, Scottish",776.0000 -"Sparrow, Savannah",678.0000 -Stonechat,609.0000 -"Wheatear, Pied",605.0000 -"Bluetail, Red-flanked",504.5000 -"Thrush, Eyebrowed",494.0000 -"Bunting, Yellow-browed",468.0000 -"Thrush, Varied",452.0000 -"Pipit, Pechora",448.0000 -Wren,425.0000 -"Lark, Bimaculated",404.0000 -"Sparrow, House",396.5000 -"Waxwing, Cedar",373.0000 -"Thrasher, Brown",368.0000 -"Nightingale, Thrush",352.5000 -"Pipit, Rock",328.0000 -"Grey, Southern",327.0000 -"Pipit, Richard's",321.5000 -"Grouse, Red",314.0000 -"Bush, Rufous",289.0000 -Treecreeper,175.0000 -"Mockingbird, Northern",171.0000 -"Martin, Crag",167.5000 -Robin,163.0000 -"Reed, Great",161.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.5000 -Brambling,142.5000 -"Dove, Turtle",138.0000 -"Lark, Calandra",130.0000 -"Ouzel, Ring",123.0000 -"Thrush, Black-throated",113.0000 -"Tit, Marsh",106.0000 -Veery,103.0000 -"Tit, Coal",102.0000 -"Sparrow, Spanish",101.5000 -"Tern, Sandwich",97.0000 -"Wheatear, Desert",91.5000 -"Warbler, River",90.0000 -"Tit, Crested",86.0000 -"Warbler, Garden",78.0000 -"Warbler, Cetti's",75.0000 -"Warbler, Dartford",75.0000 -"Tit, Great",72.0000 -"Thrush, Wood",69.0000 -"Shrike, Long-tailed",65.0000 -"Catbird, Grey",60.0000 -"Warbler, Olive-tree",57.0000 -"Flycatcher, Brown",53.0000 -"Warbler, Aquatic",53.0000 -"Warbler, Reed",52.0000 -"Flycatcher, Red-breasted",51.5000 -"Tit, Blue",51.0000 -"Warbler, Dusky",50.0000 -"Warbler, Spectacled",50.0000 -Whitethroat,50.0000 -"Tit, Penduline",49.0000 -"Warbler, Yellow-browed",48.0000 -Firecrest,43.0000 -"Robin, Rufous-tailed",42.0000 -"Warbler, Melodious",39.0000 -Raven,38.0000 -"Thrush, Song",37.0000 -"Warbler, Golden-winged",36.0000 -Dunnock,34.0000 -"Warbler, Marsh",34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Ruppell's",31.0000 -"Crow, Carrion",29.0000 -Nutcracker,29.0000 -Rook,29.0000 -Jay,28.0000 -Magpie,28.0000 -Chough,26.0000 -"Shearwater, Cory's",25.0000 -"Shrike, Masked",25.0000 -"Orphean, Western",24.0000 -"Robin, American",22.0000 -"Shrike, Woodchat",22.0000 -"Reed, Blyth's",19.0000 -"Shrike, Red-backed",17.0000 -"Oriole, Golden",15.0000 -"Shrike, Isabelline",15.0000 -"Vireo, Red-eyed",14.0000 -"Warbler, Sedge",13.0000 -"Tanager, Summer",12.0000 -Blackbird,11.0000 -"Phoebe, Eastern",11.0000 -"Shearwater, Balearic",11.0000 -"Vireo, Philadelphia",11.0000 -"Vireo, Yellow-throated",11.0000 -"Warbler, Grasshopper",11.0000 -"Warbler, Thick-billed",11.0000 -"Falcon, Gyr",10.0000 -Hobby,10.0000 -"Olivaceous, Eastern",10.0000 -"Parakeet, Ring-necked",10.0000 -Shag,10.0000 -"Warbler, Lanceolated",10.0000 -"Whitethroat, Lesser",10.0000 -"Falcon, Amur",9.0000 -"Falcon, Red-footed",9.0000 -"Kestrel, American",9.0000 -"Tit, Long-tailed",9.0000 -"Warbler, Greenish",9.0000 -Kestrel,7.0000 -"Swallow, Cliff",7.0000 -"Warbler, Icterine",7.0000 -"Woodpecker, Green",7.0000 -"Grasshopper, Pallas's",6.5000 -Waxwing,6.5000 -Bee-eater,6.0000 -"Bee-eater, Blue-cheeked",6.0000 -Hoopoe,6.0000 -Wryneck,6.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Nightjar, Egyptian",5.0000 -"Nightjar, Red-necked",5.0000 -Swift,5.0000 -"Swift, Chimney",5.0000 -"Swift, Needle-tailed",5.0000 -"Swift, Pacific",5.0000 -"Swift, Pallid",5.0000 -"Warbler, Yellow-rumped",5.0000 -"Crowned, Eastern",4.0000 -Nightjar,4.0000 -"Owl, Hawk",4.0000 -"Owl, Long-eared",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Owl, Tawny",4.0000 -"Owl, Tengmalm's",4.0000 -"Sandpiper, Spotted",4.0000 -"Scoter, Velvet",4.0000 -"Swallow, Red-rumped",4.0000 -"Warbler, Green",4.0000 -"Warbler, Subalpine",4.0000 -"Bonelli's, Western",3.0000 -Cuckoo,3.0000 -"Cuckoo, Yellow-billed",3.0000 -"Dove, Collared",3.0000 -"Dove, Mourning",3.0000 -"Dove, Stock",3.0000 -"Martin, House",3.0000 -"Owl, Barn",3.0000 -"Owl, Scops",3.0000 -"Spotted, Great",3.0000 -"Turtle, Rufous",3.0000 -Wallcreeper,3.0000 -Woodpigeon,3.0000 -"Black-backed, Great",2.0000 -"Black-backed, Lesser",2.0000 -Blackcap,2.0000 -"Dove, Rock",2.0000 -"Gull, Caspian",2.0000 -"Gull, Glaucous",2.0000 -"Gull, Iceland",2.0000 -"Gull, Slaty-backed",2.0000 -"Herring, American",2.0000 -"May, Cape",2.0000 -"Sandgrouse, Pallas's",2.0000 -Swallow,2.0000 -"Swallow, Tree",2.0000 -"Wagtail, Yellow",2.0000 -"Warbler, Pallas's",2.0000 -"Warbler, Willow",2.0000 -"Auk, Great",1.0000 -Bittern,1.0000 -"Black, White-winged",1.0000 -"Courser, Cream-coloured",1.0000 -"Crested, Lesser",1.0000 -"Dowitcher, Long-billed",1.0000 -Greenshank,1.0000 -"Grosbeak, Evening",1.0000 -Guillemot,1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Black-headed",1.0000 -"Gull, Common",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Ivory",1.0000 -"Gull, Laughing",1.0000 -"Gull, Little",1.0000 -"Gull, Mediterranean",1.0000 -"Gull, Ross's",1.0000 -"Gull, Sabine's",1.0000 -"Gull, Slender-billed",1.0000 -Kittiwake,1.0000 -"Lark, Crested",1.0000 -"Lark, Shore",1.0000 -"Lark, Short-toed",1.0000 -"Murrelet, Ancient",1.0000 -"Murrelet, Long-billed",1.0000 -"Phalarope, Grey",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -"Pipit, Tree",1.0000 -"Pratincole, Black-winged",1.0000 -"Pratincole, Collared",1.0000 -"Pratincole, Oriental",1.0000 -"Puffin, Tufted",1.0000 -Razorbill,1.0000 -Redshank,1.0000 -"Rosefinch, Common",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Common",1.0000 -"Sandpiper, Green",1.0000 -"Sandpiper, Least",1.0000 -"Sandpiper, Marsh",1.0000 -"Sandpiper, Pectoral",1.0000 -"Sandpiper, Semipalmated",1.0000 -"Sandpiper, Solitary",1.0000 -"Sandpiper, Terek",1.0000 -"Sandpiper, White-rumped",1.0000 -"Sandpiper, Wood",1.0000 -"Short-toed, Lesser",1.0000 -"Skua, Great",1.0000 -"Skua, Long-tailed",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Snipe, Jack",1.0000 -"Snipe, Wilson's",1.0000 -"Tattler, Grey-tailed",1.0000 -"Tern, Aleutian",1.0000 -"Tern, Arctic",1.0000 -"Tern, Black",1.0000 -"Tern, Bridled",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -"Tern, Forster's",1.0000 -"Tern, Little",1.0000 -"Tern, Roseate",1.0000 -"Tern, Royal",1.0000 -"Tern, Sooty",1.0000 -"Tern, Whiskered",1.0000 -"Warbler, Wood",1.0000 -Woodcock,1.0000 -Woodlark,1.0000 -"Yellowlegs, Greater",1.0000 -"Yellowlegs, Lesser",1.0000 -"Warbler, Sardinian",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index ecdc586f1c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" -2018-12-27,105192075,88379723,15196470,5253665,2268748,2146799,1365058,1227794,1185344,1135809,943505,267748,796289,830795,630272,595394,460467,417394,292342,288362,174610,160112,155276,126913,120893,108834,102408,108721,86950,4627,60440,62606,60567,55507,50225,43541,32673,3525,30131,14838,23780,21001,20036,18325,0,15288,14536,14270,3,13512,12295,11988,6104,10363,8911,8530,7417,6421,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2668,4279,2742,2703,2450,2296,2359,2362,2350,2215,2654,2063,3842,1648,1636,1442,1316,1306,1225,1111,1109,1051,1442,915,896,791,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,263,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,54,51,50,50,50,49,48,43,49,39,38,19,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-28,105191961,88525879,15196470,5725604,2269042,2145969,1365062,1227794,1185344,1135809,943505,267985,809270,830795,630272,595394,525804,417464,292619,288362,174610,160112,155290,126913,120893,108834,102408,116599,86950,4681,60436,62604,88969,54942,50496,43541,32673,111063,30131,24276,23780,21001,20036,18325,0,15288,14560,14270,3,13512,12295,11988,9070,10386,8928,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2730,4279,2742,2703,2223,2296,2411,2362,2350,2215,2651,2063,3842,1648,1642,1442,1320,1306,1225,1111,1110,1051,1440,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-29,105191993,88683162,15196470,6133060,2275982,2145969,1365062,1227794,1185344,1135809,943505,599291,809314,830795,630272,595394,530750,417512,292619,288362,174610,160112,155276,126916,121086,108834,102408,118427,86950,4747,77045,62690,56593,54295,50647,43541,32673,27249,30131,26937,23780,21001,20036,18325,131976,15288,14544,14270,3,13512,12295,11988,10115,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2708,2877,2742,2703,2865,2296,2421,2362,2350,2215,2651,2063,3842,1648,1664,1442,1324,1306,1225,1111,1110,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-30,105192014,88765119,15196470,6133060,2283593,2145969,1365062,1227794,1185344,1135809,943505,834793,779767,830795,630272,595394,530750,417555,292619,288362,174610,160112,155131,126912,121085,108834,102408,118427,86950,4801,77045,62719,87106,54295,50870,43541,32673,45076,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12045,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4671,4617,4360,2916,3510,2791,2877,2742,2703,2669,2296,2502,2362,2350,2215,2605,2063,3842,1648,1677,1442,1328,1306,1225,1111,1111,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-31,105192032,88903007,15196470,6133066,2279381,2145969,1365062,1227846,1185344,1135809,943505,1111730,779767,830795,630272,595394,530750,393209,292604,288362,174610,160112,155117,126861,121085,108834,102408,118427,86950,4843,77022,62713,80333,54295,51256,37479,32673,56318,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12048,10403,8794,8530,7417,4066,10012,6970,6964,6781,6025,5866,5423,5262,4638,4617,4360,2916,3510,2833,2731,2742,2703,2652,2228,2532,2362,2350,2215,1894,2063,1949,1648,1677,1442,1332,1306,1225,1111,1111,1051,1389,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,76,97,81,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,41,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-01,105192102,89164927,15196470,6133066,2278806,2151114,1365062,1227998,1185344,1135809,943505,1117520,773170,832280,630272,595394,511013,351641,292604,288362,174610,160112,131858,120439,121085,108834,102408,118427,86950,4843,77022,62732,68070,54293,51169,37479,32673,58362,30131,26937,23780,21001,20036,18325,4,15288,14448,14270,19788,13512,12295,11988,12142,10421,8794,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4617,4617,4360,2916,3510,2805,2717,2742,2703,2452,2433,2531,2362,2350,2215,1867,2063,1017,1648,1677,1442,1336,1306,1225,1111,1111,1051,311,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,31,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,43,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-02,105192452,89405908,15196470,6133066,2278458,2151114,1365062,1227998,1185344,1135809,943505,1117323,773170,835274,630272,595394,465501,351696,292604,288365,174610,160112,131859,120129,121134,108834,102408,90285,86950,191746,76353,62739,38106,54293,51595,22343,32673,5328,30131,24281,23780,21001,20036,18325,4,15288,14448,14270,25861,13512,12295,11988,12142,10421,8796,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2889,2863,2241,2742,2703,2447,2554,2538,2362,2350,2215,1865,2063,1017,1648,1677,1442,1340,1306,1225,1111,959,1051,409,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,19,328,321,301,314,289,175,171,176,163,161,145,146,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-03,105192460,89579944,15196470,6346696,2274084,2151114,1365056,1228000,1185344,1135809,943505,1253518,773259,576225,630272,595394,513281,349950,292604,288364,174603,160125,131756,120245,121263,108834,102408,83169,85861,191746,76353,62743,33523,54293,52145,22343,32673,1685,30131,24035,23780,21001,20036,18325,4,15288,14448,14270,14111,13512,12295,11988,12144,10428,9237,8530,7417,5428,2,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2814,2916,2241,2742,2703,2685,2695,2557,2362,2350,2215,1865,2063,78,1648,1599,1442,1344,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,317,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,132,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-04,105193030,89779619,15196470,6547360,2272673,2151114,1365060,1228000,1185344,1135809,943505,1363753,785029,542542,630272,595394,514946,351559,292604,288364,174603,160138,131458,120307,121363,108834,102408,77536,85860,191746,75862,62736,30267,54293,53185,22343,32673,3994,30131,23917,23780,21001,20036,18325,4,15288,14448,14270,37255,13512,12295,11988,12415,10439,9261,8530,7417,5878,2,6970,6945,6781,6025,5866,5423,5262,4524,4617,4360,2916,1952,3016,2043,2742,2703,2685,2898,2566,2362,2350,2215,1865,2063,78,1648,1516,1442,1348,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,579,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,6,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,55,52,51,51,50,50,50,49,48,43,39,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-05,105193764,90017560,15196470,6377998,2271591,2151114,1365061,1228000,1185344,1135809,943505,1446883,775537,542089,630272,595394,514963,351591,292604,288364,174603,160200,131381,120473,121363,108834,102408,66357,85860,191746,75862,62803,11695,54291,53060,15287,32673,6238,30131,23112,23780,21001,20036,18325,4,15288,14448,14270,38533,13512,12295,11988,13083,10439,9261,8530,7417,28516,2,6970,6945,6781,6025,5866,5423,5262,4502,4617,4360,2916,42,3096,1998,2742,2703,2685,3046,2566,2362,2350,2215,2076,2063,78,1648,722,1442,1352,1306,1225,1111,988,1051,696,915,896,1046,788,776,678,609,605,503,494,468,452,448,425,404,480,373,368,19,328,441,301,314,289,175,171,148,163,161,145,1,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,57,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,0,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index cb4c03d9e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" -2018-12,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,52,53,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,13,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,54,53,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,9,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 804690eee5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" -"2018 Q4",105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,52,53,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,13,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -"2019 Q1",105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,54,53,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,9,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 69fd73a2e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Chestnut-eared] File Count (Number of files)","[Reed, Pallas's] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Bunting, Little] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Coot] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Yellowhammer] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Martin, Purple] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Bunting, Cirl] File Count (Number of files)","[Sparrow, White-crowned] File Count (Number of files)","[Oriole, Baltimore] File Count (Number of files)","[Junco, Dark-eyed] File Count (Number of files)","[Auk, Little] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Thrush, Swainson's] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Grosbeak, Rose-breasted] File Count (Number of files)","[Bunting, Black-faced] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Bunting, Cretzschmar's] File Count (Number of files)","[Swift, Alpine] File Count (Number of files)","[Twite] File Count (Number of files)","[Bunting, Snow] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Ovenbird] File Count (Number of files)","[Tanager, Scarlet] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Linnet] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Crossbill, Common] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Roller] File Count (Number of files)","[Wagtail, Citrine] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Yellow] File Count (Number of files)","[Plover, White-tailed] File Count (Number of files)","[Egret, Cattle] File Count (Number of files)","[Sparrow, Rock] File Count (Number of files)","[Bunting, Reed] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Warbler, Hume's] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Blyth's] File Count (Number of files)","[Rock, Blue] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Towhee, Eastern] File Count (Number of files)","[Flycatcher, Collared] File Count (Number of files)","[Wheatear, Black-eared] File Count (Number of files)","[Crossbill, Parrot] File Count (Number of files)","[Bluethroat] File Count (Number of files)","[Redstart, Moussier's] File Count (Number of files)","[Crane, Sandhill] File Count (Number of files)","[Grebe, Pied-billed] File Count (Number of files)","[Treecreeper, Short-toed] File Count (Number of files)","[Serin] File Count (Number of files)","[Honey-buzzard] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Grosbeak, Pine] File Count (Number of files)","[Redwing] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Black, White-crowned] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Pipit, Water] File Count (Number of files)","[Wheatear, Isabelline] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Grey-cheeked] File Count (Number of files)","[Thrush, Siberian] File Count (Number of files)","[Thrush, Naumann's] File Count (Number of files)","[Blue, Siberian] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Rubythroat, Siberian] File Count (Number of files)","[Crossbill, Two-barred] File Count (Number of files)","[Redstart, Black] File Count (Number of files)","[Hawfinch] File Count (Number of files)","[Whinchat] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Wheatear] File Count (Number of files)","[Lark, Black] File Count (Number of files)","[Redstart] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Flycatcher, Pied] File Count (Number of files)","[Wagtail, Grey] File Count (Number of files)","[Dipper] File Count (Number of files)","[Starling] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Lark, White-winged] File Count (Number of files)","[Crossbill, Scottish] File Count (Number of files)","[Sparrow, Savannah] File Count (Number of files)","[Stonechat] File Count (Number of files)","[Wheatear, Pied] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Bunting, Yellow-browed] File Count (Number of files)","[Thrush, Varied] File Count (Number of files)","[Pipit, Pechora] File Count (Number of files)","[Wren] File Count (Number of files)","[Lark, Bimaculated] File Count (Number of files)","[Sparrow, House] File Count (Number of files)","[Waxwing, Cedar] File Count (Number of files)","[Thrasher, Brown] File Count (Number of files)","[Nightingale, Thrush] File Count (Number of files)","[Pipit, Rock] File Count (Number of files)","[Grey, Southern] File Count (Number of files)","[Pipit, Richard's] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Bush, Rufous] File Count (Number of files)","[Treecreeper] File Count (Number of files)","[Mockingbird, Northern] File Count (Number of files)","[Martin, Crag] File Count (Number of files)","[Robin] File Count (Number of files)","[Reed, Great] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Brambling] File Count (Number of files)","[Dove, Turtle] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Ouzel, Ring] File Count (Number of files)","[Thrush, Black-throated] File Count (Number of files)","[Tit, Marsh] File Count (Number of files)","[Veery] File Count (Number of files)","[Tit, Coal] File Count (Number of files)","[Sparrow, Spanish] File Count (Number of files)","[Tern, Sandwich] File Count (Number of files)","[Wheatear, Desert] File Count (Number of files)","[Warbler, River] File Count (Number of files)","[Tit, Crested] File Count (Number of files)","[Warbler, Garden] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Warbler, Dartford] File Count (Number of files)","[Tit, Great] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Shrike, Long-tailed] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Warbler, Olive-tree] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Warbler, Aquatic] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Flycatcher, Red-breasted] File Count (Number of files)","[Tit, Blue] File Count (Number of files)","[Warbler, Dusky] File Count (Number of files)","[Warbler, Spectacled] File Count (Number of files)","[Whitethroat] File Count (Number of files)","[Tit, Penduline] File Count (Number of files)","[Warbler, Yellow-browed] File Count (Number of files)","[Firecrest] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Warbler, Melodious] File Count (Number of files)","[Raven] File Count (Number of files)","[Thrush, Song] File Count (Number of files)","[Warbler, Golden-winged] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Warbler, Marsh] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Ruppell's] File Count (Number of files)","[Crow, Carrion] File Count (Number of files)","[Nutcracker] File Count (Number of files)","[Rook] File Count (Number of files)","[Jay] File Count (Number of files)","[Magpie] File Count (Number of files)","[Chough] File Count (Number of files)","[Shearwater, Cory's] File Count (Number of files)","[Shrike, Masked] File Count (Number of files)","[Orphean, Western] File Count (Number of files)","[Robin, American] File Count (Number of files)","[Shrike, Woodchat] File Count (Number of files)","[Reed, Blyth's] File Count (Number of files)","[Shrike, Red-backed] File Count (Number of files)","[Oriole, Golden] File Count (Number of files)","[Shrike, Isabelline] File Count (Number of files)","[Vireo, Red-eyed] File Count (Number of files)","[Warbler, Sedge] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Phoebe, Eastern] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Vireo, Philadelphia] File Count (Number of files)","[Vireo, Yellow-throated] File Count (Number of files)","[Warbler, Grasshopper] File Count (Number of files)","[Warbler, Thick-billed] File Count (Number of files)","[Falcon, Gyr] File Count (Number of files)","[Hobby] File Count (Number of files)","[Olivaceous, Eastern] File Count (Number of files)","[Parakeet, Ring-necked] File Count (Number of files)","[Shag] File Count (Number of files)","[Warbler, Lanceolated] File Count (Number of files)","[Whitethroat, Lesser] File Count (Number of files)","[Falcon, Amur] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Kestrel, American] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Warbler, Greenish] File Count (Number of files)","[Kestrel] File Count (Number of files)","[Swallow, Cliff] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Grasshopper, Pallas's] File Count (Number of files)","[Waxwing] File Count (Number of files)","[Bee-eater] File Count (Number of files)","[Bee-eater, Blue-cheeked] File Count (Number of files)","[Hoopoe] File Count (Number of files)","[Wryneck] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Nightjar, Egyptian] File Count (Number of files)","[Nightjar, Red-necked] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Swift, Needle-tailed] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Swift, Pallid] File Count (Number of files)","[Warbler, Yellow-rumped] File Count (Number of files)","[Crowned, Eastern] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Hawk] File Count (Number of files)","[Owl, Long-eared] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Owl, Tawny] File Count (Number of files)","[Owl, Tengmalm's] File Count (Number of files)","[Sandpiper, Spotted] File Count (Number of files)","[Scoter, Velvet] File Count (Number of files)","[Swallow, Red-rumped] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Bonelli's, Western] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Yellow-billed] File Count (Number of files)","[Dove, Collared] File Count (Number of files)","[Dove, Mourning] File Count (Number of files)","[Dove, Stock] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Barn] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Spotted, Great] File Count (Number of files)","[Turtle, Rufous] File Count (Number of files)","[Wallcreeper] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Black-backed, Great] File Count (Number of files)","[Black-backed, Lesser] File Count (Number of files)","[Blackcap] File Count (Number of files)","[Dove, Rock] File Count (Number of files)","[Gull, Caspian] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Iceland] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Herring, American] File Count (Number of files)","[May, Cape] File Count (Number of files)","[Sandgrouse, Pallas's] File Count (Number of files)","[Swallow] File Count (Number of files)","[Swallow, Tree] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Pallas's] File Count (Number of files)","[Warbler, Willow] File Count (Number of files)","[Auk, Great] File Count (Number of files)","[Bittern] File Count (Number of files)","[Black, White-winged] File Count (Number of files)","[Courser, Cream-coloured] File Count (Number of files)","[Crested, Lesser] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Greenshank] File Count (Number of files)","[Grosbeak, Evening] File Count (Number of files)","[Guillemot] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Black-headed] File Count (Number of files)","[Gull, Common] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Ivory] File Count (Number of files)","[Gull, Laughing] File Count (Number of files)","[Gull, Little] File Count (Number of files)","[Gull, Mediterranean] File Count (Number of files)","[Gull, Ross's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Gull, Slender-billed] File Count (Number of files)","[Kittiwake] File Count (Number of files)","[Lark, Crested] File Count (Number of files)","[Lark, Shore] File Count (Number of files)","[Lark, Short-toed] File Count (Number of files)","[Murrelet, Ancient] File Count (Number of files)","[Murrelet, Long-billed] File Count (Number of files)","[Phalarope, Grey] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Pratincole, Black-winged] File Count (Number of files)","[Pratincole, Collared] File Count (Number of files)","[Pratincole, Oriental] File Count (Number of files)","[Puffin, Tufted] File Count (Number of files)","[Razorbill] File Count (Number of files)","[Redshank] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Common] File Count (Number of files)","[Sandpiper, Green] File Count (Number of files)","[Sandpiper, Least] File Count (Number of files)","[Sandpiper, Marsh] File Count (Number of files)","[Sandpiper, Pectoral] File Count (Number of files)","[Sandpiper, Semipalmated] File Count (Number of files)","[Sandpiper, Solitary] File Count (Number of files)","[Sandpiper, Terek] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Sandpiper, Wood] File Count (Number of files)","[Short-toed, Lesser] File Count (Number of files)","[Skua, Great] File Count (Number of files)","[Skua, Long-tailed] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Snipe, Jack] File Count (Number of files)","[Snipe, Wilson's] File Count (Number of files)","[Tattler, Grey-tailed] File Count (Number of files)","[Tern, Aleutian] File Count (Number of files)","[Tern, Arctic] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Bridled] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Tern, Forster's] File Count (Number of files)","[Tern, Little] File Count (Number of files)","[Tern, Roseate] File Count (Number of files)","[Tern, Royal] File Count (Number of files)","[Tern, Sooty] File Count (Number of files)","[Tern, Whiskered] File Count (Number of files)","[Warbler, Wood] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Woodlark] File Count (Number of files)","[Yellowlegs, Greater] File Count (Number of files)","[Yellowlegs, Lesser] File Count (Number of files)","[Warbler, Sardinian] File Count (Number of files)" -2018,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,52,53,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,13,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,54,53,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,9,11,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 9651b4c95d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -"Warbler, Yellow",200000000000000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"May, Cape",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Warbler, Blackburnian",9000009728000.0000 -"Bunting, Corn",2000003072000.0000 -"Treecreeper, Short-toed",1010008064000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 9651b4c95d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -"Warbler, Yellow",200000000000000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"May, Cape",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Warbler, Blackburnian",9000009728000.0000 -"Bunting, Corn",2000003072000.0000 -"Treecreeper, Short-toed",1010008064000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 9651b4c95d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -"Warbler, Yellow",200000000000000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"May, Cape",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Warbler, Blackburnian",9000009728000.0000 -"Bunting, Corn",2000003072000.0000 -"Treecreeper, Short-toed",1010008064000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 9651b4c95d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -"Warbler, Yellow",200000000000000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"May, Cape",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Warbler, Blackburnian",9000009728000.0000 -"Bunting, Corn",2000003072000.0000 -"Treecreeper, Short-toed",1010008064000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index ac1b700fce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" -2018-12-27,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index a0b4ba5cbf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" -2018-12,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index c6c098a0e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" -"2018 Q4",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index e032f132c7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[May, Cape] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Hard Threshold (Bytes)","[Auk, Great] Quota: Hard Threshold (Bytes)","[Auk, Little] Quota: Hard Threshold (Bytes)","[Bee-eater] Quota: Hard Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-backed, Great] Quota: Hard Threshold (Bytes)","[Black-backed, Lesser] Quota: Hard Threshold (Bytes)","[Black, White-crowned] Quota: Hard Threshold (Bytes)","[Black, White-winged] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Blackcap] Quota: Hard Threshold (Bytes)","[Blue, Siberian] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bluethroat] Quota: Hard Threshold (Bytes)","[Bonelli's, Western] Quota: Hard Threshold (Bytes)","[Brambling] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Black-faced] Quota: Hard Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Hard Threshold (Bytes)","[Bunting, Cirl] Quota: Hard Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Little] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Reed] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Snow] Quota: Hard Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Hard Threshold (Bytes)","[Bush, Rufous] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chough] Quota: Hard Threshold (Bytes)","[Coot] Quota: Hard Threshold (Bytes)","[Courser, Cream-coloured] Quota: Hard Threshold (Bytes)","[Crane, Sandhill] Quota: Hard Threshold (Bytes)","[Crested, Lesser] Quota: Hard Threshold (Bytes)","[Crossbill, Common] Quota: Hard Threshold (Bytes)","[Crossbill, Parrot] Quota: Hard Threshold (Bytes)","[Crossbill, Scottish] Quota: Hard Threshold (Bytes)","[Crossbill, Two-barred] Quota: Hard Threshold (Bytes)","[Crow, Carrion] Quota: Hard Threshold (Bytes)","[Crowned, Eastern] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dipper] Quota: Hard Threshold (Bytes)","[Dove, Collared] Quota: Hard Threshold (Bytes)","[Dove, Mourning] Quota: Hard Threshold (Bytes)","[Dove, Rock] Quota: Hard Threshold (Bytes)","[Dove, Stock] Quota: Hard Threshold (Bytes)","[Dove, Turtle] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Egret, Cattle] Quota: Hard Threshold (Bytes)","[Falcon, Amur] Quota: Hard Threshold (Bytes)","[Falcon, Gyr] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Firecrest] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Collared] Quota: Hard Threshold (Bytes)","[Flycatcher, Pied] Quota: Hard Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Hard Threshold (Bytes)","[Grebe, Pied-billed] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Greenshank] Quota: Hard Threshold (Bytes)","[Grey, Southern] Quota: Hard Threshold (Bytes)","[Grosbeak, Evening] Quota: Hard Threshold (Bytes)","[Grosbeak, Pine] Quota: Hard Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Hard Threshold (Bytes)","[Guillemot] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Black-headed] Quota: Hard Threshold (Bytes)","[Gull, Caspian] Quota: Hard Threshold (Bytes)","[Gull, Common] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Iceland] Quota: Hard Threshold (Bytes)","[Gull, Ivory] Quota: Hard Threshold (Bytes)","[Gull, Laughing] Quota: Hard Threshold (Bytes)","[Gull, Little] Quota: Hard Threshold (Bytes)","[Gull, Mediterranean] Quota: Hard Threshold (Bytes)","[Gull, Ross's] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Slender-billed] Quota: Hard Threshold (Bytes)","[Hawfinch] Quota: Hard Threshold (Bytes)","[Herring, American] Quota: Hard Threshold (Bytes)","[Hobby] Quota: Hard Threshold (Bytes)","[Honey-buzzard] Quota: Hard Threshold (Bytes)","[Hoopoe] Quota: Hard Threshold (Bytes)","[Jay] Quota: Hard Threshold (Bytes)","[Junco, Dark-eyed] Quota: Hard Threshold (Bytes)","[Kestrel] Quota: Hard Threshold (Bytes)","[Kestrel, American] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Kittiwake] Quota: Hard Threshold (Bytes)","[Lark, Bimaculated] Quota: Hard Threshold (Bytes)","[Lark, Black] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Lark, Crested] Quota: Hard Threshold (Bytes)","[Lark, Shore] Quota: Hard Threshold (Bytes)","[Lark, Short-toed] Quota: Hard Threshold (Bytes)","[Lark, White-winged] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Magpie] Quota: Hard Threshold (Bytes)","[Martin, Crag] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Martin, Purple] Quota: Hard Threshold (Bytes)","[Mockingbird, Northern] Quota: Hard Threshold (Bytes)","[Murrelet, Ancient] Quota: Hard Threshold (Bytes)","[Murrelet, Long-billed] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightingale, Thrush] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nightjar, Egyptian] Quota: Hard Threshold (Bytes)","[Nightjar, Red-necked] Quota: Hard Threshold (Bytes)","[Nutcracker] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Olivaceous, Eastern] Quota: Hard Threshold (Bytes)","[Oriole, Baltimore] Quota: Hard Threshold (Bytes)","[Oriole, Golden] Quota: Hard Threshold (Bytes)","[Orphean, Western] Quota: Hard Threshold (Bytes)","[Ouzel, Ring] Quota: Hard Threshold (Bytes)","[Ovenbird] Quota: Hard Threshold (Bytes)","[Owl, Barn] Quota: Hard Threshold (Bytes)","[Owl, Hawk] Quota: Hard Threshold (Bytes)","[Owl, Long-eared] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Owl, Tawny] Quota: Hard Threshold (Bytes)","[Owl, Tengmalm's] Quota: Hard Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Grey] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Phoebe, Eastern] Quota: Hard Threshold (Bytes)","[Pipit, Blyth's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Pechora] Quota: Hard Threshold (Bytes)","[Pipit, Richard's] Quota: Hard Threshold (Bytes)","[Pipit, Rock] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Pipit, Water] Quota: Hard Threshold (Bytes)","[Plover, White-tailed] Quota: Hard Threshold (Bytes)","[Pratincole, Black-winged] Quota: Hard Threshold (Bytes)","[Pratincole, Collared] Quota: Hard Threshold (Bytes)","[Pratincole, Oriental] Quota: Hard Threshold (Bytes)","[Puffin, Tufted] Quota: Hard Threshold (Bytes)","[Raven] Quota: Hard Threshold (Bytes)","[Razorbill] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank] Quota: Hard Threshold (Bytes)","[Redstart] Quota: Hard Threshold (Bytes)","[Redstart, Black] Quota: Hard Threshold (Bytes)","[Redstart, Moussier's] Quota: Hard Threshold (Bytes)","[Redwing] Quota: Hard Threshold (Bytes)","[Reed, Blyth's] Quota: Hard Threshold (Bytes)","[Reed, Great] Quota: Hard Threshold (Bytes)","[Reed, Pallas's] Quota: Hard Threshold (Bytes)","[Robin] Quota: Hard Threshold (Bytes)","[Robin, American] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Rock, Blue] Quota: Hard Threshold (Bytes)","[Roller] Quota: Hard Threshold (Bytes)","[Rook] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Rubythroat, Siberian] Quota: Hard Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Green] Quota: Hard Threshold (Bytes)","[Sandpiper, Least] Quota: Hard Threshold (Bytes)","[Sandpiper, Marsh] Quota: Hard Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Hard Threshold (Bytes)","[Sandpiper, Solitary] Quota: Hard Threshold (Bytes)","[Sandpiper, Spotted] Quota: Hard Threshold (Bytes)","[Sandpiper, Terek] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Sandpiper, Wood] Quota: Hard Threshold (Bytes)","[Scoter, Velvet] Quota: Hard Threshold (Bytes)","[Serin] Quota: Hard Threshold (Bytes)","[Shag] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Cory's] Quota: Hard Threshold (Bytes)","[Short-toed, Lesser] Quota: Hard Threshold (Bytes)","[Shrike, Isabelline] Quota: Hard Threshold (Bytes)","[Shrike, Long-tailed] Quota: Hard Threshold (Bytes)","[Shrike, Masked] Quota: Hard Threshold (Bytes)","[Shrike, Red-backed] Quota: Hard Threshold (Bytes)","[Shrike, Woodchat] Quota: Hard Threshold (Bytes)","[Skua, Great] Quota: Hard Threshold (Bytes)","[Skua, Long-tailed] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Snipe, Jack] Quota: Hard Threshold (Bytes)","[Snipe, Wilson's] Quota: Hard Threshold (Bytes)","[Sparrow, House] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Rock] Quota: Hard Threshold (Bytes)","[Sparrow, Savannah] Quota: Hard Threshold (Bytes)","[Sparrow, Spanish] Quota: Hard Threshold (Bytes)","[Sparrow, White-crowned] Quota: Hard Threshold (Bytes)","[Spotted, Great] Quota: Hard Threshold (Bytes)","[Starling] Quota: Hard Threshold (Bytes)","[Stonechat] Quota: Hard Threshold (Bytes)","[Swallow] Quota: Hard Threshold (Bytes)","[Swallow, Cliff] Quota: Hard Threshold (Bytes)","[Swallow, Red-rumped] Quota: Hard Threshold (Bytes)","[Swallow, Tree] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Alpine] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Needle-tailed] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Swift, Pallid] Quota: Hard Threshold (Bytes)","[Tanager, Scarlet] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Hard Threshold (Bytes)","[Tern, Aleutian] Quota: Hard Threshold (Bytes)","[Tern, Arctic] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Bridled] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Forster's] Quota: Hard Threshold (Bytes)","[Tern, Little] Quota: Hard Threshold (Bytes)","[Tern, Roseate] Quota: Hard Threshold (Bytes)","[Tern, Royal] Quota: Hard Threshold (Bytes)","[Tern, Sandwich] Quota: Hard Threshold (Bytes)","[Tern, Sooty] Quota: Hard Threshold (Bytes)","[Tern, Whiskered] Quota: Hard Threshold (Bytes)","[Thrasher, Brown] Quota: Hard Threshold (Bytes)","[Thrush, Black-throated] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Hard Threshold (Bytes)","[Thrush, Naumann's] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, Siberian] Quota: Hard Threshold (Bytes)","[Thrush, Song] Quota: Hard Threshold (Bytes)","[Thrush, Swainson's] Quota: Hard Threshold (Bytes)","[Thrush, Varied] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Blue] Quota: Hard Threshold (Bytes)","[Tit, Coal] Quota: Hard Threshold (Bytes)","[Tit, Crested] Quota: Hard Threshold (Bytes)","[Tit, Great] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Marsh] Quota: Hard Threshold (Bytes)","[Tit, Penduline] Quota: Hard Threshold (Bytes)","[Towhee, Eastern] Quota: Hard Threshold (Bytes)","[Treecreeper] Quota: Hard Threshold (Bytes)","[Turtle, Rufous] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Vireo, Philadelphia] Quota: Hard Threshold (Bytes)","[Vireo, Red-eyed] Quota: Hard Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Hard Threshold (Bytes)","[Wagtail, Citrine] Quota: Hard Threshold (Bytes)","[Wagtail, Grey] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Wallcreeper] Quota: Hard Threshold (Bytes)","[Warbler, Aquatic] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Dartford] Quota: Hard Threshold (Bytes)","[Warbler, Dusky] Quota: Hard Threshold (Bytes)","[Warbler, Garden] Quota: Hard Threshold (Bytes)","[Warbler, Golden-winged] Quota: Hard Threshold (Bytes)","[Warbler, Grasshopper] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Greenish] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Hume's] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Lanceolated] Quota: Hard Threshold (Bytes)","[Warbler, Marsh] Quota: Hard Threshold (Bytes)","[Warbler, Melodious] Quota: Hard Threshold (Bytes)","[Warbler, Olive-tree] Quota: Hard Threshold (Bytes)","[Warbler, Pallas's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, River] Quota: Hard Threshold (Bytes)","[Warbler, Ruppell's] Quota: Hard Threshold (Bytes)","[Warbler, Sardinian] Quota: Hard Threshold (Bytes)","[Warbler, Sedge] Quota: Hard Threshold (Bytes)","[Warbler, Spectacled] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Thick-billed] Quota: Hard Threshold (Bytes)","[Warbler, Willow] Quota: Hard Threshold (Bytes)","[Warbler, Wood] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Hard Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Hard Threshold (Bytes)","[Waxwing] Quota: Hard Threshold (Bytes)","[Waxwing, Cedar] Quota: Hard Threshold (Bytes)","[Wheatear] Quota: Hard Threshold (Bytes)","[Wheatear, Black-eared] Quota: Hard Threshold (Bytes)","[Wheatear, Desert] Quota: Hard Threshold (Bytes)","[Wheatear, Isabelline] Quota: Hard Threshold (Bytes)","[Wheatear, Pied] Quota: Hard Threshold (Bytes)","[Whinchat] Quota: Hard Threshold (Bytes)","[Whitethroat] Quota: Hard Threshold (Bytes)","[Whitethroat, Lesser] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodlark] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Wren] Quota: Hard Threshold (Bytes)","[Wryneck] Quota: Hard Threshold (Bytes)","[Yellowhammer] Quota: Hard Threshold (Bytes)","[Yellowlegs, Greater] Quota: Hard Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Hard Threshold (Bytes)" -2018,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 251b82d72f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -"Oriole, Baltimore",120848346406400.0000 -"Redstart, American",94668546688000.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Reed, Pallas's",46405301388800.0000 -"Auk, Little",40448713728000.0000 -Chaffinch,29285570009600.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Warbler, Magnolia",17870231244800.0000 -"Bunting, Cretzschmar's",16087800473600.0000 -"Towhee, Eastern",15545744473600.0000 -"Warbler, Tennessee",13832863872000.0000 -Ovenbird,10221160128000.0000 -"Martin, Sand",9928160640000.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8964344115200.0000 -"Bunting, Little",7541796608000.0000 -Coot,6034834048000.0000 -"Bunting, Rock",5392457907200.0000 -"Crossbill, Scottish",4457590784000.0000 -"Martin, Purple",3843580377600.0000 -"Scaup, Lesser",3707448192000.0000 -"Swift, Alpine",2970285811200.0000 -"Bunting, Cirl",2706318336000.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Chestnut-eared",2466790976000.0000 -Yellowhammer,2249345779200.0000 -"Sparrow, Lark",2009530739200.0000 -Serin,1944329728000.0000 -"Bunting, Pine",1733976166400.0000 -"Warbler, Blackburnian",1506957094400.0000 -"Crossbill, Common",1340005606400.0000 -"Bunting, Black-faced",923557043200.0000 -"Junco, Dark-eyed",813028595200.0000 -Roller,693861888000.0000 -"Sparrow, White-crowned",601996505600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Chiffchaff, Iberian",489881305600.0000 -Brambling,485586636800.0000 -"Crossbill, Parrot",463271065600.0000 -"Pipit, Rock",297982336000.0000 -"Tanager, Scarlet",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Bunting, Snow",225457203200.0000 -"Pipit, Pechora",203318016000.0000 -"Crossbill, Two-barred",150338624000.0000 -"Bunting, Reed",143756608000.0000 -"Grey, Southern",129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -Hawfinch,87268083200.0000 -"Grosbeak, Pine",77630118400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Grosbeak, Rose-breasted",50593497600.0000 -"Bunting, Corn",43913408000.0000 -"Pipit, Richard's",20188313600.0000 -"Pipit, Water",19298982400.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",8558368000.0000 -"Sparrow, House",8004428800.0000 -"Thrush, Grey-cheeked",7550720000.0000 -"Bluetail, Red-flanked",6938905600.0000 -"Thrush, Swainson's",6804044800.0000 -"Tern, Sandwich",5779584000.0000 -"Sparrow, Spanish",5368076800.0000 -"Wheatear, Pied",4905216000.0000 -"Flycatcher, Red-breasted",3000576000.0000 -"Wagtail, Grey",2207552000.0000 -"Warbler, Hume's",1995968000.0000 -"Egret, Cattle",1991040000.0000 -"Scoter, Velvet",1984768000.0000 -"Wheatear, Desert",1695833600.0000 -Stonechat,1615104000.0000 -"Crane, Sandhill",821760000.0000 -"Pipit, Blyth's",620928000.0000 -"Black, White-crowned",493644800.0000 -"Thrush, Song",458163200.0000 -"Wheatear, Black-eared",382848000.0000 -Honey-buzzard,281728000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Citrine",213504000.0000 -"Wheatear, Isabelline",195200000.0000 -Wheatear,183040000.0000 -"Robin, American",177792000.0000 -"Sparrow, Rock",151808000.0000 -"Robin, Rufous-tailed",146649600.0000 -"Treecreeper, Short-toed",142592000.0000 -Whinchat,134784000.0000 -Nightingale,99072000.0000 -"Redstart, Moussier's",64640000.0000 -Redstart,55168000.0000 -"Nightingale, Thrush",43430400.0000 -Robin,42496000.0000 -"Goose, Egyptian",41344000.0000 -"Redstart, Black",37760000.0000 -"Flycatcher, Pied",35456000.0000 -"Flycatcher, Collared",34816000.0000 -"Thrush, Wood",34432000.0000 -Waxwing,28800000.0000 -Wallcreeper,28544000.0000 -"Rubythroat, Siberian",26112000.0000 -"Flycatcher, Spotted",23820800.0000 -"Bush, Rufous",20864000.0000 -"Catbird, Grey",17280000.0000 -"Warbler, Garden",14848000.0000 -"Thrush, Black-throated",13184000.0000 -"Warbler, Yellow",13184000.0000 -"Rock, Blue",12544000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Thrush, Rock",8064000.0000 -"Dove, Turtle",7552000.0000 -"Ouzel, Ring",7552000.0000 -"Blue, Siberian",7424000.0000 -"Plover, White-tailed",7424000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, Varied",2816000.0000 -"Martin, Crag",1945600.0000 -Dipper,1920000.0000 -Starling,1920000.0000 -Redwing,1664000.0000 -"Grasshopper, Pallas's",1331200.0000 -"Thrush, Naumann's",1280000.0000 -Bluethroat,1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Mockingbird, Northern",1024000.0000 -"Reed, Blyth's",1024000.0000 -"Thrasher, Brown",1024000.0000 -"Warbler, Marsh",1024000.0000 -"Warbler, Sedge",896000.0000 -Wren,896000.0000 -Blackbird,796444.4444 -Blackcap,768000.0000 -"Warbler, Aquatic",768000.0000 -"Warbler, Golden-winged",768000.0000 -"Warbler, Melodious",768000.0000 -"Sparrow, Savannah",640000.0000 -"Warbler, Olive-tree",640000.0000 -"Warbler, Willow",640000.0000 -"Olivaceous, Eastern",512000.0000 -"Thrush, Siberian",512000.0000 -Treecreeper,512000.0000 -"Warbler, Wood",512000.0000 -"Bonelli's, Western",384000.0000 -"Lark, Calandra",384000.0000 -"Warbler, Pallas's",384000.0000 -"Warbler, Thick-billed",384000.0000 -"Warbler, Yellow-rumped",384000.0000 -"Crowned, Eastern",256000.0000 -"Warbler, Grasshopper",256000.0000 -"Warbler, Green",256000.0000 -"Warbler, Greenish",256000.0000 -"Warbler, Icterine",256000.0000 -"Warbler, Lanceolated",256000.0000 -"Warbler, River",256000.0000 -"Grebe, Pied-billed",128000.0000 -"Lark, Crested",128000.0000 -"Lark, Shore",128000.0000 -"Lark, Short-toed",128000.0000 -"Martin, House",128000.0000 -"Orphean, Western",128000.0000 -"Reed, Great",128000.0000 -"Short-toed, Lesser",128000.0000 -"Shrike, Long-tailed",128000.0000 -Skylark,128000.0000 -Swallow,128000.0000 -"Swallow, Cliff",128000.0000 -"Swallow, Red-rumped",128000.0000 -"Swallow, Tree",128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Dartford",128000.0000 -"Warbler, Ruppell's",128000.0000 -"Warbler, Spectacled",128000.0000 -"Waxwing, Cedar",128000.0000 -Whitethroat,128000.0000 -"Whitethroat, Lesser",128000.0000 -Woodlark,128000.0000 -"Auk, Great",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-winged",0.0000 -"Bunting, Yellow-browed",0.0000 -Chough,0.0000 -"Courser, Cream-coloured",0.0000 -"Crested, Lesser",0.0000 -"Crow, Carrion",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -Firecrest,0.0000 -Greenshank,0.0000 -"Grosbeak, Evening",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, White-winged",0.0000 -Magpie,0.0000 -"May, Cape",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Oriole, Golden",0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Tree",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -Redshank,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Spotted, Great",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Turtle, Rufous",0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Yellow-browed",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wryneck,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 1d2f5b3cdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -"Oriole, Baltimore",120848346406400.0000 -"Redstart, American",94668546688000.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Reed, Pallas's",46405301388800.0000 -"Auk, Little",40448713728000.0000 -Chaffinch,29285570009600.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Warbler, Magnolia",17870231244800.0000 -"Bunting, Cretzschmar's",16087800473600.0000 -"Towhee, Eastern",15545744473600.0000 -"Warbler, Tennessee",13832863872000.0000 -Ovenbird,10221160128000.0000 -"Martin, Sand",9928160640000.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8964344115200.0000 -"Bunting, Little",7541796608000.0000 -Coot,6034834048000.0000 -"Bunting, Rock",5392457907200.0000 -"Crossbill, Scottish",4457590784000.0000 -"Martin, Purple",3843580377600.0000 -"Scaup, Lesser",3707448192000.0000 -"Swift, Alpine",2970285811200.0000 -"Bunting, Cirl",2706318336000.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Chestnut-eared",2466790976000.0000 -Yellowhammer,2249345779200.0000 -"Sparrow, Lark",2009530739200.0000 -Serin,1944329728000.0000 -"Bunting, Pine",1733976166400.0000 -"Warbler, Blackburnian",1506957094400.0000 -"Crossbill, Common",1340005606400.0000 -"Bunting, Black-faced",923557043200.0000 -"Junco, Dark-eyed",813028595200.0000 -Roller,693861888000.0000 -"Sparrow, White-crowned",601996505600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Chiffchaff, Iberian",489881305600.0000 -Brambling,485586636800.0000 -"Crossbill, Parrot",463271065600.0000 -"Pipit, Rock",297982336000.0000 -"Tanager, Scarlet",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Bunting, Snow",225457203200.0000 -"Pipit, Pechora",203318016000.0000 -"Crossbill, Two-barred",150338624000.0000 -"Bunting, Reed",143756608000.0000 -"Grey, Southern",129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -Hawfinch,87268083200.0000 -"Grosbeak, Pine",77630118400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Grosbeak, Rose-breasted",50593497600.0000 -"Bunting, Corn",43913408000.0000 -"Pipit, Richard's",20188313600.0000 -"Pipit, Water",19298982400.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",9106218666.5000 -"Sparrow, House",8004428800.0000 -"Thrush, Grey-cheeked",7550720000.0000 -"Bluetail, Red-flanked",6938905600.0000 -"Thrush, Swainson's",6804044800.0000 -"Tern, Sandwich",5779584000.0000 -"Sparrow, Spanish",5368076800.0000 -"Wheatear, Pied",4905216000.0000 -"Flycatcher, Red-breasted",3000576000.0000 -"Wagtail, Grey",2207552000.0000 -"Warbler, Hume's",1995968000.0000 -"Egret, Cattle",1991040000.0000 -"Scoter, Velvet",1984768000.0000 -"Wheatear, Desert",1695833600.0000 -Stonechat,1615104000.0000 -"Crane, Sandhill",821760000.0000 -"Pipit, Blyth's",620928000.0000 -"Black, White-crowned",493644800.0000 -"Thrush, Song",458163200.0000 -"Wheatear, Black-eared",382848000.0000 -Honey-buzzard,281728000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Citrine",213504000.0000 -"Wheatear, Isabelline",195200000.0000 -Wheatear,183040000.0000 -"Robin, American",177792000.0000 -"Sparrow, Rock",151808000.0000 -"Robin, Rufous-tailed",146649600.0000 -"Treecreeper, Short-toed",142592000.0000 -Whinchat,134784000.0000 -Nightingale,99072000.0000 -"Redstart, Moussier's",64640000.0000 -Redstart,55168000.0000 -"Nightingale, Thrush",43430400.0000 -Robin,42496000.0000 -"Goose, Egyptian",41344000.0000 -"Redstart, Black",37760000.0000 -"Flycatcher, Pied",35456000.0000 -"Flycatcher, Collared",34816000.0000 -"Thrush, Wood",34432000.0000 -Waxwing,28800000.0000 -Wallcreeper,28544000.0000 -"Rubythroat, Siberian",26112000.0000 -"Flycatcher, Spotted",23820800.0000 -"Bush, Rufous",20864000.0000 -"Catbird, Grey",17280000.0000 -"Warbler, Garden",14848000.0000 -"Thrush, Black-throated",13184000.0000 -"Warbler, Yellow",13184000.0000 -"Rock, Blue",12544000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Thrush, Rock",8064000.0000 -"Dove, Turtle",7552000.0000 -"Ouzel, Ring",7552000.0000 -"Blue, Siberian",7424000.0000 -"Plover, White-tailed",7424000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, Varied",2816000.0000 -"Martin, Crag",1945600.0000 -Dipper,1920000.0000 -Starling,1920000.0000 -Redwing,1664000.0000 -"Grasshopper, Pallas's",1331200.0000 -"Thrush, Naumann's",1280000.0000 -Bluethroat,1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Mockingbird, Northern",1024000.0000 -"Reed, Blyth's",1024000.0000 -"Thrasher, Brown",1024000.0000 -"Warbler, Marsh",1024000.0000 -"Warbler, Sedge",896000.0000 -Wren,896000.0000 -Blackbird,768000.0000 -Blackcap,768000.0000 -"Warbler, Aquatic",768000.0000 -"Warbler, Golden-winged",768000.0000 -"Warbler, Melodious",768000.0000 -"Sparrow, Savannah",640000.0000 -"Warbler, Olive-tree",640000.0000 -"Warbler, Willow",640000.0000 -"Olivaceous, Eastern",512000.0000 -"Thrush, Siberian",512000.0000 -Treecreeper,512000.0000 -"Warbler, Wood",512000.0000 -"Bonelli's, Western",384000.0000 -"Lark, Calandra",384000.0000 -"Warbler, Pallas's",384000.0000 -"Warbler, Thick-billed",384000.0000 -"Warbler, Yellow-rumped",384000.0000 -"Crowned, Eastern",256000.0000 -"Warbler, Grasshopper",256000.0000 -"Warbler, Green",256000.0000 -"Warbler, Greenish",256000.0000 -"Warbler, Icterine",256000.0000 -"Warbler, Lanceolated",256000.0000 -"Warbler, River",256000.0000 -"Grebe, Pied-billed",128000.0000 -"Lark, Crested",128000.0000 -"Lark, Shore",128000.0000 -"Lark, Short-toed",128000.0000 -"Martin, House",128000.0000 -"Orphean, Western",128000.0000 -"Reed, Great",128000.0000 -"Short-toed, Lesser",128000.0000 -"Shrike, Long-tailed",128000.0000 -Skylark,128000.0000 -Swallow,128000.0000 -"Swallow, Cliff",128000.0000 -"Swallow, Red-rumped",128000.0000 -"Swallow, Tree",128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Dartford",128000.0000 -"Warbler, Ruppell's",128000.0000 -"Warbler, Spectacled",128000.0000 -"Waxwing, Cedar",128000.0000 -Whitethroat,128000.0000 -"Whitethroat, Lesser",128000.0000 -Woodlark,128000.0000 -"Auk, Great",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-winged",0.0000 -"Bunting, Yellow-browed",0.0000 -Chough,0.0000 -"Courser, Cream-coloured",0.0000 -"Crested, Lesser",0.0000 -"Crow, Carrion",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -Firecrest,0.0000 -Greenshank,0.0000 -"Grosbeak, Evening",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, White-winged",0.0000 -Magpie,0.0000 -"May, Cape",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Oriole, Golden",0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Tree",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -Redshank,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Spotted, Great",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Turtle, Rufous",0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Yellow-browed",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wryneck,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 1d2f5b3cdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -"Oriole, Baltimore",120848346406400.0000 -"Redstart, American",94668546688000.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Reed, Pallas's",46405301388800.0000 -"Auk, Little",40448713728000.0000 -Chaffinch,29285570009600.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Warbler, Magnolia",17870231244800.0000 -"Bunting, Cretzschmar's",16087800473600.0000 -"Towhee, Eastern",15545744473600.0000 -"Warbler, Tennessee",13832863872000.0000 -Ovenbird,10221160128000.0000 -"Martin, Sand",9928160640000.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8964344115200.0000 -"Bunting, Little",7541796608000.0000 -Coot,6034834048000.0000 -"Bunting, Rock",5392457907200.0000 -"Crossbill, Scottish",4457590784000.0000 -"Martin, Purple",3843580377600.0000 -"Scaup, Lesser",3707448192000.0000 -"Swift, Alpine",2970285811200.0000 -"Bunting, Cirl",2706318336000.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Chestnut-eared",2466790976000.0000 -Yellowhammer,2249345779200.0000 -"Sparrow, Lark",2009530739200.0000 -Serin,1944329728000.0000 -"Bunting, Pine",1733976166400.0000 -"Warbler, Blackburnian",1506957094400.0000 -"Crossbill, Common",1340005606400.0000 -"Bunting, Black-faced",923557043200.0000 -"Junco, Dark-eyed",813028595200.0000 -Roller,693861888000.0000 -"Sparrow, White-crowned",601996505600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Chiffchaff, Iberian",489881305600.0000 -Brambling,485586636800.0000 -"Crossbill, Parrot",463271065600.0000 -"Pipit, Rock",297982336000.0000 -"Tanager, Scarlet",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Bunting, Snow",225457203200.0000 -"Pipit, Pechora",203318016000.0000 -"Crossbill, Two-barred",150338624000.0000 -"Bunting, Reed",143756608000.0000 -"Grey, Southern",129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -Hawfinch,87268083200.0000 -"Grosbeak, Pine",77630118400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Grosbeak, Rose-breasted",50593497600.0000 -"Bunting, Corn",43913408000.0000 -"Pipit, Richard's",20188313600.0000 -"Pipit, Water",19298982400.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",9106218666.5000 -"Sparrow, House",8004428800.0000 -"Thrush, Grey-cheeked",7550720000.0000 -"Bluetail, Red-flanked",6938905600.0000 -"Thrush, Swainson's",6804044800.0000 -"Tern, Sandwich",5779584000.0000 -"Sparrow, Spanish",5368076800.0000 -"Wheatear, Pied",4905216000.0000 -"Flycatcher, Red-breasted",3000576000.0000 -"Wagtail, Grey",2207552000.0000 -"Warbler, Hume's",1995968000.0000 -"Egret, Cattle",1991040000.0000 -"Scoter, Velvet",1984768000.0000 -"Wheatear, Desert",1695833600.0000 -Stonechat,1615104000.0000 -"Crane, Sandhill",821760000.0000 -"Pipit, Blyth's",620928000.0000 -"Black, White-crowned",493644800.0000 -"Thrush, Song",458163200.0000 -"Wheatear, Black-eared",382848000.0000 -Honey-buzzard,281728000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Citrine",213504000.0000 -"Wheatear, Isabelline",195200000.0000 -Wheatear,183040000.0000 -"Robin, American",177792000.0000 -"Sparrow, Rock",151808000.0000 -"Robin, Rufous-tailed",146649600.0000 -"Treecreeper, Short-toed",142592000.0000 -Whinchat,134784000.0000 -Nightingale,99072000.0000 -"Redstart, Moussier's",64640000.0000 -Redstart,55168000.0000 -"Nightingale, Thrush",43430400.0000 -Robin,42496000.0000 -"Goose, Egyptian",41344000.0000 -"Redstart, Black",37760000.0000 -"Flycatcher, Pied",35456000.0000 -"Flycatcher, Collared",34816000.0000 -"Thrush, Wood",34432000.0000 -Waxwing,28800000.0000 -Wallcreeper,28544000.0000 -"Rubythroat, Siberian",26112000.0000 -"Flycatcher, Spotted",23820800.0000 -"Bush, Rufous",20864000.0000 -"Catbird, Grey",17280000.0000 -"Warbler, Garden",14848000.0000 -"Thrush, Black-throated",13184000.0000 -"Warbler, Yellow",13184000.0000 -"Rock, Blue",12544000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Thrush, Rock",8064000.0000 -"Dove, Turtle",7552000.0000 -"Ouzel, Ring",7552000.0000 -"Blue, Siberian",7424000.0000 -"Plover, White-tailed",7424000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, Varied",2816000.0000 -"Martin, Crag",1945600.0000 -Dipper,1920000.0000 -Starling,1920000.0000 -Redwing,1664000.0000 -"Grasshopper, Pallas's",1331200.0000 -"Thrush, Naumann's",1280000.0000 -Bluethroat,1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Mockingbird, Northern",1024000.0000 -"Reed, Blyth's",1024000.0000 -"Thrasher, Brown",1024000.0000 -"Warbler, Marsh",1024000.0000 -"Warbler, Sedge",896000.0000 -Wren,896000.0000 -Blackbird,768000.0000 -Blackcap,768000.0000 -"Warbler, Aquatic",768000.0000 -"Warbler, Golden-winged",768000.0000 -"Warbler, Melodious",768000.0000 -"Sparrow, Savannah",640000.0000 -"Warbler, Olive-tree",640000.0000 -"Warbler, Willow",640000.0000 -"Olivaceous, Eastern",512000.0000 -"Thrush, Siberian",512000.0000 -Treecreeper,512000.0000 -"Warbler, Wood",512000.0000 -"Bonelli's, Western",384000.0000 -"Lark, Calandra",384000.0000 -"Warbler, Pallas's",384000.0000 -"Warbler, Thick-billed",384000.0000 -"Warbler, Yellow-rumped",384000.0000 -"Crowned, Eastern",256000.0000 -"Warbler, Grasshopper",256000.0000 -"Warbler, Green",256000.0000 -"Warbler, Greenish",256000.0000 -"Warbler, Icterine",256000.0000 -"Warbler, Lanceolated",256000.0000 -"Warbler, River",256000.0000 -"Grebe, Pied-billed",128000.0000 -"Lark, Crested",128000.0000 -"Lark, Shore",128000.0000 -"Lark, Short-toed",128000.0000 -"Martin, House",128000.0000 -"Orphean, Western",128000.0000 -"Reed, Great",128000.0000 -"Short-toed, Lesser",128000.0000 -"Shrike, Long-tailed",128000.0000 -Skylark,128000.0000 -Swallow,128000.0000 -"Swallow, Cliff",128000.0000 -"Swallow, Red-rumped",128000.0000 -"Swallow, Tree",128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Dartford",128000.0000 -"Warbler, Ruppell's",128000.0000 -"Warbler, Spectacled",128000.0000 -"Waxwing, Cedar",128000.0000 -Whitethroat,128000.0000 -"Whitethroat, Lesser",128000.0000 -Woodlark,128000.0000 -"Auk, Great",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-winged",0.0000 -"Bunting, Yellow-browed",0.0000 -Chough,0.0000 -"Courser, Cream-coloured",0.0000 -"Crested, Lesser",0.0000 -"Crow, Carrion",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -Firecrest,0.0000 -Greenshank,0.0000 -"Grosbeak, Evening",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, White-winged",0.0000 -Magpie,0.0000 -"May, Cape",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Oriole, Golden",0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Tree",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -Redshank,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Spotted, Great",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Turtle, Rufous",0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Yellow-browed",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wryneck,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 1d2f5b3cdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -"Oriole, Baltimore",120848346406400.0000 -"Redstart, American",94668546688000.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Reed, Pallas's",46405301388800.0000 -"Auk, Little",40448713728000.0000 -Chaffinch,29285570009600.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Warbler, Magnolia",17870231244800.0000 -"Bunting, Cretzschmar's",16087800473600.0000 -"Towhee, Eastern",15545744473600.0000 -"Warbler, Tennessee",13832863872000.0000 -Ovenbird,10221160128000.0000 -"Martin, Sand",9928160640000.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8964344115200.0000 -"Bunting, Little",7541796608000.0000 -Coot,6034834048000.0000 -"Bunting, Rock",5392457907200.0000 -"Crossbill, Scottish",4457590784000.0000 -"Martin, Purple",3843580377600.0000 -"Scaup, Lesser",3707448192000.0000 -"Swift, Alpine",2970285811200.0000 -"Bunting, Cirl",2706318336000.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Chestnut-eared",2466790976000.0000 -Yellowhammer,2249345779200.0000 -"Sparrow, Lark",2009530739200.0000 -Serin,1944329728000.0000 -"Bunting, Pine",1733976166400.0000 -"Warbler, Blackburnian",1506957094400.0000 -"Crossbill, Common",1340005606400.0000 -"Bunting, Black-faced",923557043200.0000 -"Junco, Dark-eyed",813028595200.0000 -Roller,693861888000.0000 -"Sparrow, White-crowned",601996505600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Chiffchaff, Iberian",489881305600.0000 -Brambling,485586636800.0000 -"Crossbill, Parrot",463271065600.0000 -"Pipit, Rock",297982336000.0000 -"Tanager, Scarlet",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Bunting, Snow",225457203200.0000 -"Pipit, Pechora",203318016000.0000 -"Crossbill, Two-barred",150338624000.0000 -"Bunting, Reed",143756608000.0000 -"Grey, Southern",129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -Hawfinch,87268083200.0000 -"Grosbeak, Pine",77630118400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Grosbeak, Rose-breasted",50593497600.0000 -"Bunting, Corn",43913408000.0000 -"Pipit, Richard's",20188313600.0000 -"Pipit, Water",19298982400.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",9106218666.5000 -"Sparrow, House",8004428800.0000 -"Thrush, Grey-cheeked",7550720000.0000 -"Bluetail, Red-flanked",6938905600.0000 -"Thrush, Swainson's",6804044800.0000 -"Tern, Sandwich",5779584000.0000 -"Sparrow, Spanish",5368076800.0000 -"Wheatear, Pied",4905216000.0000 -"Flycatcher, Red-breasted",3000576000.0000 -"Wagtail, Grey",2207552000.0000 -"Warbler, Hume's",1995968000.0000 -"Egret, Cattle",1991040000.0000 -"Scoter, Velvet",1984768000.0000 -"Wheatear, Desert",1695833600.0000 -Stonechat,1615104000.0000 -"Crane, Sandhill",821760000.0000 -"Pipit, Blyth's",620928000.0000 -"Black, White-crowned",493644800.0000 -"Thrush, Song",458163200.0000 -"Wheatear, Black-eared",382848000.0000 -Honey-buzzard,281728000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Citrine",213504000.0000 -"Wheatear, Isabelline",195200000.0000 -Wheatear,183040000.0000 -"Robin, American",177792000.0000 -"Sparrow, Rock",151808000.0000 -"Robin, Rufous-tailed",146649600.0000 -"Treecreeper, Short-toed",142592000.0000 -Whinchat,134784000.0000 -Nightingale,99072000.0000 -"Redstart, Moussier's",64640000.0000 -Redstart,55168000.0000 -"Nightingale, Thrush",43430400.0000 -Robin,42496000.0000 -"Goose, Egyptian",41344000.0000 -"Redstart, Black",37760000.0000 -"Flycatcher, Pied",35456000.0000 -"Flycatcher, Collared",34816000.0000 -"Thrush, Wood",34432000.0000 -Waxwing,28800000.0000 -Wallcreeper,28544000.0000 -"Rubythroat, Siberian",26112000.0000 -"Flycatcher, Spotted",23820800.0000 -"Bush, Rufous",20864000.0000 -"Catbird, Grey",17280000.0000 -"Warbler, Garden",14848000.0000 -"Thrush, Black-throated",13184000.0000 -"Warbler, Yellow",13184000.0000 -"Rock, Blue",12544000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Thrush, Rock",8064000.0000 -"Dove, Turtle",7552000.0000 -"Ouzel, Ring",7552000.0000 -"Blue, Siberian",7424000.0000 -"Plover, White-tailed",7424000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, Varied",2816000.0000 -"Martin, Crag",1945600.0000 -Dipper,1920000.0000 -Starling,1920000.0000 -Redwing,1664000.0000 -"Grasshopper, Pallas's",1331200.0000 -"Thrush, Naumann's",1280000.0000 -Bluethroat,1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Mockingbird, Northern",1024000.0000 -"Reed, Blyth's",1024000.0000 -"Thrasher, Brown",1024000.0000 -"Warbler, Marsh",1024000.0000 -"Warbler, Sedge",896000.0000 -Wren,896000.0000 -Blackbird,768000.0000 -Blackcap,768000.0000 -"Warbler, Aquatic",768000.0000 -"Warbler, Golden-winged",768000.0000 -"Warbler, Melodious",768000.0000 -"Sparrow, Savannah",640000.0000 -"Warbler, Olive-tree",640000.0000 -"Warbler, Willow",640000.0000 -"Olivaceous, Eastern",512000.0000 -"Thrush, Siberian",512000.0000 -Treecreeper,512000.0000 -"Warbler, Wood",512000.0000 -"Bonelli's, Western",384000.0000 -"Lark, Calandra",384000.0000 -"Warbler, Pallas's",384000.0000 -"Warbler, Thick-billed",384000.0000 -"Warbler, Yellow-rumped",384000.0000 -"Crowned, Eastern",256000.0000 -"Warbler, Grasshopper",256000.0000 -"Warbler, Green",256000.0000 -"Warbler, Greenish",256000.0000 -"Warbler, Icterine",256000.0000 -"Warbler, Lanceolated",256000.0000 -"Warbler, River",256000.0000 -"Grebe, Pied-billed",128000.0000 -"Lark, Crested",128000.0000 -"Lark, Shore",128000.0000 -"Lark, Short-toed",128000.0000 -"Martin, House",128000.0000 -"Orphean, Western",128000.0000 -"Reed, Great",128000.0000 -"Short-toed, Lesser",128000.0000 -"Shrike, Long-tailed",128000.0000 -Skylark,128000.0000 -Swallow,128000.0000 -"Swallow, Cliff",128000.0000 -"Swallow, Red-rumped",128000.0000 -"Swallow, Tree",128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Dartford",128000.0000 -"Warbler, Ruppell's",128000.0000 -"Warbler, Spectacled",128000.0000 -"Waxwing, Cedar",128000.0000 -Whitethroat,128000.0000 -"Whitethroat, Lesser",128000.0000 -Woodlark,128000.0000 -"Auk, Great",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-winged",0.0000 -"Bunting, Yellow-browed",0.0000 -Chough,0.0000 -"Courser, Cream-coloured",0.0000 -"Crested, Lesser",0.0000 -"Crow, Carrion",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -Firecrest,0.0000 -Greenshank,0.0000 -"Grosbeak, Evening",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, White-winged",0.0000 -Magpie,0.0000 -"May, Cape",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Oriole, Golden",0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Tree",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -Redshank,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Spotted, Great",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Turtle, Rufous",0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Yellow-browed",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wryneck,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index a319d446b5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" -2018-12-27,161970387072000,130882300416000,94668546688000,55029891456000,50638493824000,38336309632000,40448713728000,29295568896000,27267411328000,17505628032000,15494882432000,15702943232000,13832863872000,14242280064000,9928160640000,9218944768000,8957422592000,7541796608000,6034834048000,5937893248000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2230504704000,2228458624000,1952837504000,1944329728000,1733989376000,1506955904000,339764480000,921950848000,812594176000,370410752000,603500800000,575703936000,474718208000,491007360000,662139648000,459477248000,297982336000,297141376000,230846848000,256112512000,244283904000,228683648000,203318016000,256331776000,173886720000,129027072000,139109120000,117884160000,97863680000,87247488000,90370688000,96233600000,108636160000,66818816000,50535936000,43912832000,23900416000,33932800000,9422592000,18692736000,0,7672960000,366592000,6557312000,6000896000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,154496000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,787072000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,162119939712000,130951853312000,94668546688000,55029891456000,50638493824000,41442712960000,40448713728000,29295568896000,27267411328000,17921053824000,17998195200000,15771797504000,13832863872000,12001895936000,9928160640000,9218971392000,8958675584000,7541796608000,6034834048000,5937961216000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2357435776000,2228909184000,1986484736000,1944329728000,1733989376000,1506956160000,2218562816000,921950848000,813076864000,587832448000,631372544000,575703936000,474718208000,491711360000,662139648000,458981632000,297982336000,295846144000,245742848000,260281472000,233874944000,228682752000,203318016000,256331776000,177062784000,129104640000,138835584000,118649472000,97863936000,87256320000,90336384000,96233600000,128210944000,66818816000,50535936000,43912960000,23900416000,33932800000,14527872000,18692736000,0,7672960000,2401408000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,162292553216000,131019984640000,94668546688000,55029891456000,50638493824000,42669537408000,40448713728000,29295568896000,27267411328000,18024812544000,18278423680000,15449285376000,13832863872000,11767707008000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936964864000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2237309440000,2049042048000,1944329728000,1733989376000,1506956416000,1754243200000,923198464000,813076864000,781170816000,633516288000,575703936000,474718208000,492912512000,662139648000,458981632000,297982336000,295037568000,263454848000,256227456000,267489664000,230024960000,203318016000,256331776000,178106752000,129104640000,138835584000,118649472000,97863936000,91802240000,90581120000,96233600000,141851776000,66818816000,51429504000,43913088000,23900416000,21396992000,16625536000,18692736000,20063232000,7672960000,2554368000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,162411179264000,131075613568000,94668546688000,55029891456000,50638493824000,45937860608000,40448713728000,29295568768000,27267411328000,18114090752000,18284034944000,15470170880000,13832863872000,11607914624000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936318080000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2242306944000,2067007872000,1944329728000,1733989376000,1506956672000,2039233408000,923594240000,813076864000,781170816000,633521792000,575703936000,474718208000,488464640000,662139648000,458981632000,297982336000,295037568000,277430144000,263643776000,253159424000,230020224000,203318016000,256331776000,178106752000,129104640000,137997440000,118649472000,97864320000,91831296000,90685696000,93119232000,141851776000,66818816000,51429888000,43913216000,23900416000,21396992000,17486336000,18692736000,6914816000,7672960000,9539328000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,162592092800000,120058848256000,94668546688000,55029891456000,50638493824000,48469915392000,40448713728000,29295638016000,27267411328000,18132494464000,18284034944000,15482173184000,13832863872000,16703203328000,9928160640000,9219024768000,8958667648000,7541796608000,6034834048000,5936241792000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2247882112000,2202024704000,1944329728000,1733989376000,1506956928000,2326942336000,923594240000,813076864000,781170816000,633514240000,575703936000,467375104000,488482304000,662139648000,458981632000,297982336000,295037568000,286533888000,266416768000,248449920000,230002432000,203318016000,207372032000,178106752000,129104640000,121020032000,118649472000,97864320000,91836928000,90685696000,77647104000,141851776000,66818816000,51319296000,43913344000,23900416000,18674048000,16938112000,16437504000,6914816000,7672960000,9809792000,6557312000,6022272000,5779584000,2627712000,4905216000,3000576000,2179072000,384000,1991040000,1984768000,2121984000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,162782021504000,115647463040000,94668546688000,55029891456000,50638493824000,48922220416000,40448713728000,29275253120000,27267411328000,18162174336000,18284034944000,15482173184000,13832863872000,14173657216000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4858566912000,4457590784000,4179763584000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2246351232000,2154197888000,1944329728000,1733989376000,1506957056000,2509993344000,923594240000,813076864000,781170816000,590948992000,575703936000,455522560000,487712384000,662139648000,456145280000,297982336000,295034880000,286533888000,263296256000,250212096000,230002432000,203318016000,135342208000,110459264000,129104640000,118758272000,118649472000,97864320000,91868672000,90686848000,68341888000,14694144000,66818816000,50483456000,43913472000,23900416000,18548608000,17168640000,16437504000,6914816000,7672960000,9831936000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2155776000,2352896000,1991040000,1984768000,380544000,1615104000,1408000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,2048000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,162938798080000,115706580608000,94668546688000,55029891456000,50638493824000,48778744448000,40448713728000,29275253120000,27267411328000,18254786560000,15088759168000,15482173184000,13832863872000,7617133440000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4859111040000,4457590784000,4180527744000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2230907392000,2039886592000,1944329728000,1733989376000,1506957568000,641877248000,923734144000,813076864000,725375488000,553673344000,575703936000,480148608000,487729280000,220757120000,456145280000,297982336000,295034880000,299565824000,267783296000,241470336000,220342912000,203318016000,135342208000,110459264000,129104640000,118663552000,118649472000,97835520000,91883648000,99767808000,65239936000,14694144000,66818816000,49484672000,43913600000,14620160000,13108096000,17168640000,8721664000,6914816000,7672960000,10109952000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2087680000,2682752000,1991040000,1984768000,380544000,1615104000,1408000,620928000,499072000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,163074504320000,110946205440000,94668546688000,55029891456000,50638493824000,49634929024000,40448713728000,29275760128000,27267411328000,17296789376000,14102226048000,15482548096000,13832863872000,6897737344000,9928160640000,9219050752000,8970264832000,7541796608000,6034834048000,4849261312000,4457590784000,3210803456000,3707448192000,2969734144000,2706318336000,2698908288000,2524024064000,2236060800000,1986328960000,1944329728000,1733945344000,1506957824000,454921984000,924274304000,813076864000,719372288000,572017024000,575703936000,533945344000,487777152000,220757120000,473995392000,297982336000,295034880000,299565824000,271555584000,261224192000,220342912000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91886720000,93556224000,65239936000,14694144000,66818816000,50107392000,43913728000,14620160000,13108096000,17168640000,8721664000,6914816000,8777856000,10230528000,5084160000,7490560000,5779584000,0,4905216000,3000576000,2297728000,4085888000,1991040000,1984768000,380544000,1615104000,1408000,620928000,489088000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,18560000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,163190753920000,111050653440000,94668546688000,55029891456000,50638493824000,49865353728000,40448713728000,29275760128000,27267411328000,17623511680000,13348862848000,15527354752000,13832863872000,5220590592000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4837305472000,4457590784000,2984752768000,3707448192000,2969734144000,2706318336000,2698908288000,2598213248000,2297008256000,1995541632000,1944329728000,1733945344000,1506958080000,519747200000,924839552000,813076864000,716008064000,588576256000,575703936000,570769536000,489505920000,220757120000,476100224000,297982336000,295034880000,299565824000,281917568000,261224192000,218234880000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91868800000,101219968000,65197312000,14694144000,66818816000,50277120000,43913856000,14620160000,10179840000,17180160000,8721664000,6914816000,8777856000,10322304000,9930880000,8948224000,5779584000,0,4905216000,3000576000,2297728000,5751808000,1991040000,1984768000,380544000,1615104000,1408000,620928000,322688000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,4352000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,163336355200000,111143961344000,94668546688000,55029891456000,50638493824000,49995430272000,40448713728000,29275760128000,27267411328000,17666970880000,11714550528000,15606825344000,13832863872000,1979481728000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4834955136000,4457590784000,2982224384000,3707448192000,2969734144000,2706318336000,2698908288000,2622437632000,2298263808000,1661955456000,1944329728000,1733945344000,1506958336000,594770048000,924839552000,813076864000,694936576000,579323776000,575703936000,608921728000,493510144000,220757120000,474920704000,297982336000,295034752000,299565824000,287111552000,261224192000,218234880000,203318016000,896000,110459264000,129427328000,125946624000,118706560000,134671616000,93110016000,34790400000,52814976000,14694144000,66818816000,50331776000,43913984000,14620160000,8711552000,18124160000,7718912000,6914816000,8777856000,10340992000,8472832000,9467136000,5779584000,0,4905216000,3000576000,2297728000,5084416000,1991040000,1984768000,380544000,1615104000,1408000,620928000,4480000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,0,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index d7f24778ad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" -2018-12,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,512000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d97969ab14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" -"2018 Q4",162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,512000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 4529f99d4d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Oriole, Baltimore] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Reed, Pallas's] Logical Usage (Bytes)","[Auk, Little] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bunting, Cretzschmar's] Logical Usage (Bytes)","[Towhee, Eastern] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Ovenbird] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Bunting, Little] Logical Usage (Bytes)","[Coot] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Crossbill, Scottish] Logical Usage (Bytes)","[Martin, Purple] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Swift, Alpine] Logical Usage (Bytes)","[Bunting, Cirl] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Chestnut-eared] Logical Usage (Bytes)","[Yellowhammer] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Serin] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Crossbill, Common] Logical Usage (Bytes)","[Bunting, Black-faced] Logical Usage (Bytes)","[Junco, Dark-eyed] Logical Usage (Bytes)","[Roller] Logical Usage (Bytes)","[Sparrow, White-crowned] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Brambling] Logical Usage (Bytes)","[Crossbill, Parrot] Logical Usage (Bytes)","[Pipit, Rock] Logical Usage (Bytes)","[Tanager, Scarlet] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Bunting, Snow] Logical Usage (Bytes)","[Pipit, Pechora] Logical Usage (Bytes)","[Crossbill, Two-barred] Logical Usage (Bytes)","[Bunting, Reed] Logical Usage (Bytes)","[Grey, Southern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Hawfinch] Logical Usage (Bytes)","[Grosbeak, Pine] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Grosbeak, Rose-breasted] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Pipit, Richard's] Logical Usage (Bytes)","[Pipit, Water] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Sparrow, House] Logical Usage (Bytes)","[Thrush, Grey-cheeked] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Thrush, Swainson's] Logical Usage (Bytes)","[Tern, Sandwich] Logical Usage (Bytes)","[Sparrow, Spanish] Logical Usage (Bytes)","[Wheatear, Pied] Logical Usage (Bytes)","[Flycatcher, Red-breasted] Logical Usage (Bytes)","[Wagtail, Grey] Logical Usage (Bytes)","[Warbler, Hume's] Logical Usage (Bytes)","[Egret, Cattle] Logical Usage (Bytes)","[Scoter, Velvet] Logical Usage (Bytes)","[Wheatear, Desert] Logical Usage (Bytes)","[Stonechat] Logical Usage (Bytes)","[Crane, Sandhill] Logical Usage (Bytes)","[Pipit, Blyth's] Logical Usage (Bytes)","[Black, White-crowned] Logical Usage (Bytes)","[Thrush, Song] Logical Usage (Bytes)","[Wheatear, Black-eared] Logical Usage (Bytes)","[Honey-buzzard] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Citrine] Logical Usage (Bytes)","[Wheatear, Isabelline] Logical Usage (Bytes)","[Wheatear] Logical Usage (Bytes)","[Robin, American] Logical Usage (Bytes)","[Sparrow, Rock] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Treecreeper, Short-toed] Logical Usage (Bytes)","[Whinchat] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Redstart, Moussier's] Logical Usage (Bytes)","[Redstart] Logical Usage (Bytes)","[Nightingale, Thrush] Logical Usage (Bytes)","[Robin] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Redstart, Black] Logical Usage (Bytes)","[Flycatcher, Pied] Logical Usage (Bytes)","[Flycatcher, Collared] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Waxwing] Logical Usage (Bytes)","[Wallcreeper] Logical Usage (Bytes)","[Rubythroat, Siberian] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Bush, Rufous] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Warbler, Garden] Logical Usage (Bytes)","[Thrush, Black-throated] Logical Usage (Bytes)","[Warbler, Yellow] Logical Usage (Bytes)","[Rock, Blue] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Dove, Turtle] Logical Usage (Bytes)","[Ouzel, Ring] Logical Usage (Bytes)","[Blue, Siberian] Logical Usage (Bytes)","[Plover, White-tailed] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, Varied] Logical Usage (Bytes)","[Martin, Crag] Logical Usage (Bytes)","[Dipper] Logical Usage (Bytes)","[Starling] Logical Usage (Bytes)","[Redwing] Logical Usage (Bytes)","[Grasshopper, Pallas's] Logical Usage (Bytes)","[Thrush, Naumann's] Logical Usage (Bytes)","[Bluethroat] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Mockingbird, Northern] Logical Usage (Bytes)","[Reed, Blyth's] Logical Usage (Bytes)","[Thrasher, Brown] Logical Usage (Bytes)","[Warbler, Marsh] Logical Usage (Bytes)","[Warbler, Sedge] Logical Usage (Bytes)","[Wren] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Blackcap] Logical Usage (Bytes)","[Warbler, Aquatic] Logical Usage (Bytes)","[Warbler, Golden-winged] Logical Usage (Bytes)","[Warbler, Melodious] Logical Usage (Bytes)","[Sparrow, Savannah] Logical Usage (Bytes)","[Warbler, Olive-tree] Logical Usage (Bytes)","[Warbler, Willow] Logical Usage (Bytes)","[Olivaceous, Eastern] Logical Usage (Bytes)","[Thrush, Siberian] Logical Usage (Bytes)","[Treecreeper] Logical Usage (Bytes)","[Warbler, Wood] Logical Usage (Bytes)","[Bonelli's, Western] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Warbler, Pallas's] Logical Usage (Bytes)","[Warbler, Thick-billed] Logical Usage (Bytes)","[Warbler, Yellow-rumped] Logical Usage (Bytes)","[Crowned, Eastern] Logical Usage (Bytes)","[Warbler, Grasshopper] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Warbler, Greenish] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Lanceolated] Logical Usage (Bytes)","[Warbler, River] Logical Usage (Bytes)","[Grebe, Pied-billed] Logical Usage (Bytes)","[Lark, Crested] Logical Usage (Bytes)","[Lark, Shore] Logical Usage (Bytes)","[Lark, Short-toed] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Orphean, Western] Logical Usage (Bytes)","[Reed, Great] Logical Usage (Bytes)","[Short-toed, Lesser] Logical Usage (Bytes)","[Shrike, Long-tailed] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Swallow] Logical Usage (Bytes)","[Swallow, Cliff] Logical Usage (Bytes)","[Swallow, Red-rumped] Logical Usage (Bytes)","[Swallow, Tree] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Dartford] Logical Usage (Bytes)","[Warbler, Ruppell's] Logical Usage (Bytes)","[Warbler, Spectacled] Logical Usage (Bytes)","[Waxwing, Cedar] Logical Usage (Bytes)","[Whitethroat] Logical Usage (Bytes)","[Whitethroat, Lesser] Logical Usage (Bytes)","[Woodlark] Logical Usage (Bytes)","[Auk, Great] Logical Usage (Bytes)","[Bee-eater] Logical Usage (Bytes)","[Bee-eater, Blue-cheeked] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Black-backed, Great] Logical Usage (Bytes)","[Black-backed, Lesser] Logical Usage (Bytes)","[Black, White-winged] Logical Usage (Bytes)","[Bunting, Yellow-browed] Logical Usage (Bytes)","[Chough] Logical Usage (Bytes)","[Courser, Cream-coloured] Logical Usage (Bytes)","[Crested, Lesser] Logical Usage (Bytes)","[Crow, Carrion] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Yellow-billed] Logical Usage (Bytes)","[Dove, Collared] Logical Usage (Bytes)","[Dove, Mourning] Logical Usage (Bytes)","[Dove, Rock] Logical Usage (Bytes)","[Dove, Stock] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Amur] Logical Usage (Bytes)","[Falcon, Gyr] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Firecrest] Logical Usage (Bytes)","[Greenshank] Logical Usage (Bytes)","[Grosbeak, Evening] Logical Usage (Bytes)","[Guillemot] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Black-headed] Logical Usage (Bytes)","[Gull, Caspian] Logical Usage (Bytes)","[Gull, Common] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Iceland] Logical Usage (Bytes)","[Gull, Ivory] Logical Usage (Bytes)","[Gull, Laughing] Logical Usage (Bytes)","[Gull, Little] Logical Usage (Bytes)","[Gull, Mediterranean] Logical Usage (Bytes)","[Gull, Ross's] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Slender-billed] Logical Usage (Bytes)","[Herring, American] Logical Usage (Bytes)","[Hobby] Logical Usage (Bytes)","[Hoopoe] Logical Usage (Bytes)","[Jay] Logical Usage (Bytes)","[Kestrel] Logical Usage (Bytes)","[Kestrel, American] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Kittiwake] Logical Usage (Bytes)","[Lark, Bimaculated] Logical Usage (Bytes)","[Lark, Black] Logical Usage (Bytes)","[Lark, White-winged] Logical Usage (Bytes)","[Magpie] Logical Usage (Bytes)","[May, Cape] Logical Usage (Bytes)","[Murrelet, Ancient] Logical Usage (Bytes)","[Murrelet, Long-billed] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Nightjar, Egyptian] Logical Usage (Bytes)","[Nightjar, Red-necked] Logical Usage (Bytes)","[Nutcracker] Logical Usage (Bytes)","[Oriole, Golden] Logical Usage (Bytes)","[Owl, Barn] Logical Usage (Bytes)","[Owl, Hawk] Logical Usage (Bytes)","[Owl, Long-eared] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Owl, Tawny] Logical Usage (Bytes)","[Owl, Tengmalm's] Logical Usage (Bytes)","[Parakeet, Ring-necked] Logical Usage (Bytes)","[Phalarope, Grey] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Phoebe, Eastern] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Pratincole, Black-winged] Logical Usage (Bytes)","[Pratincole, Collared] Logical Usage (Bytes)","[Pratincole, Oriental] Logical Usage (Bytes)","[Puffin, Tufted] Logical Usage (Bytes)","[Raven] Logical Usage (Bytes)","[Razorbill] Logical Usage (Bytes)","[Redshank] Logical Usage (Bytes)","[Rook] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Sandgrouse, Pallas's] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Common] Logical Usage (Bytes)","[Sandpiper, Green] Logical Usage (Bytes)","[Sandpiper, Least] Logical Usage (Bytes)","[Sandpiper, Marsh] Logical Usage (Bytes)","[Sandpiper, Pectoral] Logical Usage (Bytes)","[Sandpiper, Semipalmated] Logical Usage (Bytes)","[Sandpiper, Solitary] Logical Usage (Bytes)","[Sandpiper, Spotted] Logical Usage (Bytes)","[Sandpiper, Terek] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Sandpiper, Wood] Logical Usage (Bytes)","[Shag] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Shearwater, Cory's] Logical Usage (Bytes)","[Shrike, Isabelline] Logical Usage (Bytes)","[Shrike, Masked] Logical Usage (Bytes)","[Shrike, Red-backed] Logical Usage (Bytes)","[Shrike, Woodchat] Logical Usage (Bytes)","[Skua, Great] Logical Usage (Bytes)","[Skua, Long-tailed] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Snipe, Jack] Logical Usage (Bytes)","[Snipe, Wilson's] Logical Usage (Bytes)","[Spotted, Great] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Needle-tailed] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Swift, Pallid] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Tattler, Grey-tailed] Logical Usage (Bytes)","[Tern, Aleutian] Logical Usage (Bytes)","[Tern, Arctic] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Bridled] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Forster's] Logical Usage (Bytes)","[Tern, Little] Logical Usage (Bytes)","[Tern, Roseate] Logical Usage (Bytes)","[Tern, Royal] Logical Usage (Bytes)","[Tern, Sooty] Logical Usage (Bytes)","[Tern, Whiskered] Logical Usage (Bytes)","[Tit, Blue] Logical Usage (Bytes)","[Tit, Coal] Logical Usage (Bytes)","[Tit, Crested] Logical Usage (Bytes)","[Tit, Great] Logical Usage (Bytes)","[Tit, Marsh] Logical Usage (Bytes)","[Tit, Penduline] Logical Usage (Bytes)","[Turtle, Rufous] Logical Usage (Bytes)","[Vireo, Philadelphia] Logical Usage (Bytes)","[Vireo, Red-eyed] Logical Usage (Bytes)","[Vireo, Yellow-throated] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Warbler, Dusky] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Sardinian] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Warbler, Yellow-browed] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Wryneck] Logical Usage (Bytes)","[Yellowlegs, Greater] Logical Usage (Bytes)","[Yellowlegs, Lesser] Logical Usage (Bytes)" -2018,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,512000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 0c8255c5de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota Utilization: Logical (%)" -"Martin, Sand",99.2816 -Chaffinch,97.6186 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.6434 -"Warbler, Magnolia",89.3511 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -"Scaup, Lesser",37.0745 -Bobolink,36.6866 -"Warbler, Blackburnian",30.1391 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",1.9595 -"Grouse, Red",0.5757 -"Treecreeper, Short-toed",0.0143 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 0c8255c5de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota Utilization: Logical (%)" -"Martin, Sand",99.2816 -Chaffinch,97.6186 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.6434 -"Warbler, Magnolia",89.3511 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -"Scaup, Lesser",37.0745 -Bobolink,36.6866 -"Warbler, Blackburnian",30.1391 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",1.9595 -"Grouse, Red",0.5757 -"Treecreeper, Short-toed",0.0143 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 0c8255c5de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota Utilization: Logical (%)" -"Martin, Sand",99.2816 -Chaffinch,97.6186 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.6434 -"Warbler, Magnolia",89.3511 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -"Scaup, Lesser",37.0745 -Bobolink,36.6866 -"Warbler, Blackburnian",30.1391 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",1.9595 -"Grouse, Red",0.5757 -"Treecreeper, Short-toed",0.0143 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 0c8255c5de..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota Utilization: Logical (%)" -"Martin, Sand",99.2816 -Chaffinch,97.6186 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.6434 -"Warbler, Magnolia",89.3511 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -"Scaup, Lesser",37.0745 -Bobolink,36.6866 -"Warbler, Blackburnian",30.1391 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",1.9595 -"Grouse, Red",0.5757 -"Treecreeper, Short-toed",0.0143 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 6df766d4b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" -2018-12-27,99.2816,97.6519,94.6685,92.1894,89.5742,87.5281,80.9852,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9640,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,99.2816,97.6519,94.6685,92.1897,89.5867,89.6053,81.0600,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9668,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,99.2816,97.6519,94.6685,92.1902,89.5867,90.1241,81.1463,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9716,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,99.2816,97.6519,94.6685,92.1902,89.5867,90.5704,81.2056,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,99.2816,97.6521,94.6685,92.1902,89.5866,90.6625,81.2960,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,99.2816,97.5842,94.6685,92.1907,89.7026,90.8109,81.3910,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9508,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,99.2816,97.5842,94.6685,92.1907,89.7026,91.2739,81.4694,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9509,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,99.2816,97.5859,94.6685,92.1905,89.7026,86.4839,81.5373,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9511,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,99.2816,97.5859,94.6685,92.1906,89.7026,88.1175,81.5954,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9580,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,99.2816,97.5859,94.6685,92.1906,89.7026,88.3348,81.6682,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9740,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index bd137f7d74..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" -2018-12,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 393ea21204..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" -"2018 Q4",99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 706b4f6c84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Martin, Sand] Quota Utilization: Logical (%)","[Chaffinch] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Treecreeper, Short-toed] Quota Utilization: Logical (%)","[Auk, Great] Quota Utilization: Logical (%)","[Auk, Little] Quota Utilization: Logical (%)","[Bee-eater] Quota Utilization: Logical (%)","[Bee-eater, Blue-cheeked] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-backed, Great] Quota Utilization: Logical (%)","[Black-backed, Lesser] Quota Utilization: Logical (%)","[Black, White-crowned] Quota Utilization: Logical (%)","[Black, White-winged] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Blackcap] Quota Utilization: Logical (%)","[Blue, Siberian] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bluethroat] Quota Utilization: Logical (%)","[Bonelli's, Western] Quota Utilization: Logical (%)","[Brambling] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Black-faced] Quota Utilization: Logical (%)","[Bunting, Chestnut-eared] Quota Utilization: Logical (%)","[Bunting, Cirl] Quota Utilization: Logical (%)","[Bunting, Cretzschmar's] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Little] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Reed] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Snow] Quota Utilization: Logical (%)","[Bunting, Yellow-browed] Quota Utilization: Logical (%)","[Bush, Rufous] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chough] Quota Utilization: Logical (%)","[Coot] Quota Utilization: Logical (%)","[Courser, Cream-coloured] Quota Utilization: Logical (%)","[Crane, Sandhill] Quota Utilization: Logical (%)","[Crested, Lesser] Quota Utilization: Logical (%)","[Crossbill, Common] Quota Utilization: Logical (%)","[Crossbill, Parrot] Quota Utilization: Logical (%)","[Crossbill, Scottish] Quota Utilization: Logical (%)","[Crossbill, Two-barred] Quota Utilization: Logical (%)","[Crow, Carrion] Quota Utilization: Logical (%)","[Crowned, Eastern] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Yellow-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dipper] Quota Utilization: Logical (%)","[Dove, Collared] Quota Utilization: Logical (%)","[Dove, Mourning] Quota Utilization: Logical (%)","[Dove, Rock] Quota Utilization: Logical (%)","[Dove, Stock] Quota Utilization: Logical (%)","[Dove, Turtle] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Egret, Cattle] Quota Utilization: Logical (%)","[Falcon, Amur] Quota Utilization: Logical (%)","[Falcon, Gyr] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Firecrest] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Collared] Quota Utilization: Logical (%)","[Flycatcher, Pied] Quota Utilization: Logical (%)","[Flycatcher, Red-breasted] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Grasshopper, Pallas's] Quota Utilization: Logical (%)","[Grebe, Pied-billed] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Greenshank] Quota Utilization: Logical (%)","[Grey, Southern] Quota Utilization: Logical (%)","[Grosbeak, Evening] Quota Utilization: Logical (%)","[Grosbeak, Pine] Quota Utilization: Logical (%)","[Grosbeak, Rose-breasted] Quota Utilization: Logical (%)","[Guillemot] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Black-headed] Quota Utilization: Logical (%)","[Gull, Caspian] Quota Utilization: Logical (%)","[Gull, Common] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Iceland] Quota Utilization: Logical (%)","[Gull, Ivory] Quota Utilization: Logical (%)","[Gull, Laughing] Quota Utilization: Logical (%)","[Gull, Little] Quota Utilization: Logical (%)","[Gull, Mediterranean] Quota Utilization: Logical (%)","[Gull, Ross's] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Slender-billed] Quota Utilization: Logical (%)","[Hawfinch] Quota Utilization: Logical (%)","[Herring, American] Quota Utilization: Logical (%)","[Hobby] Quota Utilization: Logical (%)","[Honey-buzzard] Quota Utilization: Logical (%)","[Hoopoe] Quota Utilization: Logical (%)","[Jay] Quota Utilization: Logical (%)","[Junco, Dark-eyed] Quota Utilization: Logical (%)","[Kestrel] Quota Utilization: Logical (%)","[Kestrel, American] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Kittiwake] Quota Utilization: Logical (%)","[Lark, Bimaculated] Quota Utilization: Logical (%)","[Lark, Black] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Lark, Crested] Quota Utilization: Logical (%)","[Lark, Shore] Quota Utilization: Logical (%)","[Lark, Short-toed] Quota Utilization: Logical (%)","[Lark, White-winged] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Magpie] Quota Utilization: Logical (%)","[Martin, Crag] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Martin, Purple] Quota Utilization: Logical (%)","[May, Cape] Quota Utilization: Logical (%)","[Mockingbird, Northern] Quota Utilization: Logical (%)","[Murrelet, Ancient] Quota Utilization: Logical (%)","[Murrelet, Long-billed] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightingale, Thrush] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nightjar, Egyptian] Quota Utilization: Logical (%)","[Nightjar, Red-necked] Quota Utilization: Logical (%)","[Nutcracker] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Olivaceous, Eastern] Quota Utilization: Logical (%)","[Oriole, Baltimore] Quota Utilization: Logical (%)","[Oriole, Golden] Quota Utilization: Logical (%)","[Orphean, Western] Quota Utilization: Logical (%)","[Ouzel, Ring] Quota Utilization: Logical (%)","[Ovenbird] Quota Utilization: Logical (%)","[Owl, Barn] Quota Utilization: Logical (%)","[Owl, Hawk] Quota Utilization: Logical (%)","[Owl, Long-eared] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Owl, Tawny] Quota Utilization: Logical (%)","[Owl, Tengmalm's] Quota Utilization: Logical (%)","[Parakeet, Ring-necked] Quota Utilization: Logical (%)","[Phalarope, Grey] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Phoebe, Eastern] Quota Utilization: Logical (%)","[Pipit, Blyth's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Pechora] Quota Utilization: Logical (%)","[Pipit, Richard's] Quota Utilization: Logical (%)","[Pipit, Rock] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Pipit, Water] Quota Utilization: Logical (%)","[Plover, White-tailed] Quota Utilization: Logical (%)","[Pratincole, Black-winged] Quota Utilization: Logical (%)","[Pratincole, Collared] Quota Utilization: Logical (%)","[Pratincole, Oriental] Quota Utilization: Logical (%)","[Puffin, Tufted] Quota Utilization: Logical (%)","[Raven] Quota Utilization: Logical (%)","[Razorbill] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank] Quota Utilization: Logical (%)","[Redstart] Quota Utilization: Logical (%)","[Redstart, Black] Quota Utilization: Logical (%)","[Redstart, Moussier's] Quota Utilization: Logical (%)","[Redwing] Quota Utilization: Logical (%)","[Reed, Blyth's] Quota Utilization: Logical (%)","[Reed, Great] Quota Utilization: Logical (%)","[Reed, Pallas's] Quota Utilization: Logical (%)","[Robin] Quota Utilization: Logical (%)","[Robin, American] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Rock, Blue] Quota Utilization: Logical (%)","[Roller] Quota Utilization: Logical (%)","[Rook] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Rubythroat, Siberian] Quota Utilization: Logical (%)","[Sandgrouse, Pallas's] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Common] Quota Utilization: Logical (%)","[Sandpiper, Green] Quota Utilization: Logical (%)","[Sandpiper, Least] Quota Utilization: Logical (%)","[Sandpiper, Marsh] Quota Utilization: Logical (%)","[Sandpiper, Pectoral] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Semipalmated] Quota Utilization: Logical (%)","[Sandpiper, Solitary] Quota Utilization: Logical (%)","[Sandpiper, Spotted] Quota Utilization: Logical (%)","[Sandpiper, Terek] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Sandpiper, Wood] Quota Utilization: Logical (%)","[Scoter, Velvet] Quota Utilization: Logical (%)","[Serin] Quota Utilization: Logical (%)","[Shag] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Cory's] Quota Utilization: Logical (%)","[Short-toed, Lesser] Quota Utilization: Logical (%)","[Shrike, Isabelline] Quota Utilization: Logical (%)","[Shrike, Long-tailed] Quota Utilization: Logical (%)","[Shrike, Masked] Quota Utilization: Logical (%)","[Shrike, Red-backed] Quota Utilization: Logical (%)","[Shrike, Woodchat] Quota Utilization: Logical (%)","[Skua, Great] Quota Utilization: Logical (%)","[Skua, Long-tailed] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Snipe, Jack] Quota Utilization: Logical (%)","[Snipe, Wilson's] Quota Utilization: Logical (%)","[Sparrow, House] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Rock] Quota Utilization: Logical (%)","[Sparrow, Savannah] Quota Utilization: Logical (%)","[Sparrow, Spanish] Quota Utilization: Logical (%)","[Sparrow, White-crowned] Quota Utilization: Logical (%)","[Spotted, Great] Quota Utilization: Logical (%)","[Starling] Quota Utilization: Logical (%)","[Stonechat] Quota Utilization: Logical (%)","[Swallow] Quota Utilization: Logical (%)","[Swallow, Cliff] Quota Utilization: Logical (%)","[Swallow, Red-rumped] Quota Utilization: Logical (%)","[Swallow, Tree] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Alpine] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Needle-tailed] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Swift, Pallid] Quota Utilization: Logical (%)","[Tanager, Scarlet] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tattler, Grey-tailed] Quota Utilization: Logical (%)","[Tern, Aleutian] Quota Utilization: Logical (%)","[Tern, Arctic] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Bridled] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Forster's] Quota Utilization: Logical (%)","[Tern, Little] Quota Utilization: Logical (%)","[Tern, Roseate] Quota Utilization: Logical (%)","[Tern, Royal] Quota Utilization: Logical (%)","[Tern, Sandwich] Quota Utilization: Logical (%)","[Tern, Sooty] Quota Utilization: Logical (%)","[Tern, Whiskered] Quota Utilization: Logical (%)","[Thrasher, Brown] Quota Utilization: Logical (%)","[Thrush, Black-throated] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Grey-cheeked] Quota Utilization: Logical (%)","[Thrush, Naumann's] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, Siberian] Quota Utilization: Logical (%)","[Thrush, Song] Quota Utilization: Logical (%)","[Thrush, Swainson's] Quota Utilization: Logical (%)","[Thrush, Varied] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Blue] Quota Utilization: Logical (%)","[Tit, Coal] Quota Utilization: Logical (%)","[Tit, Crested] Quota Utilization: Logical (%)","[Tit, Great] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Marsh] Quota Utilization: Logical (%)","[Tit, Penduline] Quota Utilization: Logical (%)","[Towhee, Eastern] Quota Utilization: Logical (%)","[Treecreeper] Quota Utilization: Logical (%)","[Turtle, Rufous] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Vireo, Philadelphia] Quota Utilization: Logical (%)","[Vireo, Red-eyed] Quota Utilization: Logical (%)","[Vireo, Yellow-throated] Quota Utilization: Logical (%)","[Wagtail, Citrine] Quota Utilization: Logical (%)","[Wagtail, Grey] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Wallcreeper] Quota Utilization: Logical (%)","[Warbler, Aquatic] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Dartford] Quota Utilization: Logical (%)","[Warbler, Dusky] Quota Utilization: Logical (%)","[Warbler, Garden] Quota Utilization: Logical (%)","[Warbler, Golden-winged] Quota Utilization: Logical (%)","[Warbler, Grasshopper] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Greenish] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Hume's] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Lanceolated] Quota Utilization: Logical (%)","[Warbler, Marsh] Quota Utilization: Logical (%)","[Warbler, Melodious] Quota Utilization: Logical (%)","[Warbler, Olive-tree] Quota Utilization: Logical (%)","[Warbler, Pallas's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, River] Quota Utilization: Logical (%)","[Warbler, Ruppell's] Quota Utilization: Logical (%)","[Warbler, Sardinian] Quota Utilization: Logical (%)","[Warbler, Sedge] Quota Utilization: Logical (%)","[Warbler, Spectacled] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Thick-billed] Quota Utilization: Logical (%)","[Warbler, Willow] Quota Utilization: Logical (%)","[Warbler, Wood] Quota Utilization: Logical (%)","[Warbler, Yellow] Quota Utilization: Logical (%)","[Warbler, Yellow-browed] Quota Utilization: Logical (%)","[Warbler, Yellow-rumped] Quota Utilization: Logical (%)","[Waxwing] Quota Utilization: Logical (%)","[Waxwing, Cedar] Quota Utilization: Logical (%)","[Wheatear] Quota Utilization: Logical (%)","[Wheatear, Black-eared] Quota Utilization: Logical (%)","[Wheatear, Desert] Quota Utilization: Logical (%)","[Wheatear, Isabelline] Quota Utilization: Logical (%)","[Wheatear, Pied] Quota Utilization: Logical (%)","[Whinchat] Quota Utilization: Logical (%)","[Whitethroat] Quota Utilization: Logical (%)","[Whitethroat, Lesser] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodlark] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Wren] Quota Utilization: Logical (%)","[Wryneck] Quota Utilization: Logical (%)","[Yellowhammer] Quota Utilization: Logical (%)","[Yellowlegs, Greater] Quota Utilization: Logical (%)","[Yellowlegs, Lesser] Quota Utilization: Logical (%)" -2018,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 43e296c582..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Physical Usage (Bytes)" -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -Bobolink,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Corn",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -"Chiffchaff, Iberian",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -"Grouse, Red",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Martin, Sand",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Parula, Northern",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, American",0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Treecreeper, Short-toed",0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Tennessee",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -"Waterthrush, Northern",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 43e296c582..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Physical Usage (Bytes)" -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -Bobolink,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Corn",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -"Chiffchaff, Iberian",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -"Grouse, Red",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Martin, Sand",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Parula, Northern",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, American",0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Treecreeper, Short-toed",0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Tennessee",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -"Waterthrush, Northern",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 43e296c582..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Physical Usage (Bytes)" -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -Bobolink,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Corn",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -"Chiffchaff, Iberian",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -"Grouse, Red",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Martin, Sand",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Parula, Northern",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, American",0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Treecreeper, Short-toed",0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Tennessee",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -"Waterthrush, Northern",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 43e296c582..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Physical Usage (Bytes)" -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -Bobolink,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Corn",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -"Chiffchaff, Iberian",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -"Grouse, Red",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Martin, Sand",0.0000 -"May, Cape",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Parula, Northern",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, American",0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scaup, Lesser",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Treecreeper, Short-toed",0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Tennessee",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -"Waterthrush, Northern",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index a079357795..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 46faca5b03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 517bfdf129..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index e274751cd3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Auk, Great] Physical Usage (Bytes)","[Auk, Little] Physical Usage (Bytes)","[Bee-eater] Physical Usage (Bytes)","[Bee-eater, Blue-cheeked] Physical Usage (Bytes)","[Bittern] Physical Usage (Bytes)","[Black-backed, Great] Physical Usage (Bytes)","[Black-backed, Lesser] Physical Usage (Bytes)","[Black, White-crowned] Physical Usage (Bytes)","[Black, White-winged] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Blackcap] Physical Usage (Bytes)","[Blue, Siberian] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bluethroat] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Western] Physical Usage (Bytes)","[Brambling] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Black-faced] Physical Usage (Bytes)","[Bunting, Chestnut-eared] Physical Usage (Bytes)","[Bunting, Cirl] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Cretzschmar's] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Little] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Reed] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Snow] Physical Usage (Bytes)","[Bunting, Yellow-browed] Physical Usage (Bytes)","[Bush, Rufous] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Chough] Physical Usage (Bytes)","[Coot] Physical Usage (Bytes)","[Courser, Cream-coloured] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crane, Sandhill] Physical Usage (Bytes)","[Crested, Lesser] Physical Usage (Bytes)","[Crossbill, Common] Physical Usage (Bytes)","[Crossbill, Parrot] Physical Usage (Bytes)","[Crossbill, Scottish] Physical Usage (Bytes)","[Crossbill, Two-barred] Physical Usage (Bytes)","[Crow, Carrion] Physical Usage (Bytes)","[Crowned, Eastern] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Yellow-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dipper] Physical Usage (Bytes)","[Dove, Collared] Physical Usage (Bytes)","[Dove, Mourning] Physical Usage (Bytes)","[Dove, Rock] Physical Usage (Bytes)","[Dove, Stock] Physical Usage (Bytes)","[Dove, Turtle] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Egret, Cattle] Physical Usage (Bytes)","[Falcon, Amur] Physical Usage (Bytes)","[Falcon, Gyr] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Firecrest] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Collared] Physical Usage (Bytes)","[Flycatcher, Pied] Physical Usage (Bytes)","[Flycatcher, Red-breasted] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Grasshopper, Pallas's] Physical Usage (Bytes)","[Grebe, Pied-billed] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Greenshank] Physical Usage (Bytes)","[Grey, Southern] Physical Usage (Bytes)","[Grosbeak, Evening] Physical Usage (Bytes)","[Grosbeak, Pine] Physical Usage (Bytes)","[Grosbeak, Rose-breasted] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Black-headed] Physical Usage (Bytes)","[Gull, Caspian] Physical Usage (Bytes)","[Gull, Common] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Iceland] Physical Usage (Bytes)","[Gull, Ivory] Physical Usage (Bytes)","[Gull, Laughing] Physical Usage (Bytes)","[Gull, Little] Physical Usage (Bytes)","[Gull, Mediterranean] Physical Usage (Bytes)","[Gull, Ross's] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Slender-billed] Physical Usage (Bytes)","[Hawfinch] Physical Usage (Bytes)","[Herring, American] Physical Usage (Bytes)","[Hobby] Physical Usage (Bytes)","[Honey-buzzard] Physical Usage (Bytes)","[Hoopoe] Physical Usage (Bytes)","[Jay] Physical Usage (Bytes)","[Junco, Dark-eyed] Physical Usage (Bytes)","[Kestrel] Physical Usage (Bytes)","[Kestrel, American] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Kittiwake] Physical Usage (Bytes)","[Lark, Bimaculated] Physical Usage (Bytes)","[Lark, Black] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Lark, Crested] Physical Usage (Bytes)","[Lark, Shore] Physical Usage (Bytes)","[Lark, Short-toed] Physical Usage (Bytes)","[Lark, White-winged] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Magpie] Physical Usage (Bytes)","[Martin, Crag] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Purple] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[May, Cape] Physical Usage (Bytes)","[Mockingbird, Northern] Physical Usage (Bytes)","[Murrelet, Ancient] Physical Usage (Bytes)","[Murrelet, Long-billed] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightingale, Thrush] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nightjar, Egyptian] Physical Usage (Bytes)","[Nightjar, Red-necked] Physical Usage (Bytes)","[Nutcracker] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Olivaceous, Eastern] Physical Usage (Bytes)","[Oriole, Baltimore] Physical Usage (Bytes)","[Oriole, Golden] Physical Usage (Bytes)","[Orphean, Western] Physical Usage (Bytes)","[Ouzel, Ring] Physical Usage (Bytes)","[Ovenbird] Physical Usage (Bytes)","[Owl, Barn] Physical Usage (Bytes)","[Owl, Hawk] Physical Usage (Bytes)","[Owl, Long-eared] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Owl, Tawny] Physical Usage (Bytes)","[Owl, Tengmalm's] Physical Usage (Bytes)","[Parakeet, Ring-necked] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Phalarope, Grey] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Phoebe, Eastern] Physical Usage (Bytes)","[Pipit, Blyth's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Pechora] Physical Usage (Bytes)","[Pipit, Richard's] Physical Usage (Bytes)","[Pipit, Rock] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Pipit, Water] Physical Usage (Bytes)","[Plover, White-tailed] Physical Usage (Bytes)","[Pratincole, Black-winged] Physical Usage (Bytes)","[Pratincole, Collared] Physical Usage (Bytes)","[Pratincole, Oriental] Physical Usage (Bytes)","[Puffin, Tufted] Physical Usage (Bytes)","[Raven] Physical Usage (Bytes)","[Razorbill] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank] Physical Usage (Bytes)","[Redstart] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Redstart, Black] Physical Usage (Bytes)","[Redstart, Moussier's] Physical Usage (Bytes)","[Redwing] Physical Usage (Bytes)","[Reed, Blyth's] Physical Usage (Bytes)","[Reed, Great] Physical Usage (Bytes)","[Reed, Pallas's] Physical Usage (Bytes)","[Robin] Physical Usage (Bytes)","[Robin, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Rock, Blue] Physical Usage (Bytes)","[Roller] Physical Usage (Bytes)","[Rook] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Rubythroat, Siberian] Physical Usage (Bytes)","[Sandgrouse, Pallas's] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Common] Physical Usage (Bytes)","[Sandpiper, Green] Physical Usage (Bytes)","[Sandpiper, Least] Physical Usage (Bytes)","[Sandpiper, Marsh] Physical Usage (Bytes)","[Sandpiper, Pectoral] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Semipalmated] Physical Usage (Bytes)","[Sandpiper, Solitary] Physical Usage (Bytes)","[Sandpiper, Spotted] Physical Usage (Bytes)","[Sandpiper, Terek] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Sandpiper, Wood] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Scoter, Velvet] Physical Usage (Bytes)","[Serin] Physical Usage (Bytes)","[Shag] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Cory's] Physical Usage (Bytes)","[Short-toed, Lesser] Physical Usage (Bytes)","[Shrike, Isabelline] Physical Usage (Bytes)","[Shrike, Long-tailed] Physical Usage (Bytes)","[Shrike, Masked] Physical Usage (Bytes)","[Shrike, Red-backed] Physical Usage (Bytes)","[Shrike, Woodchat] Physical Usage (Bytes)","[Skua, Great] Physical Usage (Bytes)","[Skua, Long-tailed] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Snipe, Jack] Physical Usage (Bytes)","[Snipe, Wilson's] Physical Usage (Bytes)","[Sparrow, House] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Rock] Physical Usage (Bytes)","[Sparrow, Savannah] Physical Usage (Bytes)","[Sparrow, Spanish] Physical Usage (Bytes)","[Sparrow, White-crowned] Physical Usage (Bytes)","[Spotted, Great] Physical Usage (Bytes)","[Starling] Physical Usage (Bytes)","[Stonechat] Physical Usage (Bytes)","[Swallow] Physical Usage (Bytes)","[Swallow, Cliff] Physical Usage (Bytes)","[Swallow, Red-rumped] Physical Usage (Bytes)","[Swallow, Tree] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Alpine] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Needle-tailed] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Swift, Pallid] Physical Usage (Bytes)","[Tanager, Scarlet] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tattler, Grey-tailed] Physical Usage (Bytes)","[Tern, Aleutian] Physical Usage (Bytes)","[Tern, Arctic] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Bridled] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Forster's] Physical Usage (Bytes)","[Tern, Little] Physical Usage (Bytes)","[Tern, Roseate] Physical Usage (Bytes)","[Tern, Royal] Physical Usage (Bytes)","[Tern, Sandwich] Physical Usage (Bytes)","[Tern, Sooty] Physical Usage (Bytes)","[Tern, Whiskered] Physical Usage (Bytes)","[Thrasher, Brown] Physical Usage (Bytes)","[Thrush, Black-throated] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Grey-cheeked] Physical Usage (Bytes)","[Thrush, Naumann's] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, Siberian] Physical Usage (Bytes)","[Thrush, Song] Physical Usage (Bytes)","[Thrush, Swainson's] Physical Usage (Bytes)","[Thrush, Varied] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Blue] Physical Usage (Bytes)","[Tit, Coal] Physical Usage (Bytes)","[Tit, Crested] Physical Usage (Bytes)","[Tit, Great] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Marsh] Physical Usage (Bytes)","[Tit, Penduline] Physical Usage (Bytes)","[Towhee, Eastern] Physical Usage (Bytes)","[Treecreeper] Physical Usage (Bytes)","[Treecreeper, Short-toed] Physical Usage (Bytes)","[Turtle, Rufous] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Vireo, Philadelphia] Physical Usage (Bytes)","[Vireo, Red-eyed] Physical Usage (Bytes)","[Vireo, Yellow-throated] Physical Usage (Bytes)","[Wagtail, Citrine] Physical Usage (Bytes)","[Wagtail, Grey] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Wallcreeper] Physical Usage (Bytes)","[Warbler, Aquatic] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Dartford] Physical Usage (Bytes)","[Warbler, Dusky] Physical Usage (Bytes)","[Warbler, Garden] Physical Usage (Bytes)","[Warbler, Golden-winged] Physical Usage (Bytes)","[Warbler, Grasshopper] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Greenish] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Hume's] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Lanceolated] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marsh] Physical Usage (Bytes)","[Warbler, Melodious] Physical Usage (Bytes)","[Warbler, Olive-tree] Physical Usage (Bytes)","[Warbler, Pallas's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, River] Physical Usage (Bytes)","[Warbler, Ruppell's] Physical Usage (Bytes)","[Warbler, Sardinian] Physical Usage (Bytes)","[Warbler, Sedge] Physical Usage (Bytes)","[Warbler, Spectacled] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Warbler, Thick-billed] Physical Usage (Bytes)","[Warbler, Willow] Physical Usage (Bytes)","[Warbler, Wood] Physical Usage (Bytes)","[Warbler, Yellow] Physical Usage (Bytes)","[Warbler, Yellow-browed] Physical Usage (Bytes)","[Warbler, Yellow-rumped] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Waxwing] Physical Usage (Bytes)","[Waxwing, Cedar] Physical Usage (Bytes)","[Wheatear] Physical Usage (Bytes)","[Wheatear, Black-eared] Physical Usage (Bytes)","[Wheatear, Desert] Physical Usage (Bytes)","[Wheatear, Isabelline] Physical Usage (Bytes)","[Wheatear, Pied] Physical Usage (Bytes)","[Whinchat] Physical Usage (Bytes)","[Whitethroat] Physical Usage (Bytes)","[Whitethroat, Lesser] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodlark] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Wren] Physical Usage (Bytes)","[Wryneck] Physical Usage (Bytes)","[Yellowhammer] Physical Usage (Bytes)","[Yellowlegs, Greater] Physical Usage (Bytes)","[Yellowlegs, Lesser] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index eeb9627075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Warbler, Yellow",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"May, Cape",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Warbler, Blackburnian",5000003584000.0000 -"Treecreeper, Short-toed",1000005632000.0000 -"Bunting, Corn",1000001536000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index eeb9627075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Warbler, Yellow",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"May, Cape",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Warbler, Blackburnian",5000003584000.0000 -"Treecreeper, Short-toed",1000005632000.0000 -"Bunting, Corn",1000001536000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index eeb9627075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Warbler, Yellow",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"May, Cape",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Warbler, Blackburnian",5000003584000.0000 -"Treecreeper, Short-toed",1000005632000.0000 -"Bunting, Corn",1000001536000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index eeb9627075..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Warbler, Yellow",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"May, Cape",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Warbler, Blackburnian",5000003584000.0000 -"Treecreeper, Short-toed",1000005632000.0000 -"Bunting, Corn",1000001536000.0000 -"Auk, Great",0.0000 -"Auk, Little",0.0000 -Bee-eater,0.0000 -"Bee-eater, Blue-cheeked",0.0000 -Bittern,0.0000 -"Black-backed, Great",0.0000 -"Black-backed, Lesser",0.0000 -"Black, White-crowned",0.0000 -"Black, White-winged",0.0000 -Blackbird,0.0000 -Blackcap,0.0000 -"Blue, Siberian",0.0000 -"Bluetail, Red-flanked",0.0000 -Bluethroat,0.0000 -"Bonelli's, Western",0.0000 -Brambling,0.0000 -Bullfinch,0.0000 -"Bunting, Black-faced",0.0000 -"Bunting, Chestnut-eared",0.0000 -"Bunting, Cirl",0.0000 -"Bunting, Cretzschmar's",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Little",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Reed",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Snow",0.0000 -"Bunting, Yellow-browed",0.0000 -"Bush, Rufous",0.0000 -"Catbird, Grey",0.0000 -Chough,0.0000 -Coot,0.0000 -"Courser, Cream-coloured",0.0000 -"Crane, Sandhill",0.0000 -"Crested, Lesser",0.0000 -"Crossbill, Common",0.0000 -"Crossbill, Parrot",0.0000 -"Crossbill, Scottish",0.0000 -"Crossbill, Two-barred",0.0000 -"Crow, Carrion",0.0000 -"Crowned, Eastern",0.0000 -Cuckoo,0.0000 -"Cuckoo, Yellow-billed",0.0000 -"Desert, Asian",0.0000 -Dipper,0.0000 -"Dove, Collared",0.0000 -"Dove, Mourning",0.0000 -"Dove, Rock",0.0000 -"Dove, Stock",0.0000 -"Dove, Turtle",0.0000 -"Dowitcher, Long-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Egret, Cattle",0.0000 -"Falcon, Amur",0.0000 -"Falcon, Gyr",0.0000 -"Falcon, Red-footed",0.0000 -"Finch, Trumpeter",0.0000 -Firecrest,0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Collared",0.0000 -"Flycatcher, Pied",0.0000 -"Flycatcher, Red-breasted",0.0000 -"Flycatcher, Spotted",0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Grasshopper, Pallas's",0.0000 -"Grebe, Pied-billed",0.0000 -Greenfinch,0.0000 -Greenshank,0.0000 -"Grey, Southern",0.0000 -"Grosbeak, Evening",0.0000 -"Grosbeak, Pine",0.0000 -"Grosbeak, Rose-breasted",0.0000 -Guillemot,0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Black-headed",0.0000 -"Gull, Caspian",0.0000 -"Gull, Common",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Iceland",0.0000 -"Gull, Ivory",0.0000 -"Gull, Laughing",0.0000 -"Gull, Little",0.0000 -"Gull, Mediterranean",0.0000 -"Gull, Ross's",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Slender-billed",0.0000 -Hawfinch,0.0000 -"Herring, American",0.0000 -Hobby,0.0000 -Honey-buzzard,0.0000 -Hoopoe,0.0000 -Jay,0.0000 -"Junco, Dark-eyed",0.0000 -Kestrel,0.0000 -"Kestrel, American",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Kittiwake,0.0000 -"Lark, Bimaculated",0.0000 -"Lark, Black",0.0000 -"Lark, Calandra",0.0000 -"Lark, Crested",0.0000 -"Lark, Shore",0.0000 -"Lark, Short-toed",0.0000 -"Lark, White-winged",0.0000 -Linnet,0.0000 -Magpie,0.0000 -"Martin, Crag",0.0000 -"Martin, House",0.0000 -"Martin, Purple",0.0000 -"Mockingbird, Northern",0.0000 -"Murrelet, Ancient",0.0000 -"Murrelet, Long-billed",0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -"Nightingale, Thrush",0.0000 -Nightjar,0.0000 -"Nightjar, Egyptian",0.0000 -"Nightjar, Red-necked",0.0000 -Nutcracker,0.0000 -"Nuthatch, Red-breasted",0.0000 -"Olivaceous, Eastern",0.0000 -"Oriole, Baltimore",0.0000 -"Oriole, Golden",0.0000 -"Orphean, Western",0.0000 -"Ouzel, Ring",0.0000 -Ovenbird,0.0000 -"Owl, Barn",0.0000 -"Owl, Hawk",0.0000 -"Owl, Long-eared",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Owl, Tawny",0.0000 -"Owl, Tengmalm's",0.0000 -"Parakeet, Ring-necked",0.0000 -"Phalarope, Grey",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Phoebe, Eastern",0.0000 -"Pipit, Blyth's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Pechora",0.0000 -"Pipit, Richard's",0.0000 -"Pipit, Rock",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -"Pipit, Water",0.0000 -"Plover, White-tailed",0.0000 -"Pratincole, Black-winged",0.0000 -"Pratincole, Collared",0.0000 -"Pratincole, Oriental",0.0000 -"Puffin, Tufted",0.0000 -Raven,0.0000 -Razorbill,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -Redshank,0.0000 -Redstart,0.0000 -"Redstart, Black",0.0000 -"Redstart, Moussier's",0.0000 -Redwing,0.0000 -"Reed, Blyth's",0.0000 -"Reed, Great",0.0000 -"Reed, Pallas's",0.0000 -Robin,0.0000 -"Robin, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Rock, Blue",0.0000 -Roller,0.0000 -Rook,0.0000 -"Rosefinch, Common",0.0000 -"Rubythroat, Siberian",0.0000 -"Sandgrouse, Pallas's",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Common",0.0000 -"Sandpiper, Green",0.0000 -"Sandpiper, Least",0.0000 -"Sandpiper, Marsh",0.0000 -"Sandpiper, Pectoral",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Semipalmated",0.0000 -"Sandpiper, Solitary",0.0000 -"Sandpiper, Spotted",0.0000 -"Sandpiper, Terek",0.0000 -"Sandpiper, White-rumped",0.0000 -"Sandpiper, Wood",0.0000 -"Scoter, Velvet",0.0000 -Serin,0.0000 -Shag,0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Cory's",0.0000 -"Short-toed, Lesser",0.0000 -"Shrike, Isabelline",0.0000 -"Shrike, Long-tailed",0.0000 -"Shrike, Masked",0.0000 -"Shrike, Red-backed",0.0000 -"Shrike, Woodchat",0.0000 -"Skua, Great",0.0000 -"Skua, Long-tailed",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Snipe, Jack",0.0000 -"Snipe, Wilson's",0.0000 -"Sparrow, House",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Rock",0.0000 -"Sparrow, Savannah",0.0000 -"Sparrow, Spanish",0.0000 -"Sparrow, White-crowned",0.0000 -"Spotted, Great",0.0000 -Starling,0.0000 -Stonechat,0.0000 -Swallow,0.0000 -"Swallow, Cliff",0.0000 -"Swallow, Red-rumped",0.0000 -"Swallow, Tree",0.0000 -Swift,0.0000 -"Swift, Alpine",0.0000 -"Swift, Chimney",0.0000 -"Swift, Needle-tailed",0.0000 -"Swift, Pacific",0.0000 -"Swift, Pallid",0.0000 -"Tanager, Scarlet",0.0000 -"Tanager, Summer",0.0000 -"Tattler, Grey-tailed",0.0000 -"Tern, Aleutian",0.0000 -"Tern, Arctic",0.0000 -"Tern, Black",0.0000 -"Tern, Bridled",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Forster's",0.0000 -"Tern, Little",0.0000 -"Tern, Roseate",0.0000 -"Tern, Royal",0.0000 -"Tern, Sandwich",0.0000 -"Tern, Sooty",0.0000 -"Tern, Whiskered",0.0000 -"Thrasher, Brown",0.0000 -"Thrush, Black-throated",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Grey-cheeked",0.0000 -"Thrush, Naumann's",0.0000 -"Thrush, Rock",0.0000 -"Thrush, Siberian",0.0000 -"Thrush, Song",0.0000 -"Thrush, Swainson's",0.0000 -"Thrush, Varied",0.0000 -"Thrush, Wood",0.0000 -"Tit, Blue",0.0000 -"Tit, Coal",0.0000 -"Tit, Crested",0.0000 -"Tit, Great",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Marsh",0.0000 -"Tit, Penduline",0.0000 -"Towhee, Eastern",0.0000 -Treecreeper,0.0000 -"Turtle, Rufous",0.0000 -Twite,0.0000 -Veery,0.0000 -"Vireo, Philadelphia",0.0000 -"Vireo, Red-eyed",0.0000 -"Vireo, Yellow-throated",0.0000 -"Wagtail, Citrine",0.0000 -"Wagtail, Grey",0.0000 -"Wagtail, Yellow",0.0000 -Wallcreeper,0.0000 -"Warbler, Aquatic",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Dartford",0.0000 -"Warbler, Dusky",0.0000 -"Warbler, Garden",0.0000 -"Warbler, Golden-winged",0.0000 -"Warbler, Grasshopper",0.0000 -"Warbler, Green",0.0000 -"Warbler, Greenish",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Hume's",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Lanceolated",0.0000 -"Warbler, Marsh",0.0000 -"Warbler, Melodious",0.0000 -"Warbler, Olive-tree",0.0000 -"Warbler, Pallas's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, River",0.0000 -"Warbler, Ruppell's",0.0000 -"Warbler, Sardinian",0.0000 -"Warbler, Sedge",0.0000 -"Warbler, Spectacled",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Thick-billed",0.0000 -"Warbler, Willow",0.0000 -"Warbler, Wood",0.0000 -"Warbler, Yellow-browed",0.0000 -"Warbler, Yellow-rumped",0.0000 -Waxwing,0.0000 -"Waxwing, Cedar",0.0000 -Wheatear,0.0000 -"Wheatear, Black-eared",0.0000 -"Wheatear, Desert",0.0000 -"Wheatear, Isabelline",0.0000 -"Wheatear, Pied",0.0000 -Whinchat,0.0000 -Whitethroat,0.0000 -"Whitethroat, Lesser",0.0000 -Woodcock,0.0000 -Woodlark,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -Wren,0.0000 -Wryneck,0.0000 -Yellowhammer,0.0000 -"Yellowlegs, Greater",0.0000 -"Yellowlegs, Lesser",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index ba3cf151d9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" -2018-12-27,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index b2376a18f2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" -2018-12,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index c78b6ec2a3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" -"2018 Q4",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 6d43060c03..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Warbler, Yellow] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[May, Cape] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Treecreeper, Short-toed] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Auk, Great] Quota: Soft Threshold (Bytes)","[Auk, Little] Quota: Soft Threshold (Bytes)","[Bee-eater] Quota: Soft Threshold (Bytes)","[Bee-eater, Blue-cheeked] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-backed, Great] Quota: Soft Threshold (Bytes)","[Black-backed, Lesser] Quota: Soft Threshold (Bytes)","[Black, White-crowned] Quota: Soft Threshold (Bytes)","[Black, White-winged] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Blackcap] Quota: Soft Threshold (Bytes)","[Blue, Siberian] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bluethroat] Quota: Soft Threshold (Bytes)","[Bonelli's, Western] Quota: Soft Threshold (Bytes)","[Brambling] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Black-faced] Quota: Soft Threshold (Bytes)","[Bunting, Chestnut-eared] Quota: Soft Threshold (Bytes)","[Bunting, Cirl] Quota: Soft Threshold (Bytes)","[Bunting, Cretzschmar's] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Little] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Reed] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Snow] Quota: Soft Threshold (Bytes)","[Bunting, Yellow-browed] Quota: Soft Threshold (Bytes)","[Bush, Rufous] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chough] Quota: Soft Threshold (Bytes)","[Coot] Quota: Soft Threshold (Bytes)","[Courser, Cream-coloured] Quota: Soft Threshold (Bytes)","[Crane, Sandhill] Quota: Soft Threshold (Bytes)","[Crested, Lesser] Quota: Soft Threshold (Bytes)","[Crossbill, Common] Quota: Soft Threshold (Bytes)","[Crossbill, Parrot] Quota: Soft Threshold (Bytes)","[Crossbill, Scottish] Quota: Soft Threshold (Bytes)","[Crossbill, Two-barred] Quota: Soft Threshold (Bytes)","[Crow, Carrion] Quota: Soft Threshold (Bytes)","[Crowned, Eastern] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Yellow-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dipper] Quota: Soft Threshold (Bytes)","[Dove, Collared] Quota: Soft Threshold (Bytes)","[Dove, Mourning] Quota: Soft Threshold (Bytes)","[Dove, Rock] Quota: Soft Threshold (Bytes)","[Dove, Stock] Quota: Soft Threshold (Bytes)","[Dove, Turtle] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Egret, Cattle] Quota: Soft Threshold (Bytes)","[Falcon, Amur] Quota: Soft Threshold (Bytes)","[Falcon, Gyr] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Firecrest] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Collared] Quota: Soft Threshold (Bytes)","[Flycatcher, Pied] Quota: Soft Threshold (Bytes)","[Flycatcher, Red-breasted] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Grasshopper, Pallas's] Quota: Soft Threshold (Bytes)","[Grebe, Pied-billed] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Greenshank] Quota: Soft Threshold (Bytes)","[Grey, Southern] Quota: Soft Threshold (Bytes)","[Grosbeak, Evening] Quota: Soft Threshold (Bytes)","[Grosbeak, Pine] Quota: Soft Threshold (Bytes)","[Grosbeak, Rose-breasted] Quota: Soft Threshold (Bytes)","[Guillemot] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Black-headed] Quota: Soft Threshold (Bytes)","[Gull, Caspian] Quota: Soft Threshold (Bytes)","[Gull, Common] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Iceland] Quota: Soft Threshold (Bytes)","[Gull, Ivory] Quota: Soft Threshold (Bytes)","[Gull, Laughing] Quota: Soft Threshold (Bytes)","[Gull, Little] Quota: Soft Threshold (Bytes)","[Gull, Mediterranean] Quota: Soft Threshold (Bytes)","[Gull, Ross's] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Slender-billed] Quota: Soft Threshold (Bytes)","[Hawfinch] Quota: Soft Threshold (Bytes)","[Herring, American] Quota: Soft Threshold (Bytes)","[Hobby] Quota: Soft Threshold (Bytes)","[Honey-buzzard] Quota: Soft Threshold (Bytes)","[Hoopoe] Quota: Soft Threshold (Bytes)","[Jay] Quota: Soft Threshold (Bytes)","[Junco, Dark-eyed] Quota: Soft Threshold (Bytes)","[Kestrel] Quota: Soft Threshold (Bytes)","[Kestrel, American] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Kittiwake] Quota: Soft Threshold (Bytes)","[Lark, Bimaculated] Quota: Soft Threshold (Bytes)","[Lark, Black] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Lark, Crested] Quota: Soft Threshold (Bytes)","[Lark, Shore] Quota: Soft Threshold (Bytes)","[Lark, Short-toed] Quota: Soft Threshold (Bytes)","[Lark, White-winged] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Magpie] Quota: Soft Threshold (Bytes)","[Martin, Crag] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Martin, Purple] Quota: Soft Threshold (Bytes)","[Mockingbird, Northern] Quota: Soft Threshold (Bytes)","[Murrelet, Ancient] Quota: Soft Threshold (Bytes)","[Murrelet, Long-billed] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightingale, Thrush] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nightjar, Egyptian] Quota: Soft Threshold (Bytes)","[Nightjar, Red-necked] Quota: Soft Threshold (Bytes)","[Nutcracker] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Olivaceous, Eastern] Quota: Soft Threshold (Bytes)","[Oriole, Baltimore] Quota: Soft Threshold (Bytes)","[Oriole, Golden] Quota: Soft Threshold (Bytes)","[Orphean, Western] Quota: Soft Threshold (Bytes)","[Ouzel, Ring] Quota: Soft Threshold (Bytes)","[Ovenbird] Quota: Soft Threshold (Bytes)","[Owl, Barn] Quota: Soft Threshold (Bytes)","[Owl, Hawk] Quota: Soft Threshold (Bytes)","[Owl, Long-eared] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Owl, Tawny] Quota: Soft Threshold (Bytes)","[Owl, Tengmalm's] Quota: Soft Threshold (Bytes)","[Parakeet, Ring-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Grey] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Phoebe, Eastern] Quota: Soft Threshold (Bytes)","[Pipit, Blyth's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Pechora] Quota: Soft Threshold (Bytes)","[Pipit, Richard's] Quota: Soft Threshold (Bytes)","[Pipit, Rock] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Pipit, Water] Quota: Soft Threshold (Bytes)","[Plover, White-tailed] Quota: Soft Threshold (Bytes)","[Pratincole, Black-winged] Quota: Soft Threshold (Bytes)","[Pratincole, Collared] Quota: Soft Threshold (Bytes)","[Pratincole, Oriental] Quota: Soft Threshold (Bytes)","[Puffin, Tufted] Quota: Soft Threshold (Bytes)","[Raven] Quota: Soft Threshold (Bytes)","[Razorbill] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank] Quota: Soft Threshold (Bytes)","[Redstart] Quota: Soft Threshold (Bytes)","[Redstart, Black] Quota: Soft Threshold (Bytes)","[Redstart, Moussier's] Quota: Soft Threshold (Bytes)","[Redwing] Quota: Soft Threshold (Bytes)","[Reed, Blyth's] Quota: Soft Threshold (Bytes)","[Reed, Great] Quota: Soft Threshold (Bytes)","[Reed, Pallas's] Quota: Soft Threshold (Bytes)","[Robin] Quota: Soft Threshold (Bytes)","[Robin, American] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Rock, Blue] Quota: Soft Threshold (Bytes)","[Roller] Quota: Soft Threshold (Bytes)","[Rook] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Rubythroat, Siberian] Quota: Soft Threshold (Bytes)","[Sandgrouse, Pallas's] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Green] Quota: Soft Threshold (Bytes)","[Sandpiper, Least] Quota: Soft Threshold (Bytes)","[Sandpiper, Marsh] Quota: Soft Threshold (Bytes)","[Sandpiper, Pectoral] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Semipalmated] Quota: Soft Threshold (Bytes)","[Sandpiper, Solitary] Quota: Soft Threshold (Bytes)","[Sandpiper, Spotted] Quota: Soft Threshold (Bytes)","[Sandpiper, Terek] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Sandpiper, Wood] Quota: Soft Threshold (Bytes)","[Scoter, Velvet] Quota: Soft Threshold (Bytes)","[Serin] Quota: Soft Threshold (Bytes)","[Shag] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Cory's] Quota: Soft Threshold (Bytes)","[Short-toed, Lesser] Quota: Soft Threshold (Bytes)","[Shrike, Isabelline] Quota: Soft Threshold (Bytes)","[Shrike, Long-tailed] Quota: Soft Threshold (Bytes)","[Shrike, Masked] Quota: Soft Threshold (Bytes)","[Shrike, Red-backed] Quota: Soft Threshold (Bytes)","[Shrike, Woodchat] Quota: Soft Threshold (Bytes)","[Skua, Great] Quota: Soft Threshold (Bytes)","[Skua, Long-tailed] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Snipe, Jack] Quota: Soft Threshold (Bytes)","[Snipe, Wilson's] Quota: Soft Threshold (Bytes)","[Sparrow, House] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Rock] Quota: Soft Threshold (Bytes)","[Sparrow, Savannah] Quota: Soft Threshold (Bytes)","[Sparrow, Spanish] Quota: Soft Threshold (Bytes)","[Sparrow, White-crowned] Quota: Soft Threshold (Bytes)","[Spotted, Great] Quota: Soft Threshold (Bytes)","[Starling] Quota: Soft Threshold (Bytes)","[Stonechat] Quota: Soft Threshold (Bytes)","[Swallow] Quota: Soft Threshold (Bytes)","[Swallow, Cliff] Quota: Soft Threshold (Bytes)","[Swallow, Red-rumped] Quota: Soft Threshold (Bytes)","[Swallow, Tree] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Alpine] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Needle-tailed] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Swift, Pallid] Quota: Soft Threshold (Bytes)","[Tanager, Scarlet] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tattler, Grey-tailed] Quota: Soft Threshold (Bytes)","[Tern, Aleutian] Quota: Soft Threshold (Bytes)","[Tern, Arctic] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Bridled] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Forster's] Quota: Soft Threshold (Bytes)","[Tern, Little] Quota: Soft Threshold (Bytes)","[Tern, Roseate] Quota: Soft Threshold (Bytes)","[Tern, Royal] Quota: Soft Threshold (Bytes)","[Tern, Sandwich] Quota: Soft Threshold (Bytes)","[Tern, Sooty] Quota: Soft Threshold (Bytes)","[Tern, Whiskered] Quota: Soft Threshold (Bytes)","[Thrasher, Brown] Quota: Soft Threshold (Bytes)","[Thrush, Black-throated] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Grey-cheeked] Quota: Soft Threshold (Bytes)","[Thrush, Naumann's] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, Siberian] Quota: Soft Threshold (Bytes)","[Thrush, Song] Quota: Soft Threshold (Bytes)","[Thrush, Swainson's] Quota: Soft Threshold (Bytes)","[Thrush, Varied] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Blue] Quota: Soft Threshold (Bytes)","[Tit, Coal] Quota: Soft Threshold (Bytes)","[Tit, Crested] Quota: Soft Threshold (Bytes)","[Tit, Great] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Marsh] Quota: Soft Threshold (Bytes)","[Tit, Penduline] Quota: Soft Threshold (Bytes)","[Towhee, Eastern] Quota: Soft Threshold (Bytes)","[Treecreeper] Quota: Soft Threshold (Bytes)","[Turtle, Rufous] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Vireo, Philadelphia] Quota: Soft Threshold (Bytes)","[Vireo, Red-eyed] Quota: Soft Threshold (Bytes)","[Vireo, Yellow-throated] Quota: Soft Threshold (Bytes)","[Wagtail, Citrine] Quota: Soft Threshold (Bytes)","[Wagtail, Grey] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Wallcreeper] Quota: Soft Threshold (Bytes)","[Warbler, Aquatic] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Dartford] Quota: Soft Threshold (Bytes)","[Warbler, Dusky] Quota: Soft Threshold (Bytes)","[Warbler, Garden] Quota: Soft Threshold (Bytes)","[Warbler, Golden-winged] Quota: Soft Threshold (Bytes)","[Warbler, Grasshopper] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Greenish] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Hume's] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Lanceolated] Quota: Soft Threshold (Bytes)","[Warbler, Marsh] Quota: Soft Threshold (Bytes)","[Warbler, Melodious] Quota: Soft Threshold (Bytes)","[Warbler, Olive-tree] Quota: Soft Threshold (Bytes)","[Warbler, Pallas's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, River] Quota: Soft Threshold (Bytes)","[Warbler, Ruppell's] Quota: Soft Threshold (Bytes)","[Warbler, Sardinian] Quota: Soft Threshold (Bytes)","[Warbler, Sedge] Quota: Soft Threshold (Bytes)","[Warbler, Spectacled] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Thick-billed] Quota: Soft Threshold (Bytes)","[Warbler, Willow] Quota: Soft Threshold (Bytes)","[Warbler, Wood] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-browed] Quota: Soft Threshold (Bytes)","[Warbler, Yellow-rumped] Quota: Soft Threshold (Bytes)","[Waxwing] Quota: Soft Threshold (Bytes)","[Waxwing, Cedar] Quota: Soft Threshold (Bytes)","[Wheatear] Quota: Soft Threshold (Bytes)","[Wheatear, Black-eared] Quota: Soft Threshold (Bytes)","[Wheatear, Desert] Quota: Soft Threshold (Bytes)","[Wheatear, Isabelline] Quota: Soft Threshold (Bytes)","[Wheatear, Pied] Quota: Soft Threshold (Bytes)","[Whinchat] Quota: Soft Threshold (Bytes)","[Whitethroat] Quota: Soft Threshold (Bytes)","[Whitethroat, Lesser] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodlark] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Wren] Quota: Soft Threshold (Bytes)","[Wryneck] Quota: Soft Threshold (Bytes)","[Yellowhammer] Quota: Soft Threshold (Bytes)","[Yellowlegs, Greater] Quota: Soft Threshold (Bytes)","[Yellowlegs, Lesser] Quota: Soft Threshold (Bytes)" -2018,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv deleted file mode 100644 index e3ecf8a451..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"User Count (Number of Users)" -"Auk, Great",1 -"Auk, Little",1 -Bee-eater,1 -"Bee-eater, Blue-cheeked",1 -Bittern,1 -"Black-backed, Great",1 -"Black-backed, Lesser",1 -"Black, White-crowned",1 -"Black, White-winged",1 -Blackbird,1 -Blackcap,1 -"Blue, Siberian",1 -"Bluetail, Red-flanked",1 -Bluethroat,1 -Bobolink,1 -"Bonelli's, Western",1 -Brambling,1 -Bullfinch,1 -"Bunting, Black-faced",1 -"Bunting, Chestnut-eared",1 -"Bunting, Cirl",1 -"Bunting, Corn",1 -"Bunting, Cretzschmar's",1 -"Bunting, Lapland",1 -"Bunting, Little",1 -"Bunting, Pine",1 -"Bunting, Reed",1 -"Bunting, Rock",1 -"Bunting, Snow",1 -"Bunting, Yellow-browed",1 -"Bush, Rufous",1 -"Catbird, Grey",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Chough,1 -Coot,1 -"Courser, Cream-coloured",1 -"Cowbird, Brown-headed",1 -"Crane, Sandhill",1 -"Crested, Lesser",1 -"Crossbill, Common",1 -"Crossbill, Parrot",1 -"Crossbill, Scottish",1 -"Crossbill, Two-barred",1 -"Crow, Carrion",1 -"Crowned, Eastern",1 -Cuckoo,1 -"Cuckoo, Yellow-billed",1 -"Desert, Asian",1 -Dipper,1 -"Dove, Collared",1 -"Dove, Mourning",1 -"Dove, Rock",1 -"Dove, Stock",1 -"Dove, Turtle",1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Egret, Cattle",1 -"Falcon, Amur",1 -"Falcon, Gyr",1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -Firecrest,1 -"Flycatcher, Brown",1 -"Flycatcher, Collared",1 -"Flycatcher, Pied",1 -"Flycatcher, Red-breasted",1 -"Flycatcher, Spotted",1 -Goldfinch,1 -"Goose, Egyptian",1 -"Grasshopper, Pallas's",1 -"Grebe, Pied-billed",1 -Greenfinch,1 -Greenshank,1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Grosbeak, Pine",1 -"Grosbeak, Rose-breasted",1 -"Grouse, Red",1 -Guillemot,1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Black-headed",1 -"Gull, Caspian",1 -"Gull, Common",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Iceland",1 -"Gull, Ivory",1 -"Gull, Laughing",1 -"Gull, Little",1 -"Gull, Mediterranean",1 -"Gull, Ross's",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Slender-billed",1 -Hawfinch,1 -"Herring, American",1 -Hobby,1 -Honey-buzzard,1 -Hoopoe,1 -Jay,1 -"Junco, Dark-eyed",1 -Kestrel,1 -"Kestrel, American",1 -"Kestrel, Lesser",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Kittiwake,1 -"Lark, Bimaculated",1 -"Lark, Black",1 -"Lark, Calandra",1 -"Lark, Crested",1 -"Lark, Shore",1 -"Lark, Short-toed",1 -"Lark, White-winged",1 -Linnet,1 -Magpie,1 -"Martin, Crag",1 -"Martin, House",1 -"Martin, Purple",1 -"Martin, Sand",1 -"May, Cape",1 -"Mockingbird, Northern",1 -"Murrelet, Ancient",1 -"Murrelet, Long-billed",1 -"Nighthawk, Common",1 -Nightingale,1 -"Nightingale, Thrush",1 -Nightjar,1 -"Nightjar, Egyptian",1 -"Nightjar, Red-necked",1 -Nutcracker,1 -"Nuthatch, Red-breasted",1 -"Olivaceous, Eastern",1 -"Oriole, Baltimore",1 -"Oriole, Golden",1 -"Orphean, Western",1 -"Ouzel, Ring",1 -Ovenbird,1 -"Owl, Barn",1 -"Owl, Hawk",1 -"Owl, Long-eared",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Owl, Tawny",1 -"Owl, Tengmalm's",1 -"Parakeet, Ring-necked",1 -"Parula, Northern",1 -"Phalarope, Grey",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Phoebe, Eastern",1 -"Pipit, Blyth's",1 -"Pipit, Olive-backed",1 -"Pipit, Pechora",1 -"Pipit, Richard's",1 -"Pipit, Rock",1 -"Pipit, Tawny",1 -"Pipit, Tree",1 -"Pipit, Water",1 -"Plover, White-tailed",1 -"Pratincole, Black-winged",1 -"Pratincole, Collared",1 -"Pratincole, Oriental",1 -"Puffin, Tufted",1 -Raven,1 -Razorbill,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -Redshank,1 -Redstart,1 -"Redstart, American",1 -"Redstart, Black",1 -"Redstart, Moussier's",1 -Redwing,1 -"Reed, Blyth's",1 -"Reed, Great",1 -"Reed, Pallas's",1 -Robin,1 -"Robin, American",1 -"Robin, Rufous-tailed",1 -"Rock, Blue",1 -Roller,1 -Rook,1 -"Rosefinch, Common",1 -"Rubythroat, Siberian",1 -"Sandgrouse, Pallas's",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Common",1 -"Sandpiper, Green",1 -"Sandpiper, Least",1 -"Sandpiper, Marsh",1 -"Sandpiper, Pectoral",1 -"Sandpiper, Purple",1 -"Sandpiper, Semipalmated",1 -"Sandpiper, Solitary",1 -"Sandpiper, Spotted",1 -"Sandpiper, Terek",1 -"Sandpiper, White-rumped",1 -"Sandpiper, Wood",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Serin,1 -Shag,1 -"Shearwater, Balearic",1 -"Shearwater, Cory's",1 -"Short-toed, Lesser",1 -"Shrike, Isabelline",1 -"Shrike, Long-tailed",1 -"Shrike, Masked",1 -"Shrike, Red-backed",1 -"Shrike, Woodchat",1 -"Skua, Great",1 -"Skua, Long-tailed",1 -"Skua, Pomarine",1 -Skylark,1 -Snipe,1 -"Snipe, Great",1 -"Snipe, Jack",1 -"Snipe, Wilson's",1 -"Sparrow, House",1 -"Sparrow, Lark",1 -"Sparrow, Rock",1 -"Sparrow, Savannah",1 -"Sparrow, Spanish",1 -"Sparrow, White-crowned",1 -"Spotted, Great",1 -Starling,1 -Stonechat,1 -Swallow,1 -"Swallow, Cliff",1 -"Swallow, Red-rumped",1 -"Swallow, Tree",1 -Swift,1 -"Swift, Alpine",1 -"Swift, Chimney",1 -"Swift, Needle-tailed",1 -"Swift, Pacific",1 -"Swift, Pallid",1 -"Tanager, Scarlet",1 -"Tanager, Summer",1 -"Tattler, Grey-tailed",1 -"Tern, Aleutian",1 -"Tern, Arctic",1 -"Tern, Black",1 -"Tern, Bridled",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Tern, Forster's",1 -"Tern, Little",1 -"Tern, Roseate",1 -"Tern, Royal",1 -"Tern, Sandwich",1 -"Tern, Sooty",1 -"Tern, Whiskered",1 -"Thrasher, Brown",1 -"Thrush, Black-throated",1 -"Thrush, Eyebrowed",1 -"Thrush, Grey-cheeked",1 -"Thrush, Naumann's",1 -"Thrush, Rock",1 -"Thrush, Siberian",1 -"Thrush, Song",1 -"Thrush, Swainson's",1 -"Thrush, Varied",1 -"Thrush, Wood",1 -"Tit, Blue",1 -"Tit, Coal",1 -"Tit, Crested",1 -"Tit, Great",1 -"Tit, Long-tailed",1 -"Tit, Marsh",1 -"Tit, Penduline",1 -"Towhee, Eastern",1 -Treecreeper,1 -"Treecreeper, Short-toed",1 -"Turtle, Rufous",1 -Twite,1 -Veery,1 -"Vireo, Philadelphia",1 -"Vireo, Red-eyed",1 -"Vireo, Yellow-throated",1 -"Wagtail, Citrine",1 -"Wagtail, Grey",1 -"Wagtail, Yellow",1 -Wallcreeper,1 -"Warbler, Aquatic",1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Cetti's",1 -"Warbler, Dartford",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Grasshopper",1 -"Warbler, Green",1 -"Warbler, Greenish",1 -"Warbler, Hooded",1 -"Warbler, Hume's",1 -"Warbler, Icterine",1 -"Warbler, Lanceolated",1 -"Warbler, Magnolia",1 -"Warbler, Marsh",1 -"Warbler, Melodious",1 -"Warbler, Olive-tree",1 -"Warbler, Pallas's",1 -"Warbler, Reed",1 -"Warbler, River",1 -"Warbler, Ruppell's",1 -"Warbler, Sardinian",1 -"Warbler, Sedge",1 -"Warbler, Spectacled",1 -"Warbler, Subalpine",1 -"Warbler, Tennessee",1 -"Warbler, Thick-billed",1 -"Warbler, Willow",1 -"Warbler, Wood",1 -"Warbler, Yellow",1 -"Warbler, Yellow-browed",1 -"Warbler, Yellow-rumped",1 -"Waterthrush, Northern",1 -Waxwing,1 -"Waxwing, Cedar",1 -Wheatear,1 -"Wheatear, Black-eared",1 -"Wheatear, Desert",1 -"Wheatear, Isabelline",1 -"Wheatear, Pied",1 -Whinchat,1 -Whitethroat,1 -"Whitethroat, Lesser",1 -Woodcock,1 -Woodlark,1 -"Woodpecker, Green",1 -Woodpigeon,1 -Wren,1 -Wryneck,1 -Yellowhammer,1 -"Yellowlegs, Greater",1 -"Yellowlegs, Lesser",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv deleted file mode 100644 index e3ecf8a451..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"User Count (Number of Users)" -"Auk, Great",1 -"Auk, Little",1 -Bee-eater,1 -"Bee-eater, Blue-cheeked",1 -Bittern,1 -"Black-backed, Great",1 -"Black-backed, Lesser",1 -"Black, White-crowned",1 -"Black, White-winged",1 -Blackbird,1 -Blackcap,1 -"Blue, Siberian",1 -"Bluetail, Red-flanked",1 -Bluethroat,1 -Bobolink,1 -"Bonelli's, Western",1 -Brambling,1 -Bullfinch,1 -"Bunting, Black-faced",1 -"Bunting, Chestnut-eared",1 -"Bunting, Cirl",1 -"Bunting, Corn",1 -"Bunting, Cretzschmar's",1 -"Bunting, Lapland",1 -"Bunting, Little",1 -"Bunting, Pine",1 -"Bunting, Reed",1 -"Bunting, Rock",1 -"Bunting, Snow",1 -"Bunting, Yellow-browed",1 -"Bush, Rufous",1 -"Catbird, Grey",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Chough,1 -Coot,1 -"Courser, Cream-coloured",1 -"Cowbird, Brown-headed",1 -"Crane, Sandhill",1 -"Crested, Lesser",1 -"Crossbill, Common",1 -"Crossbill, Parrot",1 -"Crossbill, Scottish",1 -"Crossbill, Two-barred",1 -"Crow, Carrion",1 -"Crowned, Eastern",1 -Cuckoo,1 -"Cuckoo, Yellow-billed",1 -"Desert, Asian",1 -Dipper,1 -"Dove, Collared",1 -"Dove, Mourning",1 -"Dove, Rock",1 -"Dove, Stock",1 -"Dove, Turtle",1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Egret, Cattle",1 -"Falcon, Amur",1 -"Falcon, Gyr",1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -Firecrest,1 -"Flycatcher, Brown",1 -"Flycatcher, Collared",1 -"Flycatcher, Pied",1 -"Flycatcher, Red-breasted",1 -"Flycatcher, Spotted",1 -Goldfinch,1 -"Goose, Egyptian",1 -"Grasshopper, Pallas's",1 -"Grebe, Pied-billed",1 -Greenfinch,1 -Greenshank,1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Grosbeak, Pine",1 -"Grosbeak, Rose-breasted",1 -"Grouse, Red",1 -Guillemot,1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Black-headed",1 -"Gull, Caspian",1 -"Gull, Common",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Iceland",1 -"Gull, Ivory",1 -"Gull, Laughing",1 -"Gull, Little",1 -"Gull, Mediterranean",1 -"Gull, Ross's",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Slender-billed",1 -Hawfinch,1 -"Herring, American",1 -Hobby,1 -Honey-buzzard,1 -Hoopoe,1 -Jay,1 -"Junco, Dark-eyed",1 -Kestrel,1 -"Kestrel, American",1 -"Kestrel, Lesser",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Kittiwake,1 -"Lark, Bimaculated",1 -"Lark, Black",1 -"Lark, Calandra",1 -"Lark, Crested",1 -"Lark, Shore",1 -"Lark, Short-toed",1 -"Lark, White-winged",1 -Linnet,1 -Magpie,1 -"Martin, Crag",1 -"Martin, House",1 -"Martin, Purple",1 -"Martin, Sand",1 -"May, Cape",1 -"Mockingbird, Northern",1 -"Murrelet, Ancient",1 -"Murrelet, Long-billed",1 -"Nighthawk, Common",1 -Nightingale,1 -"Nightingale, Thrush",1 -Nightjar,1 -"Nightjar, Egyptian",1 -"Nightjar, Red-necked",1 -Nutcracker,1 -"Nuthatch, Red-breasted",1 -"Olivaceous, Eastern",1 -"Oriole, Baltimore",1 -"Oriole, Golden",1 -"Orphean, Western",1 -"Ouzel, Ring",1 -Ovenbird,1 -"Owl, Barn",1 -"Owl, Hawk",1 -"Owl, Long-eared",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Owl, Tawny",1 -"Owl, Tengmalm's",1 -"Parakeet, Ring-necked",1 -"Parula, Northern",1 -"Phalarope, Grey",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Phoebe, Eastern",1 -"Pipit, Blyth's",1 -"Pipit, Olive-backed",1 -"Pipit, Pechora",1 -"Pipit, Richard's",1 -"Pipit, Rock",1 -"Pipit, Tawny",1 -"Pipit, Tree",1 -"Pipit, Water",1 -"Plover, White-tailed",1 -"Pratincole, Black-winged",1 -"Pratincole, Collared",1 -"Pratincole, Oriental",1 -"Puffin, Tufted",1 -Raven,1 -Razorbill,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -Redshank,1 -Redstart,1 -"Redstart, American",1 -"Redstart, Black",1 -"Redstart, Moussier's",1 -Redwing,1 -"Reed, Blyth's",1 -"Reed, Great",1 -"Reed, Pallas's",1 -Robin,1 -"Robin, American",1 -"Robin, Rufous-tailed",1 -"Rock, Blue",1 -Roller,1 -Rook,1 -"Rosefinch, Common",1 -"Rubythroat, Siberian",1 -"Sandgrouse, Pallas's",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Common",1 -"Sandpiper, Green",1 -"Sandpiper, Least",1 -"Sandpiper, Marsh",1 -"Sandpiper, Pectoral",1 -"Sandpiper, Purple",1 -"Sandpiper, Semipalmated",1 -"Sandpiper, Solitary",1 -"Sandpiper, Spotted",1 -"Sandpiper, Terek",1 -"Sandpiper, White-rumped",1 -"Sandpiper, Wood",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Serin,1 -Shag,1 -"Shearwater, Balearic",1 -"Shearwater, Cory's",1 -"Short-toed, Lesser",1 -"Shrike, Isabelline",1 -"Shrike, Long-tailed",1 -"Shrike, Masked",1 -"Shrike, Red-backed",1 -"Shrike, Woodchat",1 -"Skua, Great",1 -"Skua, Long-tailed",1 -"Skua, Pomarine",1 -Skylark,1 -Snipe,1 -"Snipe, Great",1 -"Snipe, Jack",1 -"Snipe, Wilson's",1 -"Sparrow, House",1 -"Sparrow, Lark",1 -"Sparrow, Rock",1 -"Sparrow, Savannah",1 -"Sparrow, Spanish",1 -"Sparrow, White-crowned",1 -"Spotted, Great",1 -Starling,1 -Stonechat,1 -Swallow,1 -"Swallow, Cliff",1 -"Swallow, Red-rumped",1 -"Swallow, Tree",1 -Swift,1 -"Swift, Alpine",1 -"Swift, Chimney",1 -"Swift, Needle-tailed",1 -"Swift, Pacific",1 -"Swift, Pallid",1 -"Tanager, Scarlet",1 -"Tanager, Summer",1 -"Tattler, Grey-tailed",1 -"Tern, Aleutian",1 -"Tern, Arctic",1 -"Tern, Black",1 -"Tern, Bridled",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Tern, Forster's",1 -"Tern, Little",1 -"Tern, Roseate",1 -"Tern, Royal",1 -"Tern, Sandwich",1 -"Tern, Sooty",1 -"Tern, Whiskered",1 -"Thrasher, Brown",1 -"Thrush, Black-throated",1 -"Thrush, Eyebrowed",1 -"Thrush, Grey-cheeked",1 -"Thrush, Naumann's",1 -"Thrush, Rock",1 -"Thrush, Siberian",1 -"Thrush, Song",1 -"Thrush, Swainson's",1 -"Thrush, Varied",1 -"Thrush, Wood",1 -"Tit, Blue",1 -"Tit, Coal",1 -"Tit, Crested",1 -"Tit, Great",1 -"Tit, Long-tailed",1 -"Tit, Marsh",1 -"Tit, Penduline",1 -"Towhee, Eastern",1 -Treecreeper,1 -"Treecreeper, Short-toed",1 -"Turtle, Rufous",1 -Twite,1 -Veery,1 -"Vireo, Philadelphia",1 -"Vireo, Red-eyed",1 -"Vireo, Yellow-throated",1 -"Wagtail, Citrine",1 -"Wagtail, Grey",1 -"Wagtail, Yellow",1 -Wallcreeper,1 -"Warbler, Aquatic",1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Cetti's",1 -"Warbler, Dartford",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Grasshopper",1 -"Warbler, Green",1 -"Warbler, Greenish",1 -"Warbler, Hooded",1 -"Warbler, Hume's",1 -"Warbler, Icterine",1 -"Warbler, Lanceolated",1 -"Warbler, Magnolia",1 -"Warbler, Marsh",1 -"Warbler, Melodious",1 -"Warbler, Olive-tree",1 -"Warbler, Pallas's",1 -"Warbler, Reed",1 -"Warbler, River",1 -"Warbler, Ruppell's",1 -"Warbler, Sardinian",1 -"Warbler, Sedge",1 -"Warbler, Spectacled",1 -"Warbler, Subalpine",1 -"Warbler, Tennessee",1 -"Warbler, Thick-billed",1 -"Warbler, Willow",1 -"Warbler, Wood",1 -"Warbler, Yellow",1 -"Warbler, Yellow-browed",1 -"Warbler, Yellow-rumped",1 -"Waterthrush, Northern",1 -Waxwing,1 -"Waxwing, Cedar",1 -Wheatear,1 -"Wheatear, Black-eared",1 -"Wheatear, Desert",1 -"Wheatear, Isabelline",1 -"Wheatear, Pied",1 -Whinchat,1 -Whitethroat,1 -"Whitethroat, Lesser",1 -Woodcock,1 -Woodlark,1 -"Woodpecker, Green",1 -Woodpigeon,1 -Wren,1 -Wryneck,1 -Yellowhammer,1 -"Yellowlegs, Greater",1 -"Yellowlegs, Lesser",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index e3ecf8a451..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"User Count (Number of Users)" -"Auk, Great",1 -"Auk, Little",1 -Bee-eater,1 -"Bee-eater, Blue-cheeked",1 -Bittern,1 -"Black-backed, Great",1 -"Black-backed, Lesser",1 -"Black, White-crowned",1 -"Black, White-winged",1 -Blackbird,1 -Blackcap,1 -"Blue, Siberian",1 -"Bluetail, Red-flanked",1 -Bluethroat,1 -Bobolink,1 -"Bonelli's, Western",1 -Brambling,1 -Bullfinch,1 -"Bunting, Black-faced",1 -"Bunting, Chestnut-eared",1 -"Bunting, Cirl",1 -"Bunting, Corn",1 -"Bunting, Cretzschmar's",1 -"Bunting, Lapland",1 -"Bunting, Little",1 -"Bunting, Pine",1 -"Bunting, Reed",1 -"Bunting, Rock",1 -"Bunting, Snow",1 -"Bunting, Yellow-browed",1 -"Bush, Rufous",1 -"Catbird, Grey",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Chough,1 -Coot,1 -"Courser, Cream-coloured",1 -"Cowbird, Brown-headed",1 -"Crane, Sandhill",1 -"Crested, Lesser",1 -"Crossbill, Common",1 -"Crossbill, Parrot",1 -"Crossbill, Scottish",1 -"Crossbill, Two-barred",1 -"Crow, Carrion",1 -"Crowned, Eastern",1 -Cuckoo,1 -"Cuckoo, Yellow-billed",1 -"Desert, Asian",1 -Dipper,1 -"Dove, Collared",1 -"Dove, Mourning",1 -"Dove, Rock",1 -"Dove, Stock",1 -"Dove, Turtle",1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Egret, Cattle",1 -"Falcon, Amur",1 -"Falcon, Gyr",1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -Firecrest,1 -"Flycatcher, Brown",1 -"Flycatcher, Collared",1 -"Flycatcher, Pied",1 -"Flycatcher, Red-breasted",1 -"Flycatcher, Spotted",1 -Goldfinch,1 -"Goose, Egyptian",1 -"Grasshopper, Pallas's",1 -"Grebe, Pied-billed",1 -Greenfinch,1 -Greenshank,1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Grosbeak, Pine",1 -"Grosbeak, Rose-breasted",1 -"Grouse, Red",1 -Guillemot,1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Black-headed",1 -"Gull, Caspian",1 -"Gull, Common",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Iceland",1 -"Gull, Ivory",1 -"Gull, Laughing",1 -"Gull, Little",1 -"Gull, Mediterranean",1 -"Gull, Ross's",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Slender-billed",1 -Hawfinch,1 -"Herring, American",1 -Hobby,1 -Honey-buzzard,1 -Hoopoe,1 -Jay,1 -"Junco, Dark-eyed",1 -Kestrel,1 -"Kestrel, American",1 -"Kestrel, Lesser",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Kittiwake,1 -"Lark, Bimaculated",1 -"Lark, Black",1 -"Lark, Calandra",1 -"Lark, Crested",1 -"Lark, Shore",1 -"Lark, Short-toed",1 -"Lark, White-winged",1 -Linnet,1 -Magpie,1 -"Martin, Crag",1 -"Martin, House",1 -"Martin, Purple",1 -"Martin, Sand",1 -"May, Cape",1 -"Mockingbird, Northern",1 -"Murrelet, Ancient",1 -"Murrelet, Long-billed",1 -"Nighthawk, Common",1 -Nightingale,1 -"Nightingale, Thrush",1 -Nightjar,1 -"Nightjar, Egyptian",1 -"Nightjar, Red-necked",1 -Nutcracker,1 -"Nuthatch, Red-breasted",1 -"Olivaceous, Eastern",1 -"Oriole, Baltimore",1 -"Oriole, Golden",1 -"Orphean, Western",1 -"Ouzel, Ring",1 -Ovenbird,1 -"Owl, Barn",1 -"Owl, Hawk",1 -"Owl, Long-eared",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Owl, Tawny",1 -"Owl, Tengmalm's",1 -"Parakeet, Ring-necked",1 -"Parula, Northern",1 -"Phalarope, Grey",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Phoebe, Eastern",1 -"Pipit, Blyth's",1 -"Pipit, Olive-backed",1 -"Pipit, Pechora",1 -"Pipit, Richard's",1 -"Pipit, Rock",1 -"Pipit, Tawny",1 -"Pipit, Tree",1 -"Pipit, Water",1 -"Plover, White-tailed",1 -"Pratincole, Black-winged",1 -"Pratincole, Collared",1 -"Pratincole, Oriental",1 -"Puffin, Tufted",1 -Raven,1 -Razorbill,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -Redshank,1 -Redstart,1 -"Redstart, American",1 -"Redstart, Black",1 -"Redstart, Moussier's",1 -Redwing,1 -"Reed, Blyth's",1 -"Reed, Great",1 -"Reed, Pallas's",1 -Robin,1 -"Robin, American",1 -"Robin, Rufous-tailed",1 -"Rock, Blue",1 -Roller,1 -Rook,1 -"Rosefinch, Common",1 -"Rubythroat, Siberian",1 -"Sandgrouse, Pallas's",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Common",1 -"Sandpiper, Green",1 -"Sandpiper, Least",1 -"Sandpiper, Marsh",1 -"Sandpiper, Pectoral",1 -"Sandpiper, Purple",1 -"Sandpiper, Semipalmated",1 -"Sandpiper, Solitary",1 -"Sandpiper, Spotted",1 -"Sandpiper, Terek",1 -"Sandpiper, White-rumped",1 -"Sandpiper, Wood",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Serin,1 -Shag,1 -"Shearwater, Balearic",1 -"Shearwater, Cory's",1 -"Short-toed, Lesser",1 -"Shrike, Isabelline",1 -"Shrike, Long-tailed",1 -"Shrike, Masked",1 -"Shrike, Red-backed",1 -"Shrike, Woodchat",1 -"Skua, Great",1 -"Skua, Long-tailed",1 -"Skua, Pomarine",1 -Skylark,1 -Snipe,1 -"Snipe, Great",1 -"Snipe, Jack",1 -"Snipe, Wilson's",1 -"Sparrow, House",1 -"Sparrow, Lark",1 -"Sparrow, Rock",1 -"Sparrow, Savannah",1 -"Sparrow, Spanish",1 -"Sparrow, White-crowned",1 -"Spotted, Great",1 -Starling,1 -Stonechat,1 -Swallow,1 -"Swallow, Cliff",1 -"Swallow, Red-rumped",1 -"Swallow, Tree",1 -Swift,1 -"Swift, Alpine",1 -"Swift, Chimney",1 -"Swift, Needle-tailed",1 -"Swift, Pacific",1 -"Swift, Pallid",1 -"Tanager, Scarlet",1 -"Tanager, Summer",1 -"Tattler, Grey-tailed",1 -"Tern, Aleutian",1 -"Tern, Arctic",1 -"Tern, Black",1 -"Tern, Bridled",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Tern, Forster's",1 -"Tern, Little",1 -"Tern, Roseate",1 -"Tern, Royal",1 -"Tern, Sandwich",1 -"Tern, Sooty",1 -"Tern, Whiskered",1 -"Thrasher, Brown",1 -"Thrush, Black-throated",1 -"Thrush, Eyebrowed",1 -"Thrush, Grey-cheeked",1 -"Thrush, Naumann's",1 -"Thrush, Rock",1 -"Thrush, Siberian",1 -"Thrush, Song",1 -"Thrush, Swainson's",1 -"Thrush, Varied",1 -"Thrush, Wood",1 -"Tit, Blue",1 -"Tit, Coal",1 -"Tit, Crested",1 -"Tit, Great",1 -"Tit, Long-tailed",1 -"Tit, Marsh",1 -"Tit, Penduline",1 -"Towhee, Eastern",1 -Treecreeper,1 -"Treecreeper, Short-toed",1 -"Turtle, Rufous",1 -Twite,1 -Veery,1 -"Vireo, Philadelphia",1 -"Vireo, Red-eyed",1 -"Vireo, Yellow-throated",1 -"Wagtail, Citrine",1 -"Wagtail, Grey",1 -"Wagtail, Yellow",1 -Wallcreeper,1 -"Warbler, Aquatic",1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Cetti's",1 -"Warbler, Dartford",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Grasshopper",1 -"Warbler, Green",1 -"Warbler, Greenish",1 -"Warbler, Hooded",1 -"Warbler, Hume's",1 -"Warbler, Icterine",1 -"Warbler, Lanceolated",1 -"Warbler, Magnolia",1 -"Warbler, Marsh",1 -"Warbler, Melodious",1 -"Warbler, Olive-tree",1 -"Warbler, Pallas's",1 -"Warbler, Reed",1 -"Warbler, River",1 -"Warbler, Ruppell's",1 -"Warbler, Sardinian",1 -"Warbler, Sedge",1 -"Warbler, Spectacled",1 -"Warbler, Subalpine",1 -"Warbler, Tennessee",1 -"Warbler, Thick-billed",1 -"Warbler, Willow",1 -"Warbler, Wood",1 -"Warbler, Yellow",1 -"Warbler, Yellow-browed",1 -"Warbler, Yellow-rumped",1 -"Waterthrush, Northern",1 -Waxwing,1 -"Waxwing, Cedar",1 -Wheatear,1 -"Wheatear, Black-eared",1 -"Wheatear, Desert",1 -"Wheatear, Isabelline",1 -"Wheatear, Pied",1 -Whinchat,1 -Whitethroat,1 -"Whitethroat, Lesser",1 -Woodcock,1 -Woodlark,1 -"Woodpecker, Green",1 -Woodpigeon,1 -Wren,1 -Wryneck,1 -Yellowhammer,1 -"Yellowlegs, Greater",1 -"Yellowlegs, Lesser",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv deleted file mode 100644 index e3ecf8a451..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -User,"User Count (Number of Users)" -"Auk, Great",1 -"Auk, Little",1 -Bee-eater,1 -"Bee-eater, Blue-cheeked",1 -Bittern,1 -"Black-backed, Great",1 -"Black-backed, Lesser",1 -"Black, White-crowned",1 -"Black, White-winged",1 -Blackbird,1 -Blackcap,1 -"Blue, Siberian",1 -"Bluetail, Red-flanked",1 -Bluethroat,1 -Bobolink,1 -"Bonelli's, Western",1 -Brambling,1 -Bullfinch,1 -"Bunting, Black-faced",1 -"Bunting, Chestnut-eared",1 -"Bunting, Cirl",1 -"Bunting, Corn",1 -"Bunting, Cretzschmar's",1 -"Bunting, Lapland",1 -"Bunting, Little",1 -"Bunting, Pine",1 -"Bunting, Reed",1 -"Bunting, Rock",1 -"Bunting, Snow",1 -"Bunting, Yellow-browed",1 -"Bush, Rufous",1 -"Catbird, Grey",1 -Chaffinch,1 -"Chiffchaff, Iberian",1 -Chough,1 -Coot,1 -"Courser, Cream-coloured",1 -"Cowbird, Brown-headed",1 -"Crane, Sandhill",1 -"Crested, Lesser",1 -"Crossbill, Common",1 -"Crossbill, Parrot",1 -"Crossbill, Scottish",1 -"Crossbill, Two-barred",1 -"Crow, Carrion",1 -"Crowned, Eastern",1 -Cuckoo,1 -"Cuckoo, Yellow-billed",1 -"Desert, Asian",1 -Dipper,1 -"Dove, Collared",1 -"Dove, Mourning",1 -"Dove, Rock",1 -"Dove, Stock",1 -"Dove, Turtle",1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Egret, Cattle",1 -"Falcon, Amur",1 -"Falcon, Gyr",1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -Firecrest,1 -"Flycatcher, Brown",1 -"Flycatcher, Collared",1 -"Flycatcher, Pied",1 -"Flycatcher, Red-breasted",1 -"Flycatcher, Spotted",1 -Goldfinch,1 -"Goose, Egyptian",1 -"Grasshopper, Pallas's",1 -"Grebe, Pied-billed",1 -Greenfinch,1 -Greenshank,1 -"Grey, Southern",1 -"Grosbeak, Evening",1 -"Grosbeak, Pine",1 -"Grosbeak, Rose-breasted",1 -"Grouse, Red",1 -Guillemot,1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Black-headed",1 -"Gull, Caspian",1 -"Gull, Common",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Iceland",1 -"Gull, Ivory",1 -"Gull, Laughing",1 -"Gull, Little",1 -"Gull, Mediterranean",1 -"Gull, Ross's",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Slender-billed",1 -Hawfinch,1 -"Herring, American",1 -Hobby,1 -Honey-buzzard,1 -Hoopoe,1 -Jay,1 -"Junco, Dark-eyed",1 -Kestrel,1 -"Kestrel, American",1 -"Kestrel, Lesser",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Kittiwake,1 -"Lark, Bimaculated",1 -"Lark, Black",1 -"Lark, Calandra",1 -"Lark, Crested",1 -"Lark, Shore",1 -"Lark, Short-toed",1 -"Lark, White-winged",1 -Linnet,1 -Magpie,1 -"Martin, Crag",1 -"Martin, House",1 -"Martin, Purple",1 -"Martin, Sand",1 -"May, Cape",1 -"Mockingbird, Northern",1 -"Murrelet, Ancient",1 -"Murrelet, Long-billed",1 -"Nighthawk, Common",1 -Nightingale,1 -"Nightingale, Thrush",1 -Nightjar,1 -"Nightjar, Egyptian",1 -"Nightjar, Red-necked",1 -Nutcracker,1 -"Nuthatch, Red-breasted",1 -"Olivaceous, Eastern",1 -"Oriole, Baltimore",1 -"Oriole, Golden",1 -"Orphean, Western",1 -"Ouzel, Ring",1 -Ovenbird,1 -"Owl, Barn",1 -"Owl, Hawk",1 -"Owl, Long-eared",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Owl, Tawny",1 -"Owl, Tengmalm's",1 -"Parakeet, Ring-necked",1 -"Parula, Northern",1 -"Phalarope, Grey",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Phoebe, Eastern",1 -"Pipit, Blyth's",1 -"Pipit, Olive-backed",1 -"Pipit, Pechora",1 -"Pipit, Richard's",1 -"Pipit, Rock",1 -"Pipit, Tawny",1 -"Pipit, Tree",1 -"Pipit, Water",1 -"Plover, White-tailed",1 -"Pratincole, Black-winged",1 -"Pratincole, Collared",1 -"Pratincole, Oriental",1 -"Puffin, Tufted",1 -Raven,1 -Razorbill,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -Redshank,1 -Redstart,1 -"Redstart, American",1 -"Redstart, Black",1 -"Redstart, Moussier's",1 -Redwing,1 -"Reed, Blyth's",1 -"Reed, Great",1 -"Reed, Pallas's",1 -Robin,1 -"Robin, American",1 -"Robin, Rufous-tailed",1 -"Rock, Blue",1 -Roller,1 -Rook,1 -"Rosefinch, Common",1 -"Rubythroat, Siberian",1 -"Sandgrouse, Pallas's",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Common",1 -"Sandpiper, Green",1 -"Sandpiper, Least",1 -"Sandpiper, Marsh",1 -"Sandpiper, Pectoral",1 -"Sandpiper, Purple",1 -"Sandpiper, Semipalmated",1 -"Sandpiper, Solitary",1 -"Sandpiper, Spotted",1 -"Sandpiper, Terek",1 -"Sandpiper, White-rumped",1 -"Sandpiper, Wood",1 -"Scaup, Lesser",1 -"Scoter, Velvet",1 -Serin,1 -Shag,1 -"Shearwater, Balearic",1 -"Shearwater, Cory's",1 -"Short-toed, Lesser",1 -"Shrike, Isabelline",1 -"Shrike, Long-tailed",1 -"Shrike, Masked",1 -"Shrike, Red-backed",1 -"Shrike, Woodchat",1 -"Skua, Great",1 -"Skua, Long-tailed",1 -"Skua, Pomarine",1 -Skylark,1 -Snipe,1 -"Snipe, Great",1 -"Snipe, Jack",1 -"Snipe, Wilson's",1 -"Sparrow, House",1 -"Sparrow, Lark",1 -"Sparrow, Rock",1 -"Sparrow, Savannah",1 -"Sparrow, Spanish",1 -"Sparrow, White-crowned",1 -"Spotted, Great",1 -Starling,1 -Stonechat,1 -Swallow,1 -"Swallow, Cliff",1 -"Swallow, Red-rumped",1 -"Swallow, Tree",1 -Swift,1 -"Swift, Alpine",1 -"Swift, Chimney",1 -"Swift, Needle-tailed",1 -"Swift, Pacific",1 -"Swift, Pallid",1 -"Tanager, Scarlet",1 -"Tanager, Summer",1 -"Tattler, Grey-tailed",1 -"Tern, Aleutian",1 -"Tern, Arctic",1 -"Tern, Black",1 -"Tern, Bridled",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Tern, Forster's",1 -"Tern, Little",1 -"Tern, Roseate",1 -"Tern, Royal",1 -"Tern, Sandwich",1 -"Tern, Sooty",1 -"Tern, Whiskered",1 -"Thrasher, Brown",1 -"Thrush, Black-throated",1 -"Thrush, Eyebrowed",1 -"Thrush, Grey-cheeked",1 -"Thrush, Naumann's",1 -"Thrush, Rock",1 -"Thrush, Siberian",1 -"Thrush, Song",1 -"Thrush, Swainson's",1 -"Thrush, Varied",1 -"Thrush, Wood",1 -"Tit, Blue",1 -"Tit, Coal",1 -"Tit, Crested",1 -"Tit, Great",1 -"Tit, Long-tailed",1 -"Tit, Marsh",1 -"Tit, Penduline",1 -"Towhee, Eastern",1 -Treecreeper,1 -"Treecreeper, Short-toed",1 -"Turtle, Rufous",1 -Twite,1 -Veery,1 -"Vireo, Philadelphia",1 -"Vireo, Red-eyed",1 -"Vireo, Yellow-throated",1 -"Wagtail, Citrine",1 -"Wagtail, Grey",1 -"Wagtail, Yellow",1 -Wallcreeper,1 -"Warbler, Aquatic",1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Cetti's",1 -"Warbler, Dartford",1 -"Warbler, Dusky",1 -"Warbler, Garden",1 -"Warbler, Golden-winged",1 -"Warbler, Grasshopper",1 -"Warbler, Green",1 -"Warbler, Greenish",1 -"Warbler, Hooded",1 -"Warbler, Hume's",1 -"Warbler, Icterine",1 -"Warbler, Lanceolated",1 -"Warbler, Magnolia",1 -"Warbler, Marsh",1 -"Warbler, Melodious",1 -"Warbler, Olive-tree",1 -"Warbler, Pallas's",1 -"Warbler, Reed",1 -"Warbler, River",1 -"Warbler, Ruppell's",1 -"Warbler, Sardinian",1 -"Warbler, Sedge",1 -"Warbler, Spectacled",1 -"Warbler, Subalpine",1 -"Warbler, Tennessee",1 -"Warbler, Thick-billed",1 -"Warbler, Willow",1 -"Warbler, Wood",1 -"Warbler, Yellow",1 -"Warbler, Yellow-browed",1 -"Warbler, Yellow-rumped",1 -"Waterthrush, Northern",1 -Waxwing,1 -"Waxwing, Cedar",1 -Wheatear,1 -"Wheatear, Black-eared",1 -"Wheatear, Desert",1 -"Wheatear, Isabelline",1 -"Wheatear, Pied",1 -Whinchat,1 -Whitethroat,1 -"Whitethroat, Lesser",1 -Woodcock,1 -Woodlark,1 -"Woodpecker, Green",1 -Woodpigeon,1 -Wren,1 -Wryneck,1 -Yellowhammer,1 -"Yellowlegs, Greater",1 -"Yellowlegs, Lesser",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 70af430b70..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" -2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-05,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 8fdf51dfc7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" -2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 0fdd1ab3c1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" -"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 75d8c8705a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/person/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by User" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Auk, Great] User Count (Number of Users)","[Auk, Little] User Count (Number of Users)","[Bee-eater] User Count (Number of Users)","[Bee-eater, Blue-cheeked] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Black-backed, Great] User Count (Number of Users)","[Black-backed, Lesser] User Count (Number of Users)","[Black, White-crowned] User Count (Number of Users)","[Black, White-winged] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Blackcap] User Count (Number of Users)","[Blue, Siberian] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Bluethroat] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Western] User Count (Number of Users)","[Brambling] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Black-faced] User Count (Number of Users)","[Bunting, Chestnut-eared] User Count (Number of Users)","[Bunting, Cirl] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Cretzschmar's] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Little] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Bunting, Reed] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Bunting, Snow] User Count (Number of Users)","[Bunting, Yellow-browed] User Count (Number of Users)","[Bush, Rufous] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Chough] User Count (Number of Users)","[Coot] User Count (Number of Users)","[Courser, Cream-coloured] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crane, Sandhill] User Count (Number of Users)","[Crested, Lesser] User Count (Number of Users)","[Crossbill, Common] User Count (Number of Users)","[Crossbill, Parrot] User Count (Number of Users)","[Crossbill, Scottish] User Count (Number of Users)","[Crossbill, Two-barred] User Count (Number of Users)","[Crow, Carrion] User Count (Number of Users)","[Crowned, Eastern] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Yellow-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dipper] User Count (Number of Users)","[Dove, Collared] User Count (Number of Users)","[Dove, Mourning] User Count (Number of Users)","[Dove, Rock] User Count (Number of Users)","[Dove, Stock] User Count (Number of Users)","[Dove, Turtle] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Egret, Cattle] User Count (Number of Users)","[Falcon, Amur] User Count (Number of Users)","[Falcon, Gyr] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Firecrest] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Collared] User Count (Number of Users)","[Flycatcher, Pied] User Count (Number of Users)","[Flycatcher, Red-breasted] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Grasshopper, Pallas's] User Count (Number of Users)","[Grebe, Pied-billed] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Greenshank] User Count (Number of Users)","[Grey, Southern] User Count (Number of Users)","[Grosbeak, Evening] User Count (Number of Users)","[Grosbeak, Pine] User Count (Number of Users)","[Grosbeak, Rose-breasted] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Black-headed] User Count (Number of Users)","[Gull, Caspian] User Count (Number of Users)","[Gull, Common] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Iceland] User Count (Number of Users)","[Gull, Ivory] User Count (Number of Users)","[Gull, Laughing] User Count (Number of Users)","[Gull, Little] User Count (Number of Users)","[Gull, Mediterranean] User Count (Number of Users)","[Gull, Ross's] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Slender-billed] User Count (Number of Users)","[Hawfinch] User Count (Number of Users)","[Herring, American] User Count (Number of Users)","[Hobby] User Count (Number of Users)","[Honey-buzzard] User Count (Number of Users)","[Hoopoe] User Count (Number of Users)","[Jay] User Count (Number of Users)","[Junco, Dark-eyed] User Count (Number of Users)","[Kestrel] User Count (Number of Users)","[Kestrel, American] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Kittiwake] User Count (Number of Users)","[Lark, Bimaculated] User Count (Number of Users)","[Lark, Black] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Lark, Crested] User Count (Number of Users)","[Lark, Shore] User Count (Number of Users)","[Lark, Short-toed] User Count (Number of Users)","[Lark, White-winged] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Magpie] User Count (Number of Users)","[Martin, Crag] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Martin, Purple] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[May, Cape] User Count (Number of Users)","[Mockingbird, Northern] User Count (Number of Users)","[Murrelet, Ancient] User Count (Number of Users)","[Murrelet, Long-billed] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightingale, Thrush] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nightjar, Egyptian] User Count (Number of Users)","[Nightjar, Red-necked] User Count (Number of Users)","[Nutcracker] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Olivaceous, Eastern] User Count (Number of Users)","[Oriole, Baltimore] User Count (Number of Users)","[Oriole, Golden] User Count (Number of Users)","[Orphean, Western] User Count (Number of Users)","[Ouzel, Ring] User Count (Number of Users)","[Ovenbird] User Count (Number of Users)","[Owl, Barn] User Count (Number of Users)","[Owl, Hawk] User Count (Number of Users)","[Owl, Long-eared] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Owl, Tawny] User Count (Number of Users)","[Owl, Tengmalm's] User Count (Number of Users)","[Parakeet, Ring-necked] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Phalarope, Grey] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Phoebe, Eastern] User Count (Number of Users)","[Pipit, Blyth's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Pechora] User Count (Number of Users)","[Pipit, Richard's] User Count (Number of Users)","[Pipit, Rock] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Pipit, Water] User Count (Number of Users)","[Plover, White-tailed] User Count (Number of Users)","[Pratincole, Black-winged] User Count (Number of Users)","[Pratincole, Collared] User Count (Number of Users)","[Pratincole, Oriental] User Count (Number of Users)","[Puffin, Tufted] User Count (Number of Users)","[Raven] User Count (Number of Users)","[Razorbill] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redshank] User Count (Number of Users)","[Redstart] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Redstart, Black] User Count (Number of Users)","[Redstart, Moussier's] User Count (Number of Users)","[Redwing] User Count (Number of Users)","[Reed, Blyth's] User Count (Number of Users)","[Reed, Great] User Count (Number of Users)","[Reed, Pallas's] User Count (Number of Users)","[Robin] User Count (Number of Users)","[Robin, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Rock, Blue] User Count (Number of Users)","[Roller] User Count (Number of Users)","[Rook] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Rubythroat, Siberian] User Count (Number of Users)","[Sandgrouse, Pallas's] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Common] User Count (Number of Users)","[Sandpiper, Green] User Count (Number of Users)","[Sandpiper, Least] User Count (Number of Users)","[Sandpiper, Marsh] User Count (Number of Users)","[Sandpiper, Pectoral] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Semipalmated] User Count (Number of Users)","[Sandpiper, Solitary] User Count (Number of Users)","[Sandpiper, Spotted] User Count (Number of Users)","[Sandpiper, Terek] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Sandpiper, Wood] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Scoter, Velvet] User Count (Number of Users)","[Serin] User Count (Number of Users)","[Shag] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Cory's] User Count (Number of Users)","[Short-toed, Lesser] User Count (Number of Users)","[Shrike, Isabelline] User Count (Number of Users)","[Shrike, Long-tailed] User Count (Number of Users)","[Shrike, Masked] User Count (Number of Users)","[Shrike, Red-backed] User Count (Number of Users)","[Shrike, Woodchat] User Count (Number of Users)","[Skua, Great] User Count (Number of Users)","[Skua, Long-tailed] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Snipe, Jack] User Count (Number of Users)","[Snipe, Wilson's] User Count (Number of Users)","[Sparrow, House] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Sparrow, Rock] User Count (Number of Users)","[Sparrow, Savannah] User Count (Number of Users)","[Sparrow, Spanish] User Count (Number of Users)","[Sparrow, White-crowned] User Count (Number of Users)","[Spotted, Great] User Count (Number of Users)","[Starling] User Count (Number of Users)","[Stonechat] User Count (Number of Users)","[Swallow] User Count (Number of Users)","[Swallow, Cliff] User Count (Number of Users)","[Swallow, Red-rumped] User Count (Number of Users)","[Swallow, Tree] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Alpine] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Swift, Needle-tailed] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Swift, Pallid] User Count (Number of Users)","[Tanager, Scarlet] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Tattler, Grey-tailed] User Count (Number of Users)","[Tern, Aleutian] User Count (Number of Users)","[Tern, Arctic] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Bridled] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Tern, Forster's] User Count (Number of Users)","[Tern, Little] User Count (Number of Users)","[Tern, Roseate] User Count (Number of Users)","[Tern, Royal] User Count (Number of Users)","[Tern, Sandwich] User Count (Number of Users)","[Tern, Sooty] User Count (Number of Users)","[Tern, Whiskered] User Count (Number of Users)","[Thrasher, Brown] User Count (Number of Users)","[Thrush, Black-throated] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Grey-cheeked] User Count (Number of Users)","[Thrush, Naumann's] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, Siberian] User Count (Number of Users)","[Thrush, Song] User Count (Number of Users)","[Thrush, Swainson's] User Count (Number of Users)","[Thrush, Varied] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Blue] User Count (Number of Users)","[Tit, Coal] User Count (Number of Users)","[Tit, Crested] User Count (Number of Users)","[Tit, Great] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Marsh] User Count (Number of Users)","[Tit, Penduline] User Count (Number of Users)","[Towhee, Eastern] User Count (Number of Users)","[Treecreeper] User Count (Number of Users)","[Treecreeper, Short-toed] User Count (Number of Users)","[Turtle, Rufous] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Vireo, Philadelphia] User Count (Number of Users)","[Vireo, Red-eyed] User Count (Number of Users)","[Vireo, Yellow-throated] User Count (Number of Users)","[Wagtail, Citrine] User Count (Number of Users)","[Wagtail, Grey] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Wallcreeper] User Count (Number of Users)","[Warbler, Aquatic] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Dartford] User Count (Number of Users)","[Warbler, Dusky] User Count (Number of Users)","[Warbler, Garden] User Count (Number of Users)","[Warbler, Golden-winged] User Count (Number of Users)","[Warbler, Grasshopper] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Greenish] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Warbler, Hume's] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Lanceolated] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Marsh] User Count (Number of Users)","[Warbler, Melodious] User Count (Number of Users)","[Warbler, Olive-tree] User Count (Number of Users)","[Warbler, Pallas's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, River] User Count (Number of Users)","[Warbler, Ruppell's] User Count (Number of Users)","[Warbler, Sardinian] User Count (Number of Users)","[Warbler, Sedge] User Count (Number of Users)","[Warbler, Spectacled] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Warbler, Thick-billed] User Count (Number of Users)","[Warbler, Willow] User Count (Number of Users)","[Warbler, Wood] User Count (Number of Users)","[Warbler, Yellow] User Count (Number of Users)","[Warbler, Yellow-browed] User Count (Number of Users)","[Warbler, Yellow-rumped] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Waxwing] User Count (Number of Users)","[Waxwing, Cedar] User Count (Number of Users)","[Wheatear] User Count (Number of Users)","[Wheatear, Black-eared] User Count (Number of Users)","[Wheatear, Desert] User Count (Number of Users)","[Wheatear, Isabelline] User Count (Number of Users)","[Wheatear, Pied] User Count (Number of Users)","[Whinchat] User Count (Number of Users)","[Whitethroat] User Count (Number of Users)","[Whitethroat, Lesser] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodlark] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Wren] User Count (Number of Users)","[Wryneck] User Count (Number of Users)","[Yellowhammer] User Count (Number of Users)","[Yellowlegs, Greater] User Count (Number of Users)","[Yellowlegs, Lesser] User Count (Number of Users)" -2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index e1eadf4f9d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"File Count (Number of files)" -"Warbler, Magnolia",107569261.6000 -"Cowbird, Brown-headed",89120484.8000 -Bobolink,15196470.0000 -"Bunting, Rustic",6094492.4000 -"Dowitcher, Short-billed",3520651.6000 -Chaffinch,2977661.6000 -"Kestrel, Lesser",2149021.2000 -"Scaup, Lesser",1526295.4000 -"Waterthrush, Northern",1135809.0000 -"Chiffchaff, Iberian",915302.0000 -"Warbler, Black-and-white",630272.0000 -"Sparrow, Song",509845.5000 -"Martin, Sand",321035.9000 -"Tern, Caspian",223503.7000 -"Bunting, Pine",176856.9000 -"Bunting, Rock",143440.2000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -Twite,79552.6000 -Dunlin,62708.5000 -"Tanager, Summer",54491.7000 -"Sparrow, Lark",51464.8000 -Blackbird,44052.2000 -Fulmar,37273.8000 -Linnet,33143.8000 -"Thrush, Rock",30131.0000 -"Swift, Little",26641.7000 -"Wagtail, Yellow",23782.0000 -"Warbler, Blackpoll",20072.0000 -"Sparrow, Tree",16594.0000 -"Sandpiper, Purple",16500.5000 -"Lark, Calandra",15086.8000 -"Warbler, Tennessee",14270.0000 -"Wagtail, Pied",13880.7000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Tawny",11130.8000 -"Parula, Northern",10413.6000 -"Bunting, Indigo",8955.0000 -"Warbler, Blackburnian",7009.4000 -Nuthatch,6979.0000 -"Shearwater, Balearic",6965.5000 -"Finch, Citril",6642.0000 -"Flycatcher, Taiga",6529.3000 -"Rosefinch, Common",5690.8000 -"Warbler, Hooded",5339.0000 -"Finch, Trumpeter",4360.0000 -"Redpoll, Arctic",2842.6000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.3000 -Goldfinch,2503.8000 -"Thrush, Dusky",2350.0000 -Greenfinch,2199.3000 -"Bunting, Corn",1334.0000 -"Warbler, Barred",1262.0000 -"Pipit, Tree",1080.0000 -Bullfinch,1058.3000 -"Starling, Rose-coloured",1013.0000 -Dotterel,896.0000 -"Pipit, Olive-backed",822.7000 -"Stonechat, Siberian",609.0000 -"Bluetail, Red-flanked",583.6000 -"Thrush, Eyebrowed",494.0000 -"Warbler, Savi's",470.0000 -"Thrush, White's",452.0000 -"Warbler, Fan-tailed",412.0000 -"Tit, Bearded",404.0000 -"Pipit, Red-throated",363.0000 -"Robin, White-throated",352.7000 -Bittern,334.2000 -"Grouse, Red",314.0000 -"Thrush, Red-throated",212.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.4000 -"Tit, Willow",106.0000 -Veery,103.0000 -"Warbler, Subalpine",82.0000 -"Warbler, Cetti's",81.0000 -Fieldfare,75.5000 -"Warbler, Marmora's",75.0000 -"Thrush, Wood",69.0000 -"Catbird, Grey",60.0000 -"Flycatcher, Brown",52.8000 -"Shearwater, Macaronesian",52.3000 -"Warbler, Reed",52.0000 -"Thrush, Hermit",51.0000 -"Gull, Yellow-legged",48.0000 -"Warbler, Icterine",46.0000 -Goldcrest,43.0000 -"Goose, Red-breasted",43.0000 -"Crow, Hooded",38.0000 -"Petrel, Fea's",36.0000 -Dunnock,34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Paddyfield",19.0000 -"Warbler, Sykes's",19.0000 -"Shrike, Brown",15.0000 -"Warbler, Arctic",13.0000 -"Falcon, Eleonora's",11.0000 -Merlin,10.0000 -"Swift, Chimney",10.0000 -"Falcon, Red-footed",9.0000 -"Tit, Long-tailed",9.0000 -Jackdaw,8.0000 -"Spotted, Lesser",8.0000 -"Woodpecker, Green",7.0000 -Chiffchaff,5.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Redshank, Spotted",5.0000 -Swift,5.0000 -"Swift, Pacific",5.0000 -Nightjar,4.0000 -"Owl, Little",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Warbler, Green",4.0000 -Cuckoo,3.0000 -"Cuckoo, Black-billed",3.0000 -"Martin, House",3.0000 -"Owl, Scops",3.0000 -"Tern, Gull-billed",3.0000 -"Warbler, Radde's",3.0000 -Woodpigeon,3.0000 -"Gull, Glaucous",2.0000 -"Gull, Herring",2.0000 -"Gull, Slaty-backed",2.0000 -Osprey,2.0000 -"Black-headed, Great",1.0000 -"Bonelli's, Eastern",1.0000 -"Dowitcher, Long-billed",1.0000 -"Guillemot, Black",1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Bonaparte's",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Sabine's",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -Puffin,1.0000 -"Robin, Rufous-tailed",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Western",1.0000 -"Sandpiper, White-rumped",1.0000 -"Skua, Arctic",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Smew,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Tern, Black",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -Woodcock,1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 09b39169e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"File Count (Number of files)" -"Warbler, Magnolia",107569261.5000 -"Cowbird, Brown-headed",89120485.0000 -Bobolink,15196470.0000 -"Bunting, Rustic",6094492.5000 -"Dowitcher, Short-billed",3520651.0000 -Chaffinch,2977661.0000 -"Kestrel, Lesser",2149021.0000 -"Scaup, Lesser",1526295.5000 -"Waterthrush, Northern",1135809.0000 -"Chiffchaff, Iberian",915302.0000 -"Warbler, Black-and-white",630272.0000 -"Sparrow, Song",509845.5000 -"Martin, Sand",321036.0000 -"Tern, Caspian",223503.5000 -"Bunting, Pine",176857.0000 -"Bunting, Rock",143440.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -Twite,79552.5000 -Dunlin,62708.5000 -"Tanager, Summer",54492.0000 -"Sparrow, Lark",51465.0000 -Blackbird,44053.0000 -Fulmar,37274.0000 -Linnet,33144.0000 -"Thrush, Rock",30131.0000 -"Swift, Little",26641.5000 -"Wagtail, Yellow",23782.0000 -"Sandpiper, Purple",21999.5000 -"Warbler, Blackpoll",20072.0000 -"Sparrow, Tree",16594.0000 -"Lark, Calandra",15087.0000 -"Warbler, Tennessee",14270.0000 -"Wagtail, Pied",13881.0000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Tawny",11130.5000 -"Parula, Northern",10414.0000 -"Bunting, Indigo",8955.0000 -"Warbler, Blackburnian",7009.5000 -Nuthatch,6979.0000 -"Shearwater, Balearic",6965.5000 -"Finch, Citril",6642.0000 -"Flycatcher, Taiga",6529.5000 -"Rosefinch, Common",5691.0000 -"Warbler, Hooded",5339.0000 -"Finch, Trumpeter",4360.0000 -"Redpoll, Arctic",2842.5000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.5000 -Goldfinch,2503.5000 -"Thrush, Dusky",2350.0000 -Greenfinch,2199.5000 -"Bunting, Corn",1334.0000 -"Warbler, Barred",1262.0000 -"Pipit, Tree",1080.0000 -Bullfinch,1058.0000 -"Starling, Rose-coloured",1013.0000 -Dotterel,896.0000 -"Pipit, Olive-backed",822.5000 -"Stonechat, Siberian",609.0000 -"Bluetail, Red-flanked",583.5000 -"Thrush, Eyebrowed",494.0000 -"Warbler, Savi's",470.0000 -"Thrush, White's",452.0000 -"Warbler, Fan-tailed",412.0000 -"Tit, Bearded",404.0000 -"Pipit, Red-throated",363.0000 -"Robin, White-throated",352.5000 -Bittern,334.0000 -"Grouse, Red",314.0000 -"Thrush, Red-throated",212.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.5000 -"Tit, Willow",106.0000 -Veery,103.0000 -"Warbler, Subalpine",82.0000 -"Warbler, Cetti's",81.0000 -Fieldfare,75.5000 -"Warbler, Marmora's",75.0000 -"Thrush, Wood",69.0000 -"Catbird, Grey",60.0000 -"Flycatcher, Brown",53.0000 -"Shearwater, Macaronesian",52.5000 -"Warbler, Reed",52.0000 -"Thrush, Hermit",51.0000 -"Gull, Yellow-legged",48.0000 -"Warbler, Icterine",46.0000 -Goldcrest,43.0000 -"Goose, Red-breasted",43.0000 -"Crow, Hooded",38.0000 -"Petrel, Fea's",36.0000 -Dunnock,34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Paddyfield",19.0000 -"Warbler, Sykes's",19.0000 -"Shrike, Brown",15.0000 -"Warbler, Arctic",13.0000 -"Falcon, Eleonora's",11.0000 -Merlin,10.0000 -"Swift, Chimney",10.0000 -"Falcon, Red-footed",9.0000 -"Tit, Long-tailed",9.0000 -Jackdaw,8.0000 -"Spotted, Lesser",8.0000 -"Woodpecker, Green",7.0000 -Chiffchaff,5.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Redshank, Spotted",5.0000 -Swift,5.0000 -"Swift, Pacific",5.0000 -Nightjar,4.0000 -"Owl, Little",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Warbler, Green",4.0000 -Cuckoo,3.0000 -"Cuckoo, Black-billed",3.0000 -"Martin, House",3.0000 -"Owl, Scops",3.0000 -"Tern, Gull-billed",3.0000 -"Warbler, Radde's",3.0000 -Woodpigeon,3.0000 -"Gull, Glaucous",2.0000 -"Gull, Herring",2.0000 -"Gull, Slaty-backed",2.0000 -Osprey,2.0000 -"Black-headed, Great",1.0000 -"Bonelli's, Eastern",1.0000 -"Dowitcher, Long-billed",1.0000 -"Guillemot, Black",1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Bonaparte's",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Sabine's",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -Puffin,1.0000 -"Robin, Rufous-tailed",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Western",1.0000 -"Sandpiper, White-rumped",1.0000 -"Skua, Arctic",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Smew,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Tern, Black",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -Woodcock,1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 09b39169e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"File Count (Number of files)" -"Warbler, Magnolia",107569261.5000 -"Cowbird, Brown-headed",89120485.0000 -Bobolink,15196470.0000 -"Bunting, Rustic",6094492.5000 -"Dowitcher, Short-billed",3520651.0000 -Chaffinch,2977661.0000 -"Kestrel, Lesser",2149021.0000 -"Scaup, Lesser",1526295.5000 -"Waterthrush, Northern",1135809.0000 -"Chiffchaff, Iberian",915302.0000 -"Warbler, Black-and-white",630272.0000 -"Sparrow, Song",509845.5000 -"Martin, Sand",321036.0000 -"Tern, Caspian",223503.5000 -"Bunting, Pine",176857.0000 -"Bunting, Rock",143440.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -Twite,79552.5000 -Dunlin,62708.5000 -"Tanager, Summer",54492.0000 -"Sparrow, Lark",51465.0000 -Blackbird,44053.0000 -Fulmar,37274.0000 -Linnet,33144.0000 -"Thrush, Rock",30131.0000 -"Swift, Little",26641.5000 -"Wagtail, Yellow",23782.0000 -"Sandpiper, Purple",21999.5000 -"Warbler, Blackpoll",20072.0000 -"Sparrow, Tree",16594.0000 -"Lark, Calandra",15087.0000 -"Warbler, Tennessee",14270.0000 -"Wagtail, Pied",13881.0000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Tawny",11130.5000 -"Parula, Northern",10414.0000 -"Bunting, Indigo",8955.0000 -"Warbler, Blackburnian",7009.5000 -Nuthatch,6979.0000 -"Shearwater, Balearic",6965.5000 -"Finch, Citril",6642.0000 -"Flycatcher, Taiga",6529.5000 -"Rosefinch, Common",5691.0000 -"Warbler, Hooded",5339.0000 -"Finch, Trumpeter",4360.0000 -"Redpoll, Arctic",2842.5000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.5000 -Goldfinch,2503.5000 -"Thrush, Dusky",2350.0000 -Greenfinch,2199.5000 -"Bunting, Corn",1334.0000 -"Warbler, Barred",1262.0000 -"Pipit, Tree",1080.0000 -Bullfinch,1058.0000 -"Starling, Rose-coloured",1013.0000 -Dotterel,896.0000 -"Pipit, Olive-backed",822.5000 -"Stonechat, Siberian",609.0000 -"Bluetail, Red-flanked",583.5000 -"Thrush, Eyebrowed",494.0000 -"Warbler, Savi's",470.0000 -"Thrush, White's",452.0000 -"Warbler, Fan-tailed",412.0000 -"Tit, Bearded",404.0000 -"Pipit, Red-throated",363.0000 -"Robin, White-throated",352.5000 -Bittern,334.0000 -"Grouse, Red",314.0000 -"Thrush, Red-throated",212.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.5000 -"Tit, Willow",106.0000 -Veery,103.0000 -"Warbler, Subalpine",82.0000 -"Warbler, Cetti's",81.0000 -Fieldfare,75.5000 -"Warbler, Marmora's",75.0000 -"Thrush, Wood",69.0000 -"Catbird, Grey",60.0000 -"Flycatcher, Brown",53.0000 -"Shearwater, Macaronesian",52.5000 -"Warbler, Reed",52.0000 -"Thrush, Hermit",51.0000 -"Gull, Yellow-legged",48.0000 -"Warbler, Icterine",46.0000 -Goldcrest,43.0000 -"Goose, Red-breasted",43.0000 -"Crow, Hooded",38.0000 -"Petrel, Fea's",36.0000 -Dunnock,34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Paddyfield",19.0000 -"Warbler, Sykes's",19.0000 -"Shrike, Brown",15.0000 -"Warbler, Arctic",13.0000 -"Falcon, Eleonora's",11.0000 -Merlin,10.0000 -"Swift, Chimney",10.0000 -"Falcon, Red-footed",9.0000 -"Tit, Long-tailed",9.0000 -Jackdaw,8.0000 -"Spotted, Lesser",8.0000 -"Woodpecker, Green",7.0000 -Chiffchaff,5.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Redshank, Spotted",5.0000 -Swift,5.0000 -"Swift, Pacific",5.0000 -Nightjar,4.0000 -"Owl, Little",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Warbler, Green",4.0000 -Cuckoo,3.0000 -"Cuckoo, Black-billed",3.0000 -"Martin, House",3.0000 -"Owl, Scops",3.0000 -"Tern, Gull-billed",3.0000 -"Warbler, Radde's",3.0000 -Woodpigeon,3.0000 -"Gull, Glaucous",2.0000 -"Gull, Herring",2.0000 -"Gull, Slaty-backed",2.0000 -Osprey,2.0000 -"Black-headed, Great",1.0000 -"Bonelli's, Eastern",1.0000 -"Dowitcher, Long-billed",1.0000 -"Guillemot, Black",1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Bonaparte's",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Sabine's",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -Puffin,1.0000 -"Robin, Rufous-tailed",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Western",1.0000 -"Sandpiper, White-rumped",1.0000 -"Skua, Arctic",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Smew,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Tern, Black",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -Woodcock,1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 09b39169e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"File Count (Number of files)" -"Warbler, Magnolia",107569261.5000 -"Cowbird, Brown-headed",89120485.0000 -Bobolink,15196470.0000 -"Bunting, Rustic",6094492.5000 -"Dowitcher, Short-billed",3520651.0000 -Chaffinch,2977661.0000 -"Kestrel, Lesser",2149021.0000 -"Scaup, Lesser",1526295.5000 -"Waterthrush, Northern",1135809.0000 -"Chiffchaff, Iberian",915302.0000 -"Warbler, Black-and-white",630272.0000 -"Sparrow, Song",509845.5000 -"Martin, Sand",321036.0000 -"Tern, Caspian",223503.5000 -"Bunting, Pine",176857.0000 -"Bunting, Rock",143440.0000 -"Goose, Egyptian",108834.0000 -"Redstart, American",102408.0000 -Twite,79552.5000 -Dunlin,62708.5000 -"Tanager, Summer",54492.0000 -"Sparrow, Lark",51465.0000 -Blackbird,44053.0000 -Fulmar,37274.0000 -Linnet,33144.0000 -"Thrush, Rock",30131.0000 -"Swift, Little",26641.5000 -"Wagtail, Yellow",23782.0000 -"Sandpiper, Purple",21999.5000 -"Warbler, Blackpoll",20072.0000 -"Sparrow, Tree",16594.0000 -"Lark, Calandra",15087.0000 -"Warbler, Tennessee",14270.0000 -"Wagtail, Pied",13881.0000 -"Sandpiper, Baird's",13512.0000 -"Pipit, Tawny",11130.5000 -"Parula, Northern",10414.0000 -"Bunting, Indigo",8955.0000 -"Warbler, Blackburnian",7009.5000 -Nuthatch,6979.0000 -"Shearwater, Balearic",6965.5000 -"Finch, Citril",6642.0000 -"Flycatcher, Taiga",6529.5000 -"Rosefinch, Common",5691.0000 -"Warbler, Hooded",5339.0000 -"Finch, Trumpeter",4360.0000 -"Redpoll, Arctic",2842.5000 -"Bunting, Lapland",2703.0000 -"Redpoll, Mealy",2581.5000 -Goldfinch,2503.5000 -"Thrush, Dusky",2350.0000 -Greenfinch,2199.5000 -"Bunting, Corn",1334.0000 -"Warbler, Barred",1262.0000 -"Pipit, Tree",1080.0000 -Bullfinch,1058.0000 -"Starling, Rose-coloured",1013.0000 -Dotterel,896.0000 -"Pipit, Olive-backed",822.5000 -"Stonechat, Siberian",609.0000 -"Bluetail, Red-flanked",583.5000 -"Thrush, Eyebrowed",494.0000 -"Warbler, Savi's",470.0000 -"Thrush, White's",452.0000 -"Warbler, Fan-tailed",412.0000 -"Tit, Bearded",404.0000 -"Pipit, Red-throated",363.0000 -"Robin, White-throated",352.5000 -Bittern,334.0000 -"Grouse, Red",314.0000 -"Thrush, Red-throated",212.0000 -Nightingale,145.0000 -"Flycatcher, Spotted",143.5000 -"Tit, Willow",106.0000 -Veery,103.0000 -"Warbler, Subalpine",82.0000 -"Warbler, Cetti's",81.0000 -Fieldfare,75.5000 -"Warbler, Marmora's",75.0000 -"Thrush, Wood",69.0000 -"Catbird, Grey",60.0000 -"Flycatcher, Brown",53.0000 -"Shearwater, Macaronesian",52.5000 -"Warbler, Reed",52.0000 -"Thrush, Hermit",51.0000 -"Gull, Yellow-legged",48.0000 -"Warbler, Icterine",46.0000 -Goldcrest,43.0000 -"Goose, Red-breasted",43.0000 -"Crow, Hooded",38.0000 -"Petrel, Fea's",36.0000 -Dunnock,34.0000 -"Nuthatch, Red-breasted",31.0000 -"Warbler, Paddyfield",19.0000 -"Warbler, Sykes's",19.0000 -"Shrike, Brown",15.0000 -"Warbler, Arctic",13.0000 -"Falcon, Eleonora's",11.0000 -Merlin,10.0000 -"Swift, Chimney",10.0000 -"Falcon, Red-footed",9.0000 -"Tit, Long-tailed",9.0000 -Jackdaw,8.0000 -"Spotted, Lesser",8.0000 -"Woodpecker, Green",7.0000 -Chiffchaff,5.0000 -"Desert, Asian",5.0000 -Kingfisher,5.0000 -"Kingfisher, Belted",5.0000 -"Nighthawk, Common",5.0000 -"Redshank, Spotted",5.0000 -Swift,5.0000 -"Swift, Pacific",5.0000 -Nightjar,4.0000 -"Owl, Little",4.0000 -"Owl, Short-eared",4.0000 -"Owl, Snowy",4.0000 -"Warbler, Green",4.0000 -Cuckoo,3.0000 -"Cuckoo, Black-billed",3.0000 -"Martin, House",3.0000 -"Owl, Scops",3.0000 -"Tern, Gull-billed",3.0000 -"Warbler, Radde's",3.0000 -Woodpigeon,3.0000 -"Gull, Glaucous",2.0000 -"Gull, Herring",2.0000 -"Gull, Slaty-backed",2.0000 -Osprey,2.0000 -"Black-headed, Great",1.0000 -"Bonelli's, Eastern",1.0000 -"Dowitcher, Long-billed",1.0000 -"Guillemot, Black",1.0000 -"Guillemot, Brunnich's",1.0000 -"Gull, Audouin's",1.0000 -"Gull, Bonaparte's",1.0000 -"Gull, Franklin's",1.0000 -"Gull, Sabine's",1.0000 -"Phalarope, Red-necked",1.0000 -"Phalarope, Wilson's",1.0000 -Puffin,1.0000 -"Robin, Rufous-tailed",1.0000 -"Sandpiper, Buff-breasted",1.0000 -"Sandpiper, Western",1.0000 -"Sandpiper, White-rumped",1.0000 -"Skua, Arctic",1.0000 -"Skua, Pomarine",1.0000 -Skylark,1.0000 -Smew,1.0000 -Snipe,1.0000 -"Snipe, Great",1.0000 -"Tern, Black",1.0000 -"Tern, Cabot's",1.0000 -"Tern, Common",1.0000 -Woodcock,1.0000 -"Yellowthroat, Common",1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 4e29a97298..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" -2018-12-27,107569544,88379723,15196470,5257944,2933536,3012988,2147160,1513246,1135809,929384,630272,460490,321035,227914,176859,155276,108834,102408,4627,62606,55519,50225,15705,37282,43541,30131,19294,23782,20072,16594,0,15126,14270,341,13512,6104,10366,8911,10013,6979,6975,6642,6973,5758,5339,4360,2668,2703,2450,2296,2350,2654,1316,1262,1080,1109,1013,896,791,609,600,494,470,452,412,404,363,684,270,314,194,145,237,106,103,82,81,77,75,69,60,52,55,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-28,107577602,88525879,15196470,5729883,2933773,3013062,2146330,1513519,1135809,942423,630272,525827,321035,253961,176859,155290,108834,102408,4681,62604,54954,50496,123243,37279,43541,30131,28732,23782,20072,16594,0,15150,14270,341,13512,9070,10389,8928,10013,6979,6975,6642,6971,5758,5339,4360,2730,2703,2223,2296,2350,2651,1320,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,328,314,214,145,237,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-29,107586402,88683162,15196470,6135937,3265079,3013110,2146330,1530321,1135809,942502,630272,530773,321035,221585,176859,155276,108834,102408,4747,62690,54307,50647,39429,37279,43541,30131,31393,23782,20072,16594,131976,15134,14270,341,13512,10115,10406,8784,10013,6979,6975,6642,6974,5758,5339,4360,2708,2703,2865,2296,2350,2651,1324,1262,1080,1110,1013,896,799,609,600,494,470,452,412,404,363,684,328,314,214,145,237,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-30,107594034,88765119,15196470,6135937,3500581,3013153,2146330,1530320,1135809,913045,630272,530773,321035,252098,176859,155131,108834,102408,4801,62719,54307,50870,57256,37279,43541,30131,31393,23782,20072,16594,4,15134,14270,341,13512,12045,10406,8784,10013,6979,6975,6642,6974,5737,5339,4360,2791,2703,2669,2296,2350,2605,1328,1262,1080,1111,1013,896,799,609,600,494,470,452,412,404,363,684,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-31,107589840,88903007,15196470,6135797,3777518,2988859,2146330,1530282,1135809,913024,630272,530773,321035,245325,176859,155117,108834,102408,4843,62713,54307,51256,68497,37272,37479,30131,29359,23782,20072,16594,4,15134,14270,341,13512,12048,10406,8794,10012,6979,6975,6642,6923,5704,5339,4360,2833,2703,2652,2228,2350,1894,1332,1262,1080,1111,1013,896,799,609,600,494,470,452,412,404,363,684,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-01,107589335,89164927,15196470,6135783,3784793,2947443,2151475,1530282,1135809,900004,630272,511036,321035,232953,176859,131858,108834,102408,4843,62732,54305,51169,70541,37274,37479,30131,28386,23782,20072,16594,4,15038,14270,20126,13512,12142,10424,8794,10012,6979,6956,6642,5845,5683,5339,4360,2805,2703,2452,2433,2350,1867,1336,1262,1080,1111,1013,896,799,609,600,494,470,452,412,404,363,31,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-02,107561195,89405908,15196470,6135307,3786969,2947498,2151475,1529662,1135809,899701,630272,465524,321038,202989,176859,131859,108834,102408,191746,62739,54305,51595,17507,37267,22343,30131,25614,23782,20072,16594,4,15038,14270,26165,13512,12142,10424,8796,10012,6979,6956,6642,5943,5676,5339,4360,2863,2703,2447,2554,2350,1865,1340,1262,1080,959,1013,896,799,609,600,494,470,452,412,404,363,19,328,314,214,145,146,106,103,82,81,77,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-03,107549713,89579944,15196470,6348937,3664040,2945748,2151594,1528702,1135809,899847,630272,513304,321037,199890,176852,131756,108834,102408,191746,62743,54305,52145,13829,37267,22343,30131,24429,23782,20072,16594,4,15038,14270,14415,13512,12144,10431,9237,2,6979,6956,6642,6230,5676,5339,4360,2916,2703,2685,2695,2350,1865,1344,1262,1080,987,1013,896,799,609,396,494,470,452,412,404,363,19,328,314,214,145,132,106,103,82,81,72,75,69,60,52,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-04,107543239,89779619,15196470,6549403,3739730,2947361,2151594,1528310,1135809,911605,630272,514969,321037,197097,176852,131458,108834,102408,191746,62736,54305,53185,16138,37270,22343,30131,24311,23782,20072,16594,4,15038,14270,37559,13512,12415,10442,9261,2,6979,6956,6642,6230,5590,5339,4360,3016,2703,2685,2898,2350,1865,1348,1262,1080,987,1013,896,799,609,658,494,470,452,412,404,363,19,328,314,214,145,6,106,103,82,81,72,75,69,60,55,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-05,107531712,90017560,15196470,6379996,3820497,2947394,2151594,1528310,1135809,901485,630272,514986,321037,201225,176852,131381,108834,102408,191746,62803,54303,53060,18377,37269,15287,30131,23506,23782,20072,16594,4,15038,14270,38837,13512,13083,10442,9261,2,6979,6956,6642,6230,5568,5339,4360,3096,2703,2685,3046,2350,2076,1352,1262,1080,988,1013,896,1046,609,582,494,470,452,412,404,363,19,448,314,214,145,1,106,103,82,81,72,75,69,60,57,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index 9a8de3da4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" -2018-12,107583484,88651378,15196470,5879100,3282097,3008234,2146496,1523538,1135809,928075,630272,515727,321035,240177,176859,155218,108834,102408,4740,62666,54679,50699,60826,37279,42329,30131,28034,23782,43995,20072,16594,15136,14270,341,13512,9876,10395,8840,10013,6979,6975,6642,6963,5743,5339,4360,2746,2703,2572,2282,2350,2491,1324,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,316,314,210,145,201,106,103,82,81,77,75,69,60,52,53,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01,107555039,89589592,15196470,6309885,3759205,2947088,2151546,1529053,1135809,902529,630272,503964,321037,206830,176855,131662,108834,102408,154365,62751,54305,52231,27280,37269,23959,30131,25249,23782,4,20072,16594,15038,14270,27421,13512,12385,10433,9070,4006,6979,6956,6642,6096,5639,5339,4360,2939,2703,2591,2725,2350,1908,1344,1262,1080,1006,1013,896,848,609,567,494,470,452,412,404,363,21,352,314,214,145,86,106,103,82,81,74,75,69,60,54,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 9d809d7b29..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" -"2018 Q4",107583484,88651378,15196470,5879100,3282097,3008234,2146496,1523538,1135809,928075,630272,515727,321035,240177,176859,155218,108834,102408,4740,62666,54679,50699,60826,37279,42329,30131,28034,23782,43995,20072,16594,15136,14270,341,13512,9876,10395,8840,10013,6979,6975,6642,6963,5743,5339,4360,2746,2703,2572,2282,2350,2491,1324,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,316,314,210,145,201,106,103,82,81,77,75,69,60,52,53,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2019 Q1",107555039,89589592,15196470,6309885,3759205,2947088,2151546,1529053,1135809,902529,630272,503964,321037,206830,176855,131662,108834,102408,154365,62751,54305,52231,27280,37269,23959,30131,25249,23782,4,20072,16594,15038,14270,27421,13512,12385,10433,9070,4006,6979,6956,6642,6096,5639,5339,4360,2939,2703,2591,2725,2350,1908,1344,1262,1080,1006,1013,896,848,609,567,494,470,452,412,404,363,21,352,314,214,145,86,106,103,82,81,74,75,69,60,54,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index ef940eb090..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Warbler, Magnolia] File Count (Number of files)","[Cowbird, Brown-headed] File Count (Number of files)","[Bobolink] File Count (Number of files)","[Bunting, Rustic] File Count (Number of files)","[Dowitcher, Short-billed] File Count (Number of files)","[Chaffinch] File Count (Number of files)","[Kestrel, Lesser] File Count (Number of files)","[Scaup, Lesser] File Count (Number of files)","[Waterthrush, Northern] File Count (Number of files)","[Chiffchaff, Iberian] File Count (Number of files)","[Warbler, Black-and-white] File Count (Number of files)","[Sparrow, Song] File Count (Number of files)","[Martin, Sand] File Count (Number of files)","[Tern, Caspian] File Count (Number of files)","[Bunting, Pine] File Count (Number of files)","[Bunting, Rock] File Count (Number of files)","[Goose, Egyptian] File Count (Number of files)","[Redstart, American] File Count (Number of files)","[Twite] File Count (Number of files)","[Dunlin] File Count (Number of files)","[Tanager, Summer] File Count (Number of files)","[Sparrow, Lark] File Count (Number of files)","[Blackbird] File Count (Number of files)","[Fulmar] File Count (Number of files)","[Linnet] File Count (Number of files)","[Thrush, Rock] File Count (Number of files)","[Swift, Little] File Count (Number of files)","[Wagtail, Yellow] File Count (Number of files)","[Sandpiper, Purple] File Count (Number of files)","[Warbler, Blackpoll] File Count (Number of files)","[Sparrow, Tree] File Count (Number of files)","[Lark, Calandra] File Count (Number of files)","[Warbler, Tennessee] File Count (Number of files)","[Wagtail, Pied] File Count (Number of files)","[Sandpiper, Baird's] File Count (Number of files)","[Pipit, Tawny] File Count (Number of files)","[Parula, Northern] File Count (Number of files)","[Bunting, Indigo] File Count (Number of files)","[Warbler, Blackburnian] File Count (Number of files)","[Nuthatch] File Count (Number of files)","[Shearwater, Balearic] File Count (Number of files)","[Finch, Citril] File Count (Number of files)","[Flycatcher, Taiga] File Count (Number of files)","[Rosefinch, Common] File Count (Number of files)","[Warbler, Hooded] File Count (Number of files)","[Finch, Trumpeter] File Count (Number of files)","[Redpoll, Arctic] File Count (Number of files)","[Bunting, Lapland] File Count (Number of files)","[Redpoll, Mealy] File Count (Number of files)","[Goldfinch] File Count (Number of files)","[Thrush, Dusky] File Count (Number of files)","[Greenfinch] File Count (Number of files)","[Bunting, Corn] File Count (Number of files)","[Warbler, Barred] File Count (Number of files)","[Pipit, Tree] File Count (Number of files)","[Bullfinch] File Count (Number of files)","[Starling, Rose-coloured] File Count (Number of files)","[Dotterel] File Count (Number of files)","[Pipit, Olive-backed] File Count (Number of files)","[Stonechat, Siberian] File Count (Number of files)","[Bluetail, Red-flanked] File Count (Number of files)","[Thrush, Eyebrowed] File Count (Number of files)","[Warbler, Savi's] File Count (Number of files)","[Thrush, White's] File Count (Number of files)","[Warbler, Fan-tailed] File Count (Number of files)","[Tit, Bearded] File Count (Number of files)","[Pipit, Red-throated] File Count (Number of files)","[Robin, White-throated] File Count (Number of files)","[Bittern] File Count (Number of files)","[Grouse, Red] File Count (Number of files)","[Thrush, Red-throated] File Count (Number of files)","[Nightingale] File Count (Number of files)","[Flycatcher, Spotted] File Count (Number of files)","[Tit, Willow] File Count (Number of files)","[Veery] File Count (Number of files)","[Warbler, Subalpine] File Count (Number of files)","[Warbler, Cetti's] File Count (Number of files)","[Fieldfare] File Count (Number of files)","[Warbler, Marmora's] File Count (Number of files)","[Thrush, Wood] File Count (Number of files)","[Catbird, Grey] File Count (Number of files)","[Flycatcher, Brown] File Count (Number of files)","[Shearwater, Macaronesian] File Count (Number of files)","[Warbler, Reed] File Count (Number of files)","[Thrush, Hermit] File Count (Number of files)","[Gull, Yellow-legged] File Count (Number of files)","[Warbler, Icterine] File Count (Number of files)","[Goldcrest] File Count (Number of files)","[Goose, Red-breasted] File Count (Number of files)","[Crow, Hooded] File Count (Number of files)","[Petrel, Fea's] File Count (Number of files)","[Dunnock] File Count (Number of files)","[Nuthatch, Red-breasted] File Count (Number of files)","[Warbler, Paddyfield] File Count (Number of files)","[Warbler, Sykes's] File Count (Number of files)","[Shrike, Brown] File Count (Number of files)","[Warbler, Arctic] File Count (Number of files)","[Falcon, Eleonora's] File Count (Number of files)","[Merlin] File Count (Number of files)","[Swift, Chimney] File Count (Number of files)","[Falcon, Red-footed] File Count (Number of files)","[Tit, Long-tailed] File Count (Number of files)","[Jackdaw] File Count (Number of files)","[Spotted, Lesser] File Count (Number of files)","[Woodpecker, Green] File Count (Number of files)","[Chiffchaff] File Count (Number of files)","[Desert, Asian] File Count (Number of files)","[Kingfisher] File Count (Number of files)","[Kingfisher, Belted] File Count (Number of files)","[Nighthawk, Common] File Count (Number of files)","[Redshank, Spotted] File Count (Number of files)","[Swift] File Count (Number of files)","[Swift, Pacific] File Count (Number of files)","[Nightjar] File Count (Number of files)","[Owl, Little] File Count (Number of files)","[Owl, Short-eared] File Count (Number of files)","[Owl, Snowy] File Count (Number of files)","[Warbler, Green] File Count (Number of files)","[Cuckoo] File Count (Number of files)","[Cuckoo, Black-billed] File Count (Number of files)","[Martin, House] File Count (Number of files)","[Owl, Scops] File Count (Number of files)","[Tern, Gull-billed] File Count (Number of files)","[Warbler, Radde's] File Count (Number of files)","[Woodpigeon] File Count (Number of files)","[Gull, Glaucous] File Count (Number of files)","[Gull, Herring] File Count (Number of files)","[Gull, Slaty-backed] File Count (Number of files)","[Osprey] File Count (Number of files)","[Black-headed, Great] File Count (Number of files)","[Bonelli's, Eastern] File Count (Number of files)","[Dowitcher, Long-billed] File Count (Number of files)","[Guillemot, Black] File Count (Number of files)","[Guillemot, Brunnich's] File Count (Number of files)","[Gull, Audouin's] File Count (Number of files)","[Gull, Bonaparte's] File Count (Number of files)","[Gull, Franklin's] File Count (Number of files)","[Gull, Sabine's] File Count (Number of files)","[Phalarope, Red-necked] File Count (Number of files)","[Phalarope, Wilson's] File Count (Number of files)","[Puffin] File Count (Number of files)","[Robin, Rufous-tailed] File Count (Number of files)","[Sandpiper, Buff-breasted] File Count (Number of files)","[Sandpiper, Western] File Count (Number of files)","[Sandpiper, White-rumped] File Count (Number of files)","[Skua, Arctic] File Count (Number of files)","[Skua, Pomarine] File Count (Number of files)","[Skylark] File Count (Number of files)","[Smew] File Count (Number of files)","[Snipe] File Count (Number of files)","[Snipe, Great] File Count (Number of files)","[Tern, Black] File Count (Number of files)","[Tern, Cabot's] File Count (Number of files)","[Tern, Common] File Count (Number of files)","[Woodcock] File Count (Number of files)","[Yellowthroat, Common] File Count (Number of files)" -2018,107583484,88651378,15196470,5879100,3282097,3008234,2146496,1523538,1135809,928075,630272,515727,321035,240177,176859,155218,108834,102408,4740,62666,54679,50699,60826,37279,42329,30131,28034,23782,43995,20072,16594,15136,14270,341,13512,9876,10395,8840,10013,6979,6975,6642,6963,5743,5339,4360,2746,2703,2572,2282,2350,2491,1324,1262,1080,1110,1013,896,797,609,600,494,470,452,412,404,363,684,316,314,210,145,201,106,103,82,81,77,75,69,60,52,53,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019,107555039,89589592,15196470,6309885,3759205,2947088,2151546,1529053,1135809,902529,630272,503964,321037,206830,176855,131662,108834,102408,154365,62751,54305,52231,27280,37269,23959,30131,25249,23782,4,20072,16594,15038,14270,27421,13512,12385,10433,9070,4006,6979,6956,6642,6096,5639,5339,4360,2939,2703,2591,2725,2350,1908,1344,1262,1080,1006,1013,896,848,609,567,494,470,452,412,404,363,21,352,314,214,145,86,106,103,82,81,74,75,69,60,54,52,52,51,48,46,43,43,38,36,34,31,19,19,15,13,11,10,10,9,9,8,8,7,5,5,5,5,5,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index a3c25c55c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -Fulmar,220015017984000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Bunting, Corn",2000003072000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index a3c25c55c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -Fulmar,220015017984000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Bunting, Corn",2000003072000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index a3c25c55c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -Fulmar,220015017984000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Bunting, Corn",2000003072000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index a3c25c55c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Hard Threshold (Bytes)" -Bobolink,250000003072000.0000 -"Cowbird, Brown-headed",250000003072000.0000 -Fulmar,220015017984000.0000 -"Grouse, Red",150000001024000.0000 -"Redstart, American",150000001024000.0000 -"Waterthrush, Northern",100005003264000.0000 -"Warbler, Tennessee",60000002048000.0000 -"Warbler, Black-and-white",50005000192000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10005000192000.0000 -"Martin, Sand",10005000192000.0000 -"Parula, Northern",10005000192000.0000 -"Scaup, Lesser",10005000192000.0000 -"Bunting, Corn",2000003072000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 91e41f869d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" -2018-12-27,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 7e603fef23..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" -2018-12,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index e2aca6c9a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" -"2018 Q4",250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index becf0478eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Bobolink] Quota: Hard Threshold (Bytes)","[Cowbird, Brown-headed] Quota: Hard Threshold (Bytes)","[Fulmar] Quota: Hard Threshold (Bytes)","[Grouse, Red] Quota: Hard Threshold (Bytes)","[Redstart, American] Quota: Hard Threshold (Bytes)","[Waterthrush, Northern] Quota: Hard Threshold (Bytes)","[Warbler, Tennessee] Quota: Hard Threshold (Bytes)","[Warbler, Black-and-white] Quota: Hard Threshold (Bytes)","[Chaffinch] Quota: Hard Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Hard Threshold (Bytes)","[Warbler, Magnolia] Quota: Hard Threshold (Bytes)","[Kestrel, Lesser] Quota: Hard Threshold (Bytes)","[Martin, Sand] Quota: Hard Threshold (Bytes)","[Parula, Northern] Quota: Hard Threshold (Bytes)","[Scaup, Lesser] Quota: Hard Threshold (Bytes)","[Bunting, Corn] Quota: Hard Threshold (Bytes)","[Bittern] Quota: Hard Threshold (Bytes)","[Black-headed, Great] Quota: Hard Threshold (Bytes)","[Blackbird] Quota: Hard Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Hard Threshold (Bytes)","[Bonelli's, Eastern] Quota: Hard Threshold (Bytes)","[Bullfinch] Quota: Hard Threshold (Bytes)","[Bunting, Indigo] Quota: Hard Threshold (Bytes)","[Bunting, Lapland] Quota: Hard Threshold (Bytes)","[Bunting, Pine] Quota: Hard Threshold (Bytes)","[Bunting, Rock] Quota: Hard Threshold (Bytes)","[Bunting, Rustic] Quota: Hard Threshold (Bytes)","[Catbird, Grey] Quota: Hard Threshold (Bytes)","[Chiffchaff] Quota: Hard Threshold (Bytes)","[Crow, Hooded] Quota: Hard Threshold (Bytes)","[Cuckoo] Quota: Hard Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Hard Threshold (Bytes)","[Desert, Asian] Quota: Hard Threshold (Bytes)","[Dotterel] Quota: Hard Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Hard Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Hard Threshold (Bytes)","[Dunlin] Quota: Hard Threshold (Bytes)","[Dunnock] Quota: Hard Threshold (Bytes)","[Falcon, Eleonora's] Quota: Hard Threshold (Bytes)","[Falcon, Red-footed] Quota: Hard Threshold (Bytes)","[Fieldfare] Quota: Hard Threshold (Bytes)","[Finch, Citril] Quota: Hard Threshold (Bytes)","[Finch, Trumpeter] Quota: Hard Threshold (Bytes)","[Flycatcher, Brown] Quota: Hard Threshold (Bytes)","[Flycatcher, Spotted] Quota: Hard Threshold (Bytes)","[Flycatcher, Taiga] Quota: Hard Threshold (Bytes)","[Goldcrest] Quota: Hard Threshold (Bytes)","[Goldfinch] Quota: Hard Threshold (Bytes)","[Goose, Egyptian] Quota: Hard Threshold (Bytes)","[Goose, Red-breasted] Quota: Hard Threshold (Bytes)","[Greenfinch] Quota: Hard Threshold (Bytes)","[Guillemot, Black] Quota: Hard Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Hard Threshold (Bytes)","[Gull, Audouin's] Quota: Hard Threshold (Bytes)","[Gull, Bonaparte's] Quota: Hard Threshold (Bytes)","[Gull, Franklin's] Quota: Hard Threshold (Bytes)","[Gull, Glaucous] Quota: Hard Threshold (Bytes)","[Gull, Herring] Quota: Hard Threshold (Bytes)","[Gull, Sabine's] Quota: Hard Threshold (Bytes)","[Gull, Slaty-backed] Quota: Hard Threshold (Bytes)","[Gull, Yellow-legged] Quota: Hard Threshold (Bytes)","[Jackdaw] Quota: Hard Threshold (Bytes)","[Kingfisher] Quota: Hard Threshold (Bytes)","[Kingfisher, Belted] Quota: Hard Threshold (Bytes)","[Lark, Calandra] Quota: Hard Threshold (Bytes)","[Linnet] Quota: Hard Threshold (Bytes)","[Martin, House] Quota: Hard Threshold (Bytes)","[Merlin] Quota: Hard Threshold (Bytes)","[Nighthawk, Common] Quota: Hard Threshold (Bytes)","[Nightingale] Quota: Hard Threshold (Bytes)","[Nightjar] Quota: Hard Threshold (Bytes)","[Nuthatch] Quota: Hard Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Hard Threshold (Bytes)","[Osprey] Quota: Hard Threshold (Bytes)","[Owl, Little] Quota: Hard Threshold (Bytes)","[Owl, Scops] Quota: Hard Threshold (Bytes)","[Owl, Short-eared] Quota: Hard Threshold (Bytes)","[Owl, Snowy] Quota: Hard Threshold (Bytes)","[Petrel, Fea's] Quota: Hard Threshold (Bytes)","[Phalarope, Red-necked] Quota: Hard Threshold (Bytes)","[Phalarope, Wilson's] Quota: Hard Threshold (Bytes)","[Pipit, Olive-backed] Quota: Hard Threshold (Bytes)","[Pipit, Red-throated] Quota: Hard Threshold (Bytes)","[Pipit, Tawny] Quota: Hard Threshold (Bytes)","[Pipit, Tree] Quota: Hard Threshold (Bytes)","[Puffin] Quota: Hard Threshold (Bytes)","[Redpoll, Arctic] Quota: Hard Threshold (Bytes)","[Redpoll, Mealy] Quota: Hard Threshold (Bytes)","[Redshank, Spotted] Quota: Hard Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Hard Threshold (Bytes)","[Robin, White-throated] Quota: Hard Threshold (Bytes)","[Rosefinch, Common] Quota: Hard Threshold (Bytes)","[Sandpiper, Baird's] Quota: Hard Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Hard Threshold (Bytes)","[Sandpiper, Purple] Quota: Hard Threshold (Bytes)","[Sandpiper, Western] Quota: Hard Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Hard Threshold (Bytes)","[Shearwater, Balearic] Quota: Hard Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Hard Threshold (Bytes)","[Shrike, Brown] Quota: Hard Threshold (Bytes)","[Skua, Arctic] Quota: Hard Threshold (Bytes)","[Skua, Pomarine] Quota: Hard Threshold (Bytes)","[Skylark] Quota: Hard Threshold (Bytes)","[Smew] Quota: Hard Threshold (Bytes)","[Snipe] Quota: Hard Threshold (Bytes)","[Snipe, Great] Quota: Hard Threshold (Bytes)","[Sparrow, Lark] Quota: Hard Threshold (Bytes)","[Sparrow, Song] Quota: Hard Threshold (Bytes)","[Sparrow, Tree] Quota: Hard Threshold (Bytes)","[Spotted, Lesser] Quota: Hard Threshold (Bytes)","[Starling, Rose-coloured] Quota: Hard Threshold (Bytes)","[Stonechat, Siberian] Quota: Hard Threshold (Bytes)","[Swift] Quota: Hard Threshold (Bytes)","[Swift, Chimney] Quota: Hard Threshold (Bytes)","[Swift, Little] Quota: Hard Threshold (Bytes)","[Swift, Pacific] Quota: Hard Threshold (Bytes)","[Tanager, Summer] Quota: Hard Threshold (Bytes)","[Tern, Black] Quota: Hard Threshold (Bytes)","[Tern, Cabot's] Quota: Hard Threshold (Bytes)","[Tern, Caspian] Quota: Hard Threshold (Bytes)","[Tern, Common] Quota: Hard Threshold (Bytes)","[Tern, Gull-billed] Quota: Hard Threshold (Bytes)","[Thrush, Dusky] Quota: Hard Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Hard Threshold (Bytes)","[Thrush, Hermit] Quota: Hard Threshold (Bytes)","[Thrush, Red-throated] Quota: Hard Threshold (Bytes)","[Thrush, Rock] Quota: Hard Threshold (Bytes)","[Thrush, White's] Quota: Hard Threshold (Bytes)","[Thrush, Wood] Quota: Hard Threshold (Bytes)","[Tit, Bearded] Quota: Hard Threshold (Bytes)","[Tit, Long-tailed] Quota: Hard Threshold (Bytes)","[Tit, Willow] Quota: Hard Threshold (Bytes)","[Twite] Quota: Hard Threshold (Bytes)","[Veery] Quota: Hard Threshold (Bytes)","[Wagtail, Pied] Quota: Hard Threshold (Bytes)","[Wagtail, Yellow] Quota: Hard Threshold (Bytes)","[Warbler, Arctic] Quota: Hard Threshold (Bytes)","[Warbler, Barred] Quota: Hard Threshold (Bytes)","[Warbler, Blackburnian] Quota: Hard Threshold (Bytes)","[Warbler, Blackpoll] Quota: Hard Threshold (Bytes)","[Warbler, Cetti's] Quota: Hard Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Hard Threshold (Bytes)","[Warbler, Green] Quota: Hard Threshold (Bytes)","[Warbler, Hooded] Quota: Hard Threshold (Bytes)","[Warbler, Icterine] Quota: Hard Threshold (Bytes)","[Warbler, Marmora's] Quota: Hard Threshold (Bytes)","[Warbler, Paddyfield] Quota: Hard Threshold (Bytes)","[Warbler, Radde's] Quota: Hard Threshold (Bytes)","[Warbler, Reed] Quota: Hard Threshold (Bytes)","[Warbler, Savi's] Quota: Hard Threshold (Bytes)","[Warbler, Subalpine] Quota: Hard Threshold (Bytes)","[Warbler, Sykes's] Quota: Hard Threshold (Bytes)","[Woodcock] Quota: Hard Threshold (Bytes)","[Woodpecker, Green] Quota: Hard Threshold (Bytes)","[Woodpigeon] Quota: Hard Threshold (Bytes)","[Yellowthroat, Common] Quota: Hard Threshold (Bytes)" -2018,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,250000003072000,250000003072000,220015017984000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,2000003072000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 315d92cec2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -Chaffinch,157675908224000.0000 -"Redstart, American",94668546688000.0000 -"Warbler, Magnolia",80363333107200.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Martin, Sand",50376874368000.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Bunting, Indigo",15545744473600.0000 -"Dowitcher, Short-billed",14837865497600.0000 -"Warbler, Tennessee",13832863872000.0000 -"Tern, Caspian",10697016486400.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8972348544000.0000 -"Scaup, Lesser",8639812684800.0000 -"Finch, Citril",6401920512000.0000 -"Bunting, Rock",5392457907200.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Rustic",2486089958400.0000 -"Sparrow, Lark",2009530739200.0000 -"Bunting, Pine",1733983590400.0000 -Fulmar,1507261952000.0000 -Blackbird,1340020812800.0000 -"Swift, Little",1336851827200.0000 -"Chiffchaff, Iberian",635384230400.0000 -"Sparrow, Song",601996633600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Pipit, Red-throated",297982336000.0000 -"Tanager, Summer",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Pipit, Tree",208223232000.0000 -"Lark, Calandra",143814592000.0000 -Bittern,129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -"Rosefinch, Common",77630630400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Bunting, Corn",43913408000.0000 -"Wagtail, Pied",22184281600.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",8558368000.0000 -"Bluetail, Red-flanked",6953753600.0000 -"Shearwater, Macaronesian",3000576000.0000 -"Flycatcher, Taiga",2518976000.0000 -Fieldfare,1986227200.0000 -"Stonechat, Siberian",1615104000.0000 -"Shearwater, Balearic",821760000.0000 -"Thrush, Red-throated",487731200.0000 -"Sparrow, Tree",334848000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Yellow",213504000.0000 -"Petrel, Fea's",178432000.0000 -Nightingale,99072000.0000 -"Robin, White-throated",43430400.0000 -"Goose, Egyptian",41344000.0000 -"Thrush, Wood",34432000.0000 -"Flycatcher, Spotted",23820800.0000 -"Catbird, Grey",17280000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Warbler, Blackpoll",8576000.0000 -"Thrush, Rock",8064000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, White's",2816000.0000 -Nuthatch,2176000.0000 -Dotterel,1920000.0000 -"Starling, Rose-coloured",1920000.0000 -"Thrush, Dusky",1280000.0000 -"Warbler, Blackburnian",1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Warbler, Icterine",1024000.0000 -"Warbler, Paddyfield",1024000.0000 -"Goose, Red-breasted",896000.0000 -"Warbler, Sykes's",768000.0000 -Chiffchaff,640000.0000 -"Bonelli's, Eastern",512000.0000 -"Warbler, Arctic",512000.0000 -"Warbler, Radde's",384000.0000 -"Warbler, Green",256000.0000 -Jackdaw,128000.0000 -"Martin, House",128000.0000 -Skylark,128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Barred",128000.0000 -"Warbler, Fan-tailed",128000.0000 -"Warbler, Marmora's",128000.0000 -"Warbler, Subalpine",128000.0000 -"Black-headed, Great",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Goldcrest,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -Puffin,0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Spotted, Lesser",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Pacific",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Hermit",0.0000 -"Tit, Bearded",0.0000 -"Tit, Willow",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index b81c86d179..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -Chaffinch,157675908224000.0000 -"Redstart, American",94668546688000.0000 -"Warbler, Magnolia",80363333107200.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Martin, Sand",50376874368000.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Bunting, Indigo",15545744473600.0000 -"Dowitcher, Short-billed",14837865497600.0000 -"Warbler, Tennessee",13832863872000.0000 -"Tern, Caspian",10697016486400.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8972348544000.0000 -"Scaup, Lesser",8639812684800.0000 -"Finch, Citril",6401920512000.0000 -"Bunting, Rock",5392457907200.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Rustic",2486089958400.0000 -"Sparrow, Lark",2009530739200.0000 -"Bunting, Pine",1733983590400.0000 -Fulmar,1507261952000.0000 -Blackbird,1340020864000.0000 -"Swift, Little",1336851827200.0000 -"Chiffchaff, Iberian",635384230400.0000 -"Sparrow, Song",601996633600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Pipit, Red-throated",297982336000.0000 -"Tanager, Summer",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Pipit, Tree",208223232000.0000 -"Lark, Calandra",143814592000.0000 -Bittern,129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -"Rosefinch, Common",77630630400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Bunting, Corn",43913408000.0000 -"Wagtail, Pied",22184281600.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",9106218666.5000 -"Bluetail, Red-flanked",6953753600.0000 -"Shearwater, Macaronesian",3000576000.0000 -"Flycatcher, Taiga",2518976000.0000 -Fieldfare,1986227200.0000 -"Stonechat, Siberian",1615104000.0000 -"Shearwater, Balearic",821760000.0000 -"Thrush, Red-throated",487731200.0000 -"Sparrow, Tree",334848000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Yellow",213504000.0000 -"Petrel, Fea's",178432000.0000 -Nightingale,99072000.0000 -"Robin, White-throated",43430400.0000 -"Goose, Egyptian",41344000.0000 -"Thrush, Wood",34432000.0000 -"Flycatcher, Spotted",23820800.0000 -"Catbird, Grey",17280000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Warbler, Blackpoll",8576000.0000 -"Thrush, Rock",8064000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, White's",2816000.0000 -Nuthatch,2176000.0000 -Dotterel,1920000.0000 -"Starling, Rose-coloured",1920000.0000 -"Thrush, Dusky",1280000.0000 -"Warbler, Blackburnian",1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Warbler, Icterine",1024000.0000 -"Warbler, Paddyfield",1024000.0000 -"Goose, Red-breasted",896000.0000 -"Warbler, Sykes's",768000.0000 -Chiffchaff,640000.0000 -"Bonelli's, Eastern",512000.0000 -"Warbler, Arctic",512000.0000 -"Warbler, Radde's",384000.0000 -"Warbler, Green",256000.0000 -Jackdaw,128000.0000 -"Martin, House",128000.0000 -Skylark,128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Barred",128000.0000 -"Warbler, Fan-tailed",128000.0000 -"Warbler, Marmora's",128000.0000 -"Warbler, Subalpine",128000.0000 -"Black-headed, Great",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Goldcrest,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -Puffin,0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Spotted, Lesser",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Pacific",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Hermit",0.0000 -"Tit, Bearded",0.0000 -"Tit, Willow",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index b81c86d179..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -Chaffinch,157675908224000.0000 -"Redstart, American",94668546688000.0000 -"Warbler, Magnolia",80363333107200.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Martin, Sand",50376874368000.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Bunting, Indigo",15545744473600.0000 -"Dowitcher, Short-billed",14837865497600.0000 -"Warbler, Tennessee",13832863872000.0000 -"Tern, Caspian",10697016486400.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8972348544000.0000 -"Scaup, Lesser",8639812684800.0000 -"Finch, Citril",6401920512000.0000 -"Bunting, Rock",5392457907200.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Rustic",2486089958400.0000 -"Sparrow, Lark",2009530739200.0000 -"Bunting, Pine",1733983590400.0000 -Fulmar,1507261952000.0000 -Blackbird,1340020864000.0000 -"Swift, Little",1336851827200.0000 -"Chiffchaff, Iberian",635384230400.0000 -"Sparrow, Song",601996633600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Pipit, Red-throated",297982336000.0000 -"Tanager, Summer",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Pipit, Tree",208223232000.0000 -"Lark, Calandra",143814592000.0000 -Bittern,129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -"Rosefinch, Common",77630630400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Bunting, Corn",43913408000.0000 -"Wagtail, Pied",22184281600.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",9106218666.5000 -"Bluetail, Red-flanked",6953753600.0000 -"Shearwater, Macaronesian",3000576000.0000 -"Flycatcher, Taiga",2518976000.0000 -Fieldfare,1986227200.0000 -"Stonechat, Siberian",1615104000.0000 -"Shearwater, Balearic",821760000.0000 -"Thrush, Red-throated",487731200.0000 -"Sparrow, Tree",334848000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Yellow",213504000.0000 -"Petrel, Fea's",178432000.0000 -Nightingale,99072000.0000 -"Robin, White-throated",43430400.0000 -"Goose, Egyptian",41344000.0000 -"Thrush, Wood",34432000.0000 -"Flycatcher, Spotted",23820800.0000 -"Catbird, Grey",17280000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Warbler, Blackpoll",8576000.0000 -"Thrush, Rock",8064000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, White's",2816000.0000 -Nuthatch,2176000.0000 -Dotterel,1920000.0000 -"Starling, Rose-coloured",1920000.0000 -"Thrush, Dusky",1280000.0000 -"Warbler, Blackburnian",1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Warbler, Icterine",1024000.0000 -"Warbler, Paddyfield",1024000.0000 -"Goose, Red-breasted",896000.0000 -"Warbler, Sykes's",768000.0000 -Chiffchaff,640000.0000 -"Bonelli's, Eastern",512000.0000 -"Warbler, Arctic",512000.0000 -"Warbler, Radde's",384000.0000 -"Warbler, Green",256000.0000 -Jackdaw,128000.0000 -"Martin, House",128000.0000 -Skylark,128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Barred",128000.0000 -"Warbler, Fan-tailed",128000.0000 -"Warbler, Marmora's",128000.0000 -"Warbler, Subalpine",128000.0000 -"Black-headed, Great",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Goldcrest,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -Puffin,0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Spotted, Lesser",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Pacific",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Hermit",0.0000 -"Tit, Bearded",0.0000 -"Tit, Willow",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index b81c86d179..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Logical Usage (Bytes)" -"Cowbird, Brown-headed",162670858508800.0000 -Chaffinch,157675908224000.0000 -"Redstart, American",94668546688000.0000 -"Warbler, Magnolia",80363333107200.0000 -Bobolink,55029891456000.0000 -"Waterthrush, Northern",50638493824000.0000 -"Martin, Sand",50376874368000.0000 -"Warbler, Black-and-white",27267411328000.0000 -"Bunting, Indigo",15545744473600.0000 -"Dowitcher, Short-billed",14837865497600.0000 -"Warbler, Tennessee",13832863872000.0000 -"Tern, Caspian",10697016486400.0000 -"Parula, Northern",9219031795200.0000 -"Kestrel, Lesser",8972348544000.0000 -"Scaup, Lesser",8639812684800.0000 -"Finch, Citril",6401920512000.0000 -"Bunting, Rock",5392457907200.0000 -"Bunting, Lapland",2698908288000.0000 -"Bunting, Rustic",2486089958400.0000 -"Sparrow, Lark",2009530739200.0000 -"Bunting, Pine",1733983590400.0000 -Fulmar,1507261952000.0000 -Blackbird,1340020864000.0000 -"Swift, Little",1336851827200.0000 -"Chiffchaff, Iberian",635384230400.0000 -"Sparrow, Song",601996633600.0000 -"Grouse, Red",575703936000.0000 -Goldfinch,501555571200.0000 -"Pipit, Red-throated",297982336000.0000 -"Tanager, Summer",295327449600.0000 -Twite,278880576000.0000 -"Redpoll, Arctic",267434624000.0000 -"Redpoll, Mealy",252261286400.0000 -"Pipit, Tree",208223232000.0000 -"Lark, Calandra",143814592000.0000 -Bittern,129129152000.0000 -Greenfinch,127649331200.0000 -"Pipit, Olive-backed",118578649600.0000 -Bullfinch,108903206400.0000 -Dunlin,91059212800.0000 -"Rosefinch, Common",77630630400.0000 -"Finch, Trumpeter",73587315200.0000 -Dunnock,66818816000.0000 -"Bunting, Corn",43913408000.0000 -"Wagtail, Pied",22184281600.0000 -"Pipit, Tawny",16181068800.0000 -Linnet,14152985600.0000 -"Sandpiper, Purple",9106218666.5000 -"Bluetail, Red-flanked",6953753600.0000 -"Shearwater, Macaronesian",3000576000.0000 -"Flycatcher, Taiga",2518976000.0000 -Fieldfare,1986227200.0000 -"Stonechat, Siberian",1615104000.0000 -"Shearwater, Balearic",821760000.0000 -"Thrush, Red-throated",487731200.0000 -"Sparrow, Tree",334848000.0000 -"Flycatcher, Brown",278912000.0000 -"Wagtail, Yellow",213504000.0000 -"Petrel, Fea's",178432000.0000 -Nightingale,99072000.0000 -"Robin, White-throated",43430400.0000 -"Goose, Egyptian",41344000.0000 -"Thrush, Wood",34432000.0000 -"Flycatcher, Spotted",23820800.0000 -"Catbird, Grey",17280000.0000 -"Sandpiper, Baird's",9344000.0000 -"Thrush, Eyebrowed",8576000.0000 -"Warbler, Blackpoll",8576000.0000 -"Thrush, Rock",8064000.0000 -"Warbler, Cetti's",6272000.0000 -"Nuthatch, Red-breasted",4992000.0000 -Veery,3456000.0000 -"Thrush, White's",2816000.0000 -Nuthatch,2176000.0000 -Dotterel,1920000.0000 -"Starling, Rose-coloured",1920000.0000 -"Thrush, Dusky",1280000.0000 -"Warbler, Blackburnian",1203200.0000 -"Desert, Asian",1152000.0000 -"Warbler, Reed",1152000.0000 -"Warbler, Icterine",1024000.0000 -"Warbler, Paddyfield",1024000.0000 -"Goose, Red-breasted",896000.0000 -"Warbler, Sykes's",768000.0000 -Chiffchaff,640000.0000 -"Bonelli's, Eastern",512000.0000 -"Warbler, Arctic",512000.0000 -"Warbler, Radde's",384000.0000 -"Warbler, Green",256000.0000 -Jackdaw,128000.0000 -"Martin, House",128000.0000 -Skylark,128000.0000 -"Tit, Long-tailed",128000.0000 -"Warbler, Barred",128000.0000 -"Warbler, Fan-tailed",128000.0000 -"Warbler, Marmora's",128000.0000 -"Warbler, Subalpine",128000.0000 -"Black-headed, Great",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Dowitcher, Long-billed",0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Goldcrest,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightjar,0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -Puffin,0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Spotted, Lesser",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Pacific",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Hermit",0.0000 -"Tit, Bearded",0.0000 -"Tit, Willow",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Savi's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 34380bca00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" -2018-12-27,161970387072000,167719861120000,94668546688000,71336820096000,55029891456000,50638493824000,50376874368000,27267411328000,15702943232000,15153054208000,13832863872000,14713539456000,9218944768000,8965095552000,8641234944000,6401920512000,5937893248000,2698908288000,2264437504000,1952837504000,1733996800000,1507901184000,339780224000,1304879616000,632371200000,603500928000,575703936000,474718208000,297982336000,297141376000,230846848000,256112512000,244283904000,208223232000,173944704000,129027072000,139109120000,117884160000,97863680000,87247488000,96234112000,108636160000,66818816000,43912832000,23900800000,9422592000,18692736000,0,6572160000,3000576000,2500864000,1986688000,1615104000,1642112000,184064000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,34048000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,162119939712000,167789414016000,94668546688000,77361961984000,55029891456000,50638493824000,50376874368000,27267411328000,15771797504000,15153504768000,13832863872000,12472681088000,9218971392000,8966348544000,8641716736000,6401920512000,5937961216000,2698908288000,2391368576000,1986484736000,1733996800000,1507249024000,2218578560000,1522301312000,635075712000,631372672000,575703936000,474718208000,297982336000,295846144000,245742848000,260281472000,233874944000,208223232000,177120768000,129104640000,138835584000,118649472000,97863936000,87256320000,96234112000,128210944000,66818816000,43912960000,23900800000,14527872000,18692736000,0,6572160000,3000576000,2500864000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,34048000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,162292553216000,167857545344000,94668546688000,78972773632000,55029891456000,50638493824000,50376874368000,27267411328000,15449285376000,15161905024000,13832863872000,12238492160000,9219024768000,8966348544000,8644306560000,6401920512000,5936964864000,2698908288000,2488428672000,2049042048000,1733996800000,1507249280000,1754258944000,1715639680000,637568128000,633516416000,575703936000,474718208000,297982336000,295037568000,263454848000,256227456000,267489664000,208223232000,178164736000,129104640000,138835584000,118649472000,97863936000,91802240000,96234112000,141851776000,66818816000,43913088000,23900800000,16625536000,18692736000,20063232000,6572160000,3000576000,2501504000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,34048000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,162411179264000,167913174144000,94668546688000,82335986304000,55029891456000,50638493824000,50376874368000,27267411328000,15470170880000,15166902528000,13832863872000,12078699776000,9219024768000,8966348544000,8644697600000,6401920512000,5936318080000,2698908288000,2488428672000,2067007872000,1733996800000,1507249536000,2039249152000,1715639680000,640210176000,633521920000,575703936000,474718208000,297982336000,295037568000,277430144000,263643776000,253159424000,208223232000,178164736000,129104640000,137997440000,118649472000,97864320000,91831296000,93119744000,141851776000,66818816000,43913216000,23900800000,17486336000,18692736000,6914816000,6572160000,3000576000,2501504000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1664000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,162592092800000,156896478080000,94668546688000,84886444800000,55029891456000,50638493824000,50376874368000,27267411328000,15482173184000,15172477696000,13832863872000,17173988480000,9219024768000,8966340608000,8644679808000,6401920512000,5936241792000,2698908288000,2485751040000,2202024704000,1733996800000,1507249792000,2326958080000,1655432960000,640387712000,633514368000,575703936000,467375104000,297982336000,295037568000,286533888000,266416768000,248449920000,208223232000,178164736000,129104640000,121020032000,118649472000,97864320000,91836928000,77647616000,141851776000,66818816000,43913344000,23900800000,16938112000,16437504000,6914816000,6572160000,3000576000,2490624000,1986688000,1615104000,1642112000,521472000,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1536000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,162782021504000,152464707968000,94668546688000,85368429696000,55029891456000,50638493824000,50376874368000,27267411328000,15482173184000,15171164032000,13832863872000,14641606016000,9219074304000,8977937792000,8644679808000,6401920512000,4858566912000,2698908288000,2485625600000,2154197888000,1733996800000,1507249920000,2510009088000,1579033984000,638805248000,590949120000,575703936000,455522560000,297982336000,295034880000,286533888000,263296256000,250212096000,208223232000,110517248000,129104640000,118758272000,118649472000,97864320000,91868672000,68342400000,14694144000,66818816000,43913472000,26253312000,17168640000,16437504000,6914816000,6572160000,3000576000,2467328000,1986688000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,2048000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1536000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,162938798080000,152523825536000,94668546688000,82122290176000,55029891456000,50638493824000,50376874368000,27267411328000,15482173184000,15156379904000,13832863872000,8085082240000,9219074304000,8977937792000,8635160192000,6401920512000,4859111040000,2698908288000,2480185088000,2039886592000,1733996800000,1507117312000,641892992000,1081856128000,647182336000,553673472000,575703936000,480148608000,297982336000,295034880000,299565824000,267783296000,241470336000,208223232000,110517248000,129104640000,118663552000,118649472000,97835520000,91883648000,65240448000,14694144000,66818816000,43913600000,17302912000,17168640000,8721664000,6914816000,6572160000,3000576000,2399232000,1986688000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,28288000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1536000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,163074504320000,147763957376000,94668546688000,81033944448000,55029891456000,50638493824000,50376874368000,27267411328000,15482548096000,14191799040000,13832863872000,7385004544000,9219050752000,8979042688000,8634912256000,6401920512000,4849261312000,2698908288000,2537132160000,1986328960000,1733952768000,1507117568000,454935936000,940511616000,641761920000,572017152000,575703936000,533945344000,297982336000,295034880000,299565824000,271555584000,261224192000,208223232000,110517248000,129104640000,118663552000,118649472000,134670208000,91886720000,65240448000,14694144000,66818816000,43913728000,18706048000,17168640000,8721664000,6914816000,5099008000,3000576000,2609280000,1985152000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,18560000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,256000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,163190753920000,147868405376000,94668546688000,80837728256000,55029891456000,50638493824000,50376874368000,27267411328000,15527354752000,14026529408000,13832863872000,5711420288000,9219064064000,8979042688000,8633369472000,6401920512000,4837305472000,2698908288000,2608393088000,1995541632000,1733952768000,1507117824000,519761152000,937147392000,651415936000,588576384000,575703936000,570769536000,297982336000,295034880000,299565824000,281917568000,261224192000,208223232000,110517248000,129104640000,118663552000,118649472000,134670208000,91868800000,65197824000,14694144000,66818816000,43913856000,20371968000,17180160000,8721664000,6914816000,9945728000,3000576000,2609280000,1985152000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,4352000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,256000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,163336355200000,147961713280000,94668546688000,79376951680000,55029891456000,50638493824000,50376874368000,27267411328000,15606825344000,14024938368000,13832863872000,2469650816000,9219064064000,8979042688000,8633369472000,6401920512000,4834955136000,2698908288000,2631149184000,1661955456000,1733952768000,1507118080000,594784000000,916075904000,589063936000,579323904000,575703936000,608921728000,297982336000,295034752000,299565824000,287111552000,261224192000,208223232000,110517248000,129427328000,125946624000,118706560000,134671616000,93110016000,52815488000,14694144000,66818816000,43913984000,19704576000,18124160000,7718912000,6914816000,8487680000,3000576000,2609280000,1985152000,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,384000,41344000,34432000,0,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,256000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index bbe4ba4217..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" -2018-12,162277230412800,165635294540800,94668546688000,78978797363200,55029891456000,50638493824000,50376874368000,27267411328000,15575274035200,15161568844800,13832863872000,13735480192000,9218998092800,8966096358400,8643327129600,6401920512000,5937075840000,2698908288000,2423682892800,2051479372800,1733996800000,1507379763200,1735764992000,1582778649600,637122585600,627085260800,575703936000,473249587200,297982336000,295620044800,260801715200,260536396800,249451571200,208223232000,177111936000,129089126400,135159552000,118496409600,97864038400,89994854400,91893939200,132480486400,66818816000,43913088000,23900800000,15000089600,18241689600,11297621333,6572160000,3000576000,2499072000,1986688000,1615104000,1642112000,453990400,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,31744000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1638400,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,163064486604800,149716521907200,94668546688000,81747868851200,55029891456000,50638493824000,50376874368000,27267411328000,15516214912000,14514162150400,13832863872000,7658552780800,9219065497600,8978600729600,8636298240000,6401920512000,4847839974400,2698908288000,2548497024000,1967582105600,1733970380800,1507144140800,944276736000,1090925004800,633645875200,576908006400,575703936000,529861555200,297982336000,295034854400,296959436800,274332851200,255071001600,208223232000,110517248000,129169177600,120139110400,118660889600,119942374400,92123571200,63367321600,14694144000,66818816000,43913728000,20467763200,17362048000,10064281600,6914816000,7335347200,3000576000,2538880000,1985766400,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,716800,41344000,34432000,15897600,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,768000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index ee4d0df828..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" -"2018 Q4",162277230412800,165635294540800,94668546688000,78978797363200,55029891456000,50638493824000,50376874368000,27267411328000,15575274035200,15161568844800,13832863872000,13735480192000,9218998092800,8966096358400,8643327129600,6401920512000,5937075840000,2698908288000,2423682892800,2051479372800,1733996800000,1507379763200,1735764992000,1582778649600,637122585600,627085260800,575703936000,473249587200,297982336000,295620044800,260801715200,260536396800,249451571200,208223232000,177111936000,129089126400,135159552000,118496409600,97864038400,89994854400,91893939200,132480486400,66818816000,43913088000,23900800000,15000089600,18241689600,11297621333,6572160000,3000576000,2499072000,1986688000,1615104000,1642112000,453990400,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,31744000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1638400,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",163064486604800,149716521907200,94668546688000,81747868851200,55029891456000,50638493824000,50376874368000,27267411328000,15516214912000,14514162150400,13832863872000,7658552780800,9219065497600,8978600729600,8636298240000,6401920512000,4847839974400,2698908288000,2548497024000,1967582105600,1733970380800,1507144140800,944276736000,1090925004800,633645875200,576908006400,575703936000,529861555200,297982336000,295034854400,296959436800,274332851200,255071001600,208223232000,110517248000,129169177600,120139110400,118660889600,119942374400,92123571200,63367321600,14694144000,66818816000,43913728000,20467763200,17362048000,10064281600,6914816000,7335347200,3000576000,2538880000,1985766400,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,716800,41344000,34432000,15897600,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,768000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 5aa1c80673..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Cowbird, Brown-headed] Logical Usage (Bytes)","[Chaffinch] Logical Usage (Bytes)","[Redstart, American] Logical Usage (Bytes)","[Warbler, Magnolia] Logical Usage (Bytes)","[Bobolink] Logical Usage (Bytes)","[Waterthrush, Northern] Logical Usage (Bytes)","[Martin, Sand] Logical Usage (Bytes)","[Warbler, Black-and-white] Logical Usage (Bytes)","[Bunting, Indigo] Logical Usage (Bytes)","[Dowitcher, Short-billed] Logical Usage (Bytes)","[Warbler, Tennessee] Logical Usage (Bytes)","[Tern, Caspian] Logical Usage (Bytes)","[Parula, Northern] Logical Usage (Bytes)","[Kestrel, Lesser] Logical Usage (Bytes)","[Scaup, Lesser] Logical Usage (Bytes)","[Finch, Citril] Logical Usage (Bytes)","[Bunting, Rock] Logical Usage (Bytes)","[Bunting, Lapland] Logical Usage (Bytes)","[Bunting, Rustic] Logical Usage (Bytes)","[Sparrow, Lark] Logical Usage (Bytes)","[Bunting, Pine] Logical Usage (Bytes)","[Fulmar] Logical Usage (Bytes)","[Blackbird] Logical Usage (Bytes)","[Swift, Little] Logical Usage (Bytes)","[Chiffchaff, Iberian] Logical Usage (Bytes)","[Sparrow, Song] Logical Usage (Bytes)","[Grouse, Red] Logical Usage (Bytes)","[Goldfinch] Logical Usage (Bytes)","[Pipit, Red-throated] Logical Usage (Bytes)","[Tanager, Summer] Logical Usage (Bytes)","[Twite] Logical Usage (Bytes)","[Redpoll, Arctic] Logical Usage (Bytes)","[Redpoll, Mealy] Logical Usage (Bytes)","[Pipit, Tree] Logical Usage (Bytes)","[Lark, Calandra] Logical Usage (Bytes)","[Bittern] Logical Usage (Bytes)","[Greenfinch] Logical Usage (Bytes)","[Pipit, Olive-backed] Logical Usage (Bytes)","[Bullfinch] Logical Usage (Bytes)","[Dunlin] Logical Usage (Bytes)","[Rosefinch, Common] Logical Usage (Bytes)","[Finch, Trumpeter] Logical Usage (Bytes)","[Dunnock] Logical Usage (Bytes)","[Bunting, Corn] Logical Usage (Bytes)","[Wagtail, Pied] Logical Usage (Bytes)","[Pipit, Tawny] Logical Usage (Bytes)","[Linnet] Logical Usage (Bytes)","[Sandpiper, Purple] Logical Usage (Bytes)","[Bluetail, Red-flanked] Logical Usage (Bytes)","[Shearwater, Macaronesian] Logical Usage (Bytes)","[Flycatcher, Taiga] Logical Usage (Bytes)","[Fieldfare] Logical Usage (Bytes)","[Stonechat, Siberian] Logical Usage (Bytes)","[Shearwater, Balearic] Logical Usage (Bytes)","[Thrush, Red-throated] Logical Usage (Bytes)","[Sparrow, Tree] Logical Usage (Bytes)","[Flycatcher, Brown] Logical Usage (Bytes)","[Wagtail, Yellow] Logical Usage (Bytes)","[Petrel, Fea's] Logical Usage (Bytes)","[Nightingale] Logical Usage (Bytes)","[Robin, White-throated] Logical Usage (Bytes)","[Goose, Egyptian] Logical Usage (Bytes)","[Thrush, Wood] Logical Usage (Bytes)","[Flycatcher, Spotted] Logical Usage (Bytes)","[Catbird, Grey] Logical Usage (Bytes)","[Sandpiper, Baird's] Logical Usage (Bytes)","[Thrush, Eyebrowed] Logical Usage (Bytes)","[Warbler, Blackpoll] Logical Usage (Bytes)","[Thrush, Rock] Logical Usage (Bytes)","[Warbler, Cetti's] Logical Usage (Bytes)","[Nuthatch, Red-breasted] Logical Usage (Bytes)","[Veery] Logical Usage (Bytes)","[Thrush, White's] Logical Usage (Bytes)","[Nuthatch] Logical Usage (Bytes)","[Dotterel] Logical Usage (Bytes)","[Starling, Rose-coloured] Logical Usage (Bytes)","[Thrush, Dusky] Logical Usage (Bytes)","[Warbler, Blackburnian] Logical Usage (Bytes)","[Desert, Asian] Logical Usage (Bytes)","[Warbler, Reed] Logical Usage (Bytes)","[Warbler, Icterine] Logical Usage (Bytes)","[Warbler, Paddyfield] Logical Usage (Bytes)","[Goose, Red-breasted] Logical Usage (Bytes)","[Warbler, Sykes's] Logical Usage (Bytes)","[Chiffchaff] Logical Usage (Bytes)","[Bonelli's, Eastern] Logical Usage (Bytes)","[Warbler, Arctic] Logical Usage (Bytes)","[Warbler, Radde's] Logical Usage (Bytes)","[Warbler, Green] Logical Usage (Bytes)","[Jackdaw] Logical Usage (Bytes)","[Martin, House] Logical Usage (Bytes)","[Skylark] Logical Usage (Bytes)","[Tit, Long-tailed] Logical Usage (Bytes)","[Warbler, Barred] Logical Usage (Bytes)","[Warbler, Fan-tailed] Logical Usage (Bytes)","[Warbler, Marmora's] Logical Usage (Bytes)","[Warbler, Subalpine] Logical Usage (Bytes)","[Black-headed, Great] Logical Usage (Bytes)","[Crow, Hooded] Logical Usage (Bytes)","[Cuckoo] Logical Usage (Bytes)","[Cuckoo, Black-billed] Logical Usage (Bytes)","[Dowitcher, Long-billed] Logical Usage (Bytes)","[Falcon, Eleonora's] Logical Usage (Bytes)","[Falcon, Red-footed] Logical Usage (Bytes)","[Goldcrest] Logical Usage (Bytes)","[Guillemot, Black] Logical Usage (Bytes)","[Guillemot, Brunnich's] Logical Usage (Bytes)","[Gull, Audouin's] Logical Usage (Bytes)","[Gull, Bonaparte's] Logical Usage (Bytes)","[Gull, Franklin's] Logical Usage (Bytes)","[Gull, Glaucous] Logical Usage (Bytes)","[Gull, Herring] Logical Usage (Bytes)","[Gull, Sabine's] Logical Usage (Bytes)","[Gull, Slaty-backed] Logical Usage (Bytes)","[Gull, Yellow-legged] Logical Usage (Bytes)","[Kingfisher] Logical Usage (Bytes)","[Kingfisher, Belted] Logical Usage (Bytes)","[Merlin] Logical Usage (Bytes)","[Nighthawk, Common] Logical Usage (Bytes)","[Nightjar] Logical Usage (Bytes)","[Osprey] Logical Usage (Bytes)","[Owl, Little] Logical Usage (Bytes)","[Owl, Scops] Logical Usage (Bytes)","[Owl, Short-eared] Logical Usage (Bytes)","[Owl, Snowy] Logical Usage (Bytes)","[Phalarope, Red-necked] Logical Usage (Bytes)","[Phalarope, Wilson's] Logical Usage (Bytes)","[Puffin] Logical Usage (Bytes)","[Redshank, Spotted] Logical Usage (Bytes)","[Robin, Rufous-tailed] Logical Usage (Bytes)","[Sandpiper, Buff-breasted] Logical Usage (Bytes)","[Sandpiper, Western] Logical Usage (Bytes)","[Sandpiper, White-rumped] Logical Usage (Bytes)","[Shrike, Brown] Logical Usage (Bytes)","[Skua, Arctic] Logical Usage (Bytes)","[Skua, Pomarine] Logical Usage (Bytes)","[Smew] Logical Usage (Bytes)","[Snipe] Logical Usage (Bytes)","[Snipe, Great] Logical Usage (Bytes)","[Spotted, Lesser] Logical Usage (Bytes)","[Swift] Logical Usage (Bytes)","[Swift, Chimney] Logical Usage (Bytes)","[Swift, Pacific] Logical Usage (Bytes)","[Tern, Black] Logical Usage (Bytes)","[Tern, Cabot's] Logical Usage (Bytes)","[Tern, Common] Logical Usage (Bytes)","[Tern, Gull-billed] Logical Usage (Bytes)","[Thrush, Hermit] Logical Usage (Bytes)","[Tit, Bearded] Logical Usage (Bytes)","[Tit, Willow] Logical Usage (Bytes)","[Warbler, Hooded] Logical Usage (Bytes)","[Warbler, Savi's] Logical Usage (Bytes)","[Woodcock] Logical Usage (Bytes)","[Woodpecker, Green] Logical Usage (Bytes)","[Woodpigeon] Logical Usage (Bytes)","[Yellowthroat, Common] Logical Usage (Bytes)" -2018,162277230412800,165635294540800,94668546688000,78978797363200,55029891456000,50638493824000,50376874368000,27267411328000,15575274035200,15161568844800,13832863872000,13735480192000,9218998092800,8966096358400,8643327129600,6401920512000,5937075840000,2698908288000,2423682892800,2051479372800,1733996800000,1507379763200,1735764992000,1582778649600,637122585600,627085260800,575703936000,473249587200,297982336000,295620044800,260801715200,260536396800,249451571200,208223232000,177111936000,129089126400,135159552000,118496409600,97864038400,89994854400,91893939200,132480486400,66818816000,43913088000,23900800000,15000089600,18241689600,11297621333,6572160000,3000576000,2499072000,1986688000,1615104000,1642112000,453990400,334848000,278912000,213504000,178432000,99072000,86144000,41344000,34432000,31744000,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,1638400,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,163064486604800,149716521907200,94668546688000,81747868851200,55029891456000,50638493824000,50376874368000,27267411328000,15516214912000,14514162150400,13832863872000,7658552780800,9219065497600,8978600729600,8636298240000,6401920512000,4847839974400,2698908288000,2548497024000,1967582105600,1733970380800,1507144140800,944276736000,1090925004800,633645875200,576908006400,575703936000,529861555200,297982336000,295034854400,296959436800,274332851200,255071001600,208223232000,110517248000,129169177600,120139110400,118660889600,119942374400,92123571200,63367321600,14694144000,66818816000,43913728000,20467763200,17362048000,10064281600,6914816000,7335347200,3000576000,2538880000,1985766400,1615104000,1408000,521472000,334848000,278912000,213504000,178432000,99072000,716800,41344000,34432000,15897600,17280000,9344000,8576000,8576000,8064000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1280000,768000,1152000,1152000,1024000,1024000,896000,768000,640000,512000,512000,384000,256000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 739852106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota Utilization: Logical (%)" -Chaffinch,525.5863 -"Martin, Sand",503.7686 -"Warbler, Magnolia",401.8166 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.7235 -"Scaup, Lesser",86.3981 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -Bobolink,36.6866 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",2.5415 -Fulmar,1.2994 -"Grouse, Red",0.5757 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 739852106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota Utilization: Logical (%)" -Chaffinch,525.5863 -"Martin, Sand",503.7686 -"Warbler, Magnolia",401.8166 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.7235 -"Scaup, Lesser",86.3981 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -Bobolink,36.6866 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",2.5415 -Fulmar,1.2994 -"Grouse, Red",0.5757 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 739852106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota Utilization: Logical (%)" -Chaffinch,525.5863 -"Martin, Sand",503.7686 -"Warbler, Magnolia",401.8166 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.7235 -"Scaup, Lesser",86.3981 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -Bobolink,36.6866 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",2.5415 -Fulmar,1.2994 -"Grouse, Red",0.5757 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 739852106c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota Utilization: Logical (%)" -Chaffinch,525.5863 -"Martin, Sand",503.7686 -"Warbler, Magnolia",401.8166 -"Redstart, American",94.6685 -"Parula, Northern",92.1903 -"Kestrel, Lesser",89.7235 -"Scaup, Lesser",86.3981 -"Cowbird, Brown-headed",81.3354 -"Warbler, Black-and-white",54.5348 -"Waterthrush, Northern",50.6385 -Bobolink,36.6866 -"Warbler, Tennessee",27.6657 -"Bunting, Corn",4.3913 -"Chiffchaff, Iberian",2.5415 -Fulmar,1.2994 -"Grouse, Red",0.5757 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index a12e5dc333..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" -2018-12-27,559.0662,503.7686,356.6841,94.6685,92.1894,89.6509,86.4123,80.9852,54.5348,50.6385,36.6866,27.6657,4.3913,2.5295,1.2999,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,559.2980,503.7686,386.8098,94.6685,92.1897,89.6635,86.4171,81.0600,54.5348,50.6385,36.6866,27.6657,4.3913,2.5403,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,559.5251,503.7686,394.8638,94.6685,92.1902,89.6635,86.4430,81.1463,54.5348,50.6385,36.6866,27.6657,4.3913,2.5503,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,559.7106,503.7686,411.6799,94.6685,92.1902,89.6635,86.4469,81.2056,54.5348,50.6385,36.6866,27.6657,4.3913,2.5608,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,522.9882,503.7686,424.4322,94.6685,92.1902,89.6634,86.4468,81.2960,54.5348,50.6385,36.6866,27.6657,4.3913,2.5616,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,508.2157,503.7686,426.8421,94.6685,92.1907,89.7794,86.4468,81.3910,54.5348,50.6385,36.6866,27.6657,4.3913,2.5552,1.2994,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,508.4127,503.7686,410.6114,94.6685,92.1907,89.7794,86.3516,81.4694,54.5348,50.6385,36.6866,27.6657,4.3914,2.5887,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,492.5465,503.7686,405.1697,94.6685,92.1905,89.7904,86.3491,81.5373,54.5348,50.6385,36.6866,27.6657,4.3914,2.5670,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,492.8947,503.7686,404.1886,94.6685,92.1906,89.7904,86.3337,81.5954,54.5348,50.6385,36.6866,27.6657,4.3914,2.6057,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,493.2057,503.7686,396.8847,94.6685,92.1906,89.7904,86.3337,81.6682,54.5348,50.6385,36.6866,27.6657,4.3914,2.3563,1.2992,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 4e98ae7141..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" -2018-12,552.1176,503.7686,394.8939,94.6685,92.1900,89.6609,86.4332,81.1386,54.5348,50.6385,36.6866,27.6657,4.3913,2.5485,1.2995,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,499.0551,503.7686,408.7393,94.6685,92.1906,89.7860,86.3630,81.5322,54.5348,50.6385,36.6866,27.6657,4.3914,2.5346,1.2993,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index b6d66f3d1d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" -"2018 Q4",552.1176,503.7686,394.8939,94.6685,92.1900,89.6609,86.4332,81.1386,54.5348,50.6385,36.6866,27.6657,4.3913,2.5485,1.2995,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",499.0551,503.7686,408.7393,94.6685,92.1906,89.7860,86.3630,81.5322,54.5348,50.6385,36.6866,27.6657,4.3914,2.5346,1.2993,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 27ca96e060..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Chaffinch] Quota Utilization: Logical (%)","[Martin, Sand] Quota Utilization: Logical (%)","[Warbler, Magnolia] Quota Utilization: Logical (%)","[Redstart, American] Quota Utilization: Logical (%)","[Parula, Northern] Quota Utilization: Logical (%)","[Kestrel, Lesser] Quota Utilization: Logical (%)","[Scaup, Lesser] Quota Utilization: Logical (%)","[Cowbird, Brown-headed] Quota Utilization: Logical (%)","[Warbler, Black-and-white] Quota Utilization: Logical (%)","[Waterthrush, Northern] Quota Utilization: Logical (%)","[Bobolink] Quota Utilization: Logical (%)","[Warbler, Tennessee] Quota Utilization: Logical (%)","[Bunting, Corn] Quota Utilization: Logical (%)","[Chiffchaff, Iberian] Quota Utilization: Logical (%)","[Fulmar] Quota Utilization: Logical (%)","[Grouse, Red] Quota Utilization: Logical (%)","[Bittern] Quota Utilization: Logical (%)","[Black-headed, Great] Quota Utilization: Logical (%)","[Blackbird] Quota Utilization: Logical (%)","[Bluetail, Red-flanked] Quota Utilization: Logical (%)","[Bonelli's, Eastern] Quota Utilization: Logical (%)","[Bullfinch] Quota Utilization: Logical (%)","[Bunting, Indigo] Quota Utilization: Logical (%)","[Bunting, Lapland] Quota Utilization: Logical (%)","[Bunting, Pine] Quota Utilization: Logical (%)","[Bunting, Rock] Quota Utilization: Logical (%)","[Bunting, Rustic] Quota Utilization: Logical (%)","[Catbird, Grey] Quota Utilization: Logical (%)","[Chiffchaff] Quota Utilization: Logical (%)","[Crow, Hooded] Quota Utilization: Logical (%)","[Cuckoo] Quota Utilization: Logical (%)","[Cuckoo, Black-billed] Quota Utilization: Logical (%)","[Desert, Asian] Quota Utilization: Logical (%)","[Dotterel] Quota Utilization: Logical (%)","[Dowitcher, Long-billed] Quota Utilization: Logical (%)","[Dowitcher, Short-billed] Quota Utilization: Logical (%)","[Dunlin] Quota Utilization: Logical (%)","[Dunnock] Quota Utilization: Logical (%)","[Falcon, Eleonora's] Quota Utilization: Logical (%)","[Falcon, Red-footed] Quota Utilization: Logical (%)","[Fieldfare] Quota Utilization: Logical (%)","[Finch, Citril] Quota Utilization: Logical (%)","[Finch, Trumpeter] Quota Utilization: Logical (%)","[Flycatcher, Brown] Quota Utilization: Logical (%)","[Flycatcher, Spotted] Quota Utilization: Logical (%)","[Flycatcher, Taiga] Quota Utilization: Logical (%)","[Goldcrest] Quota Utilization: Logical (%)","[Goldfinch] Quota Utilization: Logical (%)","[Goose, Egyptian] Quota Utilization: Logical (%)","[Goose, Red-breasted] Quota Utilization: Logical (%)","[Greenfinch] Quota Utilization: Logical (%)","[Guillemot, Black] Quota Utilization: Logical (%)","[Guillemot, Brunnich's] Quota Utilization: Logical (%)","[Gull, Audouin's] Quota Utilization: Logical (%)","[Gull, Bonaparte's] Quota Utilization: Logical (%)","[Gull, Franklin's] Quota Utilization: Logical (%)","[Gull, Glaucous] Quota Utilization: Logical (%)","[Gull, Herring] Quota Utilization: Logical (%)","[Gull, Sabine's] Quota Utilization: Logical (%)","[Gull, Slaty-backed] Quota Utilization: Logical (%)","[Gull, Yellow-legged] Quota Utilization: Logical (%)","[Jackdaw] Quota Utilization: Logical (%)","[Kingfisher] Quota Utilization: Logical (%)","[Kingfisher, Belted] Quota Utilization: Logical (%)","[Lark, Calandra] Quota Utilization: Logical (%)","[Linnet] Quota Utilization: Logical (%)","[Martin, House] Quota Utilization: Logical (%)","[Merlin] Quota Utilization: Logical (%)","[Nighthawk, Common] Quota Utilization: Logical (%)","[Nightingale] Quota Utilization: Logical (%)","[Nightjar] Quota Utilization: Logical (%)","[Nuthatch] Quota Utilization: Logical (%)","[Nuthatch, Red-breasted] Quota Utilization: Logical (%)","[Osprey] Quota Utilization: Logical (%)","[Owl, Little] Quota Utilization: Logical (%)","[Owl, Scops] Quota Utilization: Logical (%)","[Owl, Short-eared] Quota Utilization: Logical (%)","[Owl, Snowy] Quota Utilization: Logical (%)","[Petrel, Fea's] Quota Utilization: Logical (%)","[Phalarope, Red-necked] Quota Utilization: Logical (%)","[Phalarope, Wilson's] Quota Utilization: Logical (%)","[Pipit, Olive-backed] Quota Utilization: Logical (%)","[Pipit, Red-throated] Quota Utilization: Logical (%)","[Pipit, Tawny] Quota Utilization: Logical (%)","[Pipit, Tree] Quota Utilization: Logical (%)","[Puffin] Quota Utilization: Logical (%)","[Redpoll, Arctic] Quota Utilization: Logical (%)","[Redpoll, Mealy] Quota Utilization: Logical (%)","[Redshank, Spotted] Quota Utilization: Logical (%)","[Robin, Rufous-tailed] Quota Utilization: Logical (%)","[Robin, White-throated] Quota Utilization: Logical (%)","[Rosefinch, Common] Quota Utilization: Logical (%)","[Sandpiper, Baird's] Quota Utilization: Logical (%)","[Sandpiper, Buff-breasted] Quota Utilization: Logical (%)","[Sandpiper, Purple] Quota Utilization: Logical (%)","[Sandpiper, Western] Quota Utilization: Logical (%)","[Sandpiper, White-rumped] Quota Utilization: Logical (%)","[Shearwater, Balearic] Quota Utilization: Logical (%)","[Shearwater, Macaronesian] Quota Utilization: Logical (%)","[Shrike, Brown] Quota Utilization: Logical (%)","[Skua, Arctic] Quota Utilization: Logical (%)","[Skua, Pomarine] Quota Utilization: Logical (%)","[Skylark] Quota Utilization: Logical (%)","[Smew] Quota Utilization: Logical (%)","[Snipe] Quota Utilization: Logical (%)","[Snipe, Great] Quota Utilization: Logical (%)","[Sparrow, Lark] Quota Utilization: Logical (%)","[Sparrow, Song] Quota Utilization: Logical (%)","[Sparrow, Tree] Quota Utilization: Logical (%)","[Spotted, Lesser] Quota Utilization: Logical (%)","[Starling, Rose-coloured] Quota Utilization: Logical (%)","[Stonechat, Siberian] Quota Utilization: Logical (%)","[Swift] Quota Utilization: Logical (%)","[Swift, Chimney] Quota Utilization: Logical (%)","[Swift, Little] Quota Utilization: Logical (%)","[Swift, Pacific] Quota Utilization: Logical (%)","[Tanager, Summer] Quota Utilization: Logical (%)","[Tern, Black] Quota Utilization: Logical (%)","[Tern, Cabot's] Quota Utilization: Logical (%)","[Tern, Caspian] Quota Utilization: Logical (%)","[Tern, Common] Quota Utilization: Logical (%)","[Tern, Gull-billed] Quota Utilization: Logical (%)","[Thrush, Dusky] Quota Utilization: Logical (%)","[Thrush, Eyebrowed] Quota Utilization: Logical (%)","[Thrush, Hermit] Quota Utilization: Logical (%)","[Thrush, Red-throated] Quota Utilization: Logical (%)","[Thrush, Rock] Quota Utilization: Logical (%)","[Thrush, White's] Quota Utilization: Logical (%)","[Thrush, Wood] Quota Utilization: Logical (%)","[Tit, Bearded] Quota Utilization: Logical (%)","[Tit, Long-tailed] Quota Utilization: Logical (%)","[Tit, Willow] Quota Utilization: Logical (%)","[Twite] Quota Utilization: Logical (%)","[Veery] Quota Utilization: Logical (%)","[Wagtail, Pied] Quota Utilization: Logical (%)","[Wagtail, Yellow] Quota Utilization: Logical (%)","[Warbler, Arctic] Quota Utilization: Logical (%)","[Warbler, Barred] Quota Utilization: Logical (%)","[Warbler, Blackburnian] Quota Utilization: Logical (%)","[Warbler, Blackpoll] Quota Utilization: Logical (%)","[Warbler, Cetti's] Quota Utilization: Logical (%)","[Warbler, Fan-tailed] Quota Utilization: Logical (%)","[Warbler, Green] Quota Utilization: Logical (%)","[Warbler, Hooded] Quota Utilization: Logical (%)","[Warbler, Icterine] Quota Utilization: Logical (%)","[Warbler, Marmora's] Quota Utilization: Logical (%)","[Warbler, Paddyfield] Quota Utilization: Logical (%)","[Warbler, Radde's] Quota Utilization: Logical (%)","[Warbler, Reed] Quota Utilization: Logical (%)","[Warbler, Savi's] Quota Utilization: Logical (%)","[Warbler, Subalpine] Quota Utilization: Logical (%)","[Warbler, Sykes's] Quota Utilization: Logical (%)","[Woodcock] Quota Utilization: Logical (%)","[Woodpecker, Green] Quota Utilization: Logical (%)","[Woodpigeon] Quota Utilization: Logical (%)","[Yellowthroat, Common] Quota Utilization: Logical (%)" -2018,552.1176,503.7686,394.8939,94.6685,92.1900,89.6609,86.4332,81.1386,54.5348,50.6385,36.6866,27.6657,4.3913,2.5485,1.2995,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,499.0551,503.7686,408.7393,94.6685,92.1906,89.7860,86.3630,81.5322,54.5348,50.6385,36.6866,27.6657,4.3914,2.5346,1.2993,0.5757,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 4be12805bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Physical Usage (Bytes)" -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bobolink,0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Corn",0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -Chiffchaff,0.0000 -"Chiffchaff, Iberian",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Grouse, Red",0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -"Martin, Sand",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Parula, Northern",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Redstart, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -"Warbler, Tennessee",0.0000 -"Waterthrush, Northern",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 4be12805bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Physical Usage (Bytes)" -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bobolink,0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Corn",0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -Chiffchaff,0.0000 -"Chiffchaff, Iberian",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Grouse, Red",0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -"Martin, Sand",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Parula, Northern",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Redstart, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -"Warbler, Tennessee",0.0000 -"Waterthrush, Northern",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 4be12805bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Physical Usage (Bytes)" -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bobolink,0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Corn",0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -Chiffchaff,0.0000 -"Chiffchaff, Iberian",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Grouse, Red",0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -"Martin, Sand",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Parula, Northern",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Redstart, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -"Warbler, Tennessee",0.0000 -"Waterthrush, Northern",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 4be12805bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Physical Usage (Bytes)" -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -Bobolink,0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Corn",0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chaffinch,0.0000 -Chiffchaff,0.0000 -"Chiffchaff, Iberian",0.0000 -"Cowbird, Brown-headed",0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Fulmar,0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Grouse, Red",0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -"Kestrel, Lesser",0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -"Martin, Sand",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Parula, Northern",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Redstart, American",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Scaup, Lesser",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Black-and-white",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Magnolia",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -"Warbler, Tennessee",0.0000 -"Waterthrush, Northern",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 55bae7740a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 801793a2ea..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 2d425225a6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 254797e35b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Bittern] Physical Usage (Bytes)","[Black-headed, Great] Physical Usage (Bytes)","[Blackbird] Physical Usage (Bytes)","[Bluetail, Red-flanked] Physical Usage (Bytes)","[Bobolink] Physical Usage (Bytes)","[Bonelli's, Eastern] Physical Usage (Bytes)","[Bullfinch] Physical Usage (Bytes)","[Bunting, Corn] Physical Usage (Bytes)","[Bunting, Indigo] Physical Usage (Bytes)","[Bunting, Lapland] Physical Usage (Bytes)","[Bunting, Pine] Physical Usage (Bytes)","[Bunting, Rock] Physical Usage (Bytes)","[Bunting, Rustic] Physical Usage (Bytes)","[Catbird, Grey] Physical Usage (Bytes)","[Chaffinch] Physical Usage (Bytes)","[Chiffchaff] Physical Usage (Bytes)","[Chiffchaff, Iberian] Physical Usage (Bytes)","[Cowbird, Brown-headed] Physical Usage (Bytes)","[Crow, Hooded] Physical Usage (Bytes)","[Cuckoo] Physical Usage (Bytes)","[Cuckoo, Black-billed] Physical Usage (Bytes)","[Desert, Asian] Physical Usage (Bytes)","[Dotterel] Physical Usage (Bytes)","[Dowitcher, Long-billed] Physical Usage (Bytes)","[Dowitcher, Short-billed] Physical Usage (Bytes)","[Dunlin] Physical Usage (Bytes)","[Dunnock] Physical Usage (Bytes)","[Falcon, Eleonora's] Physical Usage (Bytes)","[Falcon, Red-footed] Physical Usage (Bytes)","[Fieldfare] Physical Usage (Bytes)","[Finch, Citril] Physical Usage (Bytes)","[Finch, Trumpeter] Physical Usage (Bytes)","[Flycatcher, Brown] Physical Usage (Bytes)","[Flycatcher, Spotted] Physical Usage (Bytes)","[Flycatcher, Taiga] Physical Usage (Bytes)","[Fulmar] Physical Usage (Bytes)","[Goldcrest] Physical Usage (Bytes)","[Goldfinch] Physical Usage (Bytes)","[Goose, Egyptian] Physical Usage (Bytes)","[Goose, Red-breasted] Physical Usage (Bytes)","[Greenfinch] Physical Usage (Bytes)","[Grouse, Red] Physical Usage (Bytes)","[Guillemot, Black] Physical Usage (Bytes)","[Guillemot, Brunnich's] Physical Usage (Bytes)","[Gull, Audouin's] Physical Usage (Bytes)","[Gull, Bonaparte's] Physical Usage (Bytes)","[Gull, Franklin's] Physical Usage (Bytes)","[Gull, Glaucous] Physical Usage (Bytes)","[Gull, Herring] Physical Usage (Bytes)","[Gull, Sabine's] Physical Usage (Bytes)","[Gull, Slaty-backed] Physical Usage (Bytes)","[Gull, Yellow-legged] Physical Usage (Bytes)","[Jackdaw] Physical Usage (Bytes)","[Kestrel, Lesser] Physical Usage (Bytes)","[Kingfisher] Physical Usage (Bytes)","[Kingfisher, Belted] Physical Usage (Bytes)","[Lark, Calandra] Physical Usage (Bytes)","[Linnet] Physical Usage (Bytes)","[Martin, House] Physical Usage (Bytes)","[Martin, Sand] Physical Usage (Bytes)","[Merlin] Physical Usage (Bytes)","[Nighthawk, Common] Physical Usage (Bytes)","[Nightingale] Physical Usage (Bytes)","[Nightjar] Physical Usage (Bytes)","[Nuthatch] Physical Usage (Bytes)","[Nuthatch, Red-breasted] Physical Usage (Bytes)","[Osprey] Physical Usage (Bytes)","[Owl, Little] Physical Usage (Bytes)","[Owl, Scops] Physical Usage (Bytes)","[Owl, Short-eared] Physical Usage (Bytes)","[Owl, Snowy] Physical Usage (Bytes)","[Parula, Northern] Physical Usage (Bytes)","[Petrel, Fea's] Physical Usage (Bytes)","[Phalarope, Red-necked] Physical Usage (Bytes)","[Phalarope, Wilson's] Physical Usage (Bytes)","[Pipit, Olive-backed] Physical Usage (Bytes)","[Pipit, Red-throated] Physical Usage (Bytes)","[Pipit, Tawny] Physical Usage (Bytes)","[Pipit, Tree] Physical Usage (Bytes)","[Puffin] Physical Usage (Bytes)","[Redpoll, Arctic] Physical Usage (Bytes)","[Redpoll, Mealy] Physical Usage (Bytes)","[Redshank, Spotted] Physical Usage (Bytes)","[Redstart, American] Physical Usage (Bytes)","[Robin, Rufous-tailed] Physical Usage (Bytes)","[Robin, White-throated] Physical Usage (Bytes)","[Rosefinch, Common] Physical Usage (Bytes)","[Sandpiper, Baird's] Physical Usage (Bytes)","[Sandpiper, Buff-breasted] Physical Usage (Bytes)","[Sandpiper, Purple] Physical Usage (Bytes)","[Sandpiper, Western] Physical Usage (Bytes)","[Sandpiper, White-rumped] Physical Usage (Bytes)","[Scaup, Lesser] Physical Usage (Bytes)","[Shearwater, Balearic] Physical Usage (Bytes)","[Shearwater, Macaronesian] Physical Usage (Bytes)","[Shrike, Brown] Physical Usage (Bytes)","[Skua, Arctic] Physical Usage (Bytes)","[Skua, Pomarine] Physical Usage (Bytes)","[Skylark] Physical Usage (Bytes)","[Smew] Physical Usage (Bytes)","[Snipe] Physical Usage (Bytes)","[Snipe, Great] Physical Usage (Bytes)","[Sparrow, Lark] Physical Usage (Bytes)","[Sparrow, Song] Physical Usage (Bytes)","[Sparrow, Tree] Physical Usage (Bytes)","[Spotted, Lesser] Physical Usage (Bytes)","[Starling, Rose-coloured] Physical Usage (Bytes)","[Stonechat, Siberian] Physical Usage (Bytes)","[Swift] Physical Usage (Bytes)","[Swift, Chimney] Physical Usage (Bytes)","[Swift, Little] Physical Usage (Bytes)","[Swift, Pacific] Physical Usage (Bytes)","[Tanager, Summer] Physical Usage (Bytes)","[Tern, Black] Physical Usage (Bytes)","[Tern, Cabot's] Physical Usage (Bytes)","[Tern, Caspian] Physical Usage (Bytes)","[Tern, Common] Physical Usage (Bytes)","[Tern, Gull-billed] Physical Usage (Bytes)","[Thrush, Dusky] Physical Usage (Bytes)","[Thrush, Eyebrowed] Physical Usage (Bytes)","[Thrush, Hermit] Physical Usage (Bytes)","[Thrush, Red-throated] Physical Usage (Bytes)","[Thrush, Rock] Physical Usage (Bytes)","[Thrush, White's] Physical Usage (Bytes)","[Thrush, Wood] Physical Usage (Bytes)","[Tit, Bearded] Physical Usage (Bytes)","[Tit, Long-tailed] Physical Usage (Bytes)","[Tit, Willow] Physical Usage (Bytes)","[Twite] Physical Usage (Bytes)","[Veery] Physical Usage (Bytes)","[Wagtail, Pied] Physical Usage (Bytes)","[Wagtail, Yellow] Physical Usage (Bytes)","[Warbler, Arctic] Physical Usage (Bytes)","[Warbler, Barred] Physical Usage (Bytes)","[Warbler, Black-and-white] Physical Usage (Bytes)","[Warbler, Blackburnian] Physical Usage (Bytes)","[Warbler, Blackpoll] Physical Usage (Bytes)","[Warbler, Cetti's] Physical Usage (Bytes)","[Warbler, Fan-tailed] Physical Usage (Bytes)","[Warbler, Green] Physical Usage (Bytes)","[Warbler, Hooded] Physical Usage (Bytes)","[Warbler, Icterine] Physical Usage (Bytes)","[Warbler, Magnolia] Physical Usage (Bytes)","[Warbler, Marmora's] Physical Usage (Bytes)","[Warbler, Paddyfield] Physical Usage (Bytes)","[Warbler, Radde's] Physical Usage (Bytes)","[Warbler, Reed] Physical Usage (Bytes)","[Warbler, Savi's] Physical Usage (Bytes)","[Warbler, Subalpine] Physical Usage (Bytes)","[Warbler, Sykes's] Physical Usage (Bytes)","[Warbler, Tennessee] Physical Usage (Bytes)","[Waterthrush, Northern] Physical Usage (Bytes)","[Woodcock] Physical Usage (Bytes)","[Woodpecker, Green] Physical Usage (Bytes)","[Woodpigeon] Physical Usage (Bytes)","[Yellowthroat, Common] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index f987bae084..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -Fulmar,116000014336000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Bunting, Corn",1000001536000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index f987bae084..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -Fulmar,116000014336000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Bunting, Corn",1000001536000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index f987bae084..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -Fulmar,116000014336000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Bunting, Corn",1000001536000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index f987bae084..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"Quota: Soft Threshold (Bytes)" -"Cowbird, Brown-headed",200000000000000.0000 -Bobolink,150000001024000.0000 -Fulmar,116000014336000.0000 -"Grouse, Red",100000002048000.0000 -"Redstart, American",100000002048000.0000 -"Waterthrush, Northern",100000002048000.0000 -"Warbler, Black-and-white",50000003072000.0000 -"Warbler, Tennessee",50000003072000.0000 -Chaffinch,30000001024000.0000 -"Chiffchaff, Iberian",25000001536000.0000 -"Warbler, Magnolia",20000002048000.0000 -"Kestrel, Lesser",10000003072000.0000 -"Martin, Sand",10000003072000.0000 -"Parula, Northern",10000003072000.0000 -"Scaup, Lesser",10000003072000.0000 -"Bunting, Corn",1000001536000.0000 -Bittern,0.0000 -"Black-headed, Great",0.0000 -Blackbird,0.0000 -"Bluetail, Red-flanked",0.0000 -"Bonelli's, Eastern",0.0000 -Bullfinch,0.0000 -"Bunting, Indigo",0.0000 -"Bunting, Lapland",0.0000 -"Bunting, Pine",0.0000 -"Bunting, Rock",0.0000 -"Bunting, Rustic",0.0000 -"Catbird, Grey",0.0000 -Chiffchaff,0.0000 -"Crow, Hooded",0.0000 -Cuckoo,0.0000 -"Cuckoo, Black-billed",0.0000 -"Desert, Asian",0.0000 -Dotterel,0.0000 -"Dowitcher, Long-billed",0.0000 -"Dowitcher, Short-billed",0.0000 -Dunlin,0.0000 -Dunnock,0.0000 -"Falcon, Eleonora's",0.0000 -"Falcon, Red-footed",0.0000 -Fieldfare,0.0000 -"Finch, Citril",0.0000 -"Finch, Trumpeter",0.0000 -"Flycatcher, Brown",0.0000 -"Flycatcher, Spotted",0.0000 -"Flycatcher, Taiga",0.0000 -Goldcrest,0.0000 -Goldfinch,0.0000 -"Goose, Egyptian",0.0000 -"Goose, Red-breasted",0.0000 -Greenfinch,0.0000 -"Guillemot, Black",0.0000 -"Guillemot, Brunnich's",0.0000 -"Gull, Audouin's",0.0000 -"Gull, Bonaparte's",0.0000 -"Gull, Franklin's",0.0000 -"Gull, Glaucous",0.0000 -"Gull, Herring",0.0000 -"Gull, Sabine's",0.0000 -"Gull, Slaty-backed",0.0000 -"Gull, Yellow-legged",0.0000 -Jackdaw,0.0000 -Kingfisher,0.0000 -"Kingfisher, Belted",0.0000 -"Lark, Calandra",0.0000 -Linnet,0.0000 -"Martin, House",0.0000 -Merlin,0.0000 -"Nighthawk, Common",0.0000 -Nightingale,0.0000 -Nightjar,0.0000 -Nuthatch,0.0000 -"Nuthatch, Red-breasted",0.0000 -Osprey,0.0000 -"Owl, Little",0.0000 -"Owl, Scops",0.0000 -"Owl, Short-eared",0.0000 -"Owl, Snowy",0.0000 -"Petrel, Fea's",0.0000 -"Phalarope, Red-necked",0.0000 -"Phalarope, Wilson's",0.0000 -"Pipit, Olive-backed",0.0000 -"Pipit, Red-throated",0.0000 -"Pipit, Tawny",0.0000 -"Pipit, Tree",0.0000 -Puffin,0.0000 -"Redpoll, Arctic",0.0000 -"Redpoll, Mealy",0.0000 -"Redshank, Spotted",0.0000 -"Robin, Rufous-tailed",0.0000 -"Robin, White-throated",0.0000 -"Rosefinch, Common",0.0000 -"Sandpiper, Baird's",0.0000 -"Sandpiper, Buff-breasted",0.0000 -"Sandpiper, Purple",0.0000 -"Sandpiper, Western",0.0000 -"Sandpiper, White-rumped",0.0000 -"Shearwater, Balearic",0.0000 -"Shearwater, Macaronesian",0.0000 -"Shrike, Brown",0.0000 -"Skua, Arctic",0.0000 -"Skua, Pomarine",0.0000 -Skylark,0.0000 -Smew,0.0000 -Snipe,0.0000 -"Snipe, Great",0.0000 -"Sparrow, Lark",0.0000 -"Sparrow, Song",0.0000 -"Sparrow, Tree",0.0000 -"Spotted, Lesser",0.0000 -"Starling, Rose-coloured",0.0000 -"Stonechat, Siberian",0.0000 -Swift,0.0000 -"Swift, Chimney",0.0000 -"Swift, Little",0.0000 -"Swift, Pacific",0.0000 -"Tanager, Summer",0.0000 -"Tern, Black",0.0000 -"Tern, Cabot's",0.0000 -"Tern, Caspian",0.0000 -"Tern, Common",0.0000 -"Tern, Gull-billed",0.0000 -"Thrush, Dusky",0.0000 -"Thrush, Eyebrowed",0.0000 -"Thrush, Hermit",0.0000 -"Thrush, Red-throated",0.0000 -"Thrush, Rock",0.0000 -"Thrush, White's",0.0000 -"Thrush, Wood",0.0000 -"Tit, Bearded",0.0000 -"Tit, Long-tailed",0.0000 -"Tit, Willow",0.0000 -Twite,0.0000 -Veery,0.0000 -"Wagtail, Pied",0.0000 -"Wagtail, Yellow",0.0000 -"Warbler, Arctic",0.0000 -"Warbler, Barred",0.0000 -"Warbler, Blackburnian",0.0000 -"Warbler, Blackpoll",0.0000 -"Warbler, Cetti's",0.0000 -"Warbler, Fan-tailed",0.0000 -"Warbler, Green",0.0000 -"Warbler, Hooded",0.0000 -"Warbler, Icterine",0.0000 -"Warbler, Marmora's",0.0000 -"Warbler, Paddyfield",0.0000 -"Warbler, Radde's",0.0000 -"Warbler, Reed",0.0000 -"Warbler, Savi's",0.0000 -"Warbler, Subalpine",0.0000 -"Warbler, Sykes's",0.0000 -Woodcock,0.0000 -"Woodpecker, Green",0.0000 -Woodpigeon,0.0000 -"Yellowthroat, Common",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 0cdffd4872..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" -2018-12-27,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 96b11f97d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" -2018-12,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 359f69819a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" -"2018 Q4",200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 3243cc8528..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Cowbird, Brown-headed] Quota: Soft Threshold (Bytes)","[Bobolink] Quota: Soft Threshold (Bytes)","[Fulmar] Quota: Soft Threshold (Bytes)","[Grouse, Red] Quota: Soft Threshold (Bytes)","[Redstart, American] Quota: Soft Threshold (Bytes)","[Waterthrush, Northern] Quota: Soft Threshold (Bytes)","[Warbler, Black-and-white] Quota: Soft Threshold (Bytes)","[Warbler, Tennessee] Quota: Soft Threshold (Bytes)","[Chaffinch] Quota: Soft Threshold (Bytes)","[Chiffchaff, Iberian] Quota: Soft Threshold (Bytes)","[Warbler, Magnolia] Quota: Soft Threshold (Bytes)","[Kestrel, Lesser] Quota: Soft Threshold (Bytes)","[Martin, Sand] Quota: Soft Threshold (Bytes)","[Parula, Northern] Quota: Soft Threshold (Bytes)","[Scaup, Lesser] Quota: Soft Threshold (Bytes)","[Bunting, Corn] Quota: Soft Threshold (Bytes)","[Bittern] Quota: Soft Threshold (Bytes)","[Black-headed, Great] Quota: Soft Threshold (Bytes)","[Blackbird] Quota: Soft Threshold (Bytes)","[Bluetail, Red-flanked] Quota: Soft Threshold (Bytes)","[Bonelli's, Eastern] Quota: Soft Threshold (Bytes)","[Bullfinch] Quota: Soft Threshold (Bytes)","[Bunting, Indigo] Quota: Soft Threshold (Bytes)","[Bunting, Lapland] Quota: Soft Threshold (Bytes)","[Bunting, Pine] Quota: Soft Threshold (Bytes)","[Bunting, Rock] Quota: Soft Threshold (Bytes)","[Bunting, Rustic] Quota: Soft Threshold (Bytes)","[Catbird, Grey] Quota: Soft Threshold (Bytes)","[Chiffchaff] Quota: Soft Threshold (Bytes)","[Crow, Hooded] Quota: Soft Threshold (Bytes)","[Cuckoo] Quota: Soft Threshold (Bytes)","[Cuckoo, Black-billed] Quota: Soft Threshold (Bytes)","[Desert, Asian] Quota: Soft Threshold (Bytes)","[Dotterel] Quota: Soft Threshold (Bytes)","[Dowitcher, Long-billed] Quota: Soft Threshold (Bytes)","[Dowitcher, Short-billed] Quota: Soft Threshold (Bytes)","[Dunlin] Quota: Soft Threshold (Bytes)","[Dunnock] Quota: Soft Threshold (Bytes)","[Falcon, Eleonora's] Quota: Soft Threshold (Bytes)","[Falcon, Red-footed] Quota: Soft Threshold (Bytes)","[Fieldfare] Quota: Soft Threshold (Bytes)","[Finch, Citril] Quota: Soft Threshold (Bytes)","[Finch, Trumpeter] Quota: Soft Threshold (Bytes)","[Flycatcher, Brown] Quota: Soft Threshold (Bytes)","[Flycatcher, Spotted] Quota: Soft Threshold (Bytes)","[Flycatcher, Taiga] Quota: Soft Threshold (Bytes)","[Goldcrest] Quota: Soft Threshold (Bytes)","[Goldfinch] Quota: Soft Threshold (Bytes)","[Goose, Egyptian] Quota: Soft Threshold (Bytes)","[Goose, Red-breasted] Quota: Soft Threshold (Bytes)","[Greenfinch] Quota: Soft Threshold (Bytes)","[Guillemot, Black] Quota: Soft Threshold (Bytes)","[Guillemot, Brunnich's] Quota: Soft Threshold (Bytes)","[Gull, Audouin's] Quota: Soft Threshold (Bytes)","[Gull, Bonaparte's] Quota: Soft Threshold (Bytes)","[Gull, Franklin's] Quota: Soft Threshold (Bytes)","[Gull, Glaucous] Quota: Soft Threshold (Bytes)","[Gull, Herring] Quota: Soft Threshold (Bytes)","[Gull, Sabine's] Quota: Soft Threshold (Bytes)","[Gull, Slaty-backed] Quota: Soft Threshold (Bytes)","[Gull, Yellow-legged] Quota: Soft Threshold (Bytes)","[Jackdaw] Quota: Soft Threshold (Bytes)","[Kingfisher] Quota: Soft Threshold (Bytes)","[Kingfisher, Belted] Quota: Soft Threshold (Bytes)","[Lark, Calandra] Quota: Soft Threshold (Bytes)","[Linnet] Quota: Soft Threshold (Bytes)","[Martin, House] Quota: Soft Threshold (Bytes)","[Merlin] Quota: Soft Threshold (Bytes)","[Nighthawk, Common] Quota: Soft Threshold (Bytes)","[Nightingale] Quota: Soft Threshold (Bytes)","[Nightjar] Quota: Soft Threshold (Bytes)","[Nuthatch] Quota: Soft Threshold (Bytes)","[Nuthatch, Red-breasted] Quota: Soft Threshold (Bytes)","[Osprey] Quota: Soft Threshold (Bytes)","[Owl, Little] Quota: Soft Threshold (Bytes)","[Owl, Scops] Quota: Soft Threshold (Bytes)","[Owl, Short-eared] Quota: Soft Threshold (Bytes)","[Owl, Snowy] Quota: Soft Threshold (Bytes)","[Petrel, Fea's] Quota: Soft Threshold (Bytes)","[Phalarope, Red-necked] Quota: Soft Threshold (Bytes)","[Phalarope, Wilson's] Quota: Soft Threshold (Bytes)","[Pipit, Olive-backed] Quota: Soft Threshold (Bytes)","[Pipit, Red-throated] Quota: Soft Threshold (Bytes)","[Pipit, Tawny] Quota: Soft Threshold (Bytes)","[Pipit, Tree] Quota: Soft Threshold (Bytes)","[Puffin] Quota: Soft Threshold (Bytes)","[Redpoll, Arctic] Quota: Soft Threshold (Bytes)","[Redpoll, Mealy] Quota: Soft Threshold (Bytes)","[Redshank, Spotted] Quota: Soft Threshold (Bytes)","[Robin, Rufous-tailed] Quota: Soft Threshold (Bytes)","[Robin, White-throated] Quota: Soft Threshold (Bytes)","[Rosefinch, Common] Quota: Soft Threshold (Bytes)","[Sandpiper, Baird's] Quota: Soft Threshold (Bytes)","[Sandpiper, Buff-breasted] Quota: Soft Threshold (Bytes)","[Sandpiper, Purple] Quota: Soft Threshold (Bytes)","[Sandpiper, Western] Quota: Soft Threshold (Bytes)","[Sandpiper, White-rumped] Quota: Soft Threshold (Bytes)","[Shearwater, Balearic] Quota: Soft Threshold (Bytes)","[Shearwater, Macaronesian] Quota: Soft Threshold (Bytes)","[Shrike, Brown] Quota: Soft Threshold (Bytes)","[Skua, Arctic] Quota: Soft Threshold (Bytes)","[Skua, Pomarine] Quota: Soft Threshold (Bytes)","[Skylark] Quota: Soft Threshold (Bytes)","[Smew] Quota: Soft Threshold (Bytes)","[Snipe] Quota: Soft Threshold (Bytes)","[Snipe, Great] Quota: Soft Threshold (Bytes)","[Sparrow, Lark] Quota: Soft Threshold (Bytes)","[Sparrow, Song] Quota: Soft Threshold (Bytes)","[Sparrow, Tree] Quota: Soft Threshold (Bytes)","[Spotted, Lesser] Quota: Soft Threshold (Bytes)","[Starling, Rose-coloured] Quota: Soft Threshold (Bytes)","[Stonechat, Siberian] Quota: Soft Threshold (Bytes)","[Swift] Quota: Soft Threshold (Bytes)","[Swift, Chimney] Quota: Soft Threshold (Bytes)","[Swift, Little] Quota: Soft Threshold (Bytes)","[Swift, Pacific] Quota: Soft Threshold (Bytes)","[Tanager, Summer] Quota: Soft Threshold (Bytes)","[Tern, Black] Quota: Soft Threshold (Bytes)","[Tern, Cabot's] Quota: Soft Threshold (Bytes)","[Tern, Caspian] Quota: Soft Threshold (Bytes)","[Tern, Common] Quota: Soft Threshold (Bytes)","[Tern, Gull-billed] Quota: Soft Threshold (Bytes)","[Thrush, Dusky] Quota: Soft Threshold (Bytes)","[Thrush, Eyebrowed] Quota: Soft Threshold (Bytes)","[Thrush, Hermit] Quota: Soft Threshold (Bytes)","[Thrush, Red-throated] Quota: Soft Threshold (Bytes)","[Thrush, Rock] Quota: Soft Threshold (Bytes)","[Thrush, White's] Quota: Soft Threshold (Bytes)","[Thrush, Wood] Quota: Soft Threshold (Bytes)","[Tit, Bearded] Quota: Soft Threshold (Bytes)","[Tit, Long-tailed] Quota: Soft Threshold (Bytes)","[Tit, Willow] Quota: Soft Threshold (Bytes)","[Twite] Quota: Soft Threshold (Bytes)","[Veery] Quota: Soft Threshold (Bytes)","[Wagtail, Pied] Quota: Soft Threshold (Bytes)","[Wagtail, Yellow] Quota: Soft Threshold (Bytes)","[Warbler, Arctic] Quota: Soft Threshold (Bytes)","[Warbler, Barred] Quota: Soft Threshold (Bytes)","[Warbler, Blackburnian] Quota: Soft Threshold (Bytes)","[Warbler, Blackpoll] Quota: Soft Threshold (Bytes)","[Warbler, Cetti's] Quota: Soft Threshold (Bytes)","[Warbler, Fan-tailed] Quota: Soft Threshold (Bytes)","[Warbler, Green] Quota: Soft Threshold (Bytes)","[Warbler, Hooded] Quota: Soft Threshold (Bytes)","[Warbler, Icterine] Quota: Soft Threshold (Bytes)","[Warbler, Marmora's] Quota: Soft Threshold (Bytes)","[Warbler, Paddyfield] Quota: Soft Threshold (Bytes)","[Warbler, Radde's] Quota: Soft Threshold (Bytes)","[Warbler, Reed] Quota: Soft Threshold (Bytes)","[Warbler, Savi's] Quota: Soft Threshold (Bytes)","[Warbler, Subalpine] Quota: Soft Threshold (Bytes)","[Warbler, Sykes's] Quota: Soft Threshold (Bytes)","[Woodcock] Quota: Soft Threshold (Bytes)","[Woodpecker, Green] Quota: Soft Threshold (Bytes)","[Woodpigeon] Quota: Soft Threshold (Bytes)","[Yellowthroat, Common] Quota: Soft Threshold (Bytes)" -2018,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,200000000000000,150000001024000,116000014336000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv deleted file mode 100644 index b530a97ee2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"User Count (Number of Users)" -"Dowitcher, Short-billed",20 -Fulmar,15 -"Tern, Caspian",15 -"Chiffchaff, Iberian",12 -"Starling, Rose-coloured",11 -"Lark, Calandra",10 -"Swift, Little",10 -"Flycatcher, Taiga",9 -"Scaup, Lesser",8 -Blackbird,6 -"Petrel, Fea's",5 -"Pipit, Tree",5 -"Redshank, Spotted",5 -"Rosefinch, Common",5 -"Bunting, Pine",4 -Chaffinch,4 -Chiffchaff,4 -"Pipit, Red-throated",4 -"Thrush, Red-throated",4 -"Warbler, Barred",4 -"Warbler, Fan-tailed",4 -"Warbler, Hooded",4 -Bittern,3 -"Bluetail, Red-flanked",3 -Fieldfare,3 -"Sparrow, Song",3 -"Tern, Gull-billed",3 -"Wagtail, Pied",3 -"Warbler, Arctic",3 -"Warbler, Blackpoll",3 -"Warbler, Cetti's",3 -"Warbler, Magnolia",3 -"Warbler, Subalpine",3 -"Bunting, Rustic",2 -"Falcon, Eleonora's",2 -"Finch, Citril",2 -"Goose, Red-breasted",2 -Jackdaw,2 -"Kestrel, Lesser",2 -"Martin, Sand",2 -Nuthatch,2 -"Parula, Northern",2 -"Shearwater, Balearic",2 -"Shearwater, Macaronesian",2 -"Sparrow, Tree",2 -"Spotted, Lesser",2 -"Swift, Chimney",2 -"Tanager, Summer",2 -"Thrush, Hermit",2 -"Wagtail, Yellow",2 -"Warbler, Icterine",2 -"Warbler, Savi's",2 -"Warbler, Sykes's",2 -"Black-headed, Great",1 -Bobolink,1 -"Bonelli's, Eastern",1 -Bullfinch,1 -"Bunting, Corn",1 -"Bunting, Indigo",1 -"Bunting, Lapland",1 -"Bunting, Rock",1 -"Catbird, Grey",1 -"Cowbird, Brown-headed",1 -"Crow, Hooded",1 -Cuckoo,1 -"Cuckoo, Black-billed",1 -"Desert, Asian",1 -Dotterel,1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -"Flycatcher, Brown",1 -"Flycatcher, Spotted",1 -Goldcrest,1 -Goldfinch,1 -"Goose, Egyptian",1 -Greenfinch,1 -"Grouse, Red",1 -"Guillemot, Black",1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Bonaparte's",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Herring",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Yellow-legged",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Linnet,1 -"Martin, House",1 -Merlin,1 -"Nighthawk, Common",1 -Nightingale,1 -Nightjar,1 -"Nuthatch, Red-breasted",1 -Osprey,1 -"Owl, Little",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Pipit, Olive-backed",1 -"Pipit, Tawny",1 -Puffin,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -"Redstart, American",1 -"Robin, Rufous-tailed",1 -"Robin, White-throated",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Purple",1 -"Sandpiper, Western",1 -"Sandpiper, White-rumped",1 -"Shrike, Brown",1 -"Skua, Arctic",1 -"Skua, Pomarine",1 -Skylark,1 -Smew,1 -Snipe,1 -"Snipe, Great",1 -"Sparrow, Lark",1 -"Stonechat, Siberian",1 -Swift,1 -"Swift, Pacific",1 -"Tern, Black",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Thrush, Dusky",1 -"Thrush, Eyebrowed",1 -"Thrush, Rock",1 -"Thrush, White's",1 -"Thrush, Wood",1 -"Tit, Bearded",1 -"Tit, Long-tailed",1 -"Tit, Willow",1 -Twite,1 -Veery,1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Green",1 -"Warbler, Marmora's",1 -"Warbler, Paddyfield",1 -"Warbler, Radde's",1 -"Warbler, Reed",1 -"Warbler, Tennessee",1 -"Waterthrush, Northern",1 -Woodcock,1 -"Woodpecker, Green",1 -Woodpigeon,1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv deleted file mode 100644 index b530a97ee2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"User Count (Number of Users)" -"Dowitcher, Short-billed",20 -Fulmar,15 -"Tern, Caspian",15 -"Chiffchaff, Iberian",12 -"Starling, Rose-coloured",11 -"Lark, Calandra",10 -"Swift, Little",10 -"Flycatcher, Taiga",9 -"Scaup, Lesser",8 -Blackbird,6 -"Petrel, Fea's",5 -"Pipit, Tree",5 -"Redshank, Spotted",5 -"Rosefinch, Common",5 -"Bunting, Pine",4 -Chaffinch,4 -Chiffchaff,4 -"Pipit, Red-throated",4 -"Thrush, Red-throated",4 -"Warbler, Barred",4 -"Warbler, Fan-tailed",4 -"Warbler, Hooded",4 -Bittern,3 -"Bluetail, Red-flanked",3 -Fieldfare,3 -"Sparrow, Song",3 -"Tern, Gull-billed",3 -"Wagtail, Pied",3 -"Warbler, Arctic",3 -"Warbler, Blackpoll",3 -"Warbler, Cetti's",3 -"Warbler, Magnolia",3 -"Warbler, Subalpine",3 -"Bunting, Rustic",2 -"Falcon, Eleonora's",2 -"Finch, Citril",2 -"Goose, Red-breasted",2 -Jackdaw,2 -"Kestrel, Lesser",2 -"Martin, Sand",2 -Nuthatch,2 -"Parula, Northern",2 -"Shearwater, Balearic",2 -"Shearwater, Macaronesian",2 -"Sparrow, Tree",2 -"Spotted, Lesser",2 -"Swift, Chimney",2 -"Tanager, Summer",2 -"Thrush, Hermit",2 -"Wagtail, Yellow",2 -"Warbler, Icterine",2 -"Warbler, Savi's",2 -"Warbler, Sykes's",2 -"Black-headed, Great",1 -Bobolink,1 -"Bonelli's, Eastern",1 -Bullfinch,1 -"Bunting, Corn",1 -"Bunting, Indigo",1 -"Bunting, Lapland",1 -"Bunting, Rock",1 -"Catbird, Grey",1 -"Cowbird, Brown-headed",1 -"Crow, Hooded",1 -Cuckoo,1 -"Cuckoo, Black-billed",1 -"Desert, Asian",1 -Dotterel,1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -"Flycatcher, Brown",1 -"Flycatcher, Spotted",1 -Goldcrest,1 -Goldfinch,1 -"Goose, Egyptian",1 -Greenfinch,1 -"Grouse, Red",1 -"Guillemot, Black",1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Bonaparte's",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Herring",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Yellow-legged",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Linnet,1 -"Martin, House",1 -Merlin,1 -"Nighthawk, Common",1 -Nightingale,1 -Nightjar,1 -"Nuthatch, Red-breasted",1 -Osprey,1 -"Owl, Little",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Pipit, Olive-backed",1 -"Pipit, Tawny",1 -Puffin,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -"Redstart, American",1 -"Robin, Rufous-tailed",1 -"Robin, White-throated",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Purple",1 -"Sandpiper, Western",1 -"Sandpiper, White-rumped",1 -"Shrike, Brown",1 -"Skua, Arctic",1 -"Skua, Pomarine",1 -Skylark,1 -Smew,1 -Snipe,1 -"Snipe, Great",1 -"Sparrow, Lark",1 -"Stonechat, Siberian",1 -Swift,1 -"Swift, Pacific",1 -"Tern, Black",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Thrush, Dusky",1 -"Thrush, Eyebrowed",1 -"Thrush, Rock",1 -"Thrush, White's",1 -"Thrush, Wood",1 -"Tit, Bearded",1 -"Tit, Long-tailed",1 -"Tit, Willow",1 -Twite,1 -Veery,1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Green",1 -"Warbler, Marmora's",1 -"Warbler, Paddyfield",1 -"Warbler, Radde's",1 -"Warbler, Reed",1 -"Warbler, Tennessee",1 -"Waterthrush, Northern",1 -Woodcock,1 -"Woodpecker, Green",1 -Woodpigeon,1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index b530a97ee2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"User Count (Number of Users)" -"Dowitcher, Short-billed",20 -Fulmar,15 -"Tern, Caspian",15 -"Chiffchaff, Iberian",12 -"Starling, Rose-coloured",11 -"Lark, Calandra",10 -"Swift, Little",10 -"Flycatcher, Taiga",9 -"Scaup, Lesser",8 -Blackbird,6 -"Petrel, Fea's",5 -"Pipit, Tree",5 -"Redshank, Spotted",5 -"Rosefinch, Common",5 -"Bunting, Pine",4 -Chaffinch,4 -Chiffchaff,4 -"Pipit, Red-throated",4 -"Thrush, Red-throated",4 -"Warbler, Barred",4 -"Warbler, Fan-tailed",4 -"Warbler, Hooded",4 -Bittern,3 -"Bluetail, Red-flanked",3 -Fieldfare,3 -"Sparrow, Song",3 -"Tern, Gull-billed",3 -"Wagtail, Pied",3 -"Warbler, Arctic",3 -"Warbler, Blackpoll",3 -"Warbler, Cetti's",3 -"Warbler, Magnolia",3 -"Warbler, Subalpine",3 -"Bunting, Rustic",2 -"Falcon, Eleonora's",2 -"Finch, Citril",2 -"Goose, Red-breasted",2 -Jackdaw,2 -"Kestrel, Lesser",2 -"Martin, Sand",2 -Nuthatch,2 -"Parula, Northern",2 -"Shearwater, Balearic",2 -"Shearwater, Macaronesian",2 -"Sparrow, Tree",2 -"Spotted, Lesser",2 -"Swift, Chimney",2 -"Tanager, Summer",2 -"Thrush, Hermit",2 -"Wagtail, Yellow",2 -"Warbler, Icterine",2 -"Warbler, Savi's",2 -"Warbler, Sykes's",2 -"Black-headed, Great",1 -Bobolink,1 -"Bonelli's, Eastern",1 -Bullfinch,1 -"Bunting, Corn",1 -"Bunting, Indigo",1 -"Bunting, Lapland",1 -"Bunting, Rock",1 -"Catbird, Grey",1 -"Cowbird, Brown-headed",1 -"Crow, Hooded",1 -Cuckoo,1 -"Cuckoo, Black-billed",1 -"Desert, Asian",1 -Dotterel,1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -"Flycatcher, Brown",1 -"Flycatcher, Spotted",1 -Goldcrest,1 -Goldfinch,1 -"Goose, Egyptian",1 -Greenfinch,1 -"Grouse, Red",1 -"Guillemot, Black",1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Bonaparte's",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Herring",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Yellow-legged",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Linnet,1 -"Martin, House",1 -Merlin,1 -"Nighthawk, Common",1 -Nightingale,1 -Nightjar,1 -"Nuthatch, Red-breasted",1 -Osprey,1 -"Owl, Little",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Pipit, Olive-backed",1 -"Pipit, Tawny",1 -Puffin,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -"Redstart, American",1 -"Robin, Rufous-tailed",1 -"Robin, White-throated",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Purple",1 -"Sandpiper, Western",1 -"Sandpiper, White-rumped",1 -"Shrike, Brown",1 -"Skua, Arctic",1 -"Skua, Pomarine",1 -Skylark,1 -Smew,1 -Snipe,1 -"Snipe, Great",1 -"Sparrow, Lark",1 -"Stonechat, Siberian",1 -Swift,1 -"Swift, Pacific",1 -"Tern, Black",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Thrush, Dusky",1 -"Thrush, Eyebrowed",1 -"Thrush, Rock",1 -"Thrush, White's",1 -"Thrush, Wood",1 -"Tit, Bearded",1 -"Tit, Long-tailed",1 -"Tit, Willow",1 -Twite,1 -Veery,1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Green",1 -"Warbler, Marmora's",1 -"Warbler, Paddyfield",1 -"Warbler, Radde's",1 -"Warbler, Reed",1 -"Warbler, Tennessee",1 -"Waterthrush, Northern",1 -Woodcock,1 -"Woodpecker, Green",1 -Woodpigeon,1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv deleted file mode 100644 index b530a97ee2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,165 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -PI,"User Count (Number of Users)" -"Dowitcher, Short-billed",20 -Fulmar,15 -"Tern, Caspian",15 -"Chiffchaff, Iberian",12 -"Starling, Rose-coloured",11 -"Lark, Calandra",10 -"Swift, Little",10 -"Flycatcher, Taiga",9 -"Scaup, Lesser",8 -Blackbird,6 -"Petrel, Fea's",5 -"Pipit, Tree",5 -"Redshank, Spotted",5 -"Rosefinch, Common",5 -"Bunting, Pine",4 -Chaffinch,4 -Chiffchaff,4 -"Pipit, Red-throated",4 -"Thrush, Red-throated",4 -"Warbler, Barred",4 -"Warbler, Fan-tailed",4 -"Warbler, Hooded",4 -Bittern,3 -"Bluetail, Red-flanked",3 -Fieldfare,3 -"Sparrow, Song",3 -"Tern, Gull-billed",3 -"Wagtail, Pied",3 -"Warbler, Arctic",3 -"Warbler, Blackpoll",3 -"Warbler, Cetti's",3 -"Warbler, Magnolia",3 -"Warbler, Subalpine",3 -"Bunting, Rustic",2 -"Falcon, Eleonora's",2 -"Finch, Citril",2 -"Goose, Red-breasted",2 -Jackdaw,2 -"Kestrel, Lesser",2 -"Martin, Sand",2 -Nuthatch,2 -"Parula, Northern",2 -"Shearwater, Balearic",2 -"Shearwater, Macaronesian",2 -"Sparrow, Tree",2 -"Spotted, Lesser",2 -"Swift, Chimney",2 -"Tanager, Summer",2 -"Thrush, Hermit",2 -"Wagtail, Yellow",2 -"Warbler, Icterine",2 -"Warbler, Savi's",2 -"Warbler, Sykes's",2 -"Black-headed, Great",1 -Bobolink,1 -"Bonelli's, Eastern",1 -Bullfinch,1 -"Bunting, Corn",1 -"Bunting, Indigo",1 -"Bunting, Lapland",1 -"Bunting, Rock",1 -"Catbird, Grey",1 -"Cowbird, Brown-headed",1 -"Crow, Hooded",1 -Cuckoo,1 -"Cuckoo, Black-billed",1 -"Desert, Asian",1 -Dotterel,1 -"Dowitcher, Long-billed",1 -Dunlin,1 -Dunnock,1 -"Falcon, Red-footed",1 -"Finch, Trumpeter",1 -"Flycatcher, Brown",1 -"Flycatcher, Spotted",1 -Goldcrest,1 -Goldfinch,1 -"Goose, Egyptian",1 -Greenfinch,1 -"Grouse, Red",1 -"Guillemot, Black",1 -"Guillemot, Brunnich's",1 -"Gull, Audouin's",1 -"Gull, Bonaparte's",1 -"Gull, Franklin's",1 -"Gull, Glaucous",1 -"Gull, Herring",1 -"Gull, Sabine's",1 -"Gull, Slaty-backed",1 -"Gull, Yellow-legged",1 -Kingfisher,1 -"Kingfisher, Belted",1 -Linnet,1 -"Martin, House",1 -Merlin,1 -"Nighthawk, Common",1 -Nightingale,1 -Nightjar,1 -"Nuthatch, Red-breasted",1 -Osprey,1 -"Owl, Little",1 -"Owl, Scops",1 -"Owl, Short-eared",1 -"Owl, Snowy",1 -"Phalarope, Red-necked",1 -"Phalarope, Wilson's",1 -"Pipit, Olive-backed",1 -"Pipit, Tawny",1 -Puffin,1 -"Redpoll, Arctic",1 -"Redpoll, Mealy",1 -"Redstart, American",1 -"Robin, Rufous-tailed",1 -"Robin, White-throated",1 -"Sandpiper, Baird's",1 -"Sandpiper, Buff-breasted",1 -"Sandpiper, Purple",1 -"Sandpiper, Western",1 -"Sandpiper, White-rumped",1 -"Shrike, Brown",1 -"Skua, Arctic",1 -"Skua, Pomarine",1 -Skylark,1 -Smew,1 -Snipe,1 -"Snipe, Great",1 -"Sparrow, Lark",1 -"Stonechat, Siberian",1 -Swift,1 -"Swift, Pacific",1 -"Tern, Black",1 -"Tern, Cabot's",1 -"Tern, Common",1 -"Thrush, Dusky",1 -"Thrush, Eyebrowed",1 -"Thrush, Rock",1 -"Thrush, White's",1 -"Thrush, Wood",1 -"Tit, Bearded",1 -"Tit, Long-tailed",1 -"Tit, Willow",1 -Twite,1 -Veery,1 -"Warbler, Black-and-white",1 -"Warbler, Blackburnian",1 -"Warbler, Green",1 -"Warbler, Marmora's",1 -"Warbler, Paddyfield",1 -"Warbler, Radde's",1 -"Warbler, Reed",1 -"Warbler, Tennessee",1 -"Waterthrush, Northern",1 -Woodcock,1 -"Woodpecker, Green",1 -Woodpigeon,1 -"Yellowthroat, Common",1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv deleted file mode 100644 index ebf51e1306..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" -2018-12-27,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-28,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-29,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-30,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-31,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-01,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-02,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-03,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-04,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-05,20,15,15,12,11,10,10,9,8,5,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 0de131a004..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" -2018-12,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d2da55e51e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" -"2018 Q4",20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2019 Q1",20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 9f783d4b63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/pi/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by PI" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Dowitcher, Short-billed] User Count (Number of Users)","[Fulmar] User Count (Number of Users)","[Tern, Caspian] User Count (Number of Users)","[Chiffchaff, Iberian] User Count (Number of Users)","[Starling, Rose-coloured] User Count (Number of Users)","[Lark, Calandra] User Count (Number of Users)","[Swift, Little] User Count (Number of Users)","[Flycatcher, Taiga] User Count (Number of Users)","[Scaup, Lesser] User Count (Number of Users)","[Blackbird] User Count (Number of Users)","[Petrel, Fea's] User Count (Number of Users)","[Pipit, Tree] User Count (Number of Users)","[Redshank, Spotted] User Count (Number of Users)","[Rosefinch, Common] User Count (Number of Users)","[Bunting, Pine] User Count (Number of Users)","[Chaffinch] User Count (Number of Users)","[Chiffchaff] User Count (Number of Users)","[Pipit, Red-throated] User Count (Number of Users)","[Thrush, Red-throated] User Count (Number of Users)","[Warbler, Barred] User Count (Number of Users)","[Warbler, Fan-tailed] User Count (Number of Users)","[Warbler, Hooded] User Count (Number of Users)","[Bittern] User Count (Number of Users)","[Bluetail, Red-flanked] User Count (Number of Users)","[Fieldfare] User Count (Number of Users)","[Sparrow, Song] User Count (Number of Users)","[Tern, Gull-billed] User Count (Number of Users)","[Wagtail, Pied] User Count (Number of Users)","[Warbler, Arctic] User Count (Number of Users)","[Warbler, Blackpoll] User Count (Number of Users)","[Warbler, Cetti's] User Count (Number of Users)","[Warbler, Magnolia] User Count (Number of Users)","[Warbler, Subalpine] User Count (Number of Users)","[Bunting, Rustic] User Count (Number of Users)","[Falcon, Eleonora's] User Count (Number of Users)","[Finch, Citril] User Count (Number of Users)","[Goose, Red-breasted] User Count (Number of Users)","[Jackdaw] User Count (Number of Users)","[Kestrel, Lesser] User Count (Number of Users)","[Martin, Sand] User Count (Number of Users)","[Nuthatch] User Count (Number of Users)","[Parula, Northern] User Count (Number of Users)","[Shearwater, Balearic] User Count (Number of Users)","[Shearwater, Macaronesian] User Count (Number of Users)","[Sparrow, Tree] User Count (Number of Users)","[Spotted, Lesser] User Count (Number of Users)","[Swift, Chimney] User Count (Number of Users)","[Tanager, Summer] User Count (Number of Users)","[Thrush, Hermit] User Count (Number of Users)","[Wagtail, Yellow] User Count (Number of Users)","[Warbler, Icterine] User Count (Number of Users)","[Warbler, Savi's] User Count (Number of Users)","[Warbler, Sykes's] User Count (Number of Users)","[Black-headed, Great] User Count (Number of Users)","[Bobolink] User Count (Number of Users)","[Bonelli's, Eastern] User Count (Number of Users)","[Bullfinch] User Count (Number of Users)","[Bunting, Corn] User Count (Number of Users)","[Bunting, Indigo] User Count (Number of Users)","[Bunting, Lapland] User Count (Number of Users)","[Bunting, Rock] User Count (Number of Users)","[Catbird, Grey] User Count (Number of Users)","[Cowbird, Brown-headed] User Count (Number of Users)","[Crow, Hooded] User Count (Number of Users)","[Cuckoo] User Count (Number of Users)","[Cuckoo, Black-billed] User Count (Number of Users)","[Desert, Asian] User Count (Number of Users)","[Dotterel] User Count (Number of Users)","[Dowitcher, Long-billed] User Count (Number of Users)","[Dunlin] User Count (Number of Users)","[Dunnock] User Count (Number of Users)","[Falcon, Red-footed] User Count (Number of Users)","[Finch, Trumpeter] User Count (Number of Users)","[Flycatcher, Brown] User Count (Number of Users)","[Flycatcher, Spotted] User Count (Number of Users)","[Goldcrest] User Count (Number of Users)","[Goldfinch] User Count (Number of Users)","[Goose, Egyptian] User Count (Number of Users)","[Greenfinch] User Count (Number of Users)","[Grouse, Red] User Count (Number of Users)","[Guillemot, Black] User Count (Number of Users)","[Guillemot, Brunnich's] User Count (Number of Users)","[Gull, Audouin's] User Count (Number of Users)","[Gull, Bonaparte's] User Count (Number of Users)","[Gull, Franklin's] User Count (Number of Users)","[Gull, Glaucous] User Count (Number of Users)","[Gull, Herring] User Count (Number of Users)","[Gull, Sabine's] User Count (Number of Users)","[Gull, Slaty-backed] User Count (Number of Users)","[Gull, Yellow-legged] User Count (Number of Users)","[Kingfisher] User Count (Number of Users)","[Kingfisher, Belted] User Count (Number of Users)","[Linnet] User Count (Number of Users)","[Martin, House] User Count (Number of Users)","[Merlin] User Count (Number of Users)","[Nighthawk, Common] User Count (Number of Users)","[Nightingale] User Count (Number of Users)","[Nightjar] User Count (Number of Users)","[Nuthatch, Red-breasted] User Count (Number of Users)","[Osprey] User Count (Number of Users)","[Owl, Little] User Count (Number of Users)","[Owl, Scops] User Count (Number of Users)","[Owl, Short-eared] User Count (Number of Users)","[Owl, Snowy] User Count (Number of Users)","[Phalarope, Red-necked] User Count (Number of Users)","[Phalarope, Wilson's] User Count (Number of Users)","[Pipit, Olive-backed] User Count (Number of Users)","[Pipit, Tawny] User Count (Number of Users)","[Puffin] User Count (Number of Users)","[Redpoll, Arctic] User Count (Number of Users)","[Redpoll, Mealy] User Count (Number of Users)","[Redstart, American] User Count (Number of Users)","[Robin, Rufous-tailed] User Count (Number of Users)","[Robin, White-throated] User Count (Number of Users)","[Sandpiper, Baird's] User Count (Number of Users)","[Sandpiper, Buff-breasted] User Count (Number of Users)","[Sandpiper, Purple] User Count (Number of Users)","[Sandpiper, Western] User Count (Number of Users)","[Sandpiper, White-rumped] User Count (Number of Users)","[Shrike, Brown] User Count (Number of Users)","[Skua, Arctic] User Count (Number of Users)","[Skua, Pomarine] User Count (Number of Users)","[Skylark] User Count (Number of Users)","[Smew] User Count (Number of Users)","[Snipe] User Count (Number of Users)","[Snipe, Great] User Count (Number of Users)","[Sparrow, Lark] User Count (Number of Users)","[Stonechat, Siberian] User Count (Number of Users)","[Swift] User Count (Number of Users)","[Swift, Pacific] User Count (Number of Users)","[Tern, Black] User Count (Number of Users)","[Tern, Cabot's] User Count (Number of Users)","[Tern, Common] User Count (Number of Users)","[Thrush, Dusky] User Count (Number of Users)","[Thrush, Eyebrowed] User Count (Number of Users)","[Thrush, Rock] User Count (Number of Users)","[Thrush, White's] User Count (Number of Users)","[Thrush, Wood] User Count (Number of Users)","[Tit, Bearded] User Count (Number of Users)","[Tit, Long-tailed] User Count (Number of Users)","[Tit, Willow] User Count (Number of Users)","[Twite] User Count (Number of Users)","[Veery] User Count (Number of Users)","[Warbler, Black-and-white] User Count (Number of Users)","[Warbler, Blackburnian] User Count (Number of Users)","[Warbler, Green] User Count (Number of Users)","[Warbler, Marmora's] User Count (Number of Users)","[Warbler, Paddyfield] User Count (Number of Users)","[Warbler, Radde's] User Count (Number of Users)","[Warbler, Reed] User Count (Number of Users)","[Warbler, Tennessee] User Count (Number of Users)","[Waterthrush, Northern] User Count (Number of Users)","[Woodcock] User Count (Number of Users)","[Woodpecker, Green] User Count (Number of Users)","[Woodpigeon] User Count (Number of Users)","[Yellowthroat, Common] User Count (Number of Users)" -2018,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019,20,15,15,12,11,10,10,9,8,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index 64ef4e1169..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","File Count (Number of files)" -screw,233080885.7000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 37d396871e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","File Count (Number of files)" -screw,233089685.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 37d396871e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","File Count (Number of files)" -screw,233089685.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 37d396871e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","File Count (Number of files)" -screw,233089685.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 7c1d6742a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] File Count (Number of files)" -2018-12-27,230789611 -2018-12-28,231639632 -2018-12-29,232584570 -2018-12-30,232798439 -2018-12-31,233180528 -2019-01-01,233363532 -2019-01-02,233624264 -2019-01-03,233894553 -2019-01-04,234402500 -2019-01-05,234531228 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index 8e6be381b8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] File Count (Number of files)" -2018-12,232216155 -2019-01,233963216 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 7b6dd2528c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] File Count (Number of files)" -"2018 Q4",232216155 -"2019 Q1",233963216 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index c0fba41eaf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] File Count (Number of files)" -2018,232216155 -2019,233963216 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 88e9b581a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Hard Threshold (Bytes)" -screw,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 88e9b581a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Hard Threshold (Bytes)" -screw,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 88e9b581a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Hard Threshold (Bytes)" -screw,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 88e9b581a8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Hard Threshold (Bytes)" -screw,1347045040128000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index da955f8dca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] Quota: Hard Threshold (Bytes)" -2018-12-27,1347045040128000 -2018-12-28,1347045040128000 -2018-12-29,1347045040128000 -2018-12-30,1347045040128000 -2018-12-31,1347045040128000 -2019-01-01,1347045040128000 -2019-01-02,1347045040128000 -2019-01-03,1347045040128000 -2019-01-04,1347045040128000 -2019-01-05,1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 479dd26774..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] Quota: Hard Threshold (Bytes)" -2018-12,1347045040128000 -2019-01,1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 8d27bab225..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] Quota: Hard Threshold (Bytes)" -"2018 Q4",1347045040128000 -"2019 Q1",1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 5933861663..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] Quota: Hard Threshold (Bytes)" -2018,1347045040128000 -2019,1347045040128000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 03853884ae..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Logical Usage (Bytes)" -screw,790316944806400.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 7204b63b02..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Logical Usage (Bytes)" -screw,790319204381866.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 7204b63b02..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Logical Usage (Bytes)" -screw,790319204381866.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 7204b63b02..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Logical Usage (Bytes)" -screw,790319204381866.5000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 1bc3c1f829..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] Logical Usage (Bytes)" -2018-12-27,794330985600000 -2018-12-28,800728364160000 -2018-12-29,802014395776000 -2018-12-30,805714147072000 -2018-12-31,802866164736000 -2019-01-01,795302417280000 -2019-01-02,783191268480000 -2019-01-03,775607716480000 -2019-01-04,774046449152000 -2019-01-05,769367539328000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 83934bf99f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] Logical Usage (Bytes)" -2018-12,801135330517333 -2019-01,779503078246400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d5d3e6525b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] Logical Usage (Bytes)" -"2018 Q4",801135330517333 -"2019 Q1",779503078246400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 5fa156b902..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] Logical Usage (Bytes)" -2018,801135330517333 -2019,779503078246400 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 1baf9f847a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota Utilization: Logical (%)" -screw,80.4803 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index f05e3c204a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota Utilization: Logical (%)" -screw,80.4806 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index f05e3c204a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota Utilization: Logical (%)" -screw,80.4806 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index f05e3c204a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota Utilization: Logical (%)" -screw,80.4806 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index ab44a408ef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] Quota Utilization: Logical (%)" -2018-12-27,80.8891 -2018-12-28,81.5406 -2018-12-29,81.6715 -2018-12-30,82.0483 -2018-12-31,81.7583 -2019-01-01,80.9880 -2019-01-02,79.7547 -2019-01-03,78.9825 -2019-01-04,78.8235 -2019-01-05,78.3470 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 76c3e3cee7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] Quota Utilization: Logical (%)" -2018-12,81.5820 -2019-01,79.3791 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 4241b6743e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] Quota Utilization: Logical (%)" -"2018 Q4",81.5820 -"2019 Q1",79.3791 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 57d6f0ba66..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] Quota Utilization: Logical (%)" -2018,81.5820 -2019,79.3791 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 29fadd4c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Physical Usage (Bytes)" -screw,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 29fadd4c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Physical Usage (Bytes)" -screw,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 29fadd4c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Physical Usage (Bytes)" -screw,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 29fadd4c71..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Physical Usage (Bytes)" -screw,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index ee609b2aec..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] Physical Usage (Bytes)" -2018-12-27,0 -2018-12-28,0 -2018-12-29,0 -2018-12-30,0 -2018-12-31,0 -2019-01-01,0 -2019-01-02,0 -2019-01-03,0 -2019-01-04,0 -2019-01-05,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index cbaf9fed26..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] Physical Usage (Bytes)" -2018-12,0 -2019-01,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index ca0d3f385d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] Physical Usage (Bytes)" -"2018 Q4",0 -"2019 Q1",0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 2f8df1ba14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] Physical Usage (Bytes)" -2018,0 -2019,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 4387d93448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Soft Threshold (Bytes)" -screw,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 4387d93448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Soft Threshold (Bytes)" -screw,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 4387d93448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Soft Threshold (Bytes)" -screw,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 4387d93448..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","Quota: Soft Threshold (Bytes)" -screw,982000046080000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 0649370234..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] Quota: Soft Threshold (Bytes)" -2018-12-27,982000046080000 -2018-12-28,982000046080000 -2018-12-29,982000046080000 -2018-12-30,982000046080000 -2018-12-31,982000046080000 -2019-01-01,982000046080000 -2019-01-02,982000046080000 -2019-01-03,982000046080000 -2019-01-04,982000046080000 -2019-01-05,982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 22928df51a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] Quota: Soft Threshold (Bytes)" -2018-12,982000046080000 -2019-01,982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 8c8b242a87..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] Quota: Soft Threshold (Bytes)" -"2018 Q4",982000046080000 -"2019 Q1",982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index bbf34e4afe..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] Quota: Soft Threshold (Bytes)" -2018,982000046080000 -2019,982000046080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv deleted file mode 100644 index 217d6262ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","User Count (Number of Users)" -screw,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv deleted file mode 100644 index 217d6262ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","User Count (Number of Users)" -screw,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 217d6262ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","User Count (Number of Users)" -screw,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv deleted file mode 100644 index 217d6262ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Service Provider","User Count (Number of Users)" -screw,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 95d863cb84..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[screw] User Count (Number of Users)" -2018-12-27,343 -2018-12-28,343 -2018-12-29,344 -2018-12-30,344 -2018-12-31,344 -2019-01-01,344 -2019-01-02,344 -2019-01-03,344 -2019-01-04,344 -2019-01-05,343 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 61127de9ba..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[screw] User Count (Number of Users)" -2018-12,344 -2019-01,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index b3acb9d89b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[screw] User Count (Number of Users)" -"2018 Q4",344 -"2019 Q1",344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 5fc6dbefe0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/provider/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Service Provider" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[screw] User Count (Number of Users)" -2018,344 -2019,344 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index aec7ca19b6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"File Count (Number of files)" -torx,122746184.9000 -recex,110334700.8000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index cf1dc3a5b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"File Count (Number of files)" -torx,122754984.5000 -recex,110334701.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index cf1dc3a5b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"File Count (Number of files)" -torx,122754984.5000 -recex,110334701.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index cf1dc3a5b1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"File Count (Number of files)" -torx,122754984.5000 -recex,110334701.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 1aae43943c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" -2018-12-27,120446355,110343256 -2018-12-28,121284316,110355316 -2018-12-29,122229161,110355409 -2018-12-30,122472556,110325883 -2018-12-31,122854575,110325953 -2019-01-01,123038791,110324741 -2019-01-02,123299173,110325091 -2019-01-03,123569356,110325197 -2019-01-04,124064952,110337548 -2019-01-05,124202614,110328614 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index fd9772aad5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" -2018-12,121874992,110341163 -2019-01,123634977,110328239 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 140833caf4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" -"2018 Q4",121874992,110341163 -"2019 Q1",123634977,110328239 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 2c38d66366..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[torx] File Count (Number of files)","[recex] File Count (Number of files)" -2018,121874992,110341163 -2019,123634977,110328239 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index bc9e360830..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Hard Threshold (Bytes)" -torx,1219010023424000.0000 -recex,128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index bc9e360830..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Hard Threshold (Bytes)" -torx,1219010023424000.0000 -recex,128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index bc9e360830..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Hard Threshold (Bytes)" -torx,1219010023424000.0000 -recex,128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index bc9e360830..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Hard Threshold (Bytes)" -torx,1219010023424000.0000 -recex,128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 9a71434747..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" -2018-12-27,1219010023424000,128035016704000 -2018-12-28,1219010023424000,128035016704000 -2018-12-29,1219010023424000,128035016704000 -2018-12-30,1219010023424000,128035016704000 -2018-12-31,1219010023424000,128035016704000 -2019-01-01,1219010023424000,128035016704000 -2019-01-02,1219010023424000,128035016704000 -2019-01-03,1219010023424000,128035016704000 -2019-01-04,1219010023424000,128035016704000 -2019-01-05,1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 7ae1b90959..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" -2018-12,1219010023424000,128035016704000 -2019-01,1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index fffef8396d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" -"2018 Q4",1219010023424000,128035016704000 -"2019 Q1",1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index b981a45057..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[torx] Quota: Hard Threshold (Bytes)","[recex] Quota: Hard Threshold (Bytes)" -2018,1219010023424000,128035016704000 -2019,1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 8a5dc61554..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Logical Usage (Bytes)" -torx,710908401843200.0000 -recex,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 7220abd28f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Logical Usage (Bytes)" -torx,710910661418666.5000 -recex,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 7220abd28f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Logical Usage (Bytes)" -torx,710910661418666.5000 -recex,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 7220abd28f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Logical Usage (Bytes)" -torx,710910661418666.5000 -recex,79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 4cd248b934..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" -2018-12-27,715282924160000,79048061440000 -2018-12-28,721262893312000,79465470848000 -2018-12-29,722443911680000,79570484096000 -2018-12-30,726058832640000,79655314432000 -2018-12-31,723192367616000,79673797120000 -2019-01-01,715608448384000,79693968896000 -2019-01-02,703404670464000,79786598016000 -2019-01-03,696778584320000,78829132160000 -2019-01-04,694888852608000,79157596544000 -2019-01-05,690162533248000,79205006080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index ba4148859d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" -2018-12,721652704930133,79482625587200 -2019-01,700168617907200,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d3a4530b00..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" -"2018 Q4",721652704930133,79482625587200 -"2019 Q1",700168617907200,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 763cf5aa5c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[torx] Logical Usage (Bytes)","[recex] Logical Usage (Bytes)" -2018,721652704930133,79482625587200 -2019,700168617907200,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index abd3e0e925..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota Utilization: Logical (%)" -torx,83.1472 -recex,62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 3909913bdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota Utilization: Logical (%)" -torx,83.1474 -recex,62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 3909913bdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota Utilization: Logical (%)" -torx,83.1474 -recex,62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 3909913bdc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota Utilization: Logical (%)" -torx,83.1474 -recex,62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 9edc58213f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" -2018-12-27,83.6588,62.2426 -2018-12-28,84.3582,62.5712 -2018-12-29,84.4964,62.6539 -2018-12-30,84.9192,62.7207 -2018-12-31,84.5839,62.7353 -2019-01-01,83.6969,62.7511 -2019-01-02,82.2696,62.8241 -2019-01-03,81.4946,62.0702 -2019-01-04,81.2735,62.3288 -2019-01-05,80.7208,62.3661 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index a267b65f4a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" -2018-12,84.4038,62.5847 -2019-01,81.8911,62.4681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 46afecda27..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" -"2018 Q4",84.4038,62.5847 -"2019 Q1",81.8911,62.4681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 2af9f18cad..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[torx] Quota Utilization: Logical (%)","[recex] Quota Utilization: Logical (%)" -2018,84.4038,62.5847 -2019,81.8911,62.4681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index b569c19465..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Physical Usage (Bytes)" -recex,0.0000 -torx,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index b569c19465..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Physical Usage (Bytes)" -recex,0.0000 -torx,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index b569c19465..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Physical Usage (Bytes)" -recex,0.0000 -torx,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index b569c19465..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Physical Usage (Bytes)" -recex,0.0000 -torx,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 24c01381b3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" -2018-12-27,0,0 -2018-12-28,0,0 -2018-12-29,0,0 -2018-12-30,0,0 -2018-12-31,0,0 -2019-01-01,0,0 -2019-01-02,0,0 -2019-01-03,0,0 -2019-01-04,0,0 -2019-01-05,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 7653037fc4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" -2018-12,0,0 -2019-01,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 03502c25c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" -"2018 Q4",0,0 -"2019 Q1",0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 3f4f1b3976..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[recex] Physical Usage (Bytes)","[torx] Physical Usage (Bytes)" -2018,0,0 -2019,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 0eb683df76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Soft Threshold (Bytes)" -torx,855000018944000.0000 -recex,127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 0eb683df76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Soft Threshold (Bytes)" -torx,855000018944000.0000 -recex,127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 0eb683df76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Soft Threshold (Bytes)" -torx,855000018944000.0000 -recex,127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 0eb683df76..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"Quota: Soft Threshold (Bytes)" -torx,855000018944000.0000 -recex,127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 0715796919..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" -2018-12-27,855000018944000,127000027136000 -2018-12-28,855000018944000,127000027136000 -2018-12-29,855000018944000,127000027136000 -2018-12-30,855000018944000,127000027136000 -2018-12-31,855000018944000,127000027136000 -2019-01-01,855000018944000,127000027136000 -2019-01-02,855000018944000,127000027136000 -2019-01-03,855000018944000,127000027136000 -2019-01-04,855000018944000,127000027136000 -2019-01-05,855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 51e7a800ce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" -2018-12,855000018944000,127000027136000 -2019-01,855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 580bc844ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" -"2018 Q4",855000018944000,127000027136000 -"2019 Q1",855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index b090391581..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[torx] Quota: Soft Threshold (Bytes)","[recex] Quota: Soft Threshold (Bytes)" -2018,855000018944000,127000027136000 -2019,855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv deleted file mode 100644 index 0319dab150..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"User Count (Number of Users)" -torx,341 -recex,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv deleted file mode 100644 index 0319dab150..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"User Count (Number of Users)" -torx,341 -recex,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 0319dab150..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"User Count (Number of Users)" -torx,341 -recex,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv deleted file mode 100644 index 0319dab150..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Resource,"User Count (Number of Users)" -torx,341 -recex,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv deleted file mode 100644 index ae3b601282..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" -2018-12-27,340,10 -2018-12-28,340,10 -2018-12-29,341,10 -2018-12-30,341,10 -2018-12-31,341,10 -2019-01-01,341,10 -2019-01-02,341,10 -2019-01-03,341,10 -2019-01-04,341,10 -2019-01-05,340,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv deleted file mode 100644 index cecd335358..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" -2018-12,341,10 -2019-01,341,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 182c846b7e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" -"2018 Q4",341,10 -"2019 Q1",341,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 87eb0097bb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[torx] User Count (Number of Users)","[recex] User Count (Number of Users)" -2018,341,10 -2019,341,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index e9a8e847ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","File Count (Number of files)" -"Storage grid",122746184.9000 -"Tape storage resource",110334700.8000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 4e46f43183..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","File Count (Number of files)" -"Storage grid",122754984.5000 -"Tape storage resource",110334701.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 4e46f43183..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","File Count (Number of files)" -"Storage grid",122754984.5000 -"Tape storage resource",110334701.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 4e46f43183..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","File Count (Number of files)" -"Storage grid",122754984.5000 -"Tape storage resource",110334701.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index d43bea24c8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" -2018-12-27,120446355,110343256 -2018-12-28,121284316,110355316 -2018-12-29,122229161,110355409 -2018-12-30,122472556,110325883 -2018-12-31,122854575,110325953 -2019-01-01,123038791,110324741 -2019-01-02,123299173,110325091 -2019-01-03,123569356,110325197 -2019-01-04,124064952,110337548 -2019-01-05,124202614,110328614 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index a722ad8a11..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" -2018-12,121874992,110341163 -2019-01,123634977,110328239 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index e73aa6d5e8..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" -"2018 Q4",121874992,110341163 -"2019 Q1",123634977,110328239 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 8b352bc54d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] File Count (Number of files)","[Tape storage resource] File Count (Number of files)" -2018,121874992,110341163 -2019,123634977,110328239 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 6236d5ee10..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Hard Threshold (Bytes)" -"Storage grid",1219010023424000.0000 -"Tape storage resource",128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 6236d5ee10..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Hard Threshold (Bytes)" -"Storage grid",1219010023424000.0000 -"Tape storage resource",128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 6236d5ee10..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Hard Threshold (Bytes)" -"Storage grid",1219010023424000.0000 -"Tape storage resource",128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 6236d5ee10..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Hard Threshold (Bytes)" -"Storage grid",1219010023424000.0000 -"Tape storage resource",128035016704000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index c3de06ab6b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" -2018-12-27,1219010023424000,128035016704000 -2018-12-28,1219010023424000,128035016704000 -2018-12-29,1219010023424000,128035016704000 -2018-12-30,1219010023424000,128035016704000 -2018-12-31,1219010023424000,128035016704000 -2019-01-01,1219010023424000,128035016704000 -2019-01-02,1219010023424000,128035016704000 -2019-01-03,1219010023424000,128035016704000 -2019-01-04,1219010023424000,128035016704000 -2019-01-05,1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 0a4fca0a60..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" -2018-12,1219010023424000,128035016704000 -2019-01,1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 31cfa02062..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" -"2018 Q4",1219010023424000,128035016704000 -"2019 Q1",1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 90ec6aa555..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] Quota: Hard Threshold (Bytes)","[Tape storage resource] Quota: Hard Threshold (Bytes)" -2018,1219010023424000,128035016704000 -2019,1219010023424000,128035016704000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 753fa4d09c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Logical Usage (Bytes)" -"Storage grid",710908401843200.0000 -"Tape storage resource",79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index f36bbecca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Logical Usage (Bytes)" -"Storage grid",710910661418666.5000 -"Tape storage resource",79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index f36bbecca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Logical Usage (Bytes)" -"Storage grid",710910661418666.5000 -"Tape storage resource",79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index f36bbecca0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Logical Usage (Bytes)" -"Storage grid",710910661418666.5000 -"Tape storage resource",79408542963200.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 5048461a8f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" -2018-12-27,715282924160000,79048061440000 -2018-12-28,721262893312000,79465470848000 -2018-12-29,722443911680000,79570484096000 -2018-12-30,726058832640000,79655314432000 -2018-12-31,723192367616000,79673797120000 -2019-01-01,715608448384000,79693968896000 -2019-01-02,703404670464000,79786598016000 -2019-01-03,696778584320000,78829132160000 -2019-01-04,694888852608000,79157596544000 -2019-01-05,690162533248000,79205006080000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index cf85dc90fa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" -2018-12,721652704930133,79482625587200 -2019-01,700168617907200,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d98ed0a4eb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" -"2018 Q4",721652704930133,79482625587200 -"2019 Q1",700168617907200,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index c47572f0a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] Logical Usage (Bytes)","[Tape storage resource] Logical Usage (Bytes)" -2018,721652704930133,79482625587200 -2019,700168617907200,79334460339200 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 84738c0c69..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota Utilization: Logical (%)" -"Storage grid",83.1472 -"Tape storage resource",62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index aebb91b045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota Utilization: Logical (%)" -"Storage grid",83.1474 -"Tape storage resource",62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index aebb91b045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota Utilization: Logical (%)" -"Storage grid",83.1474 -"Tape storage resource",62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index aebb91b045..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota Utilization: Logical (%)" -"Storage grid",83.1474 -"Tape storage resource",62.5264 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index ceb2c54bc4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" -2018-12-27,83.6588,62.2426 -2018-12-28,84.3582,62.5712 -2018-12-29,84.4964,62.6539 -2018-12-30,84.9192,62.7207 -2018-12-31,84.5839,62.7353 -2019-01-01,83.6969,62.7511 -2019-01-02,82.2696,62.8241 -2019-01-03,81.4946,62.0702 -2019-01-04,81.2735,62.3288 -2019-01-05,80.7208,62.3661 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index d55fad9237..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" -2018-12,84.4038,62.5847 -2019-01,81.8911,62.4681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index c904e9c9cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" -"2018 Q4",84.4038,62.5847 -"2019 Q1",81.8911,62.4681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 9670c14bee..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] Quota Utilization: Logical (%)","[Tape storage resource] Quota Utilization: Logical (%)" -2018,84.4038,62.5847 -2019,81.8911,62.4681 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 34e80e3c09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Physical Usage (Bytes)" -"Storage grid",0.0000 -"Tape storage resource",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 34e80e3c09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Physical Usage (Bytes)" -"Storage grid",0.0000 -"Tape storage resource",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 34e80e3c09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Physical Usage (Bytes)" -"Storage grid",0.0000 -"Tape storage resource",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 34e80e3c09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Physical Usage (Bytes)" -"Storage grid",0.0000 -"Tape storage resource",0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index fa186d4e9a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" -2018-12-27,0,0 -2018-12-28,0,0 -2018-12-29,0,0 -2018-12-30,0,0 -2018-12-31,0,0 -2019-01-01,0,0 -2019-01-02,0,0 -2019-01-03,0,0 -2019-01-04,0,0 -2019-01-05,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 2aa5ab0793..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" -2018-12,0,0 -2019-01,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index d3ae0766a1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" -"2018 Q4",0,0 -"2019 Q1",0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 5c679a5ddc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] Physical Usage (Bytes)","[Tape storage resource] Physical Usage (Bytes)" -2018,0,0 -2019,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 5890485f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Soft Threshold (Bytes)" -"Storage grid",855000018944000.0000 -"Tape storage resource",127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 5890485f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Soft Threshold (Bytes)" -"Storage grid",855000018944000.0000 -"Tape storage resource",127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 5890485f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Soft Threshold (Bytes)" -"Storage grid",855000018944000.0000 -"Tape storage resource",127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 5890485f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","Quota: Soft Threshold (Bytes)" -"Storage grid",855000018944000.0000 -"Tape storage resource",127000027136000.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index b9fc9f657a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" -2018-12-27,855000018944000,127000027136000 -2018-12-28,855000018944000,127000027136000 -2018-12-29,855000018944000,127000027136000 -2018-12-30,855000018944000,127000027136000 -2018-12-31,855000018944000,127000027136000 -2019-01-01,855000018944000,127000027136000 -2019-01-02,855000018944000,127000027136000 -2019-01-03,855000018944000,127000027136000 -2019-01-04,855000018944000,127000027136000 -2019-01-05,855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 8f291359d2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" -2018-12,855000018944000,127000027136000 -2019-01,855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 48c3f96e89..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" -"2018 Q4",855000018944000,127000027136000 -"2019 Q1",855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index ba56583910..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] Quota: Soft Threshold (Bytes)","[Tape storage resource] Quota: Soft Threshold (Bytes)" -2018,855000018944000,127000027136000 -2019,855000018944000,127000027136000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv deleted file mode 100644 index 8017bdab63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","User Count (Number of Users)" -"Storage grid",341 -"Tape storage resource",10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv deleted file mode 100644 index 8017bdab63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","User Count (Number of Users)" -"Storage grid",341 -"Tape storage resource",10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 8017bdab63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","User Count (Number of Users)" -"Storage grid",341 -"Tape storage resource",10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv deleted file mode 100644 index 8017bdab63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"Resource Type","User Count (Number of Users)" -"Storage grid",341 -"Tape storage resource",10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 819d545642..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" -2018-12-27,340,10 -2018-12-28,340,10 -2018-12-29,341,10 -2018-12-30,341,10 -2018-12-31,341,10 -2019-01-01,341,10 -2019-01-02,341,10 -2019-01-03,341,10 -2019-01-04,341,10 -2019-01-05,340,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 73ed239b7a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" -2018-12,341,10 -2019-01,341,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index d7b2c8d242..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" -"2018 Q4",341,10 -"2019 Q1",341,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 244aa7ccd2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/resource_type/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by Resource Type" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[Storage grid] User Count (Number of Users)","[Tape storage resource] User Count (Number of Users)" -2018,341,10 -2019,341,10 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv deleted file mode 100644 index 098986505b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.3000 -molater,89120484.8000 -bobol,15196470.0000 -chabu,6091664.1000 -parbu,2275235.8000 -leske,2148624.5000 -litbu,1365060.7000 -chaff,1227901.8000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.4000 -ibech,785457.2000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.1000 -daeju,292582.3000 -litau,288362.9000 -pinbu,174607.9000 -swath,160124.7000 -rocbu,143440.2000 -robgr,123610.8000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.1000 -twite,79552.6000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55522.9000 -scata,54479.7000 -larsp,51464.8000 -linne,33143.8000 -sanma,32673.0000 -cross,31883.8000 -rocth,30131.0000 -rolle,24220.7000 -citwa,23780.0000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -pursa,16500.5000 -rocsp,15288.0000 -reebu,14496.8000 -tenwa,14270.0000 -hulwa,13556.3000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.8000 -norpa,10410.6000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.1000 -bluth,7009.4000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6025.8000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4624.8000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.7000 -arcre,2842.6000 -watpi,2828.3000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.3000 -goldf,2503.8000 -grath,2498.3000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.3000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.7000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.3000 -piefl,1051.0000 -grewa,995.9000 -dippe,915.0000 -starl,896.0000 -olbpi,822.7000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.6000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.7000 -bomorum,373.0000 -broth,368.0000 -thrni,352.7000 -rocpi,328.0000 -sogsh,327.2000 -ricpi,321.4000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.6000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.4000 -bramb,142.6000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.4000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,52.8000 -reewa,52.0000 -rebfl,51.3000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -blabi,10.8889 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.4000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv deleted file mode 100644 index 098986505b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.3000 -molater,89120484.8000 -bobol,15196470.0000 -chabu,6091664.1000 -parbu,2275235.8000 -leske,2148624.5000 -litbu,1365060.7000 -chaff,1227901.8000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.4000 -ibech,785457.2000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.1000 -daeju,292582.3000 -litau,288362.9000 -pinbu,174607.9000 -swath,160124.7000 -rocbu,143440.2000 -robgr,123610.8000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.1000 -twite,79552.6000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55522.9000 -scata,54479.7000 -larsp,51464.8000 -linne,33143.8000 -sanma,32673.0000 -cross,31883.8000 -rocth,30131.0000 -rolle,24220.7000 -citwa,23780.0000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -pursa,16500.5000 -rocsp,15288.0000 -reebu,14496.8000 -tenwa,14270.0000 -hulwa,13556.3000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.8000 -norpa,10410.6000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.1000 -bluth,7009.4000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6025.8000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4624.8000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.7000 -arcre,2842.6000 -watpi,2828.3000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.3000 -goldf,2503.8000 -grath,2498.3000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.3000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.7000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.3000 -piefl,1051.0000 -grewa,995.9000 -dippe,915.0000 -starl,896.0000 -olbpi,822.7000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.6000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.7000 -bomorum,373.0000 -broth,368.0000 -thrni,352.7000 -rocpi,328.0000 -sogsh,327.2000 -ricpi,321.4000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.6000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.4000 -bramb,142.6000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.4000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,52.8000 -reewa,52.0000 -rebfl,51.3000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -blabi,10.8889 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.4000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv deleted file mode 100644 index 2af5f0424f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -swath,160124.7000 -ovenb,55522.9000 -parcr,7042.1000 -savsp,678.0000 -sante,97.0000 -phivi,11.0000 -lanwa,10.0000 -egyni,5.0000 -palsw,5.0000 -blaca,2.0000 -rocdo,2.0000 -crcco,1.0000 -frahata,1.0000 -gresh,1.0000 -razor,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv deleted file mode 100644 index 03b09cd4b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv deleted file mode 100644 index a4f3b231bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.5000 -molater,89120485.0000 -bobol,15196470.0000 -chabu,6091664.0000 -parbu,2275235.5000 -leske,2148624.5000 -litbu,1365060.5000 -chaff,1227901.5000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.0000 -ibech,785457.0000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.0000 -daeju,292582.5000 -litau,288363.0000 -pinbu,174608.0000 -swath,160124.5000 -rocbu,143440.0000 -robgr,123611.0000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.0000 -twite,79552.5000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55523.0000 -scata,54480.0000 -larsp,51465.0000 -linne,33144.0000 -sanma,32673.0000 -cross,31883.5000 -rocth,30131.0000 -rolle,24220.5000 -citwa,23780.0000 -pursa,21999.5000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -rocsp,15288.0000 -reebu,14497.0000 -tenwa,14270.0000 -hulwa,13556.5000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.5000 -norpa,10411.0000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.0000 -bluth,7009.5000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6026.0000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4625.0000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.5000 -arcre,2842.5000 -watpi,2828.5000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.5000 -goldf,2503.5000 -grath,2498.5000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.5000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.5000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.0000 -piefl,1051.0000 -grewa,996.0000 -dippe,915.0000 -starl,896.0000 -olbpi,822.5000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.5000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.5000 -bomorum,373.0000 -broth,368.0000 -thrni,352.5000 -rocpi,328.0000 -sogsh,327.0000 -ricpi,321.5000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.5000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.5000 -bramb,142.5000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.5000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,53.0000 -reewa,52.0000 -rebfl,51.5000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -blabi,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.5000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv deleted file mode 100644 index a4f3b231bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.5000 -molater,89120485.0000 -bobol,15196470.0000 -chabu,6091664.0000 -parbu,2275235.5000 -leske,2148624.5000 -litbu,1365060.5000 -chaff,1227901.5000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.0000 -ibech,785457.0000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.0000 -daeju,292582.5000 -litau,288363.0000 -pinbu,174608.0000 -swath,160124.5000 -rocbu,143440.0000 -robgr,123611.0000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.0000 -twite,79552.5000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55523.0000 -scata,54480.0000 -larsp,51465.0000 -linne,33144.0000 -sanma,32673.0000 -cross,31883.5000 -rocth,30131.0000 -rolle,24220.5000 -citwa,23780.0000 -pursa,21999.5000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -rocsp,15288.0000 -reebu,14497.0000 -tenwa,14270.0000 -hulwa,13556.5000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.5000 -norpa,10411.0000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.0000 -bluth,7009.5000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6026.0000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4625.0000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.5000 -arcre,2842.5000 -watpi,2828.5000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.5000 -goldf,2503.5000 -grath,2498.5000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.5000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.5000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.0000 -piefl,1051.0000 -grewa,996.0000 -dippe,915.0000 -starl,896.0000 -olbpi,822.5000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.5000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.5000 -bomorum,373.0000 -broth,368.0000 -thrni,352.5000 -rocpi,328.0000 -sogsh,327.0000 -ricpi,321.5000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.5000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.5000 -bramb,142.5000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.5000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,53.0000 -reewa,52.0000 -rebfl,51.5000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -blabi,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.5000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv deleted file mode 100644 index 59a6968a06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -swath,160124.5000 -ovenb,55523.0000 -parcr,7042.0000 -savsp,678.0000 -sante,97.0000 -phivi,11.0000 -lanwa,10.0000 -egyni,5.0000 -palsw,5.0000 -blaca,2.0000 -rocdo,2.0000 -crcco,1.0000 -frahata,1.0000 -gresh,1.0000 -razor,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv deleted file mode 100644 index 03b09cd4b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv deleted file mode 100644 index a4f3b231bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.5000 -molater,89120485.0000 -bobol,15196470.0000 -chabu,6091664.0000 -parbu,2275235.5000 -leske,2148624.5000 -litbu,1365060.5000 -chaff,1227901.5000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.0000 -ibech,785457.0000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.0000 -daeju,292582.5000 -litau,288363.0000 -pinbu,174608.0000 -swath,160124.5000 -rocbu,143440.0000 -robgr,123611.0000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.0000 -twite,79552.5000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55523.0000 -scata,54480.0000 -larsp,51465.0000 -linne,33144.0000 -sanma,32673.0000 -cross,31883.5000 -rocth,30131.0000 -rolle,24220.5000 -citwa,23780.0000 -pursa,21999.5000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -rocsp,15288.0000 -reebu,14497.0000 -tenwa,14270.0000 -hulwa,13556.5000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.5000 -norpa,10411.0000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.0000 -bluth,7009.5000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6026.0000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4625.0000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.5000 -arcre,2842.5000 -watpi,2828.5000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.5000 -goldf,2503.5000 -grath,2498.5000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.5000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.5000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.0000 -piefl,1051.0000 -grewa,996.0000 -dippe,915.0000 -starl,896.0000 -olbpi,822.5000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.5000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.5000 -bomorum,373.0000 -broth,368.0000 -thrni,352.5000 -rocpi,328.0000 -sogsh,327.0000 -ricpi,321.5000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.5000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.5000 -bramb,142.5000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.5000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,53.0000 -reewa,52.0000 -rebfl,51.5000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -blabi,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.5000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv deleted file mode 100644 index a4f3b231bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.5000 -molater,89120485.0000 -bobol,15196470.0000 -chabu,6091664.0000 -parbu,2275235.5000 -leske,2148624.5000 -litbu,1365060.5000 -chaff,1227901.5000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.0000 -ibech,785457.0000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.0000 -daeju,292582.5000 -litau,288363.0000 -pinbu,174608.0000 -swath,160124.5000 -rocbu,143440.0000 -robgr,123611.0000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.0000 -twite,79552.5000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55523.0000 -scata,54480.0000 -larsp,51465.0000 -linne,33144.0000 -sanma,32673.0000 -cross,31883.5000 -rocth,30131.0000 -rolle,24220.5000 -citwa,23780.0000 -pursa,21999.5000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -rocsp,15288.0000 -reebu,14497.0000 -tenwa,14270.0000 -hulwa,13556.5000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.5000 -norpa,10411.0000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.0000 -bluth,7009.5000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6026.0000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4625.0000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.5000 -arcre,2842.5000 -watpi,2828.5000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.5000 -goldf,2503.5000 -grath,2498.5000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.5000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.5000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.0000 -piefl,1051.0000 -grewa,996.0000 -dippe,915.0000 -starl,896.0000 -olbpi,822.5000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.5000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.5000 -bomorum,373.0000 -broth,368.0000 -thrni,352.5000 -rocpi,328.0000 -sogsh,327.0000 -ricpi,321.5000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.5000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.5000 -bramb,142.5000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.5000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,53.0000 -reewa,52.0000 -rebfl,51.5000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -blabi,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.5000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 59a6968a06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -swath,160124.5000 -ovenb,55523.0000 -parcr,7042.0000 -savsp,678.0000 -sante,97.0000 -phivi,11.0000 -lanwa,10.0000 -egyni,5.0000 -palsw,5.0000 -blaca,2.0000 -rocdo,2.0000 -crcco,1.0000 -frahata,1.0000 -gresh,1.0000 -razor,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 03b09cd4b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv deleted file mode 100644 index a4f3b231bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.5000 -molater,89120485.0000 -bobol,15196470.0000 -chabu,6091664.0000 -parbu,2275235.5000 -leske,2148624.5000 -litbu,1365060.5000 -chaff,1227901.5000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.0000 -ibech,785457.0000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.0000 -daeju,292582.5000 -litau,288363.0000 -pinbu,174608.0000 -swath,160124.5000 -rocbu,143440.0000 -robgr,123611.0000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.0000 -twite,79552.5000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55523.0000 -scata,54480.0000 -larsp,51465.0000 -linne,33144.0000 -sanma,32673.0000 -cross,31883.5000 -rocth,30131.0000 -rolle,24220.5000 -citwa,23780.0000 -pursa,21999.5000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -rocsp,15288.0000 -reebu,14497.0000 -tenwa,14270.0000 -hulwa,13556.5000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.5000 -norpa,10411.0000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.0000 -bluth,7009.5000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6026.0000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4625.0000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.5000 -arcre,2842.5000 -watpi,2828.5000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.5000 -goldf,2503.5000 -grath,2498.5000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.5000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.5000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.0000 -piefl,1051.0000 -grewa,996.0000 -dippe,915.0000 -starl,896.0000 -olbpi,822.5000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.5000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.5000 -bomorum,373.0000 -broth,368.0000 -thrni,352.5000 -rocpi,328.0000 -sogsh,327.0000 -ricpi,321.5000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.5000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.5000 -bramb,142.5000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.5000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,53.0000 -reewa,52.0000 -rebfl,51.5000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -blabi,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.5000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv deleted file mode 100644 index a4f3b231bd..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -magwa,105192388.5000 -molater,89120485.0000 -bobol,15196470.0000 -chabu,6091664.0000 -parbu,2275235.5000 -leske,2148624.5000 -litbu,1365060.5000 -chaff,1227901.5000 -coot1,1185344.0000 -norwa,1135809.0000 -aytinis,943505.0000 -yelha,938054.0000 -ibech,785457.0000 -proubis,748238.5000 -bawwa,630272.0000 -cirbu,595394.0000 -whcsp,509822.5000 -noror,381957.0000 -daeju,292582.5000 -litau,288363.0000 -pinbu,174608.0000 -swath,160124.5000 -rocbu,143440.0000 -robgr,123611.0000 -embhala,121125.0000 -egygo,108834.0000 -amere,102408.0000 -crebu,101637.5000 -alpsw,86623.0000 -twite,79552.5000 -snobu,73344.0000 -dunli,62708.5000 -ovenb,55523.0000 -scata,54480.0000 -larsp,51465.0000 -linne,33144.0000 -sanma,32673.0000 -cross,31883.5000 -rocth,30131.0000 -rolle,24220.5000 -citwa,23780.0000 -pursa,21999.5000 -ylwwa,21001.0000 -whtpl,20036.0000 -categ,18325.0000 -rocsp,15288.0000 -reebu,14497.0000 -tenwa,14270.0000 -hulwa,13556.5000 -baisa,13512.0000 -blypi,12295.0000 -blrth,11988.0000 -tawpi,11130.5000 -norpa,10411.0000 -rusto,8955.0000 -colfl,8530.0000 -blewh,7417.0000 -parcr,7042.0000 -bluth,7009.5000 -moure,6970.0000 -sancr,6954.5000 -pibgr,6781.0000 -shttr,6026.0000 -serin,5866.0000 -honbu,5423.0000 -hoowa,5262.0000 -pingr,4625.0000 -redwi,4617.0000 -trufi,4360.0000 -setusca,2916.0000 -whcbl,2875.5000 -arcre,2842.5000 -watpi,2828.5000 -isawh,2742.0000 -lapbu,2703.0000 -comre,2581.5000 -goldf,2503.5000 -grath,2498.5000 -sibth,2362.0000 -turanni,2350.0000 -laryane,2215.0000 -grefi,2199.5000 -sibru,2063.0000 -twbcr,1958.5000 -blare,1648.0000 -hawfi,1548.5000 -whinc,1442.0000 -corbu,1334.0000 -wheat,1306.0000 -melnsis,1225.0000 -redst,1111.0000 -bullf,1058.0000 -piefl,1051.0000 -grewa,996.0000 -dippe,915.0000 -starl,896.0000 -olbpi,822.5000 -whwla,788.0000 -scocr,776.0000 -savsp,678.0000 -stoch,609.0000 -piewh,605.0000 -refbl,504.5000 -eybth,494.0000 -yebbu,468.0000 -ixovius,452.0000 -pecpi,448.0000 -wren1,425.0000 -bimla,404.0000 -housp,396.5000 -bomorum,373.0000 -broth,368.0000 -thrni,352.5000 -rocpi,328.0000 -sogsh,327.0000 -ricpi,321.5000 -redgr,314.0000 -rubro,289.0000 -treec,175.0000 -mimttos,171.0000 -crama,167.5000 -robin,163.0000 -grrwa,161.0000 -nigal,145.0000 -spofl,143.5000 -bramb,142.5000 -turdo,138.0000 -calla,130.0000 -rinou,123.0000 -bltth,113.0000 -marti,106.0000 -veery,103.0000 -coati,102.0000 -spasp,101.5000 -sante,97.0000 -deswh,91.5000 -rivwa,90.0000 -creti,86.0000 -garwa,78.0000 -cetwa,75.0000 -darwa,75.0000 -greti,72.0000 -hyllina,69.0000 -lanhach,65.0000 -dumnsis,60.0000 -hiporum,57.0000 -aquwa,53.0000 -musrica,53.0000 -reewa,52.0000 -rebfl,51.5000 -bluti,51.0000 -duswa,50.0000 -spewa,50.0000 -white,50.0000 -penti,49.0000 -yebwa,48.0000 -firec,43.0000 -rutro,42.0000 -melwa,39.0000 -raven,38.0000 -sonth,37.0000 -vertera,36.0000 -dunno,34.0000 -marwa,34.0000 -rupwa,31.0000 -sitnsis,31.0000 -carcr,29.0000 -nutcr,29.0000 -rook1,29.0000 -jay11,28.0000 -magpi,28.0000 -choug,26.0000 -corsh,25.0000 -massh,25.0000 -sylnsis,24.0000 -amero,22.0000 -woosh,22.0000 -blrwa,19.0000 -rebsh,17.0000 -golor,15.0000 -isash,15.0000 -reevi,14.0000 -sedwa,13.0000 -sumta,12.0000 -balsh,11.0000 -blabi,11.0000 -grawa,11.0000 -phivi,11.0000 -sayoebe,11.0000 -thbwa,11.0000 -virrons,11.0000 -eaowa,10.0000 -gyrfa,10.0000 -hobby,10.0000 -lanwa,10.0000 -leswh,10.0000 -rinpa,10.0000 -shag1,10.0000 -ameke,9.0000 -falnsis,9.0000 -gshwa,9.0000 -lotti,9.0000 -reffa,9.0000 -clisw,7.0000 -grewo,7.0000 -ictwa,7.0000 -kestr,7.0000 -pagwa,6.5000 -waxwi,6.5000 -beeea,6.0000 -blcbe,6.0000 -hoopo,6.0000 -wryne,6.0000 -belki,5.0000 -chisw,5.0000 -comni,5.0000 -deswa,5.0000 -egyni,5.0000 -kingf,5.0000 -netsw,5.0000 -pacsw,5.0000 -palsw,5.0000 -renni,5.0000 -swift,5.0000 -yerwa,5.0000 -grnwa,4.0000 -hawow,4.0000 -loeow,4.0000 -nijar,4.0000 -phyatus,4.0000 -rersw,4.0000 -sheow,4.0000 -snoow,4.0000 -sposa,4.0000 -subwa,4.0000 -tawow,4.0000 -tenow,4.0000 -velsc,4.0000 -barow,3.0000 -bonwa,3.0000 -coldo,3.0000 -cucko,3.0000 -grscu,3.0000 -houma,3.0000 -rutdo,3.0000 -scoow,3.0000 -stodo,3.0000 -wallc,3.0000 -woodp,3.0000 -yebcu,3.0000 -zenoura,3.0000 -blaca,2.0000 -camwa,2.0000 -casgu,2.0000 -gbbgu,2.0000 -glagu,2.0000 -icegu,2.0000 -laragus,2.0000 -laranus,2.0000 -lbbgu,2.0000 -palsa,2.0000 -palwa,2.0000 -rocdo,2.0000 -swall,2.0000 -tacolor,2.0000 -wilwa,2.0000 -yelwa,2.0000 -alete,1.0000 -arcte,1.0000 -bitte,1.0000 -blate,1.0000 -blhgu,1.0000 -blwpr,1.0000 -brardix,1.0000 -brite,1.0000 -brugu,1.0000 -bubsa,1.0000 -colpr,1.0000 -comgu,1.0000 -comsa,1.0000 -comte,1.0000 -crcco,1.0000 -crela,1.0000 -evegr,1.0000 -forte,1.0000 -fragu,1.0000 -frahata,1.0000 -galcata,1.0000 -glaarum,1.0000 -greph,1.0000 -gresa,1.0000 -gresh,1.0000 -gresk,1.0000 -gresn,1.0000 -greye,1.0000 -guill,1.0000 -ivogu,1.0000 -jacsn,1.0000 -kitti,1.0000 -larinii,1.0000 -laugu,1.0000 -leasa,1.0000 -lecte,1.0000 -lesye,1.0000 -litgu,1.0000 -litte,1.0000 -lobdo,1.0000 -lotsk,1.0000 -lstla,1.0000 -marsa,1.0000 -medgu,1.0000 -pecsa,1.0000 -pinnnis,1.0000 -pomsk,1.0000 -razor,1.0000 -redsh,1.0000 -renph,1.0000 -rosgu,1.0000 -roste,1.0000 -royte,1.0000 -sabgu,1.0000 -scaro,1.0000 -semsa,1.0000 -shola,1.0000 -shtla,1.0000 -skyla,1.0000 -slegu,1.0000 -snipe,1.0000 -solsa,1.0000 -soote,1.0000 -stevida,1.0000 -synquus,1.0000 -tersa,1.0000 -trepi,1.0000 -triipes,1.0000 -whkte,1.0000 -whrsa,1.0000 -wilph,1.0000 -woodc,1.0000 -woodl,1.0000 -woosa,1.0000 -woowa,1.0000 -wwbte,1.0000 -sarwa,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv deleted file mode 100644 index 59a6968a06..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" -swath,160124.5000 -ovenb,55523.0000 -parcr,7042.0000 -savsp,678.0000 -sante,97.0000 -phivi,11.0000 -lanwa,10.0000 -egyni,5.0000 -palsw,5.0000 -blaca,2.0000 -rocdo,2.0000 -crcco,1.0000 -frahata,1.0000 -gresh,1.0000 -razor,1.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv deleted file mode 100644 index 03b09cd4b2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","File Count (Number of files)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv deleted file mode 100644 index 91ddd8d49c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[pursa] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[blabi] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -2018-12-27,105192075,88379723,15196470,5253665,2268748,2146799,1365058,1227794,1185344,1135809,943505,267748,796289,830795,630272,595394,460467,417394,292342,288362,174610,160112,155276,126913,120893,108834,102408,108721,86950,4627,60440,62606,60567,55507,50225,43541,32673,3525,30131,14838,23780,21001,20036,18325,0,15288,14536,14270,3,13512,12295,11988,6104,10363,8911,8530,7417,6421,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2668,4279,2742,2703,2450,2296,2359,2362,2350,2215,2654,2063,3842,1648,1636,1442,1316,1306,1225,1111,1109,1051,1442,915,896,791,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,263,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,54,51,50,50,50,49,48,43,49,39,38,19,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-28,105191961,88525879,15196470,5725604,2269042,2145969,1365062,1227794,1185344,1135809,943505,267985,809270,830795,630272,595394,525804,417464,292619,288362,174610,160112,155290,126913,120893,108834,102408,116599,86950,4681,60436,62604,88969,54942,50496,43541,32673,111063,30131,24276,23780,21001,20036,18325,0,15288,14560,14270,3,13512,12295,11988,9070,10386,8928,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2730,4279,2742,2703,2223,2296,2411,2362,2350,2215,2651,2063,3842,1648,1642,1442,1320,1306,1225,1111,1110,1051,1440,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-29,105191993,88683162,15196470,6133060,2275982,2145969,1365062,1227794,1185344,1135809,943505,599291,809314,830795,630272,595394,530750,417512,292619,288362,174610,160112,155276,126916,121086,108834,102408,118427,86950,4747,77045,62690,56593,54295,50647,43541,32673,27249,30131,26937,23780,21001,20036,18325,131976,15288,14544,14270,3,13512,12295,11988,10115,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2708,2877,2742,2703,2865,2296,2421,2362,2350,2215,2651,2063,3842,1648,1664,1442,1324,1306,1225,1111,1110,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-30,105192014,88765119,15196470,6133060,2283593,2145969,1365062,1227794,1185344,1135809,943505,834793,779767,830795,630272,595394,530750,417555,292619,288362,174610,160112,155131,126912,121085,108834,102408,118427,86950,4801,77045,62719,87106,54295,50870,43541,32673,45076,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12045,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4671,4617,4360,2916,3510,2791,2877,2742,2703,2669,2296,2502,2362,2350,2215,2605,2063,3842,1648,1677,1442,1328,1306,1225,1111,1111,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-31,105192032,88903007,15196470,6133066,2279381,2145969,1365062,1227846,1185344,1135809,943505,1111730,779767,830795,630272,595394,530750,393209,292604,288362,174610,160112,155117,126861,121085,108834,102408,118427,86950,4843,77022,62713,80333,54295,51256,37479,32673,56318,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12048,10403,8794,8530,7417,4066,10012,6970,6964,6781,6025,5866,5423,5262,4638,4617,4360,2916,3510,2833,2731,2742,2703,2652,2228,2532,2362,2350,2215,1894,2063,1949,1648,1677,1442,1332,1306,1225,1111,1111,1051,1389,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,76,97,81,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,41,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-01,105192102,89164927,15196470,6133066,2278806,2151114,1365062,1227998,1185344,1135809,943505,1117520,773170,832280,630272,595394,511013,351641,292604,288362,174610,160112,131858,120439,121085,108834,102408,118427,86950,4843,77022,62732,68070,54293,51169,37479,32673,58362,30131,26937,23780,21001,20036,18325,4,15288,14448,14270,19788,13512,12295,11988,12142,10421,8794,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4617,4617,4360,2916,3510,2805,2717,2742,2703,2452,2433,2531,2362,2350,2215,1867,2063,1017,1648,1677,1442,1336,1306,1225,1111,1111,1051,311,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,31,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,43,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-02,105192452,89405908,15196470,6133066,2278458,2151114,1365062,1227998,1185344,1135809,943505,1117323,773170,835274,630272,595394,465501,351696,292604,288365,174610,160112,131859,120129,121134,108834,102408,90285,86950,191746,76353,62739,38106,54293,51595,22343,32673,5328,30131,24281,23780,21001,20036,18325,4,15288,14448,14270,25861,13512,12295,11988,12142,10421,8796,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2889,2863,2241,2742,2703,2447,2554,2538,2362,2350,2215,1865,2063,1017,1648,1677,1442,1340,1306,1225,1111,959,1051,409,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,19,328,321,301,314,289,175,171,176,163,161,145,146,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-03,105192460,89579944,15196470,6346696,2274084,2151114,1365056,1228000,1185344,1135809,943505,1253518,773259,576225,630272,595394,513281,349950,292604,288364,174603,160125,131756,120245,121263,108834,102408,83169,85861,191746,76353,62743,33523,54293,52145,22343,32673,1685,30131,24035,23780,21001,20036,18325,4,15288,14448,14270,14111,13512,12295,11988,12144,10428,9237,8530,7417,5428,2,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2814,2916,2241,2742,2703,2685,2695,2557,2362,2350,2215,1865,2063,78,1648,1599,1442,1344,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,317,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,132,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-04,105193030,89779619,15196470,6547360,2272673,2151114,1365060,1228000,1185344,1135809,943505,1363753,785029,542542,630272,595394,514946,351559,292604,288364,174603,160138,131458,120307,121363,108834,102408,77536,85860,191746,75862,62736,30267,54293,53185,22343,32673,3994,30131,23917,23780,21001,20036,18325,4,15288,14448,14270,37255,13512,12295,11988,12415,10439,9261,8530,7417,5878,2,6970,6945,6781,6025,5866,5423,5262,4524,4617,4360,2916,1952,3016,2043,2742,2703,2685,2898,2566,2362,2350,2215,1865,2063,78,1648,1516,1442,1348,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,579,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,6,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,55,52,51,51,50,50,50,49,48,43,39,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-05,105193764,90017560,15196470,6377998,2271591,2151114,1365061,1228000,1185344,1135809,943505,1446883,775537,542089,630272,595394,514963,351591,292604,288364,174603,160200,131381,120473,121363,108834,102408,66357,85860,191746,75862,62803,11695,54291,53060,15287,32673,6238,30131,23112,23780,21001,20036,18325,4,15288,14448,14270,38533,13512,12295,11988,13083,10439,9261,8530,7417,28516,2,6970,6945,6781,6025,5866,5423,5262,4502,4617,4360,2916,42,3096,1998,2742,2703,2685,3046,2566,2362,2350,2215,2076,2063,78,1648,722,1442,1352,1306,1225,1111,988,1051,696,915,896,1046,788,776,678,609,605,503,494,468,452,448,425,404,480,373,368,19,328,441,301,314,289,175,171,148,163,161,145,1,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,57,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,0,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv deleted file mode 100644 index 91ddd8d49c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[pursa] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[blabi] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -2018-12-27,105192075,88379723,15196470,5253665,2268748,2146799,1365058,1227794,1185344,1135809,943505,267748,796289,830795,630272,595394,460467,417394,292342,288362,174610,160112,155276,126913,120893,108834,102408,108721,86950,4627,60440,62606,60567,55507,50225,43541,32673,3525,30131,14838,23780,21001,20036,18325,0,15288,14536,14270,3,13512,12295,11988,6104,10363,8911,8530,7417,6421,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2668,4279,2742,2703,2450,2296,2359,2362,2350,2215,2654,2063,3842,1648,1636,1442,1316,1306,1225,1111,1109,1051,1442,915,896,791,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,263,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,54,51,50,50,50,49,48,43,49,39,38,19,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-28,105191961,88525879,15196470,5725604,2269042,2145969,1365062,1227794,1185344,1135809,943505,267985,809270,830795,630272,595394,525804,417464,292619,288362,174610,160112,155290,126913,120893,108834,102408,116599,86950,4681,60436,62604,88969,54942,50496,43541,32673,111063,30131,24276,23780,21001,20036,18325,0,15288,14560,14270,3,13512,12295,11988,9070,10386,8928,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2730,4279,2742,2703,2223,2296,2411,2362,2350,2215,2651,2063,3842,1648,1642,1442,1320,1306,1225,1111,1110,1051,1440,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,4,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-29,105191993,88683162,15196470,6133060,2275982,2145969,1365062,1227794,1185344,1135809,943505,599291,809314,830795,630272,595394,530750,417512,292619,288362,174610,160112,155276,126916,121086,108834,102408,118427,86950,4747,77045,62690,56593,54295,50647,43541,32673,27249,30131,26937,23780,21001,20036,18325,131976,15288,14544,14270,3,13512,12295,11988,10115,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4692,4617,4360,2916,3510,2708,2877,2742,2703,2865,2296,2421,2362,2350,2215,2651,2063,3842,1648,1664,1442,1324,1306,1225,1111,1110,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,237,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-30,105192014,88765119,15196470,6133060,2283593,2145969,1365062,1227794,1185344,1135809,943505,834793,779767,830795,630272,595394,530750,417555,292619,288362,174610,160112,155131,126912,121085,108834,102408,118427,86950,4801,77045,62719,87106,54295,50870,43541,32673,45076,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12045,10403,8784,8530,7417,4066,10013,6970,6964,6781,6027,5866,5423,5262,4671,4617,4360,2916,3510,2791,2877,2742,2703,2669,2296,2502,2362,2350,2215,2605,2063,3842,1648,1677,1442,1328,1306,1225,1111,1111,1051,1440,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,176,97,122,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,46,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,13,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2018-12-31,105192032,88903007,15196470,6133066,2279381,2145969,1365062,1227846,1185344,1135809,943505,1111730,779767,830795,630272,595394,530750,393209,292604,288362,174610,160112,155117,126861,121085,108834,102408,118427,86950,4843,77022,62713,80333,54295,51256,37479,32673,56318,30131,26937,23780,21001,20036,18325,4,15288,14544,14270,3,13512,12295,11988,12048,10403,8794,8530,7417,4066,10012,6970,6964,6781,6025,5866,5423,5262,4638,4617,4360,2916,3510,2833,2731,2742,2703,2652,2228,2532,2362,2350,2215,1894,2063,1949,1648,1677,1442,1332,1306,1225,1111,1111,1051,1389,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,76,97,81,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,41,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-01,105192102,89164927,15196470,6133066,2278806,2151114,1365062,1227998,1185344,1135809,943505,1117520,773170,832280,630272,595394,511013,351641,292604,288362,174610,160112,131858,120439,121085,108834,102408,118427,86950,4843,77022,62732,68070,54293,51169,37479,32673,58362,30131,26937,23780,21001,20036,18325,4,15288,14448,14270,19788,13512,12295,11988,12142,10421,8794,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4617,4617,4360,2916,3510,2805,2717,2742,2703,2452,2433,2531,2362,2350,2215,1867,2063,1017,1648,1677,1442,1336,1306,1225,1111,1111,1051,311,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,31,328,321,335,314,289,175,171,176,163,161,145,146,189,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,43,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-02,105192452,89405908,15196470,6133066,2278458,2151114,1365062,1227998,1185344,1135809,943505,1117323,773170,835274,630272,595394,465501,351696,292604,288365,174610,160112,131859,120129,121134,108834,102408,90285,86950,191746,76353,62739,38106,54293,51595,22343,32673,5328,30131,24281,23780,21001,20036,18325,4,15288,14448,14270,25861,13512,12295,11988,12142,10421,8796,8530,7417,3957,10012,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2889,2863,2241,2742,2703,2447,2554,2538,2362,2350,2215,1865,2063,1017,1648,1677,1442,1340,1306,1225,1111,959,1051,409,915,896,799,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,19,328,321,301,314,289,175,171,176,163,161,145,146,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,12,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-03,105192460,89579944,15196470,6346696,2274084,2151114,1365056,1228000,1185344,1135809,943505,1253518,773259,576225,630272,595394,513281,349950,292604,288364,174603,160125,131756,120245,121263,108834,102408,83169,85861,191746,76353,62743,33523,54293,52145,22343,32673,1685,30131,24035,23780,21001,20036,18325,4,15288,14448,14270,14111,13512,12295,11988,12144,10428,9237,8530,7417,5428,2,6970,6945,6781,6025,5866,5423,5262,4610,4617,4360,2916,2814,2916,2241,2742,2703,2685,2695,2557,2362,2350,2215,1865,2063,78,1648,1599,1442,1344,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,317,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,132,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,52,52,51,51,50,50,50,49,48,43,36,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-04,105193030,89779619,15196470,6547360,2272673,2151114,1365060,1228000,1185344,1135809,943505,1363753,785029,542542,630272,595394,514946,351559,292604,288364,174603,160138,131458,120307,121363,108834,102408,77536,85860,191746,75862,62736,30267,54293,53185,22343,32673,3994,30131,23917,23780,21001,20036,18325,4,15288,14448,14270,37255,13512,12295,11988,12415,10439,9261,8530,7417,5878,2,6970,6945,6781,6025,5866,5423,5262,4524,4617,4360,2916,1952,3016,2043,2742,2703,2685,2898,2566,2362,2350,2215,1865,2063,78,1648,1516,1442,1348,1306,1225,1111,987,1051,696,915,896,799,788,776,678,609,605,579,494,468,452,448,425,404,480,373,368,19,328,321,301,314,289,175,171,148,163,161,145,6,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,55,52,51,51,50,50,50,49,48,43,39,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,5,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01-05,105193764,90017560,15196470,6377998,2271591,2151114,1365061,1228000,1185344,1135809,943505,1446883,775537,542089,630272,595394,514963,351591,292604,288364,174603,160200,131381,120473,121363,108834,102408,66357,85860,191746,75862,62803,11695,54291,53060,15287,32673,6238,30131,23112,23780,21001,20036,18325,4,15288,14448,14270,38533,13512,12295,11988,13083,10439,9261,8530,7417,28516,2,6970,6945,6781,6025,5866,5423,5262,4502,4617,4360,2916,42,3096,1998,2742,2703,2685,3046,2566,2362,2350,2215,2076,2063,78,1648,722,1442,1352,1306,1225,1111,988,1051,696,915,896,1046,788,776,678,609,605,503,494,468,452,448,425,404,480,373,368,19,328,441,301,314,289,175,171,148,163,161,145,1,73,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,57,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,11,11,11,11,11,0,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,3,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv deleted file mode 100644 index 805f2b9690..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" -2018-12-27,160112,60567,6421,678,97,11,10,5,5,2,2,1,1,1,1 -2018-12-28,160112,88969,4066,678,97,11,10,5,5,2,2,1,1,1,1 -2018-12-29,160112,56593,4066,678,97,11,10,5,5,2,2,1,1,1,1 -2018-12-30,160112,87106,4066,678,97,11,10,5,5,2,2,1,1,1,1 -2018-12-31,160112,80333,4066,678,97,11,10,5,5,2,2,1,1,1,1 -2019-01-01,160112,68070,3957,678,97,11,10,5,5,2,2,1,1,1,1 -2019-01-02,160112,38106,3957,678,97,11,10,5,5,2,2,1,1,1,1 -2019-01-03,160125,33523,5428,678,97,11,10,5,5,2,2,1,1,1,1 -2019-01-04,160138,30267,5878,678,97,11,10,5,5,2,2,1,1,1,1 -2019-01-05,160200,11695,28516,678,97,11,10,5,5,2,2,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv deleted file mode 100644 index 1565287ac0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv deleted file mode 100644 index 71ff914754..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -2018-12,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv deleted file mode 100644 index 71ff914754..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -2018-12,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019-01,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv deleted file mode 100644 index fea169be0e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" -2018-12,160112,74714,4537,678,97,11,10,5,5,2,2,1,1,1,1 -2019-01,160137,36332,9547,678,97,11,10,5,5,2,2,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv deleted file mode 100644 index 5f1c9db163..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv deleted file mode 100644 index 8f1ffa5e2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -"2018 Q4",105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -"2019 Q1",105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv deleted file mode 100644 index 8f1ffa5e2d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -"2018 Q4",105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -"2019 Q1",105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 41f626750c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" -"2018 Q4",160112,74714,4537,678,97,11,10,5,5,2,2,1,1,1,1 -"2019 Q1",160137,36332,9547,678,97,11,10,5,5,2,2,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv deleted file mode 100644 index ad08397784..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv deleted file mode 100644 index b2d00e9310..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -2018,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv deleted file mode 100644 index b2d00e9310..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[magwa] File Count (Number of files)","[molater] File Count (Number of files)","[bobol] File Count (Number of files)","[chabu] File Count (Number of files)","[parbu] File Count (Number of files)","[leske] File Count (Number of files)","[litbu] File Count (Number of files)","[chaff] File Count (Number of files)","[coot1] File Count (Number of files)","[norwa] File Count (Number of files)","[aytinis] File Count (Number of files)","[yelha] File Count (Number of files)","[ibech] File Count (Number of files)","[proubis] File Count (Number of files)","[bawwa] File Count (Number of files)","[cirbu] File Count (Number of files)","[whcsp] File Count (Number of files)","[noror] File Count (Number of files)","[daeju] File Count (Number of files)","[litau] File Count (Number of files)","[pinbu] File Count (Number of files)","[swath] File Count (Number of files)","[rocbu] File Count (Number of files)","[robgr] File Count (Number of files)","[embhala] File Count (Number of files)","[egygo] File Count (Number of files)","[amere] File Count (Number of files)","[crebu] File Count (Number of files)","[alpsw] File Count (Number of files)","[twite] File Count (Number of files)","[snobu] File Count (Number of files)","[dunli] File Count (Number of files)","[ovenb] File Count (Number of files)","[scata] File Count (Number of files)","[larsp] File Count (Number of files)","[linne] File Count (Number of files)","[sanma] File Count (Number of files)","[cross] File Count (Number of files)","[rocth] File Count (Number of files)","[rolle] File Count (Number of files)","[citwa] File Count (Number of files)","[pursa] File Count (Number of files)","[ylwwa] File Count (Number of files)","[whtpl] File Count (Number of files)","[categ] File Count (Number of files)","[rocsp] File Count (Number of files)","[reebu] File Count (Number of files)","[tenwa] File Count (Number of files)","[hulwa] File Count (Number of files)","[baisa] File Count (Number of files)","[blypi] File Count (Number of files)","[blrth] File Count (Number of files)","[tawpi] File Count (Number of files)","[norpa] File Count (Number of files)","[rusto] File Count (Number of files)","[colfl] File Count (Number of files)","[blewh] File Count (Number of files)","[parcr] File Count (Number of files)","[bluth] File Count (Number of files)","[moure] File Count (Number of files)","[sancr] File Count (Number of files)","[pibgr] File Count (Number of files)","[shttr] File Count (Number of files)","[serin] File Count (Number of files)","[honbu] File Count (Number of files)","[hoowa] File Count (Number of files)","[pingr] File Count (Number of files)","[redwi] File Count (Number of files)","[trufi] File Count (Number of files)","[setusca] File Count (Number of files)","[whcbl] File Count (Number of files)","[arcre] File Count (Number of files)","[watpi] File Count (Number of files)","[isawh] File Count (Number of files)","[lapbu] File Count (Number of files)","[comre] File Count (Number of files)","[goldf] File Count (Number of files)","[grath] File Count (Number of files)","[sibth] File Count (Number of files)","[turanni] File Count (Number of files)","[laryane] File Count (Number of files)","[grefi] File Count (Number of files)","[sibru] File Count (Number of files)","[twbcr] File Count (Number of files)","[blare] File Count (Number of files)","[hawfi] File Count (Number of files)","[whinc] File Count (Number of files)","[corbu] File Count (Number of files)","[wheat] File Count (Number of files)","[melnsis] File Count (Number of files)","[redst] File Count (Number of files)","[bullf] File Count (Number of files)","[piefl] File Count (Number of files)","[grewa] File Count (Number of files)","[dippe] File Count (Number of files)","[starl] File Count (Number of files)","[olbpi] File Count (Number of files)","[whwla] File Count (Number of files)","[scocr] File Count (Number of files)","[savsp] File Count (Number of files)","[stoch] File Count (Number of files)","[piewh] File Count (Number of files)","[refbl] File Count (Number of files)","[eybth] File Count (Number of files)","[yebbu] File Count (Number of files)","[ixovius] File Count (Number of files)","[pecpi] File Count (Number of files)","[wren1] File Count (Number of files)","[bimla] File Count (Number of files)","[housp] File Count (Number of files)","[bomorum] File Count (Number of files)","[broth] File Count (Number of files)","[thrni] File Count (Number of files)","[rocpi] File Count (Number of files)","[sogsh] File Count (Number of files)","[ricpi] File Count (Number of files)","[redgr] File Count (Number of files)","[rubro] File Count (Number of files)","[treec] File Count (Number of files)","[mimttos] File Count (Number of files)","[crama] File Count (Number of files)","[robin] File Count (Number of files)","[grrwa] File Count (Number of files)","[nigal] File Count (Number of files)","[spofl] File Count (Number of files)","[bramb] File Count (Number of files)","[turdo] File Count (Number of files)","[calla] File Count (Number of files)","[rinou] File Count (Number of files)","[bltth] File Count (Number of files)","[marti] File Count (Number of files)","[veery] File Count (Number of files)","[coati] File Count (Number of files)","[spasp] File Count (Number of files)","[sante] File Count (Number of files)","[deswh] File Count (Number of files)","[rivwa] File Count (Number of files)","[creti] File Count (Number of files)","[garwa] File Count (Number of files)","[cetwa] File Count (Number of files)","[darwa] File Count (Number of files)","[greti] File Count (Number of files)","[hyllina] File Count (Number of files)","[lanhach] File Count (Number of files)","[dumnsis] File Count (Number of files)","[hiporum] File Count (Number of files)","[aquwa] File Count (Number of files)","[musrica] File Count (Number of files)","[reewa] File Count (Number of files)","[rebfl] File Count (Number of files)","[bluti] File Count (Number of files)","[duswa] File Count (Number of files)","[spewa] File Count (Number of files)","[white] File Count (Number of files)","[penti] File Count (Number of files)","[yebwa] File Count (Number of files)","[firec] File Count (Number of files)","[rutro] File Count (Number of files)","[melwa] File Count (Number of files)","[raven] File Count (Number of files)","[sonth] File Count (Number of files)","[vertera] File Count (Number of files)","[dunno] File Count (Number of files)","[marwa] File Count (Number of files)","[rupwa] File Count (Number of files)","[sitnsis] File Count (Number of files)","[carcr] File Count (Number of files)","[nutcr] File Count (Number of files)","[rook1] File Count (Number of files)","[jay11] File Count (Number of files)","[magpi] File Count (Number of files)","[choug] File Count (Number of files)","[corsh] File Count (Number of files)","[massh] File Count (Number of files)","[sylnsis] File Count (Number of files)","[amero] File Count (Number of files)","[woosh] File Count (Number of files)","[blrwa] File Count (Number of files)","[rebsh] File Count (Number of files)","[golor] File Count (Number of files)","[isash] File Count (Number of files)","[reevi] File Count (Number of files)","[sedwa] File Count (Number of files)","[sumta] File Count (Number of files)","[balsh] File Count (Number of files)","[blabi] File Count (Number of files)","[grawa] File Count (Number of files)","[phivi] File Count (Number of files)","[sayoebe] File Count (Number of files)","[thbwa] File Count (Number of files)","[virrons] File Count (Number of files)","[eaowa] File Count (Number of files)","[gyrfa] File Count (Number of files)","[hobby] File Count (Number of files)","[lanwa] File Count (Number of files)","[leswh] File Count (Number of files)","[rinpa] File Count (Number of files)","[shag1] File Count (Number of files)","[ameke] File Count (Number of files)","[falnsis] File Count (Number of files)","[gshwa] File Count (Number of files)","[lotti] File Count (Number of files)","[reffa] File Count (Number of files)","[clisw] File Count (Number of files)","[grewo] File Count (Number of files)","[ictwa] File Count (Number of files)","[kestr] File Count (Number of files)","[pagwa] File Count (Number of files)","[waxwi] File Count (Number of files)","[beeea] File Count (Number of files)","[blcbe] File Count (Number of files)","[hoopo] File Count (Number of files)","[wryne] File Count (Number of files)","[belki] File Count (Number of files)","[chisw] File Count (Number of files)","[comni] File Count (Number of files)","[deswa] File Count (Number of files)","[egyni] File Count (Number of files)","[kingf] File Count (Number of files)","[netsw] File Count (Number of files)","[pacsw] File Count (Number of files)","[palsw] File Count (Number of files)","[renni] File Count (Number of files)","[swift] File Count (Number of files)","[yerwa] File Count (Number of files)","[grnwa] File Count (Number of files)","[hawow] File Count (Number of files)","[loeow] File Count (Number of files)","[nijar] File Count (Number of files)","[phyatus] File Count (Number of files)","[rersw] File Count (Number of files)","[sheow] File Count (Number of files)","[snoow] File Count (Number of files)","[sposa] File Count (Number of files)","[subwa] File Count (Number of files)","[tawow] File Count (Number of files)","[tenow] File Count (Number of files)","[velsc] File Count (Number of files)","[barow] File Count (Number of files)","[bonwa] File Count (Number of files)","[coldo] File Count (Number of files)","[cucko] File Count (Number of files)","[grscu] File Count (Number of files)","[houma] File Count (Number of files)","[rutdo] File Count (Number of files)","[scoow] File Count (Number of files)","[stodo] File Count (Number of files)","[wallc] File Count (Number of files)","[woodp] File Count (Number of files)","[yebcu] File Count (Number of files)","[zenoura] File Count (Number of files)","[blaca] File Count (Number of files)","[camwa] File Count (Number of files)","[casgu] File Count (Number of files)","[gbbgu] File Count (Number of files)","[glagu] File Count (Number of files)","[icegu] File Count (Number of files)","[laragus] File Count (Number of files)","[laranus] File Count (Number of files)","[lbbgu] File Count (Number of files)","[palsa] File Count (Number of files)","[palwa] File Count (Number of files)","[rocdo] File Count (Number of files)","[swall] File Count (Number of files)","[tacolor] File Count (Number of files)","[wilwa] File Count (Number of files)","[yelwa] File Count (Number of files)","[alete] File Count (Number of files)","[arcte] File Count (Number of files)","[bitte] File Count (Number of files)","[blate] File Count (Number of files)","[blhgu] File Count (Number of files)","[blwpr] File Count (Number of files)","[brardix] File Count (Number of files)","[brite] File Count (Number of files)","[brugu] File Count (Number of files)","[bubsa] File Count (Number of files)","[colpr] File Count (Number of files)","[comgu] File Count (Number of files)","[comsa] File Count (Number of files)","[comte] File Count (Number of files)","[crcco] File Count (Number of files)","[crela] File Count (Number of files)","[evegr] File Count (Number of files)","[forte] File Count (Number of files)","[fragu] File Count (Number of files)","[frahata] File Count (Number of files)","[galcata] File Count (Number of files)","[glaarum] File Count (Number of files)","[greph] File Count (Number of files)","[gresa] File Count (Number of files)","[gresh] File Count (Number of files)","[gresk] File Count (Number of files)","[gresn] File Count (Number of files)","[greye] File Count (Number of files)","[guill] File Count (Number of files)","[ivogu] File Count (Number of files)","[jacsn] File Count (Number of files)","[kitti] File Count (Number of files)","[larinii] File Count (Number of files)","[laugu] File Count (Number of files)","[leasa] File Count (Number of files)","[lecte] File Count (Number of files)","[lesye] File Count (Number of files)","[litgu] File Count (Number of files)","[litte] File Count (Number of files)","[lobdo] File Count (Number of files)","[lotsk] File Count (Number of files)","[lstla] File Count (Number of files)","[marsa] File Count (Number of files)","[medgu] File Count (Number of files)","[pecsa] File Count (Number of files)","[pinnnis] File Count (Number of files)","[pomsk] File Count (Number of files)","[razor] File Count (Number of files)","[redsh] File Count (Number of files)","[renph] File Count (Number of files)","[rosgu] File Count (Number of files)","[roste] File Count (Number of files)","[royte] File Count (Number of files)","[sabgu] File Count (Number of files)","[scaro] File Count (Number of files)","[semsa] File Count (Number of files)","[shola] File Count (Number of files)","[shtla] File Count (Number of files)","[skyla] File Count (Number of files)","[slegu] File Count (Number of files)","[snipe] File Count (Number of files)","[solsa] File Count (Number of files)","[soote] File Count (Number of files)","[stevida] File Count (Number of files)","[synquus] File Count (Number of files)","[tersa] File Count (Number of files)","[trepi] File Count (Number of files)","[triipes] File Count (Number of files)","[whkte] File Count (Number of files)","[whrsa] File Count (Number of files)","[wilph] File Count (Number of files)","[woodc] File Count (Number of files)","[woodl] File Count (Number of files)","[woosa] File Count (Number of files)","[woowa] File Count (Number of files)","[wwbte] File Count (Number of files)","[sarwa] File Count (Number of files)" -2018,105192015,88651378,15196470,5875691,2275349,2146135,1365061,1227804,1185344,1135809,943505,616309,794881,830795,630272,595394,515704,412627,292561,288362,174610,160112,155218,126903,121008,108834,102408,116120,86950,4740,70398,62666,74714,54667,50699,42329,32673,48646,30131,23985,23780,43995,21001,20036,18325,15288,14546,14270,3,13512,12295,11988,9876,10392,8840,8530,7417,4537,10013,6970,6964,6781,6027,5866,5423,5262,4677,4617,4360,2916,3510,2746,3409,2742,2703,2572,2282,2445,2362,2350,2215,2491,2063,3463,1648,1659,1442,1324,1306,1225,1111,1110,1051,1430,915,896,797,788,776,678,609,605,521,494,468,452,448,425,404,361,373,368,684,328,309,335,314,289,175,171,176,163,161,145,201,189,138,130,123,113,106,103,102,156,97,114,90,86,78,75,75,72,69,65,60,57,53,52,52,52,51,50,50,50,49,48,43,46,39,38,35,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,13,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,8,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 -2019,105192762,89589592,15196470,6307637,2275122,2151114,1365060,1227999,1185344,1135809,943505,1259799,776033,665682,630272,595394,503941,351287,292604,288364,174606,160137,131662,120319,121242,108834,102408,87155,86296,154365,76290,62751,36332,54293,52231,23959,32673,15121,30131,24456,23780,4,21001,20036,18325,15288,14448,14270,27110,13512,12295,11988,12385,10430,9070,8530,7417,9547,4006,6970,6945,6781,6025,5866,5423,5262,4573,4617,4360,2916,2241,2939,2248,2742,2703,2591,2725,2552,2362,2350,2215,1908,2063,454,1648,1438,1442,1344,1306,1225,1111,1006,1051,562,915,896,848,788,776,678,609,605,488,494,468,452,448,425,404,432,373,368,21,328,345,308,314,289,175,171,159,163,161,145,86,96,138,130,123,113,106,103,102,47,97,69,90,86,78,75,75,72,69,65,60,57,53,54,52,51,51,50,50,50,49,48,43,38,39,38,39,36,34,34,31,31,29,29,29,28,28,26,25,25,24,22,22,19,17,15,15,14,13,12,11,9,11,11,11,11,11,10,10,10,10,10,10,10,9,9,9,9,9,7,7,7,7,5,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv deleted file mode 100644 index 5e62b06cd0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[swath] File Count (Number of files)","[ovenb] File Count (Number of files)","[parcr] File Count (Number of files)","[savsp] File Count (Number of files)","[sante] File Count (Number of files)","[phivi] File Count (Number of files)","[lanwa] File Count (Number of files)","[egyni] File Count (Number of files)","[palsw] File Count (Number of files)","[blaca] File Count (Number of files)","[rocdo] File Count (Number of files)","[crcco] File Count (Number of files)","[frahata] File Count (Number of files)","[gresh] File Count (Number of files)","[razor] File Count (Number of files)" -2018,160112,74714,4537,678,97,11,10,5,5,2,2,1,1,1,1 -2019,160137,36332,9547,678,97,11,10,5,5,2,2,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv deleted file mode 100644 index 946f2198e1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_file_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"File Count (Number of files): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv deleted file mode 100644 index 6118dec111..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv deleted file mode 100644 index a657faed07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv deleted file mode 100644 index 6118dec111..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv deleted file mode 100644 index a657faed07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv deleted file mode 100644 index 6118dec111..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv deleted file mode 100644 index a657faed07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv deleted file mode 100644 index f5384b604d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -bobol,250000003072000.0000 -molater,250000003072000.0000 -ylwwa,200000000000000.0000 -amere,150000001024000.0000 -redgr,150000001024000.0000 -norwa,100005003264000.0000 -tenwa,60000002048000.0000 -bawwa,50005000192000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10005000192000.0000 -camwa,10005000192000.0000 -leske,10005000192000.0000 -norpa,10005000192000.0000 -sanma,10005000192000.0000 -setusca,9000009728000.0000 -corbu,2000003072000.0000 -shttr,1010008064000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv deleted file mode 100644 index 6118dec111..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv deleted file mode 100644 index a657faed07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Hard Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv deleted file mode 100644 index aabd90f0e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -2018-12-27,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv deleted file mode 100644 index aabd90f0e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -2018-12-27,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv deleted file mode 100644 index e2dbdcc95b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv deleted file mode 100644 index 0793c8ed90..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv deleted file mode 100644 index 476009bc8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -2018-12,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv deleted file mode 100644 index 476009bc8e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -2018-12,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv deleted file mode 100644 index aea9821c2e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv deleted file mode 100644 index 0e92573f63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv deleted file mode 100644 index 2c02c948e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -"2018 Q4",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv deleted file mode 100644 index 2c02c948e0..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -"2018 Q4",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv deleted file mode 100644 index cca14e57d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv deleted file mode 100644 index c154fdf754..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv deleted file mode 100644 index d9295752af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -2018,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv deleted file mode 100644 index d9295752af..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[bobol] Quota: Hard Threshold (Bytes)","[molater] Quota: Hard Threshold (Bytes)","[ylwwa] Quota: Hard Threshold (Bytes)","[amere] Quota: Hard Threshold (Bytes)","[redgr] Quota: Hard Threshold (Bytes)","[norwa] Quota: Hard Threshold (Bytes)","[tenwa] Quota: Hard Threshold (Bytes)","[bawwa] Quota: Hard Threshold (Bytes)","[chaff] Quota: Hard Threshold (Bytes)","[ibech] Quota: Hard Threshold (Bytes)","[magwa] Quota: Hard Threshold (Bytes)","[aytinis] Quota: Hard Threshold (Bytes)","[camwa] Quota: Hard Threshold (Bytes)","[leske] Quota: Hard Threshold (Bytes)","[norpa] Quota: Hard Threshold (Bytes)","[sanma] Quota: Hard Threshold (Bytes)","[setusca] Quota: Hard Threshold (Bytes)","[corbu] Quota: Hard Threshold (Bytes)","[shttr] Quota: Hard Threshold (Bytes)","[alete] Quota: Hard Threshold (Bytes)","[alpsw] Quota: Hard Threshold (Bytes)","[ameke] Quota: Hard Threshold (Bytes)","[amero] Quota: Hard Threshold (Bytes)","[aquwa] Quota: Hard Threshold (Bytes)","[arcre] Quota: Hard Threshold (Bytes)","[arcte] Quota: Hard Threshold (Bytes)","[baisa] Quota: Hard Threshold (Bytes)","[balsh] Quota: Hard Threshold (Bytes)","[barow] Quota: Hard Threshold (Bytes)","[beeea] Quota: Hard Threshold (Bytes)","[belki] Quota: Hard Threshold (Bytes)","[bimla] Quota: Hard Threshold (Bytes)","[bitte] Quota: Hard Threshold (Bytes)","[blabi] Quota: Hard Threshold (Bytes)","[blaca] Quota: Hard Threshold (Bytes)","[blare] Quota: Hard Threshold (Bytes)","[blate] Quota: Hard Threshold (Bytes)","[blcbe] Quota: Hard Threshold (Bytes)","[blewh] Quota: Hard Threshold (Bytes)","[blhgu] Quota: Hard Threshold (Bytes)","[blrth] Quota: Hard Threshold (Bytes)","[blrwa] Quota: Hard Threshold (Bytes)","[bltth] Quota: Hard Threshold (Bytes)","[bluth] Quota: Hard Threshold (Bytes)","[bluti] Quota: Hard Threshold (Bytes)","[blwpr] Quota: Hard Threshold (Bytes)","[blypi] Quota: Hard Threshold (Bytes)","[bomorum] Quota: Hard Threshold (Bytes)","[bonwa] Quota: Hard Threshold (Bytes)","[bramb] Quota: Hard Threshold (Bytes)","[brardix] Quota: Hard Threshold (Bytes)","[brite] Quota: Hard Threshold (Bytes)","[broth] Quota: Hard Threshold (Bytes)","[brugu] Quota: Hard Threshold (Bytes)","[bubsa] Quota: Hard Threshold (Bytes)","[bullf] Quota: Hard Threshold (Bytes)","[calla] Quota: Hard Threshold (Bytes)","[carcr] Quota: Hard Threshold (Bytes)","[casgu] Quota: Hard Threshold (Bytes)","[categ] Quota: Hard Threshold (Bytes)","[cetwa] Quota: Hard Threshold (Bytes)","[chabu] Quota: Hard Threshold (Bytes)","[chisw] Quota: Hard Threshold (Bytes)","[choug] Quota: Hard Threshold (Bytes)","[cirbu] Quota: Hard Threshold (Bytes)","[citwa] Quota: Hard Threshold (Bytes)","[clisw] Quota: Hard Threshold (Bytes)","[coati] Quota: Hard Threshold (Bytes)","[coldo] Quota: Hard Threshold (Bytes)","[colfl] Quota: Hard Threshold (Bytes)","[colpr] Quota: Hard Threshold (Bytes)","[comgu] Quota: Hard Threshold (Bytes)","[comni] Quota: Hard Threshold (Bytes)","[comre] Quota: Hard Threshold (Bytes)","[comsa] Quota: Hard Threshold (Bytes)","[comte] Quota: Hard Threshold (Bytes)","[coot1] Quota: Hard Threshold (Bytes)","[corsh] Quota: Hard Threshold (Bytes)","[crama] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[crebu] Quota: Hard Threshold (Bytes)","[crela] Quota: Hard Threshold (Bytes)","[creti] Quota: Hard Threshold (Bytes)","[cross] Quota: Hard Threshold (Bytes)","[cucko] Quota: Hard Threshold (Bytes)","[daeju] Quota: Hard Threshold (Bytes)","[darwa] Quota: Hard Threshold (Bytes)","[deswa] Quota: Hard Threshold (Bytes)","[deswh] Quota: Hard Threshold (Bytes)","[dippe] Quota: Hard Threshold (Bytes)","[dumnsis] Quota: Hard Threshold (Bytes)","[dunli] Quota: Hard Threshold (Bytes)","[dunno] Quota: Hard Threshold (Bytes)","[duswa] Quota: Hard Threshold (Bytes)","[eaowa] Quota: Hard Threshold (Bytes)","[egygo] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[embhala] Quota: Hard Threshold (Bytes)","[evegr] Quota: Hard Threshold (Bytes)","[eybth] Quota: Hard Threshold (Bytes)","[falnsis] Quota: Hard Threshold (Bytes)","[firec] Quota: Hard Threshold (Bytes)","[forte] Quota: Hard Threshold (Bytes)","[fragu] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[galcata] Quota: Hard Threshold (Bytes)","[garwa] Quota: Hard Threshold (Bytes)","[gbbgu] Quota: Hard Threshold (Bytes)","[glaarum] Quota: Hard Threshold (Bytes)","[glagu] Quota: Hard Threshold (Bytes)","[goldf] Quota: Hard Threshold (Bytes)","[golor] Quota: Hard Threshold (Bytes)","[grath] Quota: Hard Threshold (Bytes)","[grawa] Quota: Hard Threshold (Bytes)","[grefi] Quota: Hard Threshold (Bytes)","[greph] Quota: Hard Threshold (Bytes)","[gresa] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[gresk] Quota: Hard Threshold (Bytes)","[gresn] Quota: Hard Threshold (Bytes)","[greti] Quota: Hard Threshold (Bytes)","[grewa] Quota: Hard Threshold (Bytes)","[grewo] Quota: Hard Threshold (Bytes)","[greye] Quota: Hard Threshold (Bytes)","[grnwa] Quota: Hard Threshold (Bytes)","[grrwa] Quota: Hard Threshold (Bytes)","[grscu] Quota: Hard Threshold (Bytes)","[gshwa] Quota: Hard Threshold (Bytes)","[guill] Quota: Hard Threshold (Bytes)","[gyrfa] Quota: Hard Threshold (Bytes)","[hawfi] Quota: Hard Threshold (Bytes)","[hawow] Quota: Hard Threshold (Bytes)","[hiporum] Quota: Hard Threshold (Bytes)","[hobby] Quota: Hard Threshold (Bytes)","[honbu] Quota: Hard Threshold (Bytes)","[hoopo] Quota: Hard Threshold (Bytes)","[hoowa] Quota: Hard Threshold (Bytes)","[houma] Quota: Hard Threshold (Bytes)","[housp] Quota: Hard Threshold (Bytes)","[hulwa] Quota: Hard Threshold (Bytes)","[hyllina] Quota: Hard Threshold (Bytes)","[icegu] Quota: Hard Threshold (Bytes)","[ictwa] Quota: Hard Threshold (Bytes)","[isash] Quota: Hard Threshold (Bytes)","[isawh] Quota: Hard Threshold (Bytes)","[ivogu] Quota: Hard Threshold (Bytes)","[ixovius] Quota: Hard Threshold (Bytes)","[jacsn] Quota: Hard Threshold (Bytes)","[jay11] Quota: Hard Threshold (Bytes)","[kestr] Quota: Hard Threshold (Bytes)","[kingf] Quota: Hard Threshold (Bytes)","[kitti] Quota: Hard Threshold (Bytes)","[lanhach] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[lapbu] Quota: Hard Threshold (Bytes)","[laragus] Quota: Hard Threshold (Bytes)","[laranus] Quota: Hard Threshold (Bytes)","[larinii] Quota: Hard Threshold (Bytes)","[larsp] Quota: Hard Threshold (Bytes)","[laryane] Quota: Hard Threshold (Bytes)","[laugu] Quota: Hard Threshold (Bytes)","[lbbgu] Quota: Hard Threshold (Bytes)","[leasa] Quota: Hard Threshold (Bytes)","[lecte] Quota: Hard Threshold (Bytes)","[leswh] Quota: Hard Threshold (Bytes)","[lesye] Quota: Hard Threshold (Bytes)","[linne] Quota: Hard Threshold (Bytes)","[litau] Quota: Hard Threshold (Bytes)","[litbu] Quota: Hard Threshold (Bytes)","[litgu] Quota: Hard Threshold (Bytes)","[litte] Quota: Hard Threshold (Bytes)","[lobdo] Quota: Hard Threshold (Bytes)","[loeow] Quota: Hard Threshold (Bytes)","[lotsk] Quota: Hard Threshold (Bytes)","[lotti] Quota: Hard Threshold (Bytes)","[lstla] Quota: Hard Threshold (Bytes)","[magpi] Quota: Hard Threshold (Bytes)","[marsa] Quota: Hard Threshold (Bytes)","[marti] Quota: Hard Threshold (Bytes)","[marwa] Quota: Hard Threshold (Bytes)","[massh] Quota: Hard Threshold (Bytes)","[medgu] Quota: Hard Threshold (Bytes)","[melnsis] Quota: Hard Threshold (Bytes)","[melwa] Quota: Hard Threshold (Bytes)","[mimttos] Quota: Hard Threshold (Bytes)","[moure] Quota: Hard Threshold (Bytes)","[musrica] Quota: Hard Threshold (Bytes)","[netsw] Quota: Hard Threshold (Bytes)","[nigal] Quota: Hard Threshold (Bytes)","[nijar] Quota: Hard Threshold (Bytes)","[noror] Quota: Hard Threshold (Bytes)","[nutcr] Quota: Hard Threshold (Bytes)","[olbpi] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[pacsw] Quota: Hard Threshold (Bytes)","[pagwa] Quota: Hard Threshold (Bytes)","[palsa] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[palwa] Quota: Hard Threshold (Bytes)","[parbu] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[pecpi] Quota: Hard Threshold (Bytes)","[pecsa] Quota: Hard Threshold (Bytes)","[penti] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[phyatus] Quota: Hard Threshold (Bytes)","[pibgr] Quota: Hard Threshold (Bytes)","[piefl] Quota: Hard Threshold (Bytes)","[piewh] Quota: Hard Threshold (Bytes)","[pinbu] Quota: Hard Threshold (Bytes)","[pingr] Quota: Hard Threshold (Bytes)","[pinnnis] Quota: Hard Threshold (Bytes)","[pomsk] Quota: Hard Threshold (Bytes)","[proubis] Quota: Hard Threshold (Bytes)","[pursa] Quota: Hard Threshold (Bytes)","[raven] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rebfl] Quota: Hard Threshold (Bytes)","[rebsh] Quota: Hard Threshold (Bytes)","[redsh] Quota: Hard Threshold (Bytes)","[redst] Quota: Hard Threshold (Bytes)","[redwi] Quota: Hard Threshold (Bytes)","[reebu] Quota: Hard Threshold (Bytes)","[reevi] Quota: Hard Threshold (Bytes)","[reewa] Quota: Hard Threshold (Bytes)","[refbl] Quota: Hard Threshold (Bytes)","[reffa] Quota: Hard Threshold (Bytes)","[renni] Quota: Hard Threshold (Bytes)","[renph] Quota: Hard Threshold (Bytes)","[rersw] Quota: Hard Threshold (Bytes)","[ricpi] Quota: Hard Threshold (Bytes)","[rinou] Quota: Hard Threshold (Bytes)","[rinpa] Quota: Hard Threshold (Bytes)","[rivwa] Quota: Hard Threshold (Bytes)","[robgr] Quota: Hard Threshold (Bytes)","[robin] Quota: Hard Threshold (Bytes)","[rocbu] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[rocpi] Quota: Hard Threshold (Bytes)","[rocsp] Quota: Hard Threshold (Bytes)","[rocth] Quota: Hard Threshold (Bytes)","[rolle] Quota: Hard Threshold (Bytes)","[rook1] Quota: Hard Threshold (Bytes)","[rosgu] Quota: Hard Threshold (Bytes)","[roste] Quota: Hard Threshold (Bytes)","[royte] Quota: Hard Threshold (Bytes)","[rubro] Quota: Hard Threshold (Bytes)","[rupwa] Quota: Hard Threshold (Bytes)","[rusto] Quota: Hard Threshold (Bytes)","[rutdo] Quota: Hard Threshold (Bytes)","[rutro] Quota: Hard Threshold (Bytes)","[sabgu] Quota: Hard Threshold (Bytes)","[sancr] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[sarwa] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[sayoebe] Quota: Hard Threshold (Bytes)","[scaro] Quota: Hard Threshold (Bytes)","[scata] Quota: Hard Threshold (Bytes)","[scocr] Quota: Hard Threshold (Bytes)","[scoow] Quota: Hard Threshold (Bytes)","[sedwa] Quota: Hard Threshold (Bytes)","[semsa] Quota: Hard Threshold (Bytes)","[serin] Quota: Hard Threshold (Bytes)","[shag1] Quota: Hard Threshold (Bytes)","[sheow] Quota: Hard Threshold (Bytes)","[shola] Quota: Hard Threshold (Bytes)","[shtla] Quota: Hard Threshold (Bytes)","[sibru] Quota: Hard Threshold (Bytes)","[sibth] Quota: Hard Threshold (Bytes)","[sitnsis] Quota: Hard Threshold (Bytes)","[skyla] Quota: Hard Threshold (Bytes)","[slegu] Quota: Hard Threshold (Bytes)","[snipe] Quota: Hard Threshold (Bytes)","[snobu] Quota: Hard Threshold (Bytes)","[snoow] Quota: Hard Threshold (Bytes)","[sogsh] Quota: Hard Threshold (Bytes)","[solsa] Quota: Hard Threshold (Bytes)","[sonth] Quota: Hard Threshold (Bytes)","[soote] Quota: Hard Threshold (Bytes)","[spasp] Quota: Hard Threshold (Bytes)","[spewa] Quota: Hard Threshold (Bytes)","[spofl] Quota: Hard Threshold (Bytes)","[sposa] Quota: Hard Threshold (Bytes)","[starl] Quota: Hard Threshold (Bytes)","[stevida] Quota: Hard Threshold (Bytes)","[stoch] Quota: Hard Threshold (Bytes)","[stodo] Quota: Hard Threshold (Bytes)","[subwa] Quota: Hard Threshold (Bytes)","[sumta] Quota: Hard Threshold (Bytes)","[swall] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)","[swift] Quota: Hard Threshold (Bytes)","[sylnsis] Quota: Hard Threshold (Bytes)","[synquus] Quota: Hard Threshold (Bytes)","[tacolor] Quota: Hard Threshold (Bytes)","[tawow] Quota: Hard Threshold (Bytes)","[tawpi] Quota: Hard Threshold (Bytes)","[tenow] Quota: Hard Threshold (Bytes)","[tersa] Quota: Hard Threshold (Bytes)","[thbwa] Quota: Hard Threshold (Bytes)","[thrni] Quota: Hard Threshold (Bytes)","[treec] Quota: Hard Threshold (Bytes)","[trepi] Quota: Hard Threshold (Bytes)","[triipes] Quota: Hard Threshold (Bytes)","[trufi] Quota: Hard Threshold (Bytes)","[turanni] Quota: Hard Threshold (Bytes)","[turdo] Quota: Hard Threshold (Bytes)","[twbcr] Quota: Hard Threshold (Bytes)","[twite] Quota: Hard Threshold (Bytes)","[veery] Quota: Hard Threshold (Bytes)","[velsc] Quota: Hard Threshold (Bytes)","[vertera] Quota: Hard Threshold (Bytes)","[virrons] Quota: Hard Threshold (Bytes)","[wallc] Quota: Hard Threshold (Bytes)","[watpi] Quota: Hard Threshold (Bytes)","[waxwi] Quota: Hard Threshold (Bytes)","[whcbl] Quota: Hard Threshold (Bytes)","[whcsp] Quota: Hard Threshold (Bytes)","[wheat] Quota: Hard Threshold (Bytes)","[whinc] Quota: Hard Threshold (Bytes)","[white] Quota: Hard Threshold (Bytes)","[whkte] Quota: Hard Threshold (Bytes)","[whrsa] Quota: Hard Threshold (Bytes)","[whtpl] Quota: Hard Threshold (Bytes)","[whwla] Quota: Hard Threshold (Bytes)","[wilph] Quota: Hard Threshold (Bytes)","[wilwa] Quota: Hard Threshold (Bytes)","[woodc] Quota: Hard Threshold (Bytes)","[woodl] Quota: Hard Threshold (Bytes)","[woodp] Quota: Hard Threshold (Bytes)","[woosa] Quota: Hard Threshold (Bytes)","[woosh] Quota: Hard Threshold (Bytes)","[woowa] Quota: Hard Threshold (Bytes)","[wren1] Quota: Hard Threshold (Bytes)","[wryne] Quota: Hard Threshold (Bytes)","[wwbte] Quota: Hard Threshold (Bytes)","[yebbu] Quota: Hard Threshold (Bytes)","[yebcu] Quota: Hard Threshold (Bytes)","[yebwa] Quota: Hard Threshold (Bytes)","[yelha] Quota: Hard Threshold (Bytes)","[yelwa] Quota: Hard Threshold (Bytes)","[yerwa] Quota: Hard Threshold (Bytes)","[zenoura] Quota: Hard Threshold (Bytes)" -2018,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,250000003072000,250000003072000,200000000000000,150000001024000,150000001024000,100005003264000,60000002048000,50005000192000,30000001024000,25000001536000,20000002048000,10005000192000,10005000192000,10005000192000,10005000192000,10005000192000,9000009728000,2000003072000,1010008064000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv deleted file mode 100644 index 3215c9dcef..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[blaca] Quota: Hard Threshold (Bytes)","[crcco] Quota: Hard Threshold (Bytes)","[egyni] Quota: Hard Threshold (Bytes)","[frahata] Quota: Hard Threshold (Bytes)","[gresh] Quota: Hard Threshold (Bytes)","[lanwa] Quota: Hard Threshold (Bytes)","[ovenb] Quota: Hard Threshold (Bytes)","[palsw] Quota: Hard Threshold (Bytes)","[parcr] Quota: Hard Threshold (Bytes)","[phivi] Quota: Hard Threshold (Bytes)","[razor] Quota: Hard Threshold (Bytes)","[rocdo] Quota: Hard Threshold (Bytes)","[sante] Quota: Hard Threshold (Bytes)","[savsp] Quota: Hard Threshold (Bytes)","[swath] Quota: Hard Threshold (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv deleted file mode 100644 index 88b1171281..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_hard_threshold/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Hard Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv deleted file mode 100644 index 0f1f96894a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,8558368000.0000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -blabi,796444.4444 -aquwa,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv deleted file mode 100644 index 0f1f96894a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,8558368000.0000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -blabi,796444.4444 -aquwa,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv deleted file mode 100644 index a492282441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -ovenb,10221160128000.0000 -parcr,463271065600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -blaca,768000.0000 -savsp,640000.0000 -lanwa,256000.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -palsw,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv deleted file mode 100644 index 082ba7a4a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv deleted file mode 100644 index 055675648e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,9106218666.5000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -aquwa,768000.0000 -blabi,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv deleted file mode 100644 index 055675648e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,9106218666.5000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -aquwa,768000.0000 -blabi,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv deleted file mode 100644 index a492282441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -ovenb,10221160128000.0000 -parcr,463271065600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -blaca,768000.0000 -savsp,640000.0000 -lanwa,256000.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -palsw,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv deleted file mode 100644 index 082ba7a4a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv deleted file mode 100644 index 055675648e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,9106218666.5000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -aquwa,768000.0000 -blabi,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv deleted file mode 100644 index 055675648e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,9106218666.5000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -aquwa,768000.0000 -blabi,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv deleted file mode 100644 index a492282441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -ovenb,10221160128000.0000 -parcr,463271065600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -blaca,768000.0000 -savsp,640000.0000 -lanwa,256000.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -palsw,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv deleted file mode 100644 index 082ba7a4a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv deleted file mode 100644 index 055675648e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,9106218666.5000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -aquwa,768000.0000 -blabi,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv deleted file mode 100644 index 055675648e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -molater,162670858508800.0000 -noror,120848346406400.0000 -amere,94668546688000.0000 -bobol,55029891456000.0000 -norwa,50638493824000.0000 -parbu,46405301388800.0000 -litau,40448713728000.0000 -chaff,29285570009600.0000 -bawwa,27267411328000.0000 -magwa,17870231244800.0000 -crebu,16087800473600.0000 -rusto,15545744473600.0000 -tenwa,13832863872000.0000 -ovenb,10221160128000.0000 -sanma,9928160640000.0000 -norpa,9219031795200.0000 -leske,8964344115200.0000 -litbu,7541796608000.0000 -coot1,6034834048000.0000 -rocbu,5392457907200.0000 -scocr,4457590784000.0000 -proubis,3843580377600.0000 -aytinis,3707448192000.0000 -alpsw,2970285811200.0000 -cirbu,2706318336000.0000 -lapbu,2698908288000.0000 -chabu,2466790976000.0000 -yelha,2249345779200.0000 -larsp,2009530739200.0000 -serin,1944329728000.0000 -pinbu,1733976166400.0000 -setusca,1506957094400.0000 -cross,1340005606400.0000 -embhala,923557043200.0000 -daeju,813028595200.0000 -rolle,693861888000.0000 -whcsp,601996505600.0000 -redgr,575703936000.0000 -goldf,501555571200.0000 -ibech,489881305600.0000 -bramb,485586636800.0000 -parcr,463271065600.0000 -rocpi,297982336000.0000 -scata,295327449600.0000 -twite,278880576000.0000 -arcre,267434624000.0000 -comre,252261286400.0000 -snobu,225457203200.0000 -pecpi,203318016000.0000 -twbcr,150338624000.0000 -reebu,143756608000.0000 -sogsh,129129152000.0000 -grefi,127649331200.0000 -olbpi,118578649600.0000 -bullf,108903206400.0000 -dunli,91059212800.0000 -hawfi,87268083200.0000 -pingr,77630118400.0000 -trufi,73587315200.0000 -dunno,66818816000.0000 -robgr,50593497600.0000 -corbu,43913408000.0000 -ricpi,20188313600.0000 -watpi,19298982400.0000 -tawpi,16181068800.0000 -linne,14152985600.0000 -pursa,9106218666.5000 -housp,8004428800.0000 -grath,7550720000.0000 -refbl,6938905600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -spasp,5368076800.0000 -piewh,4905216000.0000 -rebfl,3000576000.0000 -grewa,2207552000.0000 -hulwa,1995968000.0000 -categ,1991040000.0000 -velsc,1984768000.0000 -deswh,1695833600.0000 -stoch,1615104000.0000 -sancr,821760000.0000 -blypi,620928000.0000 -whcbl,493644800.0000 -sonth,458163200.0000 -blewh,382848000.0000 -honbu,281728000.0000 -musrica,278912000.0000 -citwa,213504000.0000 -isawh,195200000.0000 -wheat,183040000.0000 -amero,177792000.0000 -rocsp,151808000.0000 -rutro,146649600.0000 -shttr,142592000.0000 -whinc,134784000.0000 -nigal,99072000.0000 -moure,64640000.0000 -redst,55168000.0000 -thrni,43430400.0000 -robin,42496000.0000 -egygo,41344000.0000 -blare,37760000.0000 -piefl,35456000.0000 -colfl,34816000.0000 -hyllina,34432000.0000 -waxwi,28800000.0000 -wallc,28544000.0000 -sibru,26112000.0000 -spofl,23820800.0000 -rubro,20864000.0000 -dumnsis,17280000.0000 -garwa,14848000.0000 -bltth,13184000.0000 -ylwwa,13184000.0000 -blrth,12544000.0000 -baisa,9344000.0000 -eybth,8576000.0000 -rocth,8064000.0000 -rinou,7552000.0000 -turdo,7552000.0000 -laryane,7424000.0000 -whtpl,7424000.0000 -cetwa,6272000.0000 -sitnsis,4992000.0000 -veery,3456000.0000 -ixovius,2816000.0000 -crama,1945600.0000 -dippe,1920000.0000 -starl,1920000.0000 -redwi,1664000.0000 -pagwa,1331200.0000 -turanni,1280000.0000 -bluth,1203200.0000 -deswa,1152000.0000 -reewa,1152000.0000 -blrwa,1024000.0000 -broth,1024000.0000 -marwa,1024000.0000 -mimttos,1024000.0000 -sedwa,896000.0000 -wren1,896000.0000 -aquwa,768000.0000 -blabi,768000.0000 -blaca,768000.0000 -melwa,768000.0000 -vertera,768000.0000 -hiporum,640000.0000 -savsp,640000.0000 -wilwa,640000.0000 -eaowa,512000.0000 -sibth,512000.0000 -treec,512000.0000 -woowa,512000.0000 -bonwa,384000.0000 -calla,384000.0000 -palwa,384000.0000 -thbwa,384000.0000 -yerwa,384000.0000 -grawa,256000.0000 -grnwa,256000.0000 -gshwa,256000.0000 -ictwa,256000.0000 -lanwa,256000.0000 -phyatus,256000.0000 -rivwa,256000.0000 -bomorum,128000.0000 -clisw,128000.0000 -crela,128000.0000 -darwa,128000.0000 -grrwa,128000.0000 -houma,128000.0000 -lanhach,128000.0000 -leswh,128000.0000 -lotti,128000.0000 -lstla,128000.0000 -pibgr,128000.0000 -rersw,128000.0000 -rupwa,128000.0000 -shola,128000.0000 -shtla,128000.0000 -skyla,128000.0000 -spewa,128000.0000 -swall,128000.0000 -sylnsis,128000.0000 -tacolor,128000.0000 -white,128000.0000 -woodl,128000.0000 -alete,0.0000 -ameke,0.0000 -arcte,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blate,0.0000 -blcbe,0.0000 -blhgu,0.0000 -bluti,0.0000 -blwpr,0.0000 -brardix,0.0000 -brite,0.0000 -brugu,0.0000 -bubsa,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -chisw,0.0000 -choug,0.0000 -coati,0.0000 -coldo,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comsa,0.0000 -comte,0.0000 -corsh,0.0000 -crcco,0.0000 -creti,0.0000 -cucko,0.0000 -duswa,0.0000 -egyni,0.0000 -evegr,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -golor,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewo,0.0000 -greye,0.0000 -grscu,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawow,0.0000 -hobby,0.0000 -hoopo,0.0000 -hoowa,0.0000 -icegu,0.0000 -isash,0.0000 -ivogu,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -lesye,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -netsw,0.0000 -nijar,0.0000 -nutcr,0.0000 -pacsw,0.0000 -palsa,0.0000 -palsw,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -raven,0.0000 -razor,0.0000 -rebsh,0.0000 -redsh,0.0000 -reevi,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rinpa,0.0000 -rocdo,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rutdo,0.0000 -sabgu,0.0000 -sarwa,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scoow,0.0000 -semsa,0.0000 -shag1,0.0000 -sheow,0.0000 -slegu,0.0000 -snipe,0.0000 -snoow,0.0000 -solsa,0.0000 -soote,0.0000 -sposa,0.0000 -stevida,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swift,0.0000 -synquus,0.0000 -tawow,0.0000 -tenow,0.0000 -tersa,0.0000 -trepi,0.0000 -triipes,0.0000 -virrons,0.0000 -whkte,0.0000 -whrsa,0.0000 -whwla,0.0000 -wilph,0.0000 -woodc,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv deleted file mode 100644 index a492282441..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" -ovenb,10221160128000.0000 -parcr,463271065600.0000 -swath,6804044800.0000 -sante,5779584000.0000 -blaca,768000.0000 -savsp,640000.0000 -lanwa,256000.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -palsw,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv deleted file mode 100644 index 082ba7a4a2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Logical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv deleted file mode 100644 index 635d35813d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -2018-12-27,161970387072000,130882300416000,94668546688000,55029891456000,50638493824000,38336309632000,40448713728000,29295568896000,27267411328000,17505628032000,15494882432000,15702943232000,13832863872000,14242280064000,9928160640000,9218944768000,8957422592000,7541796608000,6034834048000,5937893248000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2230504704000,2228458624000,1952837504000,1944329728000,1733989376000,1506955904000,339764480000,921950848000,812594176000,370410752000,603500800000,575703936000,474718208000,491007360000,662139648000,459477248000,297982336000,297141376000,230846848000,256112512000,244283904000,228683648000,203318016000,256331776000,173886720000,129027072000,139109120000,117884160000,97863680000,87247488000,90370688000,96233600000,108636160000,66818816000,50535936000,43912832000,23900416000,33932800000,9422592000,18692736000,0,7672960000,366592000,6557312000,6000896000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,154496000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,787072000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,162119939712000,130951853312000,94668546688000,55029891456000,50638493824000,41442712960000,40448713728000,29295568896000,27267411328000,17921053824000,17998195200000,15771797504000,13832863872000,12001895936000,9928160640000,9218971392000,8958675584000,7541796608000,6034834048000,5937961216000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2357435776000,2228909184000,1986484736000,1944329728000,1733989376000,1506956160000,2218562816000,921950848000,813076864000,587832448000,631372544000,575703936000,474718208000,491711360000,662139648000,458981632000,297982336000,295846144000,245742848000,260281472000,233874944000,228682752000,203318016000,256331776000,177062784000,129104640000,138835584000,118649472000,97863936000,87256320000,90336384000,96233600000,128210944000,66818816000,50535936000,43912960000,23900416000,33932800000,14527872000,18692736000,0,7672960000,2401408000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,162292553216000,131019984640000,94668546688000,55029891456000,50638493824000,42669537408000,40448713728000,29295568896000,27267411328000,18024812544000,18278423680000,15449285376000,13832863872000,11767707008000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936964864000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2237309440000,2049042048000,1944329728000,1733989376000,1506956416000,1754243200000,923198464000,813076864000,781170816000,633516288000,575703936000,474718208000,492912512000,662139648000,458981632000,297982336000,295037568000,263454848000,256227456000,267489664000,230024960000,203318016000,256331776000,178106752000,129104640000,138835584000,118649472000,97863936000,91802240000,90581120000,96233600000,141851776000,66818816000,51429504000,43913088000,23900416000,21396992000,16625536000,18692736000,20063232000,7672960000,2554368000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,162411179264000,131075613568000,94668546688000,55029891456000,50638493824000,45937860608000,40448713728000,29295568768000,27267411328000,18114090752000,18284034944000,15470170880000,13832863872000,11607914624000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936318080000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2242306944000,2067007872000,1944329728000,1733989376000,1506956672000,2039233408000,923594240000,813076864000,781170816000,633521792000,575703936000,474718208000,488464640000,662139648000,458981632000,297982336000,295037568000,277430144000,263643776000,253159424000,230020224000,203318016000,256331776000,178106752000,129104640000,137997440000,118649472000,97864320000,91831296000,90685696000,93119232000,141851776000,66818816000,51429888000,43913216000,23900416000,21396992000,17486336000,18692736000,6914816000,7672960000,9539328000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,162592092800000,120058848256000,94668546688000,55029891456000,50638493824000,48469915392000,40448713728000,29295638016000,27267411328000,18132494464000,18284034944000,15482173184000,13832863872000,16703203328000,9928160640000,9219024768000,8958667648000,7541796608000,6034834048000,5936241792000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2247882112000,2202024704000,1944329728000,1733989376000,1506956928000,2326942336000,923594240000,813076864000,781170816000,633514240000,575703936000,467375104000,488482304000,662139648000,458981632000,297982336000,295037568000,286533888000,266416768000,248449920000,230002432000,203318016000,207372032000,178106752000,129104640000,121020032000,118649472000,97864320000,91836928000,90685696000,77647104000,141851776000,66818816000,51319296000,43913344000,23900416000,18674048000,16938112000,16437504000,6914816000,7672960000,9809792000,6557312000,6022272000,5779584000,2627712000,4905216000,3000576000,2179072000,384000,1991040000,1984768000,2121984000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,162782021504000,115647463040000,94668546688000,55029891456000,50638493824000,48922220416000,40448713728000,29275253120000,27267411328000,18162174336000,18284034944000,15482173184000,13832863872000,14173657216000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4858566912000,4457590784000,4179763584000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2246351232000,2154197888000,1944329728000,1733989376000,1506957056000,2509993344000,923594240000,813076864000,781170816000,590948992000,575703936000,455522560000,487712384000,662139648000,456145280000,297982336000,295034880000,286533888000,263296256000,250212096000,230002432000,203318016000,135342208000,110459264000,129104640000,118758272000,118649472000,97864320000,91868672000,90686848000,68341888000,14694144000,66818816000,50483456000,43913472000,23900416000,18548608000,17168640000,16437504000,6914816000,7672960000,9831936000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2155776000,2352896000,1991040000,1984768000,380544000,1615104000,1408000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,2048000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,162938798080000,115706580608000,94668546688000,55029891456000,50638493824000,48778744448000,40448713728000,29275253120000,27267411328000,18254786560000,15088759168000,15482173184000,13832863872000,7617133440000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4859111040000,4457590784000,4180527744000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2230907392000,2039886592000,1944329728000,1733989376000,1506957568000,641877248000,923734144000,813076864000,725375488000,553673344000,575703936000,480148608000,487729280000,220757120000,456145280000,297982336000,295034880000,299565824000,267783296000,241470336000,220342912000,203318016000,135342208000,110459264000,129104640000,118663552000,118649472000,97835520000,91883648000,99767808000,65239936000,14694144000,66818816000,49484672000,43913600000,14620160000,13108096000,17168640000,8721664000,6914816000,7672960000,10109952000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2087680000,2682752000,1991040000,1984768000,380544000,1615104000,1408000,620928000,499072000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,163074504320000,110946205440000,94668546688000,55029891456000,50638493824000,49634929024000,40448713728000,29275760128000,27267411328000,17296789376000,14102226048000,15482548096000,13832863872000,6897737344000,9928160640000,9219050752000,8970264832000,7541796608000,6034834048000,4849261312000,4457590784000,3210803456000,3707448192000,2969734144000,2706318336000,2698908288000,2524024064000,2236060800000,1986328960000,1944329728000,1733945344000,1506957824000,454921984000,924274304000,813076864000,719372288000,572017024000,575703936000,533945344000,487777152000,220757120000,473995392000,297982336000,295034880000,299565824000,271555584000,261224192000,220342912000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91886720000,93556224000,65239936000,14694144000,66818816000,50107392000,43913728000,14620160000,13108096000,17168640000,8721664000,6914816000,8777856000,10230528000,5084160000,7490560000,5779584000,0,4905216000,3000576000,2297728000,4085888000,1991040000,1984768000,380544000,1615104000,1408000,620928000,489088000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,18560000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,163190753920000,111050653440000,94668546688000,55029891456000,50638493824000,49865353728000,40448713728000,29275760128000,27267411328000,17623511680000,13348862848000,15527354752000,13832863872000,5220590592000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4837305472000,4457590784000,2984752768000,3707448192000,2969734144000,2706318336000,2698908288000,2598213248000,2297008256000,1995541632000,1944329728000,1733945344000,1506958080000,519747200000,924839552000,813076864000,716008064000,588576256000,575703936000,570769536000,489505920000,220757120000,476100224000,297982336000,295034880000,299565824000,281917568000,261224192000,218234880000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91868800000,101219968000,65197312000,14694144000,66818816000,50277120000,43913856000,14620160000,10179840000,17180160000,8721664000,6914816000,8777856000,10322304000,9930880000,8948224000,5779584000,0,4905216000,3000576000,2297728000,5751808000,1991040000,1984768000,380544000,1615104000,1408000,620928000,322688000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,4352000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,163336355200000,111143961344000,94668546688000,55029891456000,50638493824000,49995430272000,40448713728000,29275760128000,27267411328000,17666970880000,11714550528000,15606825344000,13832863872000,1979481728000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4834955136000,4457590784000,2982224384000,3707448192000,2969734144000,2706318336000,2698908288000,2622437632000,2298263808000,1661955456000,1944329728000,1733945344000,1506958336000,594770048000,924839552000,813076864000,694936576000,579323776000,575703936000,608921728000,493510144000,220757120000,474920704000,297982336000,295034752000,299565824000,287111552000,261224192000,218234880000,203318016000,896000,110459264000,129427328000,125946624000,118706560000,134671616000,93110016000,34790400000,52814976000,14694144000,66818816000,50331776000,43913984000,14620160000,8711552000,18124160000,7718912000,6914816000,8777856000,10340992000,8472832000,9467136000,5779584000,0,4905216000,3000576000,2297728000,5084416000,1991040000,1984768000,380544000,1615104000,1408000,620928000,4480000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,0,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv deleted file mode 100644 index 635d35813d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -2018-12-27,161970387072000,130882300416000,94668546688000,55029891456000,50638493824000,38336309632000,40448713728000,29295568896000,27267411328000,17505628032000,15494882432000,15702943232000,13832863872000,14242280064000,9928160640000,9218944768000,8957422592000,7541796608000,6034834048000,5937893248000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2230504704000,2228458624000,1952837504000,1944329728000,1733989376000,1506955904000,339764480000,921950848000,812594176000,370410752000,603500800000,575703936000,474718208000,491007360000,662139648000,459477248000,297982336000,297141376000,230846848000,256112512000,244283904000,228683648000,203318016000,256331776000,173886720000,129027072000,139109120000,117884160000,97863680000,87247488000,90370688000,96233600000,108636160000,66818816000,50535936000,43912832000,23900416000,33932800000,9422592000,18692736000,0,7672960000,366592000,6557312000,6000896000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,154496000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,787072000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,162119939712000,130951853312000,94668546688000,55029891456000,50638493824000,41442712960000,40448713728000,29295568896000,27267411328000,17921053824000,17998195200000,15771797504000,13832863872000,12001895936000,9928160640000,9218971392000,8958675584000,7541796608000,6034834048000,5937961216000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2357435776000,2228909184000,1986484736000,1944329728000,1733989376000,1506956160000,2218562816000,921950848000,813076864000,587832448000,631372544000,575703936000,474718208000,491711360000,662139648000,458981632000,297982336000,295846144000,245742848000,260281472000,233874944000,228682752000,203318016000,256331776000,177062784000,129104640000,138835584000,118649472000,97863936000,87256320000,90336384000,96233600000,128210944000,66818816000,50535936000,43912960000,23900416000,33932800000,14527872000,18692736000,0,7672960000,2401408000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28288000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,162292553216000,131019984640000,94668546688000,55029891456000,50638493824000,42669537408000,40448713728000,29295568896000,27267411328000,18024812544000,18278423680000,15449285376000,13832863872000,11767707008000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936964864000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2237309440000,2049042048000,1944329728000,1733989376000,1506956416000,1754243200000,923198464000,813076864000,781170816000,633516288000,575703936000,474718208000,492912512000,662139648000,458981632000,297982336000,295037568000,263454848000,256227456000,267489664000,230024960000,203318016000,256331776000,178106752000,129104640000,138835584000,118649472000,97863936000,91802240000,90581120000,96233600000,141851776000,66818816000,51429504000,43913088000,23900416000,21396992000,16625536000,18692736000,20063232000,7672960000,2554368000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,34048000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,162411179264000,131075613568000,94668546688000,55029891456000,50638493824000,45937860608000,40448713728000,29295568768000,27267411328000,18114090752000,18284034944000,15470170880000,13832863872000,11607914624000,9928160640000,9219024768000,8958675584000,7541796608000,6034834048000,5936318080000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467031680000,2242306944000,2067007872000,1944329728000,1733989376000,1506956672000,2039233408000,923594240000,813076864000,781170816000,633521792000,575703936000,474718208000,488464640000,662139648000,458981632000,297982336000,295037568000,277430144000,263643776000,253159424000,230020224000,203318016000,256331776000,178106752000,129104640000,137997440000,118649472000,97864320000,91831296000,90685696000,93119232000,141851776000,66818816000,51429888000,43913216000,23900416000,21396992000,17486336000,18692736000,6914816000,7672960000,9539328000,6557312000,6022272000,5779584000,12763264000,4905216000,3000576000,2189952000,384000,1991040000,1984768000,3233408000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1664000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,162592092800000,120058848256000,94668546688000,55029891456000,50638493824000,48469915392000,40448713728000,29295638016000,27267411328000,18132494464000,18284034944000,15482173184000,13832863872000,16703203328000,9928160640000,9219024768000,8958667648000,7541796608000,6034834048000,5936241792000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2247882112000,2202024704000,1944329728000,1733989376000,1506956928000,2326942336000,923594240000,813076864000,781170816000,633514240000,575703936000,467375104000,488482304000,662139648000,458981632000,297982336000,295037568000,286533888000,266416768000,248449920000,230002432000,203318016000,207372032000,178106752000,129104640000,121020032000,118649472000,97864320000,91836928000,90685696000,77647104000,141851776000,66818816000,51319296000,43913344000,23900416000,18674048000,16938112000,16437504000,6914816000,7672960000,9809792000,6557312000,6022272000,5779584000,2627712000,4905216000,3000576000,2179072000,384000,1991040000,1984768000,2121984000,1615104000,1642112000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,162782021504000,115647463040000,94668546688000,55029891456000,50638493824000,48922220416000,40448713728000,29275253120000,27267411328000,18162174336000,18284034944000,15482173184000,13832863872000,14173657216000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4858566912000,4457590784000,4179763584000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2246351232000,2154197888000,1944329728000,1733989376000,1506957056000,2509993344000,923594240000,813076864000,781170816000,590948992000,575703936000,455522560000,487712384000,662139648000,456145280000,297982336000,295034880000,286533888000,263296256000,250212096000,230002432000,203318016000,135342208000,110459264000,129104640000,118758272000,118649472000,97864320000,91868672000,90686848000,68341888000,14694144000,66818816000,50483456000,43913472000,23900416000,18548608000,17168640000,16437504000,6914816000,7672960000,9831936000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2155776000,2352896000,1991040000,1984768000,380544000,1615104000,1408000,620928000,603520000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,134656000,142592000,134784000,99072000,64640000,55168000,2048000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,162938798080000,115706580608000,94668546688000,55029891456000,50638493824000,48778744448000,40448713728000,29275253120000,27267411328000,18254786560000,15088759168000,15482173184000,13832863872000,7617133440000,9928160640000,9219074304000,8970264832000,7541796608000,6034834048000,4859111040000,4457590784000,4180527744000,3707448192000,2970522240000,2706318336000,2698908288000,2467076992000,2230907392000,2039886592000,1944329728000,1733989376000,1506957568000,641877248000,923734144000,813076864000,725375488000,553673344000,575703936000,480148608000,487729280000,220757120000,456145280000,297982336000,295034880000,299565824000,267783296000,241470336000,220342912000,203318016000,135342208000,110459264000,129104640000,118663552000,118649472000,97835520000,91883648000,99767808000,65239936000,14694144000,66818816000,49484672000,43913600000,14620160000,13108096000,17168640000,8721664000,6914816000,7672960000,10109952000,6557312000,6022272000,5779584000,0,4905216000,3000576000,2087680000,2682752000,1991040000,1984768000,380544000,1615104000,1408000,620928000,499072000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,28288000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1536000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,1024000,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,163074504320000,110946205440000,94668546688000,55029891456000,50638493824000,49634929024000,40448713728000,29275760128000,27267411328000,17296789376000,14102226048000,15482548096000,13832863872000,6897737344000,9928160640000,9219050752000,8970264832000,7541796608000,6034834048000,4849261312000,4457590784000,3210803456000,3707448192000,2969734144000,2706318336000,2698908288000,2524024064000,2236060800000,1986328960000,1944329728000,1733945344000,1506957824000,454921984000,924274304000,813076864000,719372288000,572017024000,575703936000,533945344000,487777152000,220757120000,473995392000,297982336000,295034880000,299565824000,271555584000,261224192000,220342912000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91886720000,93556224000,65239936000,14694144000,66818816000,50107392000,43913728000,14620160000,13108096000,17168640000,8721664000,6914816000,8777856000,10230528000,5084160000,7490560000,5779584000,0,4905216000,3000576000,2297728000,4085888000,1991040000,1984768000,380544000,1615104000,1408000,620928000,489088000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,18560000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,163190753920000,111050653440000,94668546688000,55029891456000,50638493824000,49865353728000,40448713728000,29275760128000,27267411328000,17623511680000,13348862848000,15527354752000,13832863872000,5220590592000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4837305472000,4457590784000,2984752768000,3707448192000,2969734144000,2706318336000,2698908288000,2598213248000,2297008256000,1995541632000,1944329728000,1733945344000,1506958080000,519747200000,924839552000,813076864000,716008064000,588576256000,575703936000,570769536000,489505920000,220757120000,476100224000,297982336000,295034880000,299565824000,281917568000,261224192000,218234880000,203318016000,896000,110459264000,129104640000,118663552000,118649472000,134670208000,91868800000,101219968000,65197312000,14694144000,66818816000,50277120000,43913856000,14620160000,10179840000,17180160000,8721664000,6914816000,8777856000,10322304000,9930880000,8948224000,5779584000,0,4905216000,3000576000,2297728000,5751808000,1991040000,1984768000,380544000,1615104000,1408000,620928000,322688000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,4352000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,163336355200000,111143961344000,94668546688000,55029891456000,50638493824000,49995430272000,40448713728000,29275760128000,27267411328000,17666970880000,11714550528000,15606825344000,13832863872000,1979481728000,9928160640000,9219064064000,8970264832000,7541796608000,6034834048000,4834955136000,4457590784000,2982224384000,3707448192000,2969734144000,2706318336000,2698908288000,2622437632000,2298263808000,1661955456000,1944329728000,1733945344000,1506958336000,594770048000,924839552000,813076864000,694936576000,579323776000,575703936000,608921728000,493510144000,220757120000,474920704000,297982336000,295034752000,299565824000,287111552000,261224192000,218234880000,203318016000,896000,110459264000,129427328000,125946624000,118706560000,134671616000,93110016000,34790400000,52814976000,14694144000,66818816000,50331776000,43913984000,14620160000,8711552000,18124160000,7718912000,6914816000,8777856000,10340992000,8472832000,9467136000,5779584000,0,4905216000,3000576000,2297728000,5084416000,1991040000,1984768000,380544000,1615104000,1408000,620928000,4480000,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,1536000,142592000,134784000,99072000,64640000,55168000,384000,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,0,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1408000,1920000,1920000,1664000,256000,1280000,256000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,0,768000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv deleted file mode 100644 index 2a83cd9179..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" -2018-12-27,14242280064000,459477248000,6000896000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2018-12-28,12001895936000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2018-12-29,11767707008000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2018-12-30,11607914624000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2018-12-31,16703203328000,458981632000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019-01-01,14173657216000,456145280000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019-01-02,7617133440000,456145280000,6022272000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019-01-03,6897737344000,473995392000,7490560000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019-01-04,5220590592000,476100224000,8948224000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019-01-05,1979481728000,474920704000,9467136000,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv deleted file mode 100644 index bbf65d068a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv deleted file mode 100644 index 5c1ccab9a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -2018-12,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv deleted file mode 100644 index 5c1ccab9a4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -2018-12,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv deleted file mode 100644 index c52cec5d51..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" -2018-12,13264600192000,459080755200,6017996800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019-01,7177720064000,467461376000,7590092800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv deleted file mode 100644 index 57a30c18a7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv deleted file mode 100644 index 59c0f97478..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -"2018 Q4",162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv deleted file mode 100644 index 59c0f97478..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -"2018 Q4",162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv deleted file mode 100644 index 097ac78d2c..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" -"2018 Q4",13264600192000,459080755200,6017996800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -"2019 Q1",7177720064000,467461376000,7590092800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv deleted file mode 100644 index 50f4e4636a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv deleted file mode 100644 index 9dfa7cc3b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -2018,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv deleted file mode 100644 index 9dfa7cc3b7..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[molater] Logical Usage (Bytes)","[noror] Logical Usage (Bytes)","[amere] Logical Usage (Bytes)","[bobol] Logical Usage (Bytes)","[norwa] Logical Usage (Bytes)","[parbu] Logical Usage (Bytes)","[litau] Logical Usage (Bytes)","[chaff] Logical Usage (Bytes)","[bawwa] Logical Usage (Bytes)","[magwa] Logical Usage (Bytes)","[crebu] Logical Usage (Bytes)","[rusto] Logical Usage (Bytes)","[tenwa] Logical Usage (Bytes)","[ovenb] Logical Usage (Bytes)","[sanma] Logical Usage (Bytes)","[norpa] Logical Usage (Bytes)","[leske] Logical Usage (Bytes)","[litbu] Logical Usage (Bytes)","[coot1] Logical Usage (Bytes)","[rocbu] Logical Usage (Bytes)","[scocr] Logical Usage (Bytes)","[proubis] Logical Usage (Bytes)","[aytinis] Logical Usage (Bytes)","[alpsw] Logical Usage (Bytes)","[cirbu] Logical Usage (Bytes)","[lapbu] Logical Usage (Bytes)","[chabu] Logical Usage (Bytes)","[yelha] Logical Usage (Bytes)","[larsp] Logical Usage (Bytes)","[serin] Logical Usage (Bytes)","[pinbu] Logical Usage (Bytes)","[setusca] Logical Usage (Bytes)","[cross] Logical Usage (Bytes)","[embhala] Logical Usage (Bytes)","[daeju] Logical Usage (Bytes)","[rolle] Logical Usage (Bytes)","[whcsp] Logical Usage (Bytes)","[redgr] Logical Usage (Bytes)","[goldf] Logical Usage (Bytes)","[ibech] Logical Usage (Bytes)","[bramb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[rocpi] Logical Usage (Bytes)","[scata] Logical Usage (Bytes)","[twite] Logical Usage (Bytes)","[arcre] Logical Usage (Bytes)","[comre] Logical Usage (Bytes)","[snobu] Logical Usage (Bytes)","[pecpi] Logical Usage (Bytes)","[twbcr] Logical Usage (Bytes)","[reebu] Logical Usage (Bytes)","[sogsh] Logical Usage (Bytes)","[grefi] Logical Usage (Bytes)","[olbpi] Logical Usage (Bytes)","[bullf] Logical Usage (Bytes)","[dunli] Logical Usage (Bytes)","[hawfi] Logical Usage (Bytes)","[pingr] Logical Usage (Bytes)","[trufi] Logical Usage (Bytes)","[dunno] Logical Usage (Bytes)","[robgr] Logical Usage (Bytes)","[corbu] Logical Usage (Bytes)","[ricpi] Logical Usage (Bytes)","[watpi] Logical Usage (Bytes)","[tawpi] Logical Usage (Bytes)","[linne] Logical Usage (Bytes)","[pursa] Logical Usage (Bytes)","[housp] Logical Usage (Bytes)","[grath] Logical Usage (Bytes)","[refbl] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[spasp] Logical Usage (Bytes)","[piewh] Logical Usage (Bytes)","[rebfl] Logical Usage (Bytes)","[grewa] Logical Usage (Bytes)","[hulwa] Logical Usage (Bytes)","[categ] Logical Usage (Bytes)","[velsc] Logical Usage (Bytes)","[deswh] Logical Usage (Bytes)","[stoch] Logical Usage (Bytes)","[sancr] Logical Usage (Bytes)","[blypi] Logical Usage (Bytes)","[whcbl] Logical Usage (Bytes)","[sonth] Logical Usage (Bytes)","[blewh] Logical Usage (Bytes)","[honbu] Logical Usage (Bytes)","[musrica] Logical Usage (Bytes)","[citwa] Logical Usage (Bytes)","[isawh] Logical Usage (Bytes)","[wheat] Logical Usage (Bytes)","[amero] Logical Usage (Bytes)","[rocsp] Logical Usage (Bytes)","[rutro] Logical Usage (Bytes)","[shttr] Logical Usage (Bytes)","[whinc] Logical Usage (Bytes)","[nigal] Logical Usage (Bytes)","[moure] Logical Usage (Bytes)","[redst] Logical Usage (Bytes)","[thrni] Logical Usage (Bytes)","[robin] Logical Usage (Bytes)","[egygo] Logical Usage (Bytes)","[blare] Logical Usage (Bytes)","[piefl] Logical Usage (Bytes)","[colfl] Logical Usage (Bytes)","[hyllina] Logical Usage (Bytes)","[waxwi] Logical Usage (Bytes)","[wallc] Logical Usage (Bytes)","[sibru] Logical Usage (Bytes)","[spofl] Logical Usage (Bytes)","[rubro] Logical Usage (Bytes)","[dumnsis] Logical Usage (Bytes)","[garwa] Logical Usage (Bytes)","[bltth] Logical Usage (Bytes)","[ylwwa] Logical Usage (Bytes)","[blrth] Logical Usage (Bytes)","[baisa] Logical Usage (Bytes)","[eybth] Logical Usage (Bytes)","[rocth] Logical Usage (Bytes)","[rinou] Logical Usage (Bytes)","[turdo] Logical Usage (Bytes)","[laryane] Logical Usage (Bytes)","[whtpl] Logical Usage (Bytes)","[cetwa] Logical Usage (Bytes)","[sitnsis] Logical Usage (Bytes)","[veery] Logical Usage (Bytes)","[ixovius] Logical Usage (Bytes)","[crama] Logical Usage (Bytes)","[dippe] Logical Usage (Bytes)","[starl] Logical Usage (Bytes)","[redwi] Logical Usage (Bytes)","[pagwa] Logical Usage (Bytes)","[turanni] Logical Usage (Bytes)","[bluth] Logical Usage (Bytes)","[deswa] Logical Usage (Bytes)","[reewa] Logical Usage (Bytes)","[blrwa] Logical Usage (Bytes)","[broth] Logical Usage (Bytes)","[marwa] Logical Usage (Bytes)","[mimttos] Logical Usage (Bytes)","[sedwa] Logical Usage (Bytes)","[wren1] Logical Usage (Bytes)","[aquwa] Logical Usage (Bytes)","[blabi] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[melwa] Logical Usage (Bytes)","[vertera] Logical Usage (Bytes)","[hiporum] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[wilwa] Logical Usage (Bytes)","[eaowa] Logical Usage (Bytes)","[sibth] Logical Usage (Bytes)","[treec] Logical Usage (Bytes)","[woowa] Logical Usage (Bytes)","[bonwa] Logical Usage (Bytes)","[calla] Logical Usage (Bytes)","[palwa] Logical Usage (Bytes)","[thbwa] Logical Usage (Bytes)","[yerwa] Logical Usage (Bytes)","[grawa] Logical Usage (Bytes)","[grnwa] Logical Usage (Bytes)","[gshwa] Logical Usage (Bytes)","[ictwa] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[phyatus] Logical Usage (Bytes)","[rivwa] Logical Usage (Bytes)","[bomorum] Logical Usage (Bytes)","[clisw] Logical Usage (Bytes)","[crela] Logical Usage (Bytes)","[darwa] Logical Usage (Bytes)","[grrwa] Logical Usage (Bytes)","[houma] Logical Usage (Bytes)","[lanhach] Logical Usage (Bytes)","[leswh] Logical Usage (Bytes)","[lotti] Logical Usage (Bytes)","[lstla] Logical Usage (Bytes)","[pibgr] Logical Usage (Bytes)","[rersw] Logical Usage (Bytes)","[rupwa] Logical Usage (Bytes)","[shola] Logical Usage (Bytes)","[shtla] Logical Usage (Bytes)","[skyla] Logical Usage (Bytes)","[spewa] Logical Usage (Bytes)","[swall] Logical Usage (Bytes)","[sylnsis] Logical Usage (Bytes)","[tacolor] Logical Usage (Bytes)","[white] Logical Usage (Bytes)","[woodl] Logical Usage (Bytes)","[alete] Logical Usage (Bytes)","[ameke] Logical Usage (Bytes)","[arcte] Logical Usage (Bytes)","[balsh] Logical Usage (Bytes)","[barow] Logical Usage (Bytes)","[beeea] Logical Usage (Bytes)","[belki] Logical Usage (Bytes)","[bimla] Logical Usage (Bytes)","[bitte] Logical Usage (Bytes)","[blate] Logical Usage (Bytes)","[blcbe] Logical Usage (Bytes)","[blhgu] Logical Usage (Bytes)","[bluti] Logical Usage (Bytes)","[blwpr] Logical Usage (Bytes)","[brardix] Logical Usage (Bytes)","[brite] Logical Usage (Bytes)","[brugu] Logical Usage (Bytes)","[bubsa] Logical Usage (Bytes)","[camwa] Logical Usage (Bytes)","[carcr] Logical Usage (Bytes)","[casgu] Logical Usage (Bytes)","[chisw] Logical Usage (Bytes)","[choug] Logical Usage (Bytes)","[coati] Logical Usage (Bytes)","[coldo] Logical Usage (Bytes)","[colpr] Logical Usage (Bytes)","[comgu] Logical Usage (Bytes)","[comni] Logical Usage (Bytes)","[comsa] Logical Usage (Bytes)","[comte] Logical Usage (Bytes)","[corsh] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[creti] Logical Usage (Bytes)","[cucko] Logical Usage (Bytes)","[duswa] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[evegr] Logical Usage (Bytes)","[falnsis] Logical Usage (Bytes)","[firec] Logical Usage (Bytes)","[forte] Logical Usage (Bytes)","[fragu] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[galcata] Logical Usage (Bytes)","[gbbgu] Logical Usage (Bytes)","[glaarum] Logical Usage (Bytes)","[glagu] Logical Usage (Bytes)","[golor] Logical Usage (Bytes)","[greph] Logical Usage (Bytes)","[gresa] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[gresk] Logical Usage (Bytes)","[gresn] Logical Usage (Bytes)","[greti] Logical Usage (Bytes)","[grewo] Logical Usage (Bytes)","[greye] Logical Usage (Bytes)","[grscu] Logical Usage (Bytes)","[guill] Logical Usage (Bytes)","[gyrfa] Logical Usage (Bytes)","[hawow] Logical Usage (Bytes)","[hobby] Logical Usage (Bytes)","[hoopo] Logical Usage (Bytes)","[hoowa] Logical Usage (Bytes)","[icegu] Logical Usage (Bytes)","[isash] Logical Usage (Bytes)","[ivogu] Logical Usage (Bytes)","[jacsn] Logical Usage (Bytes)","[jay11] Logical Usage (Bytes)","[kestr] Logical Usage (Bytes)","[kingf] Logical Usage (Bytes)","[kitti] Logical Usage (Bytes)","[laragus] Logical Usage (Bytes)","[laranus] Logical Usage (Bytes)","[larinii] Logical Usage (Bytes)","[laugu] Logical Usage (Bytes)","[lbbgu] Logical Usage (Bytes)","[leasa] Logical Usage (Bytes)","[lecte] Logical Usage (Bytes)","[lesye] Logical Usage (Bytes)","[litgu] Logical Usage (Bytes)","[litte] Logical Usage (Bytes)","[lobdo] Logical Usage (Bytes)","[loeow] Logical Usage (Bytes)","[lotsk] Logical Usage (Bytes)","[magpi] Logical Usage (Bytes)","[marsa] Logical Usage (Bytes)","[marti] Logical Usage (Bytes)","[massh] Logical Usage (Bytes)","[medgu] Logical Usage (Bytes)","[melnsis] Logical Usage (Bytes)","[netsw] Logical Usage (Bytes)","[nijar] Logical Usage (Bytes)","[nutcr] Logical Usage (Bytes)","[pacsw] Logical Usage (Bytes)","[palsa] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[pecsa] Logical Usage (Bytes)","[penti] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[pinnnis] Logical Usage (Bytes)","[pomsk] Logical Usage (Bytes)","[raven] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rebsh] Logical Usage (Bytes)","[redsh] Logical Usage (Bytes)","[reevi] Logical Usage (Bytes)","[reffa] Logical Usage (Bytes)","[renni] Logical Usage (Bytes)","[renph] Logical Usage (Bytes)","[rinpa] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)","[rook1] Logical Usage (Bytes)","[rosgu] Logical Usage (Bytes)","[roste] Logical Usage (Bytes)","[royte] Logical Usage (Bytes)","[rutdo] Logical Usage (Bytes)","[sabgu] Logical Usage (Bytes)","[sarwa] Logical Usage (Bytes)","[sayoebe] Logical Usage (Bytes)","[scaro] Logical Usage (Bytes)","[scoow] Logical Usage (Bytes)","[semsa] Logical Usage (Bytes)","[shag1] Logical Usage (Bytes)","[sheow] Logical Usage (Bytes)","[slegu] Logical Usage (Bytes)","[snipe] Logical Usage (Bytes)","[snoow] Logical Usage (Bytes)","[solsa] Logical Usage (Bytes)","[soote] Logical Usage (Bytes)","[sposa] Logical Usage (Bytes)","[stevida] Logical Usage (Bytes)","[stodo] Logical Usage (Bytes)","[subwa] Logical Usage (Bytes)","[sumta] Logical Usage (Bytes)","[swift] Logical Usage (Bytes)","[synquus] Logical Usage (Bytes)","[tawow] Logical Usage (Bytes)","[tenow] Logical Usage (Bytes)","[tersa] Logical Usage (Bytes)","[trepi] Logical Usage (Bytes)","[triipes] Logical Usage (Bytes)","[virrons] Logical Usage (Bytes)","[whkte] Logical Usage (Bytes)","[whrsa] Logical Usage (Bytes)","[whwla] Logical Usage (Bytes)","[wilph] Logical Usage (Bytes)","[woodc] Logical Usage (Bytes)","[woodp] Logical Usage (Bytes)","[woosa] Logical Usage (Bytes)","[woosh] Logical Usage (Bytes)","[wryne] Logical Usage (Bytes)","[wwbte] Logical Usage (Bytes)","[yebbu] Logical Usage (Bytes)","[yebcu] Logical Usage (Bytes)","[yebwa] Logical Usage (Bytes)","[yelwa] Logical Usage (Bytes)","[zenoura] Logical Usage (Bytes)" -2018,162277230412800,128797720038400,94668546688000,55029891456000,50638493824000,43371267200000,40448713728000,29295582694400,27267411328000,17939615923200,17667914240000,15575274035200,13832863872000,13264600192000,9928160640000,9218998092800,8958423398400,7541796608000,6034834048000,5937075840000,4457590784000,4179546368000,3707448192000,2970522240000,2706318336000,2698908288000,2397816166400,2236973260800,2051479372800,1944329728000,1733989376000,1506956416000,1735749248000,922857728000,812980326400,660351129600,627085132800,575703936000,473249587200,490515635200,662139648000,459080755200,297982336000,295620044800,260801715200,260536396800,249451571200,229482803200,203318016000,246539827200,177053952000,129089126400,135159552000,118496409600,97864038400,89994854400,90531916800,91893427200,132480486400,66818816000,51050112000,43913088000,23900416000,25866726400,15000089600,18241689600,11297621333,7672960000,4934297600,6557312000,6017996800,5779584000,10736153600,4905216000,3000576000,2187776000,384000,1991040000,1984768000,3011123200,1615104000,1642112000,620928000,603520000,424422400,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,265139200,142592000,134784000,99072000,64640000,55168000,86144000,42496000,41344000,37760000,35456000,34816000,34432000,28672000,28544000,26112000,31744000,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,2176000,1920000,1920000,1664000,1792000,1280000,1638400,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,1024000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,163064486604800,112898972774400,94668546688000,55029891456000,50638493824000,49439335577600,40448713728000,29275557324800,27267411328000,17800846566400,14507686707200,15516214912000,13832863872000,7177720064000,9928160640000,9219065497600,8970264832000,7541796608000,6034834048000,4847839974400,4457590784000,3507614387200,3707448192000,2970049382400,2706318336000,2698908288000,2535765785600,2261718297600,1967582105600,1944329728000,1733962956800,1506957772800,944261964800,924256358400,813076864000,727372646400,576907878400,575703936000,529861555200,489246976000,309033625600,467461376000,297982336000,295034854400,296959436800,274332851200,255071001600,221431603200,203318016000,54137420800,110459264000,129169177600,120139110400,118660889600,119942374400,92123571200,84004249600,63366809600,14694144000,66818816000,50136883200,43913728000,16476211200,12731238400,17362048000,10064281600,6914816000,8335897600,10167142400,7320499200,7590092800,5779584000,0,4905216000,3000576000,2227328000,3991552000,1991040000,1984768000,380544000,1615104000,1408000,620928000,383769600,491904000,382848000,281728000,278912000,213504000,195200000,183040000,177792000,151808000,28160000,142592000,134784000,99072000,64640000,55168000,716800,42496000,41344000,37760000,35456000,34816000,34432000,28928000,28544000,26112000,15897600,20864000,17280000,14848000,13184000,13184000,12544000,9344000,8576000,8064000,7552000,7552000,7424000,7424000,6272000,4992000,3456000,2816000,1715200,1920000,1920000,1664000,870400,1280000,768000,1152000,1152000,1024000,1024000,1024000,1024000,896000,896000,768000,512000,768000,768000,768000,640000,640000,640000,512000,512000,512000,512000,384000,384000,384000,384000,384000,256000,256000,256000,256000,256000,256000,256000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,128000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv deleted file mode 100644 index ec2274ba59..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[ovenb] Logical Usage (Bytes)","[parcr] Logical Usage (Bytes)","[swath] Logical Usage (Bytes)","[sante] Logical Usage (Bytes)","[blaca] Logical Usage (Bytes)","[savsp] Logical Usage (Bytes)","[lanwa] Logical Usage (Bytes)","[crcco] Logical Usage (Bytes)","[egyni] Logical Usage (Bytes)","[frahata] Logical Usage (Bytes)","[gresh] Logical Usage (Bytes)","[palsw] Logical Usage (Bytes)","[phivi] Logical Usage (Bytes)","[razor] Logical Usage (Bytes)","[rocdo] Logical Usage (Bytes)" -2018,13264600192000,459080755200,6017996800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 -2019,7177720064000,467461376000,7590092800,5779584000,768000,640000,256000,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv deleted file mode 100644 index 2d1f6a2536..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_usage/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Logical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv deleted file mode 100644 index f36358f81a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv deleted file mode 100644 index ad3c07f3c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv deleted file mode 100644 index f36358f81a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv deleted file mode 100644 index ad3c07f3c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv deleted file mode 100644 index f36358f81a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv deleted file mode 100644 index ad3c07f3c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv deleted file mode 100644 index 10c2000993..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -sanma,99.2816 -chaff,97.6186 -amere,94.6685 -norpa,92.1903 -leske,89.6434 -magwa,89.3511 -molater,81.3354 -bawwa,54.5348 -norwa,50.6385 -aytinis,37.0745 -bobol,36.6866 -setusca,30.1391 -tenwa,27.6657 -corbu,4.3913 -ibech,1.9595 -redgr,0.5757 -shttr,0.0143 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv deleted file mode 100644 index f36358f81a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv deleted file mode 100644 index ad3c07f3c3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota Utilization: Logical (%)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv deleted file mode 100644 index 195f668ece..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -2018-12-27,99.2816,97.6519,94.6685,92.1894,89.5742,87.5281,80.9852,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9640,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,99.2816,97.6519,94.6685,92.1897,89.5867,89.6053,81.0600,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9668,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,99.2816,97.6519,94.6685,92.1902,89.5867,90.1241,81.1463,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9716,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,99.2816,97.6519,94.6685,92.1902,89.5867,90.5704,81.2056,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,99.2816,97.6521,94.6685,92.1902,89.5866,90.6625,81.2960,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,99.2816,97.5842,94.6685,92.1907,89.7026,90.8109,81.3910,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9508,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,99.2816,97.5842,94.6685,92.1907,89.7026,91.2739,81.4694,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9509,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,99.2816,97.5859,94.6685,92.1905,89.7026,86.4839,81.5373,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9511,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,99.2816,97.5859,94.6685,92.1906,89.7026,88.1175,81.5954,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9580,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,99.2816,97.5859,94.6685,92.1906,89.7026,88.3348,81.6682,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9740,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv deleted file mode 100644 index 195f668ece..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -2018-12-27,99.2816,97.6519,94.6685,92.1894,89.5742,87.5281,80.9852,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9640,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,99.2816,97.6519,94.6685,92.1897,89.5867,89.6053,81.0600,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9668,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,99.2816,97.6519,94.6685,92.1902,89.5867,90.1241,81.1463,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9716,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,99.2816,97.6519,94.6685,92.1902,89.5867,90.5704,81.2056,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,99.2816,97.6521,94.6685,92.1902,89.5866,90.6625,81.2960,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9539,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,99.2816,97.5842,94.6685,92.1907,89.7026,90.8109,81.3910,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9508,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,99.2816,97.5842,94.6685,92.1907,89.7026,91.2739,81.4694,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9509,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,99.2816,97.5859,94.6685,92.1905,89.7026,86.4839,81.5373,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9511,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,99.2816,97.5859,94.6685,92.1906,89.7026,88.1175,81.5954,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9580,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,99.2816,97.5859,94.6685,92.1906,89.7026,88.3348,81.6682,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9740,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv deleted file mode 100644 index f3c41e89e9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" -2018-12-27,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-28,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-29,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2018-12-31,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-01,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-02,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-03,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-04,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01-05,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv deleted file mode 100644 index 1c16dcde1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv deleted file mode 100644 index 88c33f0c4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -2018-12,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv deleted file mode 100644 index 88c33f0c4e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -2018-12,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv deleted file mode 100644 index 55f2527b9f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" -2018-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019-01,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv deleted file mode 100644 index e7a2f83e63..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv deleted file mode 100644 index 6e7b6b3118..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -"2018 Q4",99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv deleted file mode 100644 index 6e7b6b3118..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -"2018 Q4",99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv deleted file mode 100644 index 426504359b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" -"2018 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -"2019 Q1",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv deleted file mode 100644 index 0ac60e445e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv deleted file mode 100644 index 6c132261da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -2018,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv deleted file mode 100644 index 6c132261da..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[sanma] Quota Utilization: Logical (%)","[chaff] Quota Utilization: Logical (%)","[amere] Quota Utilization: Logical (%)","[norpa] Quota Utilization: Logical (%)","[leske] Quota Utilization: Logical (%)","[magwa] Quota Utilization: Logical (%)","[molater] Quota Utilization: Logical (%)","[bawwa] Quota Utilization: Logical (%)","[norwa] Quota Utilization: Logical (%)","[aytinis] Quota Utilization: Logical (%)","[bobol] Quota Utilization: Logical (%)","[setusca] Quota Utilization: Logical (%)","[tenwa] Quota Utilization: Logical (%)","[corbu] Quota Utilization: Logical (%)","[ibech] Quota Utilization: Logical (%)","[redgr] Quota Utilization: Logical (%)","[shttr] Quota Utilization: Logical (%)","[alete] Quota Utilization: Logical (%)","[alpsw] Quota Utilization: Logical (%)","[ameke] Quota Utilization: Logical (%)","[amero] Quota Utilization: Logical (%)","[aquwa] Quota Utilization: Logical (%)","[arcre] Quota Utilization: Logical (%)","[arcte] Quota Utilization: Logical (%)","[baisa] Quota Utilization: Logical (%)","[balsh] Quota Utilization: Logical (%)","[barow] Quota Utilization: Logical (%)","[beeea] Quota Utilization: Logical (%)","[belki] Quota Utilization: Logical (%)","[bimla] Quota Utilization: Logical (%)","[bitte] Quota Utilization: Logical (%)","[blabi] Quota Utilization: Logical (%)","[blaca] Quota Utilization: Logical (%)","[blare] Quota Utilization: Logical (%)","[blate] Quota Utilization: Logical (%)","[blcbe] Quota Utilization: Logical (%)","[blewh] Quota Utilization: Logical (%)","[blhgu] Quota Utilization: Logical (%)","[blrth] Quota Utilization: Logical (%)","[blrwa] Quota Utilization: Logical (%)","[bltth] Quota Utilization: Logical (%)","[bluth] Quota Utilization: Logical (%)","[bluti] Quota Utilization: Logical (%)","[blwpr] Quota Utilization: Logical (%)","[blypi] Quota Utilization: Logical (%)","[bomorum] Quota Utilization: Logical (%)","[bonwa] Quota Utilization: Logical (%)","[bramb] Quota Utilization: Logical (%)","[brardix] Quota Utilization: Logical (%)","[brite] Quota Utilization: Logical (%)","[broth] Quota Utilization: Logical (%)","[brugu] Quota Utilization: Logical (%)","[bubsa] Quota Utilization: Logical (%)","[bullf] Quota Utilization: Logical (%)","[calla] Quota Utilization: Logical (%)","[camwa] Quota Utilization: Logical (%)","[carcr] Quota Utilization: Logical (%)","[casgu] Quota Utilization: Logical (%)","[categ] Quota Utilization: Logical (%)","[cetwa] Quota Utilization: Logical (%)","[chabu] Quota Utilization: Logical (%)","[chisw] Quota Utilization: Logical (%)","[choug] Quota Utilization: Logical (%)","[cirbu] Quota Utilization: Logical (%)","[citwa] Quota Utilization: Logical (%)","[clisw] Quota Utilization: Logical (%)","[coati] Quota Utilization: Logical (%)","[coldo] Quota Utilization: Logical (%)","[colfl] Quota Utilization: Logical (%)","[colpr] Quota Utilization: Logical (%)","[comgu] Quota Utilization: Logical (%)","[comni] Quota Utilization: Logical (%)","[comre] Quota Utilization: Logical (%)","[comsa] Quota Utilization: Logical (%)","[comte] Quota Utilization: Logical (%)","[coot1] Quota Utilization: Logical (%)","[corsh] Quota Utilization: Logical (%)","[crama] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[crebu] Quota Utilization: Logical (%)","[crela] Quota Utilization: Logical (%)","[creti] Quota Utilization: Logical (%)","[cross] Quota Utilization: Logical (%)","[cucko] Quota Utilization: Logical (%)","[daeju] Quota Utilization: Logical (%)","[darwa] Quota Utilization: Logical (%)","[deswa] Quota Utilization: Logical (%)","[deswh] Quota Utilization: Logical (%)","[dippe] Quota Utilization: Logical (%)","[dumnsis] Quota Utilization: Logical (%)","[dunli] Quota Utilization: Logical (%)","[dunno] Quota Utilization: Logical (%)","[duswa] Quota Utilization: Logical (%)","[eaowa] Quota Utilization: Logical (%)","[egygo] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[embhala] Quota Utilization: Logical (%)","[evegr] Quota Utilization: Logical (%)","[eybth] Quota Utilization: Logical (%)","[falnsis] Quota Utilization: Logical (%)","[firec] Quota Utilization: Logical (%)","[forte] Quota Utilization: Logical (%)","[fragu] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[galcata] Quota Utilization: Logical (%)","[garwa] Quota Utilization: Logical (%)","[gbbgu] Quota Utilization: Logical (%)","[glaarum] Quota Utilization: Logical (%)","[glagu] Quota Utilization: Logical (%)","[goldf] Quota Utilization: Logical (%)","[golor] Quota Utilization: Logical (%)","[grath] Quota Utilization: Logical (%)","[grawa] Quota Utilization: Logical (%)","[grefi] Quota Utilization: Logical (%)","[greph] Quota Utilization: Logical (%)","[gresa] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[gresk] Quota Utilization: Logical (%)","[gresn] Quota Utilization: Logical (%)","[greti] Quota Utilization: Logical (%)","[grewa] Quota Utilization: Logical (%)","[grewo] Quota Utilization: Logical (%)","[greye] Quota Utilization: Logical (%)","[grnwa] Quota Utilization: Logical (%)","[grrwa] Quota Utilization: Logical (%)","[grscu] Quota Utilization: Logical (%)","[gshwa] Quota Utilization: Logical (%)","[guill] Quota Utilization: Logical (%)","[gyrfa] Quota Utilization: Logical (%)","[hawfi] Quota Utilization: Logical (%)","[hawow] Quota Utilization: Logical (%)","[hiporum] Quota Utilization: Logical (%)","[hobby] Quota Utilization: Logical (%)","[honbu] Quota Utilization: Logical (%)","[hoopo] Quota Utilization: Logical (%)","[hoowa] Quota Utilization: Logical (%)","[houma] Quota Utilization: Logical (%)","[housp] Quota Utilization: Logical (%)","[hulwa] Quota Utilization: Logical (%)","[hyllina] Quota Utilization: Logical (%)","[icegu] Quota Utilization: Logical (%)","[ictwa] Quota Utilization: Logical (%)","[isash] Quota Utilization: Logical (%)","[isawh] Quota Utilization: Logical (%)","[ivogu] Quota Utilization: Logical (%)","[ixovius] Quota Utilization: Logical (%)","[jacsn] Quota Utilization: Logical (%)","[jay11] Quota Utilization: Logical (%)","[kestr] Quota Utilization: Logical (%)","[kingf] Quota Utilization: Logical (%)","[kitti] Quota Utilization: Logical (%)","[lanhach] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[lapbu] Quota Utilization: Logical (%)","[laragus] Quota Utilization: Logical (%)","[laranus] Quota Utilization: Logical (%)","[larinii] Quota Utilization: Logical (%)","[larsp] Quota Utilization: Logical (%)","[laryane] Quota Utilization: Logical (%)","[laugu] Quota Utilization: Logical (%)","[lbbgu] Quota Utilization: Logical (%)","[leasa] Quota Utilization: Logical (%)","[lecte] Quota Utilization: Logical (%)","[leswh] Quota Utilization: Logical (%)","[lesye] Quota Utilization: Logical (%)","[linne] Quota Utilization: Logical (%)","[litau] Quota Utilization: Logical (%)","[litbu] Quota Utilization: Logical (%)","[litgu] Quota Utilization: Logical (%)","[litte] Quota Utilization: Logical (%)","[lobdo] Quota Utilization: Logical (%)","[loeow] Quota Utilization: Logical (%)","[lotsk] Quota Utilization: Logical (%)","[lotti] Quota Utilization: Logical (%)","[lstla] Quota Utilization: Logical (%)","[magpi] Quota Utilization: Logical (%)","[marsa] Quota Utilization: Logical (%)","[marti] Quota Utilization: Logical (%)","[marwa] Quota Utilization: Logical (%)","[massh] Quota Utilization: Logical (%)","[medgu] Quota Utilization: Logical (%)","[melnsis] Quota Utilization: Logical (%)","[melwa] Quota Utilization: Logical (%)","[mimttos] Quota Utilization: Logical (%)","[moure] Quota Utilization: Logical (%)","[musrica] Quota Utilization: Logical (%)","[netsw] Quota Utilization: Logical (%)","[nigal] Quota Utilization: Logical (%)","[nijar] Quota Utilization: Logical (%)","[noror] Quota Utilization: Logical (%)","[nutcr] Quota Utilization: Logical (%)","[olbpi] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[pacsw] Quota Utilization: Logical (%)","[pagwa] Quota Utilization: Logical (%)","[palsa] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[palwa] Quota Utilization: Logical (%)","[parbu] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[pecpi] Quota Utilization: Logical (%)","[pecsa] Quota Utilization: Logical (%)","[penti] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[phyatus] Quota Utilization: Logical (%)","[pibgr] Quota Utilization: Logical (%)","[piefl] Quota Utilization: Logical (%)","[piewh] Quota Utilization: Logical (%)","[pinbu] Quota Utilization: Logical (%)","[pingr] Quota Utilization: Logical (%)","[pinnnis] Quota Utilization: Logical (%)","[pomsk] Quota Utilization: Logical (%)","[proubis] Quota Utilization: Logical (%)","[pursa] Quota Utilization: Logical (%)","[raven] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rebfl] Quota Utilization: Logical (%)","[rebsh] Quota Utilization: Logical (%)","[redsh] Quota Utilization: Logical (%)","[redst] Quota Utilization: Logical (%)","[redwi] Quota Utilization: Logical (%)","[reebu] Quota Utilization: Logical (%)","[reevi] Quota Utilization: Logical (%)","[reewa] Quota Utilization: Logical (%)","[refbl] Quota Utilization: Logical (%)","[reffa] Quota Utilization: Logical (%)","[renni] Quota Utilization: Logical (%)","[renph] Quota Utilization: Logical (%)","[rersw] Quota Utilization: Logical (%)","[ricpi] Quota Utilization: Logical (%)","[rinou] Quota Utilization: Logical (%)","[rinpa] Quota Utilization: Logical (%)","[rivwa] Quota Utilization: Logical (%)","[robgr] Quota Utilization: Logical (%)","[robin] Quota Utilization: Logical (%)","[rocbu] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[rocpi] Quota Utilization: Logical (%)","[rocsp] Quota Utilization: Logical (%)","[rocth] Quota Utilization: Logical (%)","[rolle] Quota Utilization: Logical (%)","[rook1] Quota Utilization: Logical (%)","[rosgu] Quota Utilization: Logical (%)","[roste] Quota Utilization: Logical (%)","[royte] Quota Utilization: Logical (%)","[rubro] Quota Utilization: Logical (%)","[rupwa] Quota Utilization: Logical (%)","[rusto] Quota Utilization: Logical (%)","[rutdo] Quota Utilization: Logical (%)","[rutro] Quota Utilization: Logical (%)","[sabgu] Quota Utilization: Logical (%)","[sancr] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[sarwa] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[sayoebe] Quota Utilization: Logical (%)","[scaro] Quota Utilization: Logical (%)","[scata] Quota Utilization: Logical (%)","[scocr] Quota Utilization: Logical (%)","[scoow] Quota Utilization: Logical (%)","[sedwa] Quota Utilization: Logical (%)","[semsa] Quota Utilization: Logical (%)","[serin] Quota Utilization: Logical (%)","[shag1] Quota Utilization: Logical (%)","[sheow] Quota Utilization: Logical (%)","[shola] Quota Utilization: Logical (%)","[shtla] Quota Utilization: Logical (%)","[sibru] Quota Utilization: Logical (%)","[sibth] Quota Utilization: Logical (%)","[sitnsis] Quota Utilization: Logical (%)","[skyla] Quota Utilization: Logical (%)","[slegu] Quota Utilization: Logical (%)","[snipe] Quota Utilization: Logical (%)","[snobu] Quota Utilization: Logical (%)","[snoow] Quota Utilization: Logical (%)","[sogsh] Quota Utilization: Logical (%)","[solsa] Quota Utilization: Logical (%)","[sonth] Quota Utilization: Logical (%)","[soote] Quota Utilization: Logical (%)","[spasp] Quota Utilization: Logical (%)","[spewa] Quota Utilization: Logical (%)","[spofl] Quota Utilization: Logical (%)","[sposa] Quota Utilization: Logical (%)","[starl] Quota Utilization: Logical (%)","[stevida] Quota Utilization: Logical (%)","[stoch] Quota Utilization: Logical (%)","[stodo] Quota Utilization: Logical (%)","[subwa] Quota Utilization: Logical (%)","[sumta] Quota Utilization: Logical (%)","[swall] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)","[swift] Quota Utilization: Logical (%)","[sylnsis] Quota Utilization: Logical (%)","[synquus] Quota Utilization: Logical (%)","[tacolor] Quota Utilization: Logical (%)","[tawow] Quota Utilization: Logical (%)","[tawpi] Quota Utilization: Logical (%)","[tenow] Quota Utilization: Logical (%)","[tersa] Quota Utilization: Logical (%)","[thbwa] Quota Utilization: Logical (%)","[thrni] Quota Utilization: Logical (%)","[treec] Quota Utilization: Logical (%)","[trepi] Quota Utilization: Logical (%)","[triipes] Quota Utilization: Logical (%)","[trufi] Quota Utilization: Logical (%)","[turanni] Quota Utilization: Logical (%)","[turdo] Quota Utilization: Logical (%)","[twbcr] Quota Utilization: Logical (%)","[twite] Quota Utilization: Logical (%)","[veery] Quota Utilization: Logical (%)","[velsc] Quota Utilization: Logical (%)","[vertera] Quota Utilization: Logical (%)","[virrons] Quota Utilization: Logical (%)","[wallc] Quota Utilization: Logical (%)","[watpi] Quota Utilization: Logical (%)","[waxwi] Quota Utilization: Logical (%)","[whcbl] Quota Utilization: Logical (%)","[whcsp] Quota Utilization: Logical (%)","[wheat] Quota Utilization: Logical (%)","[whinc] Quota Utilization: Logical (%)","[white] Quota Utilization: Logical (%)","[whkte] Quota Utilization: Logical (%)","[whrsa] Quota Utilization: Logical (%)","[whtpl] Quota Utilization: Logical (%)","[whwla] Quota Utilization: Logical (%)","[wilph] Quota Utilization: Logical (%)","[wilwa] Quota Utilization: Logical (%)","[woodc] Quota Utilization: Logical (%)","[woodl] Quota Utilization: Logical (%)","[woodp] Quota Utilization: Logical (%)","[woosa] Quota Utilization: Logical (%)","[woosh] Quota Utilization: Logical (%)","[woowa] Quota Utilization: Logical (%)","[wren1] Quota Utilization: Logical (%)","[wryne] Quota Utilization: Logical (%)","[wwbte] Quota Utilization: Logical (%)","[yebbu] Quota Utilization: Logical (%)","[yebcu] Quota Utilization: Logical (%)","[yebwa] Quota Utilization: Logical (%)","[yelha] Quota Utilization: Logical (%)","[yelwa] Quota Utilization: Logical (%)","[yerwa] Quota Utilization: Logical (%)","[ylwwa] Quota Utilization: Logical (%)","[zenoura] Quota Utilization: Logical (%)" -2018,99.2816,97.6519,94.6685,92.1900,89.5842,89.6981,81.1386,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3913,1.9621,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,99.2816,97.5852,94.6685,92.1906,89.7026,89.0042,81.5322,54.5348,50.6385,37.0745,36.6866,30.1391,27.6657,4.3914,1.9570,0.5757,0.0143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv deleted file mode 100644 index 5fc1cfb9d1..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[blaca] Quota Utilization: Logical (%)","[crcco] Quota Utilization: Logical (%)","[egyni] Quota Utilization: Logical (%)","[frahata] Quota Utilization: Logical (%)","[gresh] Quota Utilization: Logical (%)","[lanwa] Quota Utilization: Logical (%)","[ovenb] Quota Utilization: Logical (%)","[palsw] Quota Utilization: Logical (%)","[parcr] Quota Utilization: Logical (%)","[phivi] Quota Utilization: Logical (%)","[razor] Quota Utilization: Logical (%)","[rocdo] Quota Utilization: Logical (%)","[sante] Quota Utilization: Logical (%)","[savsp] Quota Utilization: Logical (%)","[swath] Quota Utilization: Logical (%)" -2018,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -2019,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv deleted file mode 100644 index 0e9eb8f4b4..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_logical_utilization/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota Utilization: Logical (%): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv deleted file mode 100644 index 16f2752e09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv deleted file mode 100644 index 467fce957a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv deleted file mode 100644 index 16f2752e09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv deleted file mode 100644 index 467fce957a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv deleted file mode 100644 index 16f2752e09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv deleted file mode 100644 index 467fce957a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv deleted file mode 100644 index 492c6309ca..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amere,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -aytinis,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -bawwa,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bobol,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -camwa,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chaff,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corbu,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -ibech,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leske,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -magwa,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -molater,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -norpa,0.0000 -norwa,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redgr,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sanma,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -setusca,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -shttr,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tenwa,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -ylwwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv deleted file mode 100644 index 16f2752e09..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv deleted file mode 100644 index 467fce957a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Physical Usage (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv deleted file mode 100644 index b4c3b8d8fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv deleted file mode 100644 index b4c3b8d8fb..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv deleted file mode 100644 index e3ba6ab2e5..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv deleted file mode 100644 index 8cbe3d7022..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv deleted file mode 100644 index e12bc5c347..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv deleted file mode 100644 index e12bc5c347..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv deleted file mode 100644 index 7e7c4a3938..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv deleted file mode 100644 index c81e0a2891..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv deleted file mode 100644 index 67d9284cce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv deleted file mode 100644 index 67d9284cce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv deleted file mode 100644 index e979d1f52a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv deleted file mode 100644 index d7f941617d..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv deleted file mode 100644 index 909a8e1dce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv deleted file mode 100644 index 909a8e1dce..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[alete] Physical Usage (Bytes)","[alpsw] Physical Usage (Bytes)","[ameke] Physical Usage (Bytes)","[amere] Physical Usage (Bytes)","[amero] Physical Usage (Bytes)","[aquwa] Physical Usage (Bytes)","[arcre] Physical Usage (Bytes)","[arcte] Physical Usage (Bytes)","[aytinis] Physical Usage (Bytes)","[baisa] Physical Usage (Bytes)","[balsh] Physical Usage (Bytes)","[barow] Physical Usage (Bytes)","[bawwa] Physical Usage (Bytes)","[beeea] Physical Usage (Bytes)","[belki] Physical Usage (Bytes)","[bimla] Physical Usage (Bytes)","[bitte] Physical Usage (Bytes)","[blabi] Physical Usage (Bytes)","[blaca] Physical Usage (Bytes)","[blare] Physical Usage (Bytes)","[blate] Physical Usage (Bytes)","[blcbe] Physical Usage (Bytes)","[blewh] Physical Usage (Bytes)","[blhgu] Physical Usage (Bytes)","[blrth] Physical Usage (Bytes)","[blrwa] Physical Usage (Bytes)","[bltth] Physical Usage (Bytes)","[bluth] Physical Usage (Bytes)","[bluti] Physical Usage (Bytes)","[blwpr] Physical Usage (Bytes)","[blypi] Physical Usage (Bytes)","[bobol] Physical Usage (Bytes)","[bomorum] Physical Usage (Bytes)","[bonwa] Physical Usage (Bytes)","[bramb] Physical Usage (Bytes)","[brardix] Physical Usage (Bytes)","[brite] Physical Usage (Bytes)","[broth] Physical Usage (Bytes)","[brugu] Physical Usage (Bytes)","[bubsa] Physical Usage (Bytes)","[bullf] Physical Usage (Bytes)","[calla] Physical Usage (Bytes)","[camwa] Physical Usage (Bytes)","[carcr] Physical Usage (Bytes)","[casgu] Physical Usage (Bytes)","[categ] Physical Usage (Bytes)","[cetwa] Physical Usage (Bytes)","[chabu] Physical Usage (Bytes)","[chaff] Physical Usage (Bytes)","[chisw] Physical Usage (Bytes)","[choug] Physical Usage (Bytes)","[cirbu] Physical Usage (Bytes)","[citwa] Physical Usage (Bytes)","[clisw] Physical Usage (Bytes)","[coati] Physical Usage (Bytes)","[coldo] Physical Usage (Bytes)","[colfl] Physical Usage (Bytes)","[colpr] Physical Usage (Bytes)","[comgu] Physical Usage (Bytes)","[comni] Physical Usage (Bytes)","[comre] Physical Usage (Bytes)","[comsa] Physical Usage (Bytes)","[comte] Physical Usage (Bytes)","[coot1] Physical Usage (Bytes)","[corbu] Physical Usage (Bytes)","[corsh] Physical Usage (Bytes)","[crama] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[crebu] Physical Usage (Bytes)","[crela] Physical Usage (Bytes)","[creti] Physical Usage (Bytes)","[cross] Physical Usage (Bytes)","[cucko] Physical Usage (Bytes)","[daeju] Physical Usage (Bytes)","[darwa] Physical Usage (Bytes)","[deswa] Physical Usage (Bytes)","[deswh] Physical Usage (Bytes)","[dippe] Physical Usage (Bytes)","[dumnsis] Physical Usage (Bytes)","[dunli] Physical Usage (Bytes)","[dunno] Physical Usage (Bytes)","[duswa] Physical Usage (Bytes)","[eaowa] Physical Usage (Bytes)","[egygo] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[embhala] Physical Usage (Bytes)","[evegr] Physical Usage (Bytes)","[eybth] Physical Usage (Bytes)","[falnsis] Physical Usage (Bytes)","[firec] Physical Usage (Bytes)","[forte] Physical Usage (Bytes)","[fragu] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[galcata] Physical Usage (Bytes)","[garwa] Physical Usage (Bytes)","[gbbgu] Physical Usage (Bytes)","[glaarum] Physical Usage (Bytes)","[glagu] Physical Usage (Bytes)","[goldf] Physical Usage (Bytes)","[golor] Physical Usage (Bytes)","[grath] Physical Usage (Bytes)","[grawa] Physical Usage (Bytes)","[grefi] Physical Usage (Bytes)","[greph] Physical Usage (Bytes)","[gresa] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[gresk] Physical Usage (Bytes)","[gresn] Physical Usage (Bytes)","[greti] Physical Usage (Bytes)","[grewa] Physical Usage (Bytes)","[grewo] Physical Usage (Bytes)","[greye] Physical Usage (Bytes)","[grnwa] Physical Usage (Bytes)","[grrwa] Physical Usage (Bytes)","[grscu] Physical Usage (Bytes)","[gshwa] Physical Usage (Bytes)","[guill] Physical Usage (Bytes)","[gyrfa] Physical Usage (Bytes)","[hawfi] Physical Usage (Bytes)","[hawow] Physical Usage (Bytes)","[hiporum] Physical Usage (Bytes)","[hobby] Physical Usage (Bytes)","[honbu] Physical Usage (Bytes)","[hoopo] Physical Usage (Bytes)","[hoowa] Physical Usage (Bytes)","[houma] Physical Usage (Bytes)","[housp] Physical Usage (Bytes)","[hulwa] Physical Usage (Bytes)","[hyllina] Physical Usage (Bytes)","[ibech] Physical Usage (Bytes)","[icegu] Physical Usage (Bytes)","[ictwa] Physical Usage (Bytes)","[isash] Physical Usage (Bytes)","[isawh] Physical Usage (Bytes)","[ivogu] Physical Usage (Bytes)","[ixovius] Physical Usage (Bytes)","[jacsn] Physical Usage (Bytes)","[jay11] Physical Usage (Bytes)","[kestr] Physical Usage (Bytes)","[kingf] Physical Usage (Bytes)","[kitti] Physical Usage (Bytes)","[lanhach] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[lapbu] Physical Usage (Bytes)","[laragus] Physical Usage (Bytes)","[laranus] Physical Usage (Bytes)","[larinii] Physical Usage (Bytes)","[larsp] Physical Usage (Bytes)","[laryane] Physical Usage (Bytes)","[laugu] Physical Usage (Bytes)","[lbbgu] Physical Usage (Bytes)","[leasa] Physical Usage (Bytes)","[lecte] Physical Usage (Bytes)","[leske] Physical Usage (Bytes)","[leswh] Physical Usage (Bytes)","[lesye] Physical Usage (Bytes)","[linne] Physical Usage (Bytes)","[litau] Physical Usage (Bytes)","[litbu] Physical Usage (Bytes)","[litgu] Physical Usage (Bytes)","[litte] Physical Usage (Bytes)","[lobdo] Physical Usage (Bytes)","[loeow] Physical Usage (Bytes)","[lotsk] Physical Usage (Bytes)","[lotti] Physical Usage (Bytes)","[lstla] Physical Usage (Bytes)","[magpi] Physical Usage (Bytes)","[magwa] Physical Usage (Bytes)","[marsa] Physical Usage (Bytes)","[marti] Physical Usage (Bytes)","[marwa] Physical Usage (Bytes)","[massh] Physical Usage (Bytes)","[medgu] Physical Usage (Bytes)","[melnsis] Physical Usage (Bytes)","[melwa] Physical Usage (Bytes)","[mimttos] Physical Usage (Bytes)","[molater] Physical Usage (Bytes)","[moure] Physical Usage (Bytes)","[musrica] Physical Usage (Bytes)","[netsw] Physical Usage (Bytes)","[nigal] Physical Usage (Bytes)","[nijar] Physical Usage (Bytes)","[noror] Physical Usage (Bytes)","[norpa] Physical Usage (Bytes)","[norwa] Physical Usage (Bytes)","[nutcr] Physical Usage (Bytes)","[olbpi] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[pacsw] Physical Usage (Bytes)","[pagwa] Physical Usage (Bytes)","[palsa] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[palwa] Physical Usage (Bytes)","[parbu] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[pecpi] Physical Usage (Bytes)","[pecsa] Physical Usage (Bytes)","[penti] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[phyatus] Physical Usage (Bytes)","[pibgr] Physical Usage (Bytes)","[piefl] Physical Usage (Bytes)","[piewh] Physical Usage (Bytes)","[pinbu] Physical Usage (Bytes)","[pingr] Physical Usage (Bytes)","[pinnnis] Physical Usage (Bytes)","[pomsk] Physical Usage (Bytes)","[proubis] Physical Usage (Bytes)","[pursa] Physical Usage (Bytes)","[raven] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rebfl] Physical Usage (Bytes)","[rebsh] Physical Usage (Bytes)","[redgr] Physical Usage (Bytes)","[redsh] Physical Usage (Bytes)","[redst] Physical Usage (Bytes)","[redwi] Physical Usage (Bytes)","[reebu] Physical Usage (Bytes)","[reevi] Physical Usage (Bytes)","[reewa] Physical Usage (Bytes)","[refbl] Physical Usage (Bytes)","[reffa] Physical Usage (Bytes)","[renni] Physical Usage (Bytes)","[renph] Physical Usage (Bytes)","[rersw] Physical Usage (Bytes)","[ricpi] Physical Usage (Bytes)","[rinou] Physical Usage (Bytes)","[rinpa] Physical Usage (Bytes)","[rivwa] Physical Usage (Bytes)","[robgr] Physical Usage (Bytes)","[robin] Physical Usage (Bytes)","[rocbu] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[rocpi] Physical Usage (Bytes)","[rocsp] Physical Usage (Bytes)","[rocth] Physical Usage (Bytes)","[rolle] Physical Usage (Bytes)","[rook1] Physical Usage (Bytes)","[rosgu] Physical Usage (Bytes)","[roste] Physical Usage (Bytes)","[royte] Physical Usage (Bytes)","[rubro] Physical Usage (Bytes)","[rupwa] Physical Usage (Bytes)","[rusto] Physical Usage (Bytes)","[rutdo] Physical Usage (Bytes)","[rutro] Physical Usage (Bytes)","[sabgu] Physical Usage (Bytes)","[sancr] Physical Usage (Bytes)","[sanma] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[sarwa] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[sayoebe] Physical Usage (Bytes)","[scaro] Physical Usage (Bytes)","[scata] Physical Usage (Bytes)","[scocr] Physical Usage (Bytes)","[scoow] Physical Usage (Bytes)","[sedwa] Physical Usage (Bytes)","[semsa] Physical Usage (Bytes)","[serin] Physical Usage (Bytes)","[setusca] Physical Usage (Bytes)","[shag1] Physical Usage (Bytes)","[sheow] Physical Usage (Bytes)","[shola] Physical Usage (Bytes)","[shtla] Physical Usage (Bytes)","[shttr] Physical Usage (Bytes)","[sibru] Physical Usage (Bytes)","[sibth] Physical Usage (Bytes)","[sitnsis] Physical Usage (Bytes)","[skyla] Physical Usage (Bytes)","[slegu] Physical Usage (Bytes)","[snipe] Physical Usage (Bytes)","[snobu] Physical Usage (Bytes)","[snoow] Physical Usage (Bytes)","[sogsh] Physical Usage (Bytes)","[solsa] Physical Usage (Bytes)","[sonth] Physical Usage (Bytes)","[soote] Physical Usage (Bytes)","[spasp] Physical Usage (Bytes)","[spewa] Physical Usage (Bytes)","[spofl] Physical Usage (Bytes)","[sposa] Physical Usage (Bytes)","[starl] Physical Usage (Bytes)","[stevida] Physical Usage (Bytes)","[stoch] Physical Usage (Bytes)","[stodo] Physical Usage (Bytes)","[subwa] Physical Usage (Bytes)","[sumta] Physical Usage (Bytes)","[swall] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)","[swift] Physical Usage (Bytes)","[sylnsis] Physical Usage (Bytes)","[synquus] Physical Usage (Bytes)","[tacolor] Physical Usage (Bytes)","[tawow] Physical Usage (Bytes)","[tawpi] Physical Usage (Bytes)","[tenow] Physical Usage (Bytes)","[tenwa] Physical Usage (Bytes)","[tersa] Physical Usage (Bytes)","[thbwa] Physical Usage (Bytes)","[thrni] Physical Usage (Bytes)","[treec] Physical Usage (Bytes)","[trepi] Physical Usage (Bytes)","[triipes] Physical Usage (Bytes)","[trufi] Physical Usage (Bytes)","[turanni] Physical Usage (Bytes)","[turdo] Physical Usage (Bytes)","[twbcr] Physical Usage (Bytes)","[twite] Physical Usage (Bytes)","[veery] Physical Usage (Bytes)","[velsc] Physical Usage (Bytes)","[vertera] Physical Usage (Bytes)","[virrons] Physical Usage (Bytes)","[wallc] Physical Usage (Bytes)","[watpi] Physical Usage (Bytes)","[waxwi] Physical Usage (Bytes)","[whcbl] Physical Usage (Bytes)","[whcsp] Physical Usage (Bytes)","[wheat] Physical Usage (Bytes)","[whinc] Physical Usage (Bytes)","[white] Physical Usage (Bytes)","[whkte] Physical Usage (Bytes)","[whrsa] Physical Usage (Bytes)","[whtpl] Physical Usage (Bytes)","[whwla] Physical Usage (Bytes)","[wilph] Physical Usage (Bytes)","[wilwa] Physical Usage (Bytes)","[woodc] Physical Usage (Bytes)","[woodl] Physical Usage (Bytes)","[woodp] Physical Usage (Bytes)","[woosa] Physical Usage (Bytes)","[woosh] Physical Usage (Bytes)","[woowa] Physical Usage (Bytes)","[wren1] Physical Usage (Bytes)","[wryne] Physical Usage (Bytes)","[wwbte] Physical Usage (Bytes)","[yebbu] Physical Usage (Bytes)","[yebcu] Physical Usage (Bytes)","[yebwa] Physical Usage (Bytes)","[yelha] Physical Usage (Bytes)","[yelwa] Physical Usage (Bytes)","[yerwa] Physical Usage (Bytes)","[ylwwa] Physical Usage (Bytes)","[zenoura] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv deleted file mode 100644 index d6d9417058..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[blaca] Physical Usage (Bytes)","[crcco] Physical Usage (Bytes)","[egyni] Physical Usage (Bytes)","[frahata] Physical Usage (Bytes)","[gresh] Physical Usage (Bytes)","[lanwa] Physical Usage (Bytes)","[ovenb] Physical Usage (Bytes)","[palsw] Physical Usage (Bytes)","[parcr] Physical Usage (Bytes)","[phivi] Physical Usage (Bytes)","[razor] Physical Usage (Bytes)","[rocdo] Physical Usage (Bytes)","[sante] Physical Usage (Bytes)","[savsp] Physical Usage (Bytes)","[swath] Physical Usage (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv deleted file mode 100644 index 9ad6bc8499..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_physical_usage/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Physical Usage (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv deleted file mode 100644 index 33a0754396..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv deleted file mode 100644 index 88571cc26a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv deleted file mode 100644 index 33a0754396..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv deleted file mode 100644 index 88571cc26a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv deleted file mode 100644 index 33a0754396..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv deleted file mode 100644 index 88571cc26a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv deleted file mode 100644 index 6acf8333c9..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -molater,200000000000000.0000 -bobol,150000001024000.0000 -amere,100000002048000.0000 -norwa,100000002048000.0000 -redgr,100000002048000.0000 -ylwwa,100000002048000.0000 -bawwa,50000003072000.0000 -tenwa,50000003072000.0000 -chaff,30000001024000.0000 -ibech,25000001536000.0000 -magwa,20000002048000.0000 -aytinis,10000003072000.0000 -camwa,10000003072000.0000 -leske,10000003072000.0000 -norpa,10000003072000.0000 -sanma,10000003072000.0000 -setusca,5000003584000.0000 -shttr,1000005632000.0000 -corbu,1000001536000.0000 -alete,0.0000 -alpsw,0.0000 -ameke,0.0000 -amero,0.0000 -aquwa,0.0000 -arcre,0.0000 -arcte,0.0000 -baisa,0.0000 -balsh,0.0000 -barow,0.0000 -beeea,0.0000 -belki,0.0000 -bimla,0.0000 -bitte,0.0000 -blabi,0.0000 -blaca,0.0000 -blare,0.0000 -blate,0.0000 -blcbe,0.0000 -blewh,0.0000 -blhgu,0.0000 -blrth,0.0000 -blrwa,0.0000 -bltth,0.0000 -bluth,0.0000 -bluti,0.0000 -blwpr,0.0000 -blypi,0.0000 -bomorum,0.0000 -bonwa,0.0000 -bramb,0.0000 -brardix,0.0000 -brite,0.0000 -broth,0.0000 -brugu,0.0000 -bubsa,0.0000 -bullf,0.0000 -calla,0.0000 -carcr,0.0000 -casgu,0.0000 -categ,0.0000 -cetwa,0.0000 -chabu,0.0000 -chisw,0.0000 -choug,0.0000 -cirbu,0.0000 -citwa,0.0000 -clisw,0.0000 -coati,0.0000 -coldo,0.0000 -colfl,0.0000 -colpr,0.0000 -comgu,0.0000 -comni,0.0000 -comre,0.0000 -comsa,0.0000 -comte,0.0000 -coot1,0.0000 -corsh,0.0000 -crama,0.0000 -crcco,0.0000 -crebu,0.0000 -crela,0.0000 -creti,0.0000 -cross,0.0000 -cucko,0.0000 -daeju,0.0000 -darwa,0.0000 -deswa,0.0000 -deswh,0.0000 -dippe,0.0000 -dumnsis,0.0000 -dunli,0.0000 -dunno,0.0000 -duswa,0.0000 -eaowa,0.0000 -egygo,0.0000 -egyni,0.0000 -embhala,0.0000 -evegr,0.0000 -eybth,0.0000 -falnsis,0.0000 -firec,0.0000 -forte,0.0000 -fragu,0.0000 -frahata,0.0000 -galcata,0.0000 -garwa,0.0000 -gbbgu,0.0000 -glaarum,0.0000 -glagu,0.0000 -goldf,0.0000 -golor,0.0000 -grath,0.0000 -grawa,0.0000 -grefi,0.0000 -greph,0.0000 -gresa,0.0000 -gresh,0.0000 -gresk,0.0000 -gresn,0.0000 -greti,0.0000 -grewa,0.0000 -grewo,0.0000 -greye,0.0000 -grnwa,0.0000 -grrwa,0.0000 -grscu,0.0000 -gshwa,0.0000 -guill,0.0000 -gyrfa,0.0000 -hawfi,0.0000 -hawow,0.0000 -hiporum,0.0000 -hobby,0.0000 -honbu,0.0000 -hoopo,0.0000 -hoowa,0.0000 -houma,0.0000 -housp,0.0000 -hulwa,0.0000 -hyllina,0.0000 -icegu,0.0000 -ictwa,0.0000 -isash,0.0000 -isawh,0.0000 -ivogu,0.0000 -ixovius,0.0000 -jacsn,0.0000 -jay11,0.0000 -kestr,0.0000 -kingf,0.0000 -kitti,0.0000 -lanhach,0.0000 -lanwa,0.0000 -lapbu,0.0000 -laragus,0.0000 -laranus,0.0000 -larinii,0.0000 -larsp,0.0000 -laryane,0.0000 -laugu,0.0000 -lbbgu,0.0000 -leasa,0.0000 -lecte,0.0000 -leswh,0.0000 -lesye,0.0000 -linne,0.0000 -litau,0.0000 -litbu,0.0000 -litgu,0.0000 -litte,0.0000 -lobdo,0.0000 -loeow,0.0000 -lotsk,0.0000 -lotti,0.0000 -lstla,0.0000 -magpi,0.0000 -marsa,0.0000 -marti,0.0000 -marwa,0.0000 -massh,0.0000 -medgu,0.0000 -melnsis,0.0000 -melwa,0.0000 -mimttos,0.0000 -moure,0.0000 -musrica,0.0000 -netsw,0.0000 -nigal,0.0000 -nijar,0.0000 -noror,0.0000 -nutcr,0.0000 -olbpi,0.0000 -ovenb,0.0000 -pacsw,0.0000 -pagwa,0.0000 -palsa,0.0000 -palsw,0.0000 -palwa,0.0000 -parbu,0.0000 -parcr,0.0000 -pecpi,0.0000 -pecsa,0.0000 -penti,0.0000 -phivi,0.0000 -phyatus,0.0000 -pibgr,0.0000 -piefl,0.0000 -piewh,0.0000 -pinbu,0.0000 -pingr,0.0000 -pinnnis,0.0000 -pomsk,0.0000 -proubis,0.0000 -pursa,0.0000 -raven,0.0000 -razor,0.0000 -rebfl,0.0000 -rebsh,0.0000 -redsh,0.0000 -redst,0.0000 -redwi,0.0000 -reebu,0.0000 -reevi,0.0000 -reewa,0.0000 -refbl,0.0000 -reffa,0.0000 -renni,0.0000 -renph,0.0000 -rersw,0.0000 -ricpi,0.0000 -rinou,0.0000 -rinpa,0.0000 -rivwa,0.0000 -robgr,0.0000 -robin,0.0000 -rocbu,0.0000 -rocdo,0.0000 -rocpi,0.0000 -rocsp,0.0000 -rocth,0.0000 -rolle,0.0000 -rook1,0.0000 -rosgu,0.0000 -roste,0.0000 -royte,0.0000 -rubro,0.0000 -rupwa,0.0000 -rusto,0.0000 -rutdo,0.0000 -rutro,0.0000 -sabgu,0.0000 -sancr,0.0000 -sante,0.0000 -sarwa,0.0000 -savsp,0.0000 -sayoebe,0.0000 -scaro,0.0000 -scata,0.0000 -scocr,0.0000 -scoow,0.0000 -sedwa,0.0000 -semsa,0.0000 -serin,0.0000 -shag1,0.0000 -sheow,0.0000 -shola,0.0000 -shtla,0.0000 -sibru,0.0000 -sibth,0.0000 -sitnsis,0.0000 -skyla,0.0000 -slegu,0.0000 -snipe,0.0000 -snobu,0.0000 -snoow,0.0000 -sogsh,0.0000 -solsa,0.0000 -sonth,0.0000 -soote,0.0000 -spasp,0.0000 -spewa,0.0000 -spofl,0.0000 -sposa,0.0000 -starl,0.0000 -stevida,0.0000 -stoch,0.0000 -stodo,0.0000 -subwa,0.0000 -sumta,0.0000 -swall,0.0000 -swath,0.0000 -swift,0.0000 -sylnsis,0.0000 -synquus,0.0000 -tacolor,0.0000 -tawow,0.0000 -tawpi,0.0000 -tenow,0.0000 -tersa,0.0000 -thbwa,0.0000 -thrni,0.0000 -treec,0.0000 -trepi,0.0000 -triipes,0.0000 -trufi,0.0000 -turanni,0.0000 -turdo,0.0000 -twbcr,0.0000 -twite,0.0000 -veery,0.0000 -velsc,0.0000 -vertera,0.0000 -virrons,0.0000 -wallc,0.0000 -watpi,0.0000 -waxwi,0.0000 -whcbl,0.0000 -whcsp,0.0000 -wheat,0.0000 -whinc,0.0000 -white,0.0000 -whkte,0.0000 -whrsa,0.0000 -whtpl,0.0000 -whwla,0.0000 -wilph,0.0000 -wilwa,0.0000 -woodc,0.0000 -woodl,0.0000 -woodp,0.0000 -woosa,0.0000 -woosh,0.0000 -woowa,0.0000 -wren1,0.0000 -wryne,0.0000 -wwbte,0.0000 -yebbu,0.0000 -yebcu,0.0000 -yebwa,0.0000 -yelha,0.0000 -yelwa,0.0000 -yerwa,0.0000 -zenoura,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv deleted file mode 100644 index 33a0754396..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" -blaca,0.0000 -crcco,0.0000 -egyni,0.0000 -frahata,0.0000 -gresh,0.0000 -lanwa,0.0000 -ovenb,0.0000 -palsw,0.0000 -parcr,0.0000 -phivi,0.0000 -razor,0.0000 -rocdo,0.0000 -sante,0.0000 -savsp,0.0000 -swath,0.0000 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv deleted file mode 100644 index 88571cc26a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","Quota: Soft Threshold (Bytes)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv deleted file mode 100644 index 2afa539ca3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -2018-12-27,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv deleted file mode 100644 index 2afa539ca3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -2018-12-27,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv deleted file mode 100644 index 5acc2c48d3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" -2018-12-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018-12-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv deleted file mode 100644 index 2e71cfdfb3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv deleted file mode 100644 index 4e574868bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -2018-12,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv deleted file mode 100644 index 4e574868bc..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -2018-12,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv deleted file mode 100644 index 879178a3ac..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" -2018-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv deleted file mode 100644 index c758751e1e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv deleted file mode 100644 index 02ed686c8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -"2018 Q4",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv deleted file mode 100644 index 02ed686c8b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -"2018 Q4",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv deleted file mode 100644 index fe3dcf7540..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" -"2018 Q4",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -"2019 Q1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv deleted file mode 100644 index 3260126af6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv deleted file mode 100644 index d655c46db2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -2018,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv deleted file mode 100644 index d655c46db2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[molater] Quota: Soft Threshold (Bytes)","[bobol] Quota: Soft Threshold (Bytes)","[amere] Quota: Soft Threshold (Bytes)","[norwa] Quota: Soft Threshold (Bytes)","[redgr] Quota: Soft Threshold (Bytes)","[ylwwa] Quota: Soft Threshold (Bytes)","[bawwa] Quota: Soft Threshold (Bytes)","[tenwa] Quota: Soft Threshold (Bytes)","[chaff] Quota: Soft Threshold (Bytes)","[ibech] Quota: Soft Threshold (Bytes)","[magwa] Quota: Soft Threshold (Bytes)","[aytinis] Quota: Soft Threshold (Bytes)","[camwa] Quota: Soft Threshold (Bytes)","[leske] Quota: Soft Threshold (Bytes)","[norpa] Quota: Soft Threshold (Bytes)","[sanma] Quota: Soft Threshold (Bytes)","[setusca] Quota: Soft Threshold (Bytes)","[shttr] Quota: Soft Threshold (Bytes)","[corbu] Quota: Soft Threshold (Bytes)","[alete] Quota: Soft Threshold (Bytes)","[alpsw] Quota: Soft Threshold (Bytes)","[ameke] Quota: Soft Threshold (Bytes)","[amero] Quota: Soft Threshold (Bytes)","[aquwa] Quota: Soft Threshold (Bytes)","[arcre] Quota: Soft Threshold (Bytes)","[arcte] Quota: Soft Threshold (Bytes)","[baisa] Quota: Soft Threshold (Bytes)","[balsh] Quota: Soft Threshold (Bytes)","[barow] Quota: Soft Threshold (Bytes)","[beeea] Quota: Soft Threshold (Bytes)","[belki] Quota: Soft Threshold (Bytes)","[bimla] Quota: Soft Threshold (Bytes)","[bitte] Quota: Soft Threshold (Bytes)","[blabi] Quota: Soft Threshold (Bytes)","[blaca] Quota: Soft Threshold (Bytes)","[blare] Quota: Soft Threshold (Bytes)","[blate] Quota: Soft Threshold (Bytes)","[blcbe] Quota: Soft Threshold (Bytes)","[blewh] Quota: Soft Threshold (Bytes)","[blhgu] Quota: Soft Threshold (Bytes)","[blrth] Quota: Soft Threshold (Bytes)","[blrwa] Quota: Soft Threshold (Bytes)","[bltth] Quota: Soft Threshold (Bytes)","[bluth] Quota: Soft Threshold (Bytes)","[bluti] Quota: Soft Threshold (Bytes)","[blwpr] Quota: Soft Threshold (Bytes)","[blypi] Quota: Soft Threshold (Bytes)","[bomorum] Quota: Soft Threshold (Bytes)","[bonwa] Quota: Soft Threshold (Bytes)","[bramb] Quota: Soft Threshold (Bytes)","[brardix] Quota: Soft Threshold (Bytes)","[brite] Quota: Soft Threshold (Bytes)","[broth] Quota: Soft Threshold (Bytes)","[brugu] Quota: Soft Threshold (Bytes)","[bubsa] Quota: Soft Threshold (Bytes)","[bullf] Quota: Soft Threshold (Bytes)","[calla] Quota: Soft Threshold (Bytes)","[carcr] Quota: Soft Threshold (Bytes)","[casgu] Quota: Soft Threshold (Bytes)","[categ] Quota: Soft Threshold (Bytes)","[cetwa] Quota: Soft Threshold (Bytes)","[chabu] Quota: Soft Threshold (Bytes)","[chisw] Quota: Soft Threshold (Bytes)","[choug] Quota: Soft Threshold (Bytes)","[cirbu] Quota: Soft Threshold (Bytes)","[citwa] Quota: Soft Threshold (Bytes)","[clisw] Quota: Soft Threshold (Bytes)","[coati] Quota: Soft Threshold (Bytes)","[coldo] Quota: Soft Threshold (Bytes)","[colfl] Quota: Soft Threshold (Bytes)","[colpr] Quota: Soft Threshold (Bytes)","[comgu] Quota: Soft Threshold (Bytes)","[comni] Quota: Soft Threshold (Bytes)","[comre] Quota: Soft Threshold (Bytes)","[comsa] Quota: Soft Threshold (Bytes)","[comte] Quota: Soft Threshold (Bytes)","[coot1] Quota: Soft Threshold (Bytes)","[corsh] Quota: Soft Threshold (Bytes)","[crama] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[crebu] Quota: Soft Threshold (Bytes)","[crela] Quota: Soft Threshold (Bytes)","[creti] Quota: Soft Threshold (Bytes)","[cross] Quota: Soft Threshold (Bytes)","[cucko] Quota: Soft Threshold (Bytes)","[daeju] Quota: Soft Threshold (Bytes)","[darwa] Quota: Soft Threshold (Bytes)","[deswa] Quota: Soft Threshold (Bytes)","[deswh] Quota: Soft Threshold (Bytes)","[dippe] Quota: Soft Threshold (Bytes)","[dumnsis] Quota: Soft Threshold (Bytes)","[dunli] Quota: Soft Threshold (Bytes)","[dunno] Quota: Soft Threshold (Bytes)","[duswa] Quota: Soft Threshold (Bytes)","[eaowa] Quota: Soft Threshold (Bytes)","[egygo] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[embhala] Quota: Soft Threshold (Bytes)","[evegr] Quota: Soft Threshold (Bytes)","[eybth] Quota: Soft Threshold (Bytes)","[falnsis] Quota: Soft Threshold (Bytes)","[firec] Quota: Soft Threshold (Bytes)","[forte] Quota: Soft Threshold (Bytes)","[fragu] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[galcata] Quota: Soft Threshold (Bytes)","[garwa] Quota: Soft Threshold (Bytes)","[gbbgu] Quota: Soft Threshold (Bytes)","[glaarum] Quota: Soft Threshold (Bytes)","[glagu] Quota: Soft Threshold (Bytes)","[goldf] Quota: Soft Threshold (Bytes)","[golor] Quota: Soft Threshold (Bytes)","[grath] Quota: Soft Threshold (Bytes)","[grawa] Quota: Soft Threshold (Bytes)","[grefi] Quota: Soft Threshold (Bytes)","[greph] Quota: Soft Threshold (Bytes)","[gresa] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[gresk] Quota: Soft Threshold (Bytes)","[gresn] Quota: Soft Threshold (Bytes)","[greti] Quota: Soft Threshold (Bytes)","[grewa] Quota: Soft Threshold (Bytes)","[grewo] Quota: Soft Threshold (Bytes)","[greye] Quota: Soft Threshold (Bytes)","[grnwa] Quota: Soft Threshold (Bytes)","[grrwa] Quota: Soft Threshold (Bytes)","[grscu] Quota: Soft Threshold (Bytes)","[gshwa] Quota: Soft Threshold (Bytes)","[guill] Quota: Soft Threshold (Bytes)","[gyrfa] Quota: Soft Threshold (Bytes)","[hawfi] Quota: Soft Threshold (Bytes)","[hawow] Quota: Soft Threshold (Bytes)","[hiporum] Quota: Soft Threshold (Bytes)","[hobby] Quota: Soft Threshold (Bytes)","[honbu] Quota: Soft Threshold (Bytes)","[hoopo] Quota: Soft Threshold (Bytes)","[hoowa] Quota: Soft Threshold (Bytes)","[houma] Quota: Soft Threshold (Bytes)","[housp] Quota: Soft Threshold (Bytes)","[hulwa] Quota: Soft Threshold (Bytes)","[hyllina] Quota: Soft Threshold (Bytes)","[icegu] Quota: Soft Threshold (Bytes)","[ictwa] Quota: Soft Threshold (Bytes)","[isash] Quota: Soft Threshold (Bytes)","[isawh] Quota: Soft Threshold (Bytes)","[ivogu] Quota: Soft Threshold (Bytes)","[ixovius] Quota: Soft Threshold (Bytes)","[jacsn] Quota: Soft Threshold (Bytes)","[jay11] Quota: Soft Threshold (Bytes)","[kestr] Quota: Soft Threshold (Bytes)","[kingf] Quota: Soft Threshold (Bytes)","[kitti] Quota: Soft Threshold (Bytes)","[lanhach] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[lapbu] Quota: Soft Threshold (Bytes)","[laragus] Quota: Soft Threshold (Bytes)","[laranus] Quota: Soft Threshold (Bytes)","[larinii] Quota: Soft Threshold (Bytes)","[larsp] Quota: Soft Threshold (Bytes)","[laryane] Quota: Soft Threshold (Bytes)","[laugu] Quota: Soft Threshold (Bytes)","[lbbgu] Quota: Soft Threshold (Bytes)","[leasa] Quota: Soft Threshold (Bytes)","[lecte] Quota: Soft Threshold (Bytes)","[leswh] Quota: Soft Threshold (Bytes)","[lesye] Quota: Soft Threshold (Bytes)","[linne] Quota: Soft Threshold (Bytes)","[litau] Quota: Soft Threshold (Bytes)","[litbu] Quota: Soft Threshold (Bytes)","[litgu] Quota: Soft Threshold (Bytes)","[litte] Quota: Soft Threshold (Bytes)","[lobdo] Quota: Soft Threshold (Bytes)","[loeow] Quota: Soft Threshold (Bytes)","[lotsk] Quota: Soft Threshold (Bytes)","[lotti] Quota: Soft Threshold (Bytes)","[lstla] Quota: Soft Threshold (Bytes)","[magpi] Quota: Soft Threshold (Bytes)","[marsa] Quota: Soft Threshold (Bytes)","[marti] Quota: Soft Threshold (Bytes)","[marwa] Quota: Soft Threshold (Bytes)","[massh] Quota: Soft Threshold (Bytes)","[medgu] Quota: Soft Threshold (Bytes)","[melnsis] Quota: Soft Threshold (Bytes)","[melwa] Quota: Soft Threshold (Bytes)","[mimttos] Quota: Soft Threshold (Bytes)","[moure] Quota: Soft Threshold (Bytes)","[musrica] Quota: Soft Threshold (Bytes)","[netsw] Quota: Soft Threshold (Bytes)","[nigal] Quota: Soft Threshold (Bytes)","[nijar] Quota: Soft Threshold (Bytes)","[noror] Quota: Soft Threshold (Bytes)","[nutcr] Quota: Soft Threshold (Bytes)","[olbpi] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[pacsw] Quota: Soft Threshold (Bytes)","[pagwa] Quota: Soft Threshold (Bytes)","[palsa] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[palwa] Quota: Soft Threshold (Bytes)","[parbu] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[pecpi] Quota: Soft Threshold (Bytes)","[pecsa] Quota: Soft Threshold (Bytes)","[penti] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[phyatus] Quota: Soft Threshold (Bytes)","[pibgr] Quota: Soft Threshold (Bytes)","[piefl] Quota: Soft Threshold (Bytes)","[piewh] Quota: Soft Threshold (Bytes)","[pinbu] Quota: Soft Threshold (Bytes)","[pingr] Quota: Soft Threshold (Bytes)","[pinnnis] Quota: Soft Threshold (Bytes)","[pomsk] Quota: Soft Threshold (Bytes)","[proubis] Quota: Soft Threshold (Bytes)","[pursa] Quota: Soft Threshold (Bytes)","[raven] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rebfl] Quota: Soft Threshold (Bytes)","[rebsh] Quota: Soft Threshold (Bytes)","[redsh] Quota: Soft Threshold (Bytes)","[redst] Quota: Soft Threshold (Bytes)","[redwi] Quota: Soft Threshold (Bytes)","[reebu] Quota: Soft Threshold (Bytes)","[reevi] Quota: Soft Threshold (Bytes)","[reewa] Quota: Soft Threshold (Bytes)","[refbl] Quota: Soft Threshold (Bytes)","[reffa] Quota: Soft Threshold (Bytes)","[renni] Quota: Soft Threshold (Bytes)","[renph] Quota: Soft Threshold (Bytes)","[rersw] Quota: Soft Threshold (Bytes)","[ricpi] Quota: Soft Threshold (Bytes)","[rinou] Quota: Soft Threshold (Bytes)","[rinpa] Quota: Soft Threshold (Bytes)","[rivwa] Quota: Soft Threshold (Bytes)","[robgr] Quota: Soft Threshold (Bytes)","[robin] Quota: Soft Threshold (Bytes)","[rocbu] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[rocpi] Quota: Soft Threshold (Bytes)","[rocsp] Quota: Soft Threshold (Bytes)","[rocth] Quota: Soft Threshold (Bytes)","[rolle] Quota: Soft Threshold (Bytes)","[rook1] Quota: Soft Threshold (Bytes)","[rosgu] Quota: Soft Threshold (Bytes)","[roste] Quota: Soft Threshold (Bytes)","[royte] Quota: Soft Threshold (Bytes)","[rubro] Quota: Soft Threshold (Bytes)","[rupwa] Quota: Soft Threshold (Bytes)","[rusto] Quota: Soft Threshold (Bytes)","[rutdo] Quota: Soft Threshold (Bytes)","[rutro] Quota: Soft Threshold (Bytes)","[sabgu] Quota: Soft Threshold (Bytes)","[sancr] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[sarwa] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[sayoebe] Quota: Soft Threshold (Bytes)","[scaro] Quota: Soft Threshold (Bytes)","[scata] Quota: Soft Threshold (Bytes)","[scocr] Quota: Soft Threshold (Bytes)","[scoow] Quota: Soft Threshold (Bytes)","[sedwa] Quota: Soft Threshold (Bytes)","[semsa] Quota: Soft Threshold (Bytes)","[serin] Quota: Soft Threshold (Bytes)","[shag1] Quota: Soft Threshold (Bytes)","[sheow] Quota: Soft Threshold (Bytes)","[shola] Quota: Soft Threshold (Bytes)","[shtla] Quota: Soft Threshold (Bytes)","[sibru] Quota: Soft Threshold (Bytes)","[sibth] Quota: Soft Threshold (Bytes)","[sitnsis] Quota: Soft Threshold (Bytes)","[skyla] Quota: Soft Threshold (Bytes)","[slegu] Quota: Soft Threshold (Bytes)","[snipe] Quota: Soft Threshold (Bytes)","[snobu] Quota: Soft Threshold (Bytes)","[snoow] Quota: Soft Threshold (Bytes)","[sogsh] Quota: Soft Threshold (Bytes)","[solsa] Quota: Soft Threshold (Bytes)","[sonth] Quota: Soft Threshold (Bytes)","[soote] Quota: Soft Threshold (Bytes)","[spasp] Quota: Soft Threshold (Bytes)","[spewa] Quota: Soft Threshold (Bytes)","[spofl] Quota: Soft Threshold (Bytes)","[sposa] Quota: Soft Threshold (Bytes)","[starl] Quota: Soft Threshold (Bytes)","[stevida] Quota: Soft Threshold (Bytes)","[stoch] Quota: Soft Threshold (Bytes)","[stodo] Quota: Soft Threshold (Bytes)","[subwa] Quota: Soft Threshold (Bytes)","[sumta] Quota: Soft Threshold (Bytes)","[swall] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)","[swift] Quota: Soft Threshold (Bytes)","[sylnsis] Quota: Soft Threshold (Bytes)","[synquus] Quota: Soft Threshold (Bytes)","[tacolor] Quota: Soft Threshold (Bytes)","[tawow] Quota: Soft Threshold (Bytes)","[tawpi] Quota: Soft Threshold (Bytes)","[tenow] Quota: Soft Threshold (Bytes)","[tersa] Quota: Soft Threshold (Bytes)","[thbwa] Quota: Soft Threshold (Bytes)","[thrni] Quota: Soft Threshold (Bytes)","[treec] Quota: Soft Threshold (Bytes)","[trepi] Quota: Soft Threshold (Bytes)","[triipes] Quota: Soft Threshold (Bytes)","[trufi] Quota: Soft Threshold (Bytes)","[turanni] Quota: Soft Threshold (Bytes)","[turdo] Quota: Soft Threshold (Bytes)","[twbcr] Quota: Soft Threshold (Bytes)","[twite] Quota: Soft Threshold (Bytes)","[veery] Quota: Soft Threshold (Bytes)","[velsc] Quota: Soft Threshold (Bytes)","[vertera] Quota: Soft Threshold (Bytes)","[virrons] Quota: Soft Threshold (Bytes)","[wallc] Quota: Soft Threshold (Bytes)","[watpi] Quota: Soft Threshold (Bytes)","[waxwi] Quota: Soft Threshold (Bytes)","[whcbl] Quota: Soft Threshold (Bytes)","[whcsp] Quota: Soft Threshold (Bytes)","[wheat] Quota: Soft Threshold (Bytes)","[whinc] Quota: Soft Threshold (Bytes)","[white] Quota: Soft Threshold (Bytes)","[whkte] Quota: Soft Threshold (Bytes)","[whrsa] Quota: Soft Threshold (Bytes)","[whtpl] Quota: Soft Threshold (Bytes)","[whwla] Quota: Soft Threshold (Bytes)","[wilph] Quota: Soft Threshold (Bytes)","[wilwa] Quota: Soft Threshold (Bytes)","[woodc] Quota: Soft Threshold (Bytes)","[woodl] Quota: Soft Threshold (Bytes)","[woodp] Quota: Soft Threshold (Bytes)","[woosa] Quota: Soft Threshold (Bytes)","[woosh] Quota: Soft Threshold (Bytes)","[woowa] Quota: Soft Threshold (Bytes)","[wren1] Quota: Soft Threshold (Bytes)","[wryne] Quota: Soft Threshold (Bytes)","[wwbte] Quota: Soft Threshold (Bytes)","[yebbu] Quota: Soft Threshold (Bytes)","[yebcu] Quota: Soft Threshold (Bytes)","[yebwa] Quota: Soft Threshold (Bytes)","[yelha] Quota: Soft Threshold (Bytes)","[yelwa] Quota: Soft Threshold (Bytes)","[yerwa] Quota: Soft Threshold (Bytes)","[zenoura] Quota: Soft Threshold (Bytes)" -2018,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,200000000000000,150000001024000,100000002048000,100000002048000,100000002048000,100000002048000,50000003072000,50000003072000,30000001024000,25000001536000,20000002048000,10000003072000,10000003072000,10000003072000,10000003072000,10000003072000,5000003584000,1000005632000,1000001536000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv deleted file mode 100644 index a1fbc420be..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[blaca] Quota: Soft Threshold (Bytes)","[crcco] Quota: Soft Threshold (Bytes)","[egyni] Quota: Soft Threshold (Bytes)","[frahata] Quota: Soft Threshold (Bytes)","[gresh] Quota: Soft Threshold (Bytes)","[lanwa] Quota: Soft Threshold (Bytes)","[ovenb] Quota: Soft Threshold (Bytes)","[palsw] Quota: Soft Threshold (Bytes)","[parcr] Quota: Soft Threshold (Bytes)","[phivi] Quota: Soft Threshold (Bytes)","[razor] Quota: Soft Threshold (Bytes)","[rocdo] Quota: Soft Threshold (Bytes)","[sante] Quota: Soft Threshold (Bytes)","[savsp] Quota: Soft Threshold (Bytes)","[swath] Quota: Soft Threshold (Bytes)" -2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv deleted file mode 100644 index 7996a5ea85..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/avg_soft_threshold/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"Quota: Soft Threshold (Bytes): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv deleted file mode 100644 index 45257a2d7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -blaca,1 -crcco,1 -egyni,1 -frahata,1 -gresh,1 -lanwa,1 -ovenb,1 -palsw,1 -parcr,1 -phivi,1 -razor,1 -rocdo,1 -sante,1 -savsp,1 -swath,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-usr.csv deleted file mode 100644 index 6d0941f69a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv deleted file mode 100644 index 45257a2d7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -blaca,1 -crcco,1 -egyni,1 -frahata,1 -gresh,1 -lanwa,1 -ovenb,1 -palsw,1 -parcr,1 -phivi,1 -razor,1 -rocdo,1 -sante,1 -savsp,1 -swath,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-usr.csv deleted file mode 100644 index 6d0941f69a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv deleted file mode 100644 index 45257a2d7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -blaca,1 -crcco,1 -egyni,1 -frahata,1 -gresh,1 -lanwa,1 -ovenb,1 -palsw,1 -parcr,1 -phivi,1 -razor,1 -rocdo,1 -sante,1 -savsp,1 -swath,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv deleted file mode 100644 index 6d0941f69a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cd.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv deleted file mode 100644 index 7816731779..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-cs.csv +++ /dev/null @@ -1,353 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -alete,1 -alpsw,1 -ameke,1 -amere,1 -amero,1 -aquwa,1 -arcre,1 -arcte,1 -aytinis,1 -baisa,1 -balsh,1 -barow,1 -bawwa,1 -beeea,1 -belki,1 -bimla,1 -bitte,1 -blabi,1 -blaca,1 -blare,1 -blate,1 -blcbe,1 -blewh,1 -blhgu,1 -blrth,1 -blrwa,1 -bltth,1 -bluth,1 -bluti,1 -blwpr,1 -blypi,1 -bobol,1 -bomorum,1 -bonwa,1 -bramb,1 -brardix,1 -brite,1 -broth,1 -brugu,1 -bubsa,1 -bullf,1 -calla,1 -camwa,1 -carcr,1 -casgu,1 -categ,1 -cetwa,1 -chabu,1 -chaff,1 -chisw,1 -choug,1 -cirbu,1 -citwa,1 -clisw,1 -coati,1 -coldo,1 -colfl,1 -colpr,1 -comgu,1 -comni,1 -comre,1 -comsa,1 -comte,1 -coot1,1 -corbu,1 -corsh,1 -crama,1 -crcco,1 -crebu,1 -crela,1 -creti,1 -cross,1 -cucko,1 -daeju,1 -darwa,1 -deswa,1 -deswh,1 -dippe,1 -dumnsis,1 -dunli,1 -dunno,1 -duswa,1 -eaowa,1 -egygo,1 -egyni,1 -embhala,1 -evegr,1 -eybth,1 -falnsis,1 -firec,1 -forte,1 -fragu,1 -frahata,1 -galcata,1 -garwa,1 -gbbgu,1 -glaarum,1 -glagu,1 -goldf,1 -golor,1 -grath,1 -grawa,1 -grefi,1 -greph,1 -gresa,1 -gresh,1 -gresk,1 -gresn,1 -greti,1 -grewa,1 -grewo,1 -greye,1 -grnwa,1 -grrwa,1 -grscu,1 -gshwa,1 -guill,1 -gyrfa,1 -hawfi,1 -hawow,1 -hiporum,1 -hobby,1 -honbu,1 -hoopo,1 -hoowa,1 -houma,1 -housp,1 -hulwa,1 -hyllina,1 -ibech,1 -icegu,1 -ictwa,1 -isash,1 -isawh,1 -ivogu,1 -ixovius,1 -jacsn,1 -jay11,1 -kestr,1 -kingf,1 -kitti,1 -lanhach,1 -lanwa,1 -lapbu,1 -laragus,1 -laranus,1 -larinii,1 -larsp,1 -laryane,1 -laugu,1 -lbbgu,1 -leasa,1 -lecte,1 -leske,1 -leswh,1 -lesye,1 -linne,1 -litau,1 -litbu,1 -litgu,1 -litte,1 -lobdo,1 -loeow,1 -lotsk,1 -lotti,1 -lstla,1 -magpi,1 -magwa,1 -marsa,1 -marti,1 -marwa,1 -massh,1 -medgu,1 -melnsis,1 -melwa,1 -mimttos,1 -molater,1 -moure,1 -musrica,1 -netsw,1 -nigal,1 -nijar,1 -noror,1 -norpa,1 -norwa,1 -nutcr,1 -olbpi,1 -ovenb,1 -pacsw,1 -pagwa,1 -palsa,1 -palsw,1 -palwa,1 -parbu,1 -parcr,1 -pecpi,1 -pecsa,1 -penti,1 -phivi,1 -phyatus,1 -pibgr,1 -piefl,1 -piewh,1 -pinbu,1 -pingr,1 -pinnnis,1 -pomsk,1 -proubis,1 -pursa,1 -raven,1 -razor,1 -rebfl,1 -rebsh,1 -redgr,1 -redsh,1 -redst,1 -redwi,1 -reebu,1 -reevi,1 -reewa,1 -refbl,1 -reffa,1 -renni,1 -renph,1 -rersw,1 -ricpi,1 -rinou,1 -rinpa,1 -rivwa,1 -robgr,1 -robin,1 -rocbu,1 -rocdo,1 -rocpi,1 -rocsp,1 -rocth,1 -rolle,1 -rook1,1 -rosgu,1 -roste,1 -royte,1 -rubro,1 -rupwa,1 -rusto,1 -rutdo,1 -rutro,1 -sabgu,1 -sancr,1 -sanma,1 -sante,1 -sarwa,1 -savsp,1 -sayoebe,1 -scaro,1 -scata,1 -scocr,1 -scoow,1 -sedwa,1 -semsa,1 -serin,1 -setusca,1 -shag1,1 -sheow,1 -shola,1 -shtla,1 -shttr,1 -sibru,1 -sibth,1 -sitnsis,1 -skyla,1 -slegu,1 -snipe,1 -snobu,1 -snoow,1 -sogsh,1 -solsa,1 -sonth,1 -soote,1 -spasp,1 -spewa,1 -spofl,1 -sposa,1 -starl,1 -stevida,1 -stoch,1 -stodo,1 -subwa,1 -sumta,1 -swall,1 -swath,1 -swift,1 -sylnsis,1 -synquus,1 -tacolor,1 -tawow,1 -tawpi,1 -tenow,1 -tenwa,1 -tersa,1 -thbwa,1 -thrni,1 -treec,1 -trepi,1 -triipes,1 -trufi,1 -turanni,1 -turdo,1 -twbcr,1 -twite,1 -veery,1 -velsc,1 -vertera,1 -virrons,1 -wallc,1 -watpi,1 -waxwi,1 -whcbl,1 -whcsp,1 -wheat,1 -whinc,1 -white,1 -whkte,1 -whrsa,1 -whtpl,1 -whwla,1 -wilph,1 -wilwa,1 -woodc,1 -woodl,1 -woodp,1 -woosa,1 -woosh,1 -woowa,1 -wren1,1 -wryne,1 -wwbte,1 -yebbu,1 -yebcu,1 -yebwa,1 -yelha,1 -yelwa,1 -yerwa,1 -ylwwa,1 -zenoura,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv deleted file mode 100644 index 45257a2d7b..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-pi.csv +++ /dev/null @@ -1,25 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" -blaca,1 -crcco,1 -egyni,1 -frahata,1 -gresh,1 -lanwa,1 -ovenb,1 -palsw,1 -parcr,1 -phivi,1 -razor,1 -rocdo,1 -sante,1 -savsp,1 -swath,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-usr.csv deleted file mode 100644 index 6d0941f69a..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/aggregate-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -"System Username","User Count (Number of Users)" ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv deleted file mode 100644 index 1dd0df2f28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cd.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-05,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv deleted file mode 100644 index 1dd0df2f28..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-cs.csv +++ /dev/null @@ -1,19 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Day,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-05,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv deleted file mode 100644 index 3f5c9f645e..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-pi.csv +++ /dev/null @@ -1,20 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Day,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" -2018-12-27,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-28,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-29,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2018-12-31,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-02,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-03,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-04,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01-05,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-usr.csv deleted file mode 100644 index 5ce4a995d6..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Day-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Day ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv deleted file mode 100644 index 7aac9ac18f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv deleted file mode 100644 index 7aac9ac18f..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Month,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv deleted file mode 100644 index cf4b7be6cf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Month,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" -2018-12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019-01,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-usr.csv deleted file mode 100644 index eb75f5cabf..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Month-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Month ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv deleted file mode 100644 index 7438d67eed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv deleted file mode 100644 index 7438d67eed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv deleted file mode 100644 index 8d02c27d13..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Quarter,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" -"2018 Q4",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -"2019 Q1",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv deleted file mode 100644 index 8a15c76657..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Quarter-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Quarter ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv deleted file mode 100644 index 2998cd4e07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cd.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv deleted file mode 100644 index 2998cd4e07..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-cs.csv +++ /dev/null @@ -1,11 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -start,end -2018-12-27,2019-01-05 ---------- -Year,"[alete] User Count (Number of Users)","[alpsw] User Count (Number of Users)","[ameke] User Count (Number of Users)","[amere] User Count (Number of Users)","[amero] User Count (Number of Users)","[aquwa] User Count (Number of Users)","[arcre] User Count (Number of Users)","[arcte] User Count (Number of Users)","[aytinis] User Count (Number of Users)","[baisa] User Count (Number of Users)","[balsh] User Count (Number of Users)","[barow] User Count (Number of Users)","[bawwa] User Count (Number of Users)","[beeea] User Count (Number of Users)","[belki] User Count (Number of Users)","[bimla] User Count (Number of Users)","[bitte] User Count (Number of Users)","[blabi] User Count (Number of Users)","[blaca] User Count (Number of Users)","[blare] User Count (Number of Users)","[blate] User Count (Number of Users)","[blcbe] User Count (Number of Users)","[blewh] User Count (Number of Users)","[blhgu] User Count (Number of Users)","[blrth] User Count (Number of Users)","[blrwa] User Count (Number of Users)","[bltth] User Count (Number of Users)","[bluth] User Count (Number of Users)","[bluti] User Count (Number of Users)","[blwpr] User Count (Number of Users)","[blypi] User Count (Number of Users)","[bobol] User Count (Number of Users)","[bomorum] User Count (Number of Users)","[bonwa] User Count (Number of Users)","[bramb] User Count (Number of Users)","[brardix] User Count (Number of Users)","[brite] User Count (Number of Users)","[broth] User Count (Number of Users)","[brugu] User Count (Number of Users)","[bubsa] User Count (Number of Users)","[bullf] User Count (Number of Users)","[calla] User Count (Number of Users)","[camwa] User Count (Number of Users)","[carcr] User Count (Number of Users)","[casgu] User Count (Number of Users)","[categ] User Count (Number of Users)","[cetwa] User Count (Number of Users)","[chabu] User Count (Number of Users)","[chaff] User Count (Number of Users)","[chisw] User Count (Number of Users)","[choug] User Count (Number of Users)","[cirbu] User Count (Number of Users)","[citwa] User Count (Number of Users)","[clisw] User Count (Number of Users)","[coati] User Count (Number of Users)","[coldo] User Count (Number of Users)","[colfl] User Count (Number of Users)","[colpr] User Count (Number of Users)","[comgu] User Count (Number of Users)","[comni] User Count (Number of Users)","[comre] User Count (Number of Users)","[comsa] User Count (Number of Users)","[comte] User Count (Number of Users)","[coot1] User Count (Number of Users)","[corbu] User Count (Number of Users)","[corsh] User Count (Number of Users)","[crama] User Count (Number of Users)","[crcco] User Count (Number of Users)","[crebu] User Count (Number of Users)","[crela] User Count (Number of Users)","[creti] User Count (Number of Users)","[cross] User Count (Number of Users)","[cucko] User Count (Number of Users)","[daeju] User Count (Number of Users)","[darwa] User Count (Number of Users)","[deswa] User Count (Number of Users)","[deswh] User Count (Number of Users)","[dippe] User Count (Number of Users)","[dumnsis] User Count (Number of Users)","[dunli] User Count (Number of Users)","[dunno] User Count (Number of Users)","[duswa] User Count (Number of Users)","[eaowa] User Count (Number of Users)","[egygo] User Count (Number of Users)","[egyni] User Count (Number of Users)","[embhala] User Count (Number of Users)","[evegr] User Count (Number of Users)","[eybth] User Count (Number of Users)","[falnsis] User Count (Number of Users)","[firec] User Count (Number of Users)","[forte] User Count (Number of Users)","[fragu] User Count (Number of Users)","[frahata] User Count (Number of Users)","[galcata] User Count (Number of Users)","[garwa] User Count (Number of Users)","[gbbgu] User Count (Number of Users)","[glaarum] User Count (Number of Users)","[glagu] User Count (Number of Users)","[goldf] User Count (Number of Users)","[golor] User Count (Number of Users)","[grath] User Count (Number of Users)","[grawa] User Count (Number of Users)","[grefi] User Count (Number of Users)","[greph] User Count (Number of Users)","[gresa] User Count (Number of Users)","[gresh] User Count (Number of Users)","[gresk] User Count (Number of Users)","[gresn] User Count (Number of Users)","[greti] User Count (Number of Users)","[grewa] User Count (Number of Users)","[grewo] User Count (Number of Users)","[greye] User Count (Number of Users)","[grnwa] User Count (Number of Users)","[grrwa] User Count (Number of Users)","[grscu] User Count (Number of Users)","[gshwa] User Count (Number of Users)","[guill] User Count (Number of Users)","[gyrfa] User Count (Number of Users)","[hawfi] User Count (Number of Users)","[hawow] User Count (Number of Users)","[hiporum] User Count (Number of Users)","[hobby] User Count (Number of Users)","[honbu] User Count (Number of Users)","[hoopo] User Count (Number of Users)","[hoowa] User Count (Number of Users)","[houma] User Count (Number of Users)","[housp] User Count (Number of Users)","[hulwa] User Count (Number of Users)","[hyllina] User Count (Number of Users)","[ibech] User Count (Number of Users)","[icegu] User Count (Number of Users)","[ictwa] User Count (Number of Users)","[isash] User Count (Number of Users)","[isawh] User Count (Number of Users)","[ivogu] User Count (Number of Users)","[ixovius] User Count (Number of Users)","[jacsn] User Count (Number of Users)","[jay11] User Count (Number of Users)","[kestr] User Count (Number of Users)","[kingf] User Count (Number of Users)","[kitti] User Count (Number of Users)","[lanhach] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[lapbu] User Count (Number of Users)","[laragus] User Count (Number of Users)","[laranus] User Count (Number of Users)","[larinii] User Count (Number of Users)","[larsp] User Count (Number of Users)","[laryane] User Count (Number of Users)","[laugu] User Count (Number of Users)","[lbbgu] User Count (Number of Users)","[leasa] User Count (Number of Users)","[lecte] User Count (Number of Users)","[leske] User Count (Number of Users)","[leswh] User Count (Number of Users)","[lesye] User Count (Number of Users)","[linne] User Count (Number of Users)","[litau] User Count (Number of Users)","[litbu] User Count (Number of Users)","[litgu] User Count (Number of Users)","[litte] User Count (Number of Users)","[lobdo] User Count (Number of Users)","[loeow] User Count (Number of Users)","[lotsk] User Count (Number of Users)","[lotti] User Count (Number of Users)","[lstla] User Count (Number of Users)","[magpi] User Count (Number of Users)","[magwa] User Count (Number of Users)","[marsa] User Count (Number of Users)","[marti] User Count (Number of Users)","[marwa] User Count (Number of Users)","[massh] User Count (Number of Users)","[medgu] User Count (Number of Users)","[melnsis] User Count (Number of Users)","[melwa] User Count (Number of Users)","[mimttos] User Count (Number of Users)","[molater] User Count (Number of Users)","[moure] User Count (Number of Users)","[musrica] User Count (Number of Users)","[netsw] User Count (Number of Users)","[nigal] User Count (Number of Users)","[nijar] User Count (Number of Users)","[noror] User Count (Number of Users)","[norpa] User Count (Number of Users)","[norwa] User Count (Number of Users)","[nutcr] User Count (Number of Users)","[olbpi] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[pacsw] User Count (Number of Users)","[pagwa] User Count (Number of Users)","[palsa] User Count (Number of Users)","[palsw] User Count (Number of Users)","[palwa] User Count (Number of Users)","[parbu] User Count (Number of Users)","[parcr] User Count (Number of Users)","[pecpi] User Count (Number of Users)","[pecsa] User Count (Number of Users)","[penti] User Count (Number of Users)","[phivi] User Count (Number of Users)","[phyatus] User Count (Number of Users)","[pibgr] User Count (Number of Users)","[piefl] User Count (Number of Users)","[piewh] User Count (Number of Users)","[pinbu] User Count (Number of Users)","[pingr] User Count (Number of Users)","[pinnnis] User Count (Number of Users)","[pomsk] User Count (Number of Users)","[proubis] User Count (Number of Users)","[pursa] User Count (Number of Users)","[raven] User Count (Number of Users)","[razor] User Count (Number of Users)","[rebfl] User Count (Number of Users)","[rebsh] User Count (Number of Users)","[redgr] User Count (Number of Users)","[redsh] User Count (Number of Users)","[redst] User Count (Number of Users)","[redwi] User Count (Number of Users)","[reebu] User Count (Number of Users)","[reevi] User Count (Number of Users)","[reewa] User Count (Number of Users)","[refbl] User Count (Number of Users)","[reffa] User Count (Number of Users)","[renni] User Count (Number of Users)","[renph] User Count (Number of Users)","[rersw] User Count (Number of Users)","[ricpi] User Count (Number of Users)","[rinou] User Count (Number of Users)","[rinpa] User Count (Number of Users)","[rivwa] User Count (Number of Users)","[robgr] User Count (Number of Users)","[robin] User Count (Number of Users)","[rocbu] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[rocpi] User Count (Number of Users)","[rocsp] User Count (Number of Users)","[rocth] User Count (Number of Users)","[rolle] User Count (Number of Users)","[rook1] User Count (Number of Users)","[rosgu] User Count (Number of Users)","[roste] User Count (Number of Users)","[royte] User Count (Number of Users)","[rubro] User Count (Number of Users)","[rupwa] User Count (Number of Users)","[rusto] User Count (Number of Users)","[rutdo] User Count (Number of Users)","[rutro] User Count (Number of Users)","[sabgu] User Count (Number of Users)","[sancr] User Count (Number of Users)","[sanma] User Count (Number of Users)","[sante] User Count (Number of Users)","[sarwa] User Count (Number of Users)","[savsp] User Count (Number of Users)","[sayoebe] User Count (Number of Users)","[scaro] User Count (Number of Users)","[scata] User Count (Number of Users)","[scocr] User Count (Number of Users)","[scoow] User Count (Number of Users)","[sedwa] User Count (Number of Users)","[semsa] User Count (Number of Users)","[serin] User Count (Number of Users)","[setusca] User Count (Number of Users)","[shag1] User Count (Number of Users)","[sheow] User Count (Number of Users)","[shola] User Count (Number of Users)","[shtla] User Count (Number of Users)","[shttr] User Count (Number of Users)","[sibru] User Count (Number of Users)","[sibth] User Count (Number of Users)","[sitnsis] User Count (Number of Users)","[skyla] User Count (Number of Users)","[slegu] User Count (Number of Users)","[snipe] User Count (Number of Users)","[snobu] User Count (Number of Users)","[snoow] User Count (Number of Users)","[sogsh] User Count (Number of Users)","[solsa] User Count (Number of Users)","[sonth] User Count (Number of Users)","[soote] User Count (Number of Users)","[spasp] User Count (Number of Users)","[spewa] User Count (Number of Users)","[spofl] User Count (Number of Users)","[sposa] User Count (Number of Users)","[starl] User Count (Number of Users)","[stevida] User Count (Number of Users)","[stoch] User Count (Number of Users)","[stodo] User Count (Number of Users)","[subwa] User Count (Number of Users)","[sumta] User Count (Number of Users)","[swall] User Count (Number of Users)","[swath] User Count (Number of Users)","[swift] User Count (Number of Users)","[sylnsis] User Count (Number of Users)","[synquus] User Count (Number of Users)","[tacolor] User Count (Number of Users)","[tawow] User Count (Number of Users)","[tawpi] User Count (Number of Users)","[tenow] User Count (Number of Users)","[tenwa] User Count (Number of Users)","[tersa] User Count (Number of Users)","[thbwa] User Count (Number of Users)","[thrni] User Count (Number of Users)","[treec] User Count (Number of Users)","[trepi] User Count (Number of Users)","[triipes] User Count (Number of Users)","[trufi] User Count (Number of Users)","[turanni] User Count (Number of Users)","[turdo] User Count (Number of Users)","[twbcr] User Count (Number of Users)","[twite] User Count (Number of Users)","[veery] User Count (Number of Users)","[velsc] User Count (Number of Users)","[vertera] User Count (Number of Users)","[virrons] User Count (Number of Users)","[wallc] User Count (Number of Users)","[watpi] User Count (Number of Users)","[waxwi] User Count (Number of Users)","[whcbl] User Count (Number of Users)","[whcsp] User Count (Number of Users)","[wheat] User Count (Number of Users)","[whinc] User Count (Number of Users)","[white] User Count (Number of Users)","[whkte] User Count (Number of Users)","[whrsa] User Count (Number of Users)","[whtpl] User Count (Number of Users)","[whwla] User Count (Number of Users)","[wilph] User Count (Number of Users)","[wilwa] User Count (Number of Users)","[woodc] User Count (Number of Users)","[woodl] User Count (Number of Users)","[woodp] User Count (Number of Users)","[woosa] User Count (Number of Users)","[woosh] User Count (Number of Users)","[woowa] User Count (Number of Users)","[wren1] User Count (Number of Users)","[wryne] User Count (Number of Users)","[wwbte] User Count (Number of Users)","[yebbu] User Count (Number of Users)","[yebcu] User Count (Number of Users)","[yebwa] User Count (Number of Users)","[yelha] User Count (Number of Users)","[yelwa] User Count (Number of Users)","[yerwa] User Count (Number of Users)","[ylwwa] User Count (Number of Users)","[zenoura] User Count (Number of Users)" -2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv deleted file mode 100644 index d4d438f4c2..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-pi.csv +++ /dev/null @@ -1,12 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: PI = Tern, C OR User = Tern, C" -start,end -2018-12-27,2019-01-05 ---------- -Year,"[blaca] User Count (Number of Users)","[crcco] User Count (Number of Users)","[egyni] User Count (Number of Users)","[frahata] User Count (Number of Users)","[gresh] User Count (Number of Users)","[lanwa] User Count (Number of Users)","[ovenb] User Count (Number of Users)","[palsw] User Count (Number of Users)","[parcr] User Count (Number of Users)","[phivi] User Count (Number of Users)","[razor] User Count (Number of Users)","[rocdo] User Count (Number of Users)","[sante] User Count (Number of Users)","[savsp] User Count (Number of Users)","[swath] User Count (Number of Users)" -2018,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 -2019,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv deleted file mode 100644 index 60537a19f3..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-reference.csv +++ /dev/null @@ -1,10 +0,0 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [], - "data": [], - "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/localhost/Storage/username/user_count/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-usr.csv deleted file mode 100644 index e61843b263..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/Storage/username/user_count/timeseries-Year-usr.csv +++ /dev/null @@ -1,10 +0,0 @@ -title -"User Count (Number of Users): by System Username" -parameters - -"*Restricted To: User = Whimbrel" -start,end -2018-12-27,2019-01-05 ---------- -Year ---------- diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json deleted file mode 100644 index cb67d95941..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud-fields-and-filters.json +++ /dev/null @@ -1,5 +0,0 @@ -["Instance ID","PI Group","Instance Type"] -["172df8e9-b2ec-4864-898d-a4d401de85f0","Polar Ocean and Climate Systems","m1.small"] -["4d5e602e-97b7-4839-8818-097d6bcc8e62","Polar Ocean and Climate Systems","m1.small"] -["dde9e2fb-a519-4299-a35f-8a096a46404c","Galactic Astronomy","m1.medium"] -["b9c560b9-1066-483c-895e-aebb8b3c7ac1","Polar Ocean and Climate Systems","m1.medium"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json deleted file mode 100644 index 4c5cc40d41..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/cloud.json +++ /dev/null @@ -1,853 +0,0 @@ -["Instance ID","Resource","Service Provider","System Username (Deidentified)","User","Decanal Unit","Department","PI Group","Project","Principal Investigator","Instance Type","Number of Cores","Memory(MB)","Root Volume Size","Domain","Host","Start Date"] -["7374150b-3c87-47bc-b27f-69c00197871c","OpenStack","screw - Screwdriver","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c1.m4","1","4096","20","Default","srv-p24-35.cbls.ccr.buffalo.edu","2018-04-20 14:11:10"] -["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","screw - Screwdriver","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-32.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] -["2ee91cd7-60c5-4cd0-b608-867f45c18cb4","OpenStack","screw - Screwdriver","","Warbler, Yellow","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c2.m4","2","4096","20","Default","srv-p24-41.cbls.ccr.buffalo.edu","2018-04-30 17:42:46"] -["565e8a1e-a83e-4104-a32c-85c79b7737fd","OpenStack","screw - Screwdriver","","Warbler, Yellow-rumped","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zealous","Tern, Sandwich","c4.m16","4","16384","20","Default","srv-p24-34.cbls.ccr.buffalo.edu","2018-04-26 17:38:36"] -["a6c4053f-ba16-472e-9fe5-0196775acdc9","NutSetters","screw - Screwdriver","","allopatr","Unknown","Unknown","Unknown","allopatr","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] -["7600bd16-2447-4a94-88eb-0b7cc225f272","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] -["b76f580c-4ff6-46c7-a6a2-f46479a635c7","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.tiny","1","2048","8","adjunct","r02c2b03","2019-06-26 00:00:53"] -["cb58a528-5063-4bda-95cd-e307971ebc5b","NutSetters","screw - Screwdriver","","red","Unknown","Unknown","Unknown","hps","Unknown","m1.small","2","4096","20","adjunct","r03c4b07","2019-06-26 00:00:24"] -["1330d7c1-7139-4d10-bcec-1e8610962615","NutSetters","screw - Screwdriver","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r01c4b13","2019-06-26 00:00:23"] -["faca7e03-10ac-448a-906e-bff921375139","NutSetters","screw - Screwdriver","","nujwoo","Unknown","Unknown","Unknown","nujwoo","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["2332bf52-f34a-43c8-8d13-2f67d03ad745","NutSetters","screw - Screwdriver","","ljcohen","Unknown","Unknown","Unknown","ljcohen","Unknown","s1.xxlarge","44","122880","960","Default","r06c2b14","2019-06-26 00:00:48"] -["11e0e563-d5e7-40a2-a379-ecda48435265","NutSetters","screw - Screwdriver","","ppani","Unknown","Unknown","Unknown","ppani","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] -["7860ba4d-a348-4684-9cb9-90fe83fe39a4","NutSetters","screw - Screwdriver","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 22:43:05"] -["c553f329-674f-4270-ae7d-920a9d442f08","NutSetters","screw - Screwdriver","","mfaraji","Unknown","Unknown","Unknown","mfaraji","Unknown","m1.small","2","4096","20","Default","r02c3b04","2019-06-26 22:04:17"] -["ec876f2e-da3d-441c-99a8-a59c70affa05","NutSetters","screw - Screwdriver","","dikim","Unknown","Unknown","Unknown","dikim","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] -["50b55380-e1a8-4e48-a1e9-4e8e342b5162","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.small","2","4096","20","tacc","r07c1b10","2019-06-26 00:00:04"] -["8498b471-0494-447a-abd9-6f18d85b7a40","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-EAR180013","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] -["cc4503ed-103a-4f8c-b0a6-d21da020cdce","NutSetters","screw - Screwdriver","","sruthi12","Unknown","Unknown","Unknown","sruthi12","Unknown","m1.medium","6","16384","60","Default","r02c4b07","2019-06-26 00:00:18"] -["06c8b241-42a7-4960-82d0-a593ac770e5b","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.tiny","1","2048","8","tacc","r01c2b16","2019-06-26 00:00:42"] -["09ddf2f8-fa48-4ce8-9536-501c165a1db0","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r07c2b01","2019-06-26 00:00:10"] -["3fb17152-b49f-4a03-a079-0a2990cf570d","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] -["40482879-2219-4dc5-b45c-1bfda108be05","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r02c1b06","2019-06-26 00:00:53"] -["79d7c087-ad59-4b54-9f76-aefd75051239","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.large","10","30720","120","tacc","r03c1b08","2019-06-26 00:00:37"] -["a1250ffe-26c6-4bbe-9a9e-5fc4b4af0712","NutSetters","screw - Screwdriver","","rsignell","Unknown","Unknown","Unknown","TG-OCE170022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] -["5b363a28-598b-47c0-b0f3-df4fcdcb8418","NutSetters","screw - Screwdriver","","wzhy2000","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wzhy2000","Egret, Snowy","m1.small","2","4096","20","Default","r07c1b07","2019-06-26 00:00:20"] -["f93059aa-4d4f-4cba-9c9d-e13014f0d4af","NutSetters","screw - Screwdriver","","mscott","Unknown","Unknown","Unknown","mscott","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["945191a1-8994-4d27-a3ff-7eff5968ad76","NutSetters","screw - Screwdriver","","dmm","Unknown","Unknown","Unknown","dmm","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] -["d60d6413-52e6-4d47-9c0c-d6258dcbf777","NutSetters","screw - Screwdriver","","dagrawa2","Unknown","Unknown","Unknown","dagrawa2","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["dde9e2fb-a519-4299-a35f-8a096a46404c","NutSetters","screw - Screwdriver","","vlflores","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlflores","Ibis, Glossy","m1.medium","6","16384","60","Default","r02c3b07","2019-06-26 00:00:48"] -["679ae462-5d27-41ff-b122-b5ab5d7af9e5","NutSetters","screw - Screwdriver","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r07c1b04","2019-06-26 00:00:33"] -["8605d428-c3f8-496d-92f3-35e6f6008d07","NutSetters","screw - Screwdriver","","weisi","Engineering","Mechanical and Structural Systems","Mechanics and Materials","weisi","Tern, Sandwich","s1.xxlarge","44","122880","960","Default","r06c2b05","2019-06-26 00:00:02"] -["5e23125d-f4b4-4601-a270-ae63cec7f11f","NutSetters","screw - Screwdriver","","lmundia","Unknown","Unknown","Unknown","lmundia","Unknown","m1.tiny","1","2048","8","Default","r01c2b15","2019-06-26 00:00:27"] -["19ca89a0-91b4-4dd6-97c2-fed90741fbfb","NutSetters","screw - Screwdriver","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.tiny","1","2048","8","Default","r07c4b03","2019-06-26 00:00:36"] -["a08e9d1d-bd3f-496a-bb94-271d0234f635","NutSetters","screw - Screwdriver","","akmore","Unknown","Unknown","Unknown","akmore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] -["07b0d86a-acde-443a-8076-ccf84555d18b","NutSetters","screw - Screwdriver","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r02c4b15","2019-06-26 00:00:37"] -["86191a2e-7251-4bc4-971d-9b027fbf2485","NutSetters","screw - Screwdriver","","kausrini","Unknown","Unknown","Unknown","kausrini","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] -["f6feb15c-ad29-4376-a8f9-bbb9300b245e","NutSetters","screw - Screwdriver","","jrmales","Unknown","Unknown","Unknown","jrmales","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b05","2019-06-26 00:00:22"] -["f20a18a4-26c3-49ff-b8b7-07e7ece2ac71","NutSetters","screw - Screwdriver","","aalmsaee","Unknown","Unknown","Unknown","aalmsaee","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] -["e63e2006-7a3d-4c98-b0d7-fe97f8deaf18","NutSetters","screw - Screwdriver","","td160021","Unknown","Unknown","Unknown","td160021","Unknown","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] -["363f661e-4cff-4395-b284-560f84f48198","NutSetters","screw - Screwdriver","","ssud2","Unknown","Unknown","Unknown","ssud2","Unknown","m1.tiny","1","2048","8","Default","r02c2b09","2019-06-26 00:00:50"] -["0b8ad228-28c2-4dc7-9774-9d9d75c1eb96","NutSetters","screw - Screwdriver","","millera2","Unknown","Unknown","Unknown","millera2","Unknown","m1.small","2","4096","20","Default","r02c2b02","2019-06-26 00:00:55"] -["5ea6533a-1ee6-4d48-99ec-28857e0cac9e","NutSetters","screw - Screwdriver","","lbao235","Unknown","Unknown","Unknown","lbao235","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["0b294aee-3df3-4d55-84ef-c4a55ddd2fdb","NutSetters","screw - Screwdriver","","chanchal","Unknown","Unknown","Unknown","chanchal","Unknown","m1.xlarge","24","61440","60","Default","r01c4b13","2019-06-26 00:00:23"] -["65890522-87d8-4bad-86a0-f546db0a2c4c","NutSetters","screw - Screwdriver","","ssmallen","Unknown","Unknown","Unknown","ssmallen","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["0d001e36-872f-4c9a-b0f9-fba4c2527467","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r06c2b13","2019-06-26 00:00:14"] -["25e46cbc-009f-4cfb-8297-b25c4289d146","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c1b03","2019-06-26 19:00:05"] -["6f502861-fa35-4543-9d44-9760a6c3e7db","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] -["bed56745-69cb-40f1-85d2-9ad4134a1352","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["e4393488-d995-48dc-bbfc-2c62c48af58d","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] -["1c589f8f-11ca-4c2f-bf43-5f6e14ae8e8c","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","m1.large","10","30720","60","Default","r02c1b16","2019-06-26 00:00:26"] -["4733d86e-3e10-4252-9dc0-e5f7989ba322","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r07c4b03","2019-06-26 00:00:36"] -["d3147d53-ee4f-4ecf-9968-9daf879a8872","NutSetters","screw - Screwdriver","","ssalam","Unknown","Unknown","Unknown","ssalam","Unknown","s1.large","10","30720","240","Default","r06c2b03","2019-06-26 15:00:16"] -["3cff64a0-461a-497c-8e0b-ab33e5a78e7d","NutSetters","screw - Screwdriver","","kangplee","Unknown","Unknown","Unknown","kangplee","Unknown","m1.tiny","1","2048","8","Default","r07c4b10","2019-06-26 00:00:12"] -["3d7589c6-3987-4559-a28a-562bf74e15c2","NutSetters","screw - Screwdriver","","wbt3","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wbt3","Tern, Sandwich","m1.small","2","4096","20","Default","r02c3b15","2019-06-26 00:00:40"] -["a31e1790-67d3-4b42-a7ca-af40090e6998","NutSetters","screw - Screwdriver","","jpummil","Unknown","Unknown","Unknown","jpummil","Unknown","m1.large","10","30720","60","Default","r06c1b01","2019-06-26 00:00:28"] -["b9c560b9-1066-483c-895e-aebb8b3c7ac1","NutSetters","screw - Screwdriver","","upendra","Geosciences","Polar Programs","Polar Ocean and Climate Systems","upendra","Egret, Snowy","m1.medium","6","16384","60","Default","r07c2b10","2019-06-26 00:00:05"] -["2c1b9f69-83ee-44c8-8a8d-28b0e751750e","NutSetters","screw - Screwdriver","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","m1.tiny","1","2048","8","Default","r06c1b01","2019-06-26 00:00:28"] -["c926ef79-69ea-4258-85c4-6a7859887f91","NutSetters","screw - Screwdriver","","ddvento","Unknown","Unknown","Unknown","ddvento","Unknown","s1.large","10","30720","240","Default","r07c2b04","2019-06-26 00:00:51"] -["ca744fb8-c727-4699-a88d-26ed4fc5ee22","NutSetters","screw - Screwdriver","","zc8304","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zc8304","Ibis, Glossy","m1.small","2","4096","20","Default","r07c2b03","2019-06-26 01:00:12"] -["0a7b0b67-cebe-4d1f-8cfe-cb8c19416e80","NutSetters","screw - Screwdriver","","sharnly3","Unknown","Unknown","Unknown","sharnly3","Unknown","m1.small","2","4096","20","Default","r07c2b04","2019-06-26 00:00:51"] -["08b48a44-07f4-4a67-b50f-aae352e426dd","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] -["4133ea6f-e685-4f99-85bf-613175d93375","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] -["996ceef3-b429-450c-8e9f-bcd4fadba509","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] -["f6259fb3-d893-410a-95cd-4588a78da9fe","NutSetters","screw - Screwdriver","","guow","Unknown","Unknown","Unknown","guow","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:01"] -["0396a519-7380-4860-a819-ef70c3e8326a","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] -["196432e9-546a-41f9-968d-a09a653c21fc","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["1cd67c1e-fcda-4137-be3b-ce89e6ed7133","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] -["1dda1c51-163e-450c-b33e-dc45ad327eef","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] -["3ce24a13-c257-4006-b0d2-31f6b4397e04","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r07c2b04","2019-06-26 00:00:51"] -["f3dbc55d-35d5-4337-a9f9-799acbd5fb50","NutSetters","screw - Screwdriver","","ssanders","Unknown","Unknown","Unknown","ssanders","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["8dc31df4-44b2-41b5-b373-927a7385bf1f","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] -["aa864be4-5935-40f7-8d07-b0ceda55a5b8","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","m1.large","10","30720","60","Default","r01c4b02","2019-06-26 00:00:01"] -["70b16773-8eef-418a-a71e-a65be78282f0","NutSetters","screw - Screwdriver","","rsajulga","Unknown","Unknown","Unknown","rsajulga","Unknown","s1.xxlarge","44","122880","960","Default","r07c4b05","2019-06-26 00:00:12"] -["586a61ae-184b-4d3c-b737-04121a3ef31b","NutSetters","screw - Screwdriver","","jcali","Unknown","Unknown","Unknown","jcali","Unknown","s1.large","10","30720","240","Default","r02c3b15","2019-06-26 00:00:40"] -["66e04098-1c2e-4101-a0c7-9be962fd1381","NutSetters","screw - Screwdriver","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] -["252299b1-d473-460d-aef8-cac75455b74b","NutSetters","screw - Screwdriver","","wang208","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wang208","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["0b802076-385b-49c2-8c51-6f2c1ed84f30","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r03c1b14","2019-06-26 00:00:00"] -["3249c779-9400-452c-a73d-4b5c3bbc4627","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c3b02","2019-06-26 00:00:58"] -["452b808c-dc3e-4a57-99c1-8cc1bd5145e4","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c2b02","2019-06-26 00:00:24"] -["6dd51a85-282b-4de2-ae41-ed5a28469690","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b10","2019-06-26 00:00:41"] -["84858cd4-9a68-4021-b4ce-a7c0b06eaa66","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c2b11","2019-06-26 00:00:01"] -["8bbde70e-1f0a-427b-8081-ebfe3a4672b2","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c2b11","2019-06-26 00:00:28"] -["8f402416-84c1-4fad-ac6c-e4f1e5ec3ed0","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c4b06","2019-06-26 00:00:32"] -["95219389-b2ca-4332-9146-40eeb857faa0","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r01c4b10","2019-06-26 00:00:34"] -["9e573e70-f6b8-47d5-8756-1c3d2e755f49","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r02c4b14","2019-06-26 00:00:18"] -["a49c2306-188b-4426-b30f-ef7ba2315c6b","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r07c1b09","2019-06-26 00:00:42"] -["b84a9c69-029f-4493-ad18-7eae58613983","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b14","2019-06-26 00:00:29"] -["cad0eff4-9d6b-4651-a6ff-247568a8b4dd","NutSetters","screw - Screwdriver","","ponyisi","Unknown","Unknown","Unknown","TG-PHY140033","Unknown","p1.phy140033","24","61440","600","tacc","r06c1b04","2019-06-26 00:00:33"] -["7f40857a-ef94-4c1d-93d1-197a559c23fb","NutSetters","screw - Screwdriver","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r07c1b03","2019-06-26 00:00:07"] -["94b88a4e-8804-4e88-891d-3b1b14abbe11","NutSetters","screw - Screwdriver","","walling","Engineering","Mechanical and Structural Systems","Mechanics and Materials","walling","Tern, Sandwich","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] -["afd12b5e-748f-49bf-a2bc-f7bf33aa0330","NutSetters","screw - Screwdriver","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] -["d2f48b7a-2d69-426e-9a51-adef4f79983e","NutSetters","screw - Screwdriver","","abarber","Unknown","Unknown","Unknown","abarber","Unknown","m1.medium","6","16384","60","Default","r02c2b08","2019-06-26 00:00:09"] -["8de7c2a7-889b-4d4a-9c44-65176f094166","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r02c2b10","2019-06-26 00:00:04"] -["9773ae53-cb86-406c-9163-dfeed292cb29","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b13","2019-06-26 00:05:22"] -["c06912a6-dba8-418f-8b69-e4e6bac7e69c","NutSetters","screw - Screwdriver","","sirace","Unknown","Unknown","Unknown","sirace","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 18:44:54"] -["4cab08f2-76b2-4eaa-8ae5-9824513f53c1","NutSetters","screw - Screwdriver","","tskluzac","Unknown","Unknown","Unknown","tskluzac","Unknown","m1.large","10","30720","60","Default","r07c2b10","2019-06-26 00:00:05"] -["332d0b6a-2c5c-4195-a575-6075763422df","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c3b15","2019-06-26 00:00:16"] -["9769327f-810a-475c-a44d-1eede518ca61","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.tiny","1","2048","8","tacc","r06c1b13","2019-06-26 00:00:39"] -["106dcbb3-78e5-42df-bf50-872cd98720ed","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c3b13","2019-06-26 00:00:57"] -["7a1e2a7d-a532-40b8-9249-9ee0c9656971","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r07c2b02","2019-06-26 00:00:24"] -["936ca9f1-0f22-49bf-b984-eb5a953e29e6","NutSetters","screw - Screwdriver","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] -["8b5030b7-7387-4d02-a794-03eb908034f9","NutSetters","screw - Screwdriver","","grogers","Unknown","Unknown","Unknown","TG-CDA170013","Unknown","m1.medium","6","16384","60","tacc","r07c2b01","2019-06-26 00:00:10"] -["6cd74e20-eff7-46a7-96db-d9de9174c9fa","NutSetters","screw - Screwdriver","","mworinge","Unknown","Unknown","Unknown","mworinge","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] -["90495dd5-bf0e-4cbd-a6bf-4bb64361c5b2","NutSetters","screw - Screwdriver","","eknox","Unknown","Unknown","Unknown","eknox","Unknown","s1.xxlarge","44","122880","960","Default","r03c1b07","2019-06-26 00:00:22"] -["0ae7a69d-da0c-47fe-9b68-34dd9065063b","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] -["0f31f83f-6cf8-4dc4-a97c-80da564bc3e7","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] -["a7a60145-68b8-45db-9052-f0b4670b0435","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["ec5cba0d-716f-4d39-a025-4f3352d3985c","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] -["f7493563-62e9-470b-ac9f-4eb68de2c486","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.small","2","4096","20","tacc","r03c1b02","2019-06-26 00:00:02"] -["0fef90d3-2626-4805-9a03-ec14669440f8","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","m1.large","10","30720","60","tacc","r07c1b14","2019-06-26 00:00:17"] -["5ffa6463-d78a-4294-8a3f-9a65905f7fa0","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-IBN170017","Unknown","s1.large","10","30720","240","tacc","r02c1b08","2019-06-26 00:00:16"] -["452c4e57-b44c-45a9-be85-3d4005b7a28a","NutSetters","screw - Screwdriver","","yclu","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yclu","Egret, Snowy","s1.xlarge","24","61440","480","Default","r01c2b10","2019-06-26 00:00:17"] -["acff346d-1acf-4348-a305-117ebf7488dc","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.tiny","1","2048","8","tacc","r06c2b07","2019-06-26 00:00:21"] -["19c60e43-7bd6-4f4f-a91f-dcf27072b4a3","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:41"] -["72221a29-1270-4353-b332-86b495dfb2a4","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b08","2019-06-26 00:00:57"] -["923ccd9c-e0fd-46c7-ab0a-d9512f6f1131","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b07","2019-06-26 00:00:43"] -["ad89d37d-e05b-41f7-b77c-487d0bece703","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] -["ae330718-7ef1-429b-ad37-ec6f40f07711","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] -["caadd360-3ee7-44e7-9113-8113c329b747","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["ee96a2b5-bc8e-4c46-a666-c987b113703f","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["18995afa-2edc-457c-8cd6-9b653d6c6ef0","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] -["19ec4a6f-bced-485e-bbd9-e1bf5f6aa348","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c2b07","2019-06-26 00:00:42"] -["3663294c-f4dd-488f-a49e-127f23449bf1","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c1b03","2019-06-26 00:00:07"] -["3a3c458e-1b4d-48d6-9056-2b6a3b9e1c25","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["4f4951f9-48d3-4d47-94f9-3bcf6c230903","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] -["6410da80-e5b1-4520-9eee-a92ab93c79b0","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c3b04","2019-06-26 00:00:04"] -["64fd8888-4063-49ae-ba6c-8438bdfd7b15","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r06c1b14","2019-06-26 00:00:29"] -["6dbb2280-cb34-4f64-9e8d-f77596e4f095","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r02c1b09","2019-06-26 00:00:06"] -["7bce86ae-037c-4141-b146-1b2ed0ee8a1b","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["9399443c-a368-408d-9ae4-6765876924fc","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c3b12","2019-06-26 00:00:51"] -["9482e6be-ecd5-449c-bb46-20df2402c0a3","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b02","2019-06-26 00:00:24"] -["978c0fbd-bbe5-449e-9afb-2ab7121a3f28","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r07c2b07","2019-06-26 00:00:17"] -["df5df764-2a01-4ce1-818e-e89cb7c98287","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] -["ec7b8779-8c7e-40ff-ab3b-12c9ed5daaaa","NutSetters","screw - Screwdriver","","tg841578","Unknown","Unknown","Unknown","TG-ASC170002","Unknown","m1.medium","6","16384","60","tacc","r01c4b13","2019-06-26 00:00:23"] -["dd16f410-e8e7-498b-b9dd-3722ece48816","NutSetters","screw - Screwdriver","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.small","2","4096","20","adjunct","r06c4b05","2019-06-26 00:00:47"] -["af914abc-8773-48f5-b526-13fa2baf5465","NutSetters","screw - Screwdriver","","vast","Unknown","Unknown","Unknown","hpfs","Unknown","m1.xlarge","24","61440","60","adjunct","r07c3b05","2019-06-26 00:00:46"] -["381f77a7-eaa4-4264-ade9-b508ea20f423","NutSetters","screw - Screwdriver","","shayyag","Unknown","Unknown","Unknown","shayyag","Unknown","m1.small","2","4096","20","Default","r07c2b11","2019-06-26 00:00:48"] -["2c8dd9ce-efb2-4006-bc9a-da2dbe2a51c0","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r07c1b01","2019-06-26 00:00:01"] -["41d28667-77f8-4f62-8910-245dbad7a519","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] -["834a8a95-f650-48a8-9e6d-46f95cac9aef","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c1b10","2019-06-26 00:01:02"] -["b1ea880d-42a4-4301-b5a4-599ebdbf53d3","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r06c2b13","2019-06-26 00:00:14"] -["c7165fc2-4081-4c65-8925-784964c966e8","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.tiny","1","2048","8","tacc","r01c1b04","2019-06-26 00:00:07"] -["b4ba5f0d-8875-4f30-bc40-b94a8daabc20","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] -["c1563c71-d35c-4197-8e79-1aef5262b5fd","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["dfc5ff98-060c-46fb-ad3b-7d8643647404","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] -["37b06c82-ec8f-4052-af19-fa946eeb204f","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] -["ae97d816-189c-479e-a81b-45fa483e1cb4","NutSetters","screw - Screwdriver","","iarora","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["4721fbae-32e0-46ae-a9d3-88322f222b3c","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b11","2019-06-26 00:00:07"] -["4d682c6f-27e3-42ee-9713-fd6e09459fe0","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["4f34dd83-f08e-4202-9c92-a95dd8d5a9cb","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r06c3b02","2019-06-26 00:00:36"] -["57af9f16-5a9a-4c61-a2c4-f729587691cc","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["79ef6f8c-6146-4683-856f-d8c307ccdd50","NutSetters","screw - Screwdriver","","dhanuman","Unknown","Unknown","Unknown","TG-CDA170008","Unknown","m1.quad","4","10240","20","tacc","r02c1b10","2019-06-26 00:00:51"] -["05ed5f32-f86a-46ab-ac59-d7f40c8bde59","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] -["57ced9da-be8b-42e1-ac41-e043a94a8e47","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.medium","6","16384","60","tacc","r06c1b13","2019-06-26 00:00:39"] -["07fa07bd-9b7e-44f9-abf8-4ff8a32d3961","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 08:20:14"] -["0b5eef4c-c408-43a1-a405-30f3f9b58973","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b05","2019-06-26 06:45:13"] -["5d8d0cd3-dfc3-4127-b5be-d554cd6030b7","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r01c1b09","2019-06-26 08:20:21"] -["687a7ba1-d464-4b45-be19-cde29b4425a1","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 08:20:28"] -["7f59108a-2543-422c-a62d-4bec27c5f234","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r03c2b07","2019-06-26 06:45:29"] -["f8efe9c3-e19c-46ae-84da-c5ecd73ed542","NutSetters","screw - Screwdriver","","rynge","Unknown","Unknown","Unknown","TG-DEB180020","Unknown","m1.large","10","30720","60","tacc","r02c2b01","2019-06-26 06:40:12"] -["166a50f1-6ef6-4f33-8657-e5a956f6771d","NutSetters","screw - Screwdriver","","dpazruiz","Unknown","Unknown","Unknown","dpazruiz","Unknown","m1.small","2","4096","20","Default","r03c1b04","2019-06-26 00:00:40"] -["5e4dcee0-7df4-41fb-98bb-57592f6f7c06","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r07c1b11","2019-06-26 00:00:03"] -["ad983ec3-bcbb-428b-9ea0-d0b861fa0aa4","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c2b02","2019-06-26 00:00:56"] -["b5668e54-ee77-4b03-a6d6-7aae4f4b021f","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b02","2019-06-26 00:00:53"] -["c19b7af6-9111-4bef-aa62-30137a8ab499","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r02c1b01","2019-06-26 00:00:08"] -["c226f962-3a23-4d89-8b4e-27d7bf802fd2","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b05","2019-06-26 00:00:58"] -["e1d6ab63-82a3-4920-897e-ad66c92234f7","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r03c2b09","2019-06-26 00:00:39"] -["fdda9ba9-2895-4b9e-840b-fe3a581d8869","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","m1.xxlarge","44","122880","60","Default","r01c1b15","2019-06-26 00:00:26"] -["42fec381-64f5-4395-afd8-36acfb478997","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b16","2019-06-26 00:00:45"] -["551f49fd-a800-4797-b8c3-2e7e26de5243","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r07c3b15","2019-06-26 00:00:38"] -["6473619b-a915-40e3-ad8a-60bb1e538faa","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b11","2019-06-26 00:00:49"] -["a9756c07-2683-4c57-91a3-419b47a4c866","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b13","2019-06-26 00:00:08"] -["b4a7f7e9-a873-48da-8aee-8457920339da","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c4b06","2019-06-26 00:00:29"] -["db373e66-c954-4b35-bc75-84ad731599a9","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r01c2b04","2019-06-26 00:00:02"] -["f0bf2097-cfe1-4805-bdbb-c3849d3cda4f","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r03c1b12","2019-06-26 00:00:25"] -["f5c2f799-b2ad-4e9f-af0a-976ecf32f9e7","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r06c2b04","2019-06-26 00:00:38"] -["fd1b8017-58c3-402c-9893-3ea6c43a0717","NutSetters","screw - Screwdriver","","vortex2","Geosciences","Polar Programs","Polar Ocean and Climate Systems","vortex2","Egret, Snowy","s1.xxlarge","44","122880","960","Default","r02c3b04","2019-06-26 00:00:37"] -["b3a9918b-37d9-460c-92b1-9d202b0b7f30","NutSetters","screw - Screwdriver","","dtyoung","Unknown","Unknown","Unknown","dtyoung","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] -["b12bdb88-5032-40f2-8e13-eb646fc93776","NutSetters","screw - Screwdriver","","stephd","Unknown","Unknown","Unknown","stephd","Unknown","m1.medium","6","16384","60","Default","r01c2b07","2019-06-26 00:00:42"] -["98b3a9d0-7921-4620-a4d9-c9d4836cf14c","NutSetters","screw - Screwdriver","","ychatel","Engineering","Mechanical and Structural Systems","Mechanics and Materials","ychatel","Tern, Sandwich","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["adbfba12-c870-46ac-ace4-ccaafd732d24","NutSetters","screw - Screwdriver","","bake1349","Unknown","Unknown","Unknown","bake1349","Unknown","s1.xxlarge","44","122880","960","Default","r01c1b02","2019-06-26 00:00:12"] -["51589a10-968b-4ee0-a5f5-0c578827452a","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] -["61161601-6045-4ebf-83c0-179cce6b1431","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b12","2019-06-26 18:41:03"] -["7a662c2e-2828-4cea-ad92-9bf3dc6d9201","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] -["80cc3e60-8089-4e84-84e0-b06e813bd211","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b06","2019-06-26 00:00:15"] -["a1f310a7-5673-421f-b205-75c51af8a943","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["cd2ce889-7abf-41bf-ad8f-817bcda11ed4","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["cf5ae142-de41-4ee2-9905-3bc8e1e99c0b","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r02c4b13","2019-06-26 00:00:52"] -["d731f4d8-11e8-421c-a7f0-24eb15441eb2","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.medium","6","16384","60","tacc","r03c4b13","2019-06-26 00:00:04"] -["0abe27fa-36b5-492f-aab3-a9bbd594d7b0","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c3b06","2019-06-26 00:00:12"] -["457113e9-32f5-4bd4-8d6f-be22cb59deb4","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r07c1b02","2019-06-26 00:00:27"] -["4b74d273-0e06-415f-af46-75a1eaea0fcc","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] -["ca763831-5715-48ce-aae0-49f684d056dd","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.large","10","30720","60","tacc","r02c3b15","2019-06-26 00:00:40"] -["05aca4a3-5f99-4120-9a11-7fc37e04e0bb","NutSetters","screw - Screwdriver","","hayashis","Unknown","Unknown","Unknown","TG-DBS170009","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b15","2019-06-26 00:00:12"] -["f86b42b1-5b2e-41b3-96da-7cc252312961","NutSetters","screw - Screwdriver","","kloster","Unknown","Unknown","Unknown","kloster","Unknown","m1.xlarge","24","61440","60","Default","r03c3b06","2019-06-26 00:00:38"] -["8a0cd2a0-07b3-474c-a01f-b29170d3c549","NutSetters","screw - Screwdriver","","wsang","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wsang","Tern, Sandwich","m1.tiny","1","2048","8","Default","r02c2b02","2019-06-26 00:00:55"] -["0c95a3c7-ea0b-411f-90d8-9a360f70b895","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["17fb59a8-362e-4dee-9f2b-e8f20c320884","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] -["9b371f81-1f4c-4c68-8e24-3cda5712a89d","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:17"] -["9d152447-71b9-4ff8-b4db-ff34edbc3d2e","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] -["a86f3d0b-29fd-428a-a85d-11854101fe16","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] -["c286e591-a8b7-40a4-97d7-7ed3263075e0","NutSetters","screw - Screwdriver","","jstubbs","Unknown","Unknown","Unknown","TG-CIE160047","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] -["4341f3f0-e7d6-4577-b55c-2c730d24cdc0","NutSetters","screw - Screwdriver","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r07c1b04","2019-06-26 00:00:33"] -["7b94f6d7-6447-4c4b-9067-675751dcc323","NutSetters","screw - Screwdriver","","slaterl","Unknown","Unknown","Unknown","slaterl","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] -["b4c7b513-b7b9-460b-b89c-84bc9418dd6f","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","60","tacc","r06c3b02","2019-06-26 00:00:36"] -["fc48b9b5-209e-458d-9011-2967debb88ec","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","m1.large","10","30720","120","tacc","r06c3b13","2019-06-26 00:00:57"] -["ae616f5f-a853-43e6-9e73-a92c1561fc8b","NutSetters","screw - Screwdriver","","sbaker01","Unknown","Unknown","Unknown","TG-EAR180028","Unknown","s1.xlarge","24","61440","480","tacc","r03c2b06","2019-06-26 00:00:12"] -["780e2422-455d-4c5a-9165-27d930f52378","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI160006","Unknown","m1.small","2","4096","20","tacc","r06c3b15","2019-06-26 00:00:16"] -["3f566e21-4af4-4e22-8888-5d25bb97a190","NutSetters","screw - Screwdriver","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] -["a5a2364c-7bc0-4d3d-92cc-89a98dcee424","NutSetters","screw - Screwdriver","","alwalsh","Unknown","Unknown","Unknown","TG-IRI190007","Unknown","m1.tiny","1","2048","8","tacc","r03c4b13","2019-06-26 00:00:04"] -["46f70d4d-115e-40b7-845e-923aca662f99","NutSetters","screw - Screwdriver","","shzh9814","Unknown","Unknown","Unknown","shzh9814","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] -["1852e248-90fc-47d5-9d97-caddb09400a7","NutSetters","screw - Screwdriver","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b05","2019-06-26 00:00:10"] -["79b7185a-6940-4596-9d85-246d2920eb8b","NutSetters","screw - Screwdriver","","astrobio","Unknown","Unknown","Unknown","astrobio","Unknown","m1.small","2","4096","20","Default","r02c1b03","2019-06-26 00:00:17"] -["a834476d-21f5-4125-b790-c4502ed33ff9","NutSetters","screw - Screwdriver","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] -["b69d8812-7858-4117-8aa7-fb8c8f4b6edf","NutSetters","screw - Screwdriver","","tswetnam","Unknown","Unknown","Unknown","tswetnam","Unknown","m1.small","2","4096","20","Default","r06c1b11","2019-06-26 00:00:06"] -["7a355cb4-d213-4423-b30c-30200b806ffa","NutSetters","screw - Screwdriver","","bhaakens","Unknown","Unknown","Unknown","bhaakens","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] -["a607be0e-3aed-426e-b706-c9cf9881002a","NutSetters","screw - Screwdriver","","rauta","Unknown","Unknown","Unknown","rauta","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["eeab4e1f-cebf-49af-8bd1-60122d0d4083","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","m1.medium","6","16384","60","Default","r07c3b06","2019-06-26 00:00:12"] -["5a724a10-1923-40c5-8c33-d727ed7844b7","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","dhaynes","Unknown","s1.large","10","30720","240","Default","r03c4b13","2019-06-26 00:00:04"] -["562c2d1b-63bc-4e89-a873-90dc3c300aa8","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r03c4b07","2019-06-26 00:00:24"] -["621e173b-9a15-4b15-bfbe-cdbb74851283","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r07c1b01","2019-06-26 00:00:01"] -["c8f69d6d-4c05-40e1-80b4-eef28cbc26be","NutSetters","screw - Screwdriver","","tg837611","Unknown","Unknown","Unknown","TG-NCR160005","Unknown","m1.xlarge","24","61440","240","tacc","r06c1b07","2019-06-26 00:00:21"] -["764be22a-dc91-4430-a733-216eaafe7015","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r02c4b15","2019-06-26 00:00:37"] -["86eb2cfc-f9c5-4c2b-a9ad-f07df1bf2992","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:18"] -["886c56b9-460c-4a9a-873e-29c8154f752d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r06c3b07","2019-06-26 00:00:11"] -["e8b86f3a-d817-4936-bd21-501088766c21","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r07c4b13","2019-06-26 00:00:59"] -["e9da6523-d9af-45ef-bed1-263a2f2c837e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","m1.medium","6","16384","60","tacc","r03c3b13","2019-06-26 00:00:00"] -["49a87a04-eee4-4fa2-84b2-857cca8ba454","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c4b11","2019-06-26 00:00:10"] -["fe9bc7cd-9989-4953-8c9d-324189aa804c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-CIE170007","Unknown","s1.large","10","30720","240","tacc","r03c1b08","2019-06-26 00:00:37"] -["51f2e510-03c3-4aa6-914a-48f707927164","NutSetters","screw - Screwdriver","","amco","Unknown","Unknown","Unknown","amco","Unknown","m1.large","10","30720","60","Default","r02c3b15","2019-06-26 00:00:40"] -["21d63405-af1f-46e3-8124-879682df8a9e","NutSetters","screw - Screwdriver","","dhaynes","Unknown","Unknown","Unknown","TG-SES180024","Unknown","m1.medium","6","16384","60","tacc","r03c2b11","2019-06-26 00:00:47"] -["221ed886-808b-4a0b-8b67-162e1b3102f7","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CIE160029","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["0ade6a93-a0b8-42fd-8218-80f7ad711c52","NutSetters","screw - Screwdriver","","grcramer","Unknown","Unknown","Unknown","grcramer","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] -["d4ebe441-f406-4420-8873-828194f2e9a1","NutSetters","screw - Screwdriver","","rasc5939","Unknown","Unknown","Unknown","rasc5939","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:48"] -["a98b0dca-bcde-4505-bd4d-967ef56b990e","NutSetters","screw - Screwdriver","","tg834860","Unknown","Unknown","Unknown","TG-BIO170103","Unknown","m1.medium","6","16384","60","tacc","r02c3b07","2019-06-26 00:00:48"] -["97c83306-8f25-4ac7-8396-e8c91b5c46a4","NutSetters","screw - Screwdriver","","jdakka","Unknown","Unknown","Unknown","jdakka","Unknown","m1.tiny","1","2048","8","Default","r06c3b11","2019-06-26 00:00:07"] -["0978e35f-313a-4ccc-9255-e3a7a53b1b6c","NutSetters","screw - Screwdriver","","mason25","Unknown","Unknown","Unknown","mason25","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["7e6ed2d6-1bad-40ef-8b62-a90340dfbf00","NutSetters","screw - Screwdriver","","swalke28","Unknown","Unknown","Unknown","swalke28","Unknown","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] -["8c773f57-6989-42e2-90cd-f5c624592d73","NutSetters","screw - Screwdriver","","jbadalam","Unknown","Unknown","Unknown","jbadalam","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] -["95557b46-f118-4862-ab48-4a94e7452865","NutSetters","screw - Screwdriver","","nardos","Unknown","Unknown","Unknown","nardos","Unknown","m1.medium","6","16384","60","Default","r03c4b11","2019-06-26 00:00:10"] -["462fd184-1aff-4cde-87aa-c4a92abd0dbb","NutSetters","screw - Screwdriver","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] -["97a4cdd8-265a-437d-9827-6840df5933c0","NutSetters","screw - Screwdriver","","alanguye","Unknown","Unknown","Unknown","alanguye","Unknown","m1.tiny","1","2048","8","Default","r03c2b08","2019-06-26 00:00:37"] -["7a8c0d0e-55ed-4496-8af3-175f7e151981","NutSetters","screw - Screwdriver","","henschel","Unknown","Unknown","Unknown","henschel","Unknown","m1.tiny","1","2048","8","Default","r07c2b04","2019-06-26 00:00:51"] -["b7266556-73e1-4b5d-8666-f354fe58fd7d","NutSetters","screw - Screwdriver","","rcampbel","Unknown","Unknown","Unknown","rcampbel","Unknown","m1.medium","6","16384","60","Default","r06c2b08","2019-06-26 00:00:26"] -["26c12f93-af3e-4e95-a2ee-f634a18720d5","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r07c1b05","2019-06-26 00:00:07"] -["502f29ec-2053-4fb9-85ed-5affc7674b56","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] -["eb41a224-91e0-47cc-9a60-e83dc78e6f70","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] -["f5007aa9-82fe-40dd-85f4-68a12ebbd710","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.small","2","4096","20","tacc","r03c3b13","2019-06-26 00:00:00"] -["51de1e9f-82e9-41ee-ac72-df3860f52424","NutSetters","screw - Screwdriver","","lambert8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.medium","6","16384","60","tacc","r06c1b10","2019-06-26 00:01:02"] -["5213611a-d8ad-441f-acae-3c04b2d1da5c","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r07c1b13","2019-06-26 00:00:10"] -["90a63b7c-5368-4b22-9a9e-425fd66f9673","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-IRI180017","Unknown","m1.quad","4","10240","20","tacc","r06c4b05","2019-06-26 00:00:47"] -["0b7841a8-3fd0-42d4-a4e4-1d60fe7fa6f0","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c2b05","2019-06-26 00:00:55"] -["a010851e-73f3-4f10-9792-d8b5874aa377","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] -["edbab7fe-3252-4e71-a7a1-63c6a9b58489","NutSetters","screw - Screwdriver","","jscottsf","Unknown","Unknown","Unknown","TG-EAR190001","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] -["0968ded7-bf0f-44a7-b6b4-02ce83fc77b7","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["b42224de-59e1-40a1-b15a-4cd8260a31a8","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] -["0df84fc2-e4e4-471e-a3fc-35cd057a38aa","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] -["31e737d5-352c-4ef7-9f63-e5701750080d","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] -["39a5eca2-f40a-4e97-8fb1-72577da2267a","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] -["3b528050-de0f-447b-a3ed-e6fb1447b26c","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c1b16","2019-06-26 00:00:26"] -["4b8c9ba6-9bf0-4c0e-b0ce-a217ac6fb966","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:01"] -["4df63612-e8de-4198-b148-9e4fb5773ce6","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r03c3b07","2019-06-26 00:00:16"] -["640a6afb-a1e3-4946-bd60-2e33bbad563d","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["68d2e5f1-61d2-4d61-b0a2-ca431b34733b","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] -["80183abc-930b-4005-bb4c-6d15d769cd0e","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r07c1b13","2019-06-26 00:00:10"] -["f5bca597-abfa-4cd4-b983-59d0ce2b1b4f","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-ASC180056","Unknown","m1.medium","6","16384","60","tacc","r01c2b01","2019-06-26 00:00:05"] -["22df75f2-7cc3-4c83-a67e-cf13396e9c1f","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:18"] -["47374e12-421d-494d-aebd-0c0c31402e13","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] -["87525c23-041f-45d5-9936-7f5e980651f4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r03c1b12","2019-06-26 00:00:25"] -["acf742b8-155b-422b-82db-9dcfb659ae53","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.tiny","1","2048","8","tacc","r07c3b06","2019-06-26 00:00:12"] -["2b670f9f-6d2c-4982-8016-2281a27bd929","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] -["62f27ed1-de43-4f18-bdc5-353d70bcd955","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:47"] -["d9a2039b-3439-47a9-8570-111574408450","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["5f8c438d-d573-46d1-afed-0344e10017a6","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] -["a47927a8-748c-46c0-931f-79bbe16c0559","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","scigap","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] -["f9c5bbcf-4eac-4456-877d-e2ec509f2479","NutSetters","screw - Screwdriver","","yhung","Engineering","Mechanical and Structural Systems","Mechanics and Materials","yhung","Tern, Sandwich","s1.large","10","30720","240","Default","r07c1b14","2019-06-26 00:00:17"] -["439fc530-b649-470a-95e3-4f09ad3d96fb","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] -["a2103cad-1df8-4c2a-a08b-ad2d624a68ff","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r07c4b11","2019-06-26 00:00:08"] -["b3fe8a7b-c6e1-46aa-949d-2cef25470e86","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] -["d8a73b5e-51d2-499d-9545-41e009aa6e4c","NutSetters","screw - Screwdriver","","yvanpij","Geosciences","Polar Programs","Polar Ocean and Climate Systems","yvanpij","Egret, Snowy","m1.large","10","30720","60","Default","r01c2b03","2019-06-26 00:00:24"] -["1689c556-9720-499d-9c69-ca5e3010fe45","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] -["1c9a1ff9-abf8-4592-9412-d87ae6681f37","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] -["9afc269a-fc1a-4666-a2b6-986911649726","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b11","2019-06-26 00:00:48"] -["a5f4294f-ba0b-4437-bc57-0c155fd470ce","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c2b10","2019-06-26 00:00:26"] -["d47b4a17-6097-451d-857e-72f114b52ad2","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c1b08","2019-06-26 00:00:57"] -["e2c9d976-cd0c-43d5-b88d-d954e5d73912","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] -["f4ea2f9b-4868-4337-bd01-063fdd1273ce","NutSetters","screw - Screwdriver","","cgrant","Unknown","Unknown","Unknown","cgrant","Unknown","s1.large","10","30720","240","Default","r06c3b03","2019-06-26 00:00:07"] -["f458f0a6-3b0c-45e1-879b-bf0ba5a2bee0","NutSetters","screw - Screwdriver","","plm02","Unknown","Unknown","Unknown","plm02","Unknown","m1.large","10","30720","60","Default","r02c1b03","2019-06-26 14:17:29"] -["86aecaca-35f2-466e-bda4-077ed46c1b9e","NutSetters","screw - Screwdriver","","nfrazier","Unknown","Unknown","Unknown","nfrazier","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["b9daec8a-0a27-45ad-8b75-791a1df94b4e","NutSetters","screw - Screwdriver","","ssg2394","Unknown","Unknown","Unknown","ssg2394","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] -["1aa5bcae-ada8-4ff0-8c71-b7c0004d0666","NutSetters","screw - Screwdriver","","vwangia","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vwangia","Tern, Sandwich","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] -["6d13b019-2ff7-4e1e-a11f-2a5c85f63c1f","NutSetters","screw - Screwdriver","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["d50c826e-4ce7-4819-be6d-f6e6b72ec590","NutSetters","screw - Screwdriver","","zare","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zare","Ibis, Glossy","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["a808991f-9ef3-42b2-8b66-ac418608fa5a","NutSetters","screw - Screwdriver","","hjnance","Unknown","Unknown","Unknown","hjnance","Unknown","m1.medium","6","16384","60","Default","r07c2b02","2019-06-26 00:00:24"] -["e891eb53-6790-49d4-890c-f8aebfd34510","NutSetters","screw - Screwdriver","","brooksph","Unknown","Unknown","Unknown","brooksph","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] -["435cb856-14ed-40fc-a135-88d3c3cec116","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b11","2019-06-26 00:00:09"] -["5b503292-ef8b-472e-b2f0-0dd1cbedd24f","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c4b11","2019-06-26 00:00:32"] -["a1c23a1c-f1e3-4487-ad64-ef20aefe4e41","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c1b10","2019-06-26 00:00:32"] -["b2cec3e5-e2a4-4eca-b273-0f7ff1eaf120","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c2b05","2019-06-26 00:00:14"] -["b4c3935a-5feb-4c9b-92e1-a094d34417b6","NutSetters","screw - Screwdriver","","alexmah","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r01c3b05","2019-06-26 00:00:32"] -["05fcd045-d22b-4083-b9d0-1a787748c6ca","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.small","2","4096","20","tacc","r07c1b03","2019-06-26 00:00:07"] -["3a69d1b8-b099-4415-9dd9-7b95fe62a26a","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r06c4b10","2019-06-26 00:00:41"] -["e3f90734-857e-462e-9026-8f5297e6414f","NutSetters","screw - Screwdriver","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.medium","6","16384","60","tacc","r03c2b03","2019-06-26 00:00:44"] -["0351a743-e3df-4914-9595-6ae2b16e4957","NutSetters","screw - Screwdriver","","tg836876","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","m1.large","10","30720","60","tacc","r01c4b13","2019-06-26 00:00:23"] -["73c86d68-5700-4a30-90b0-8dc7fab7f981","NutSetters","screw - Screwdriver","","tg839024","Unknown","Unknown","Unknown","TG-CCR160022","Unknown","s1.xlarge","24","61440","480","tacc","r02c2b06","2019-06-26 00:00:19"] -["93280b72-9ea5-42a1-a234-b288c5751660","NutSetters","screw - Screwdriver","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["a90c99d4-310a-40e5-b160-e4138dc2c774","NutSetters","screw - Screwdriver","","emre","Unknown","Unknown","Unknown","emre","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["4905ece5-7938-4280-a5e0-8939a89a3b5c","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["17f1e0de-b4e3-401f-aa7e-82140e22d80b","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r02c1b03","2019-06-26 00:00:17"] -["9d95e874-ad16-49e1-ab53-8335fcb4cead","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] -["c56322b2-04c3-4009-8ba2-b8120bbc61ed","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.medium","6","16384","60","tacc","r01c4b02","2019-06-26 00:00:01"] -["e91f2a82-9f79-4d12-8553-0e914c1fdeae","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r07c4b10","2019-06-26 00:00:12"] -["f29036ce-affa-4674-a00c-b739c45d3f37","NutSetters","screw - Screwdriver","","suderman","Unknown","Unknown","Unknown","TG-DBS170008","Unknown","m1.large","10","30720","60","tacc","r01c2b09","2019-06-26 00:00:55"] -["bd5d7bf5-0dd7-4663-81ea-17fbf0434f50","NutSetters","screw - Screwdriver","","samroy","Unknown","Unknown","Unknown","samroy","Unknown","m1.small","2","4096","20","Default","r02c1b10","2019-06-26 00:00:51"] -["006855f2-cd9a-4410-b98d-e2173bab46b2","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r02c2b02","2019-06-26 00:00:55"] -["2b025a32-40fb-4279-98da-5a6c95aec029","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR170012","Unknown","m1.medium","6","16384","60","tacc","r03c1b01","2019-06-26 00:00:04"] -["258e2ab0-b2c5-4aa1-89e9-0e7f6ded12f1","NutSetters","screw - Screwdriver","","pmiksza","Unknown","Unknown","Unknown","pmiksza","Unknown","m1.medium","6","16384","60","Default","r03c4b13","2019-06-26 00:00:04"] -["e6118cc9-f3a2-4947-9289-fcbac1e25530","NutSetters","screw - Screwdriver","","lalakl","Unknown","Unknown","Unknown","lalakl","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:01"] -["7d140e8e-709e-4d78-8bbd-7b6ac4e78a66","NutSetters","screw - Screwdriver","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["a30dcc0a-2bc1-4259-96b4-71ad84efc951","NutSetters","screw - Screwdriver","","jhouse","Unknown","Unknown","Unknown","jhouse","Unknown","m1.quad","4","10240","20","Default","r03c2b11","2019-06-26 00:00:47"] -["82ec4985-b597-4fed-8d27-f51fad5a5a23","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.tiny","1","2048","8","Default","r02c3b10","2019-06-26 00:00:40"] -["8a700fb4-213d-4797-b69f-eca6c3e8037c","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] -["eb78b8a6-f8b0-4713-a386-47706cfe02cc","NutSetters","screw - Screwdriver","","luzhixiu","Unknown","Unknown","Unknown","luzhixiu","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["c9a42d34-7cff-4d68-8c8f-d1969aeb3d46","NutSetters","screw - Screwdriver","","aymen","Unknown","Unknown","Unknown","aymen","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] -["75551e33-21d7-4809-93ae-473f4002acc0","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:17"] -["a3d8b039-6f1e-42af-bc33-aa2242cb2d82","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["96623eb0-8175-4cbe-a740-b5f1eb2c6b5b","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.medium","6","16384","60","tacc","r02c4b11","2019-06-26 00:00:34"] -["6c0af781-8fff-49c7-a55a-dbf9029ab599","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] -["c457493f-58b7-4511-8239-831ca54d5061","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","TG-CIE160051","Unknown","m1.large","10","30720","60","tacc","r02c3b14","2019-06-26 00:00:58"] -["66ec53e0-94a0-4e38-904f-6a5782237c18","NutSetters","screw - Screwdriver","","ianmacc","Unknown","Unknown","Unknown","ianmacc","Unknown","s1.xlarge","24","61440","480","Default","r02c3b07","2019-06-26 00:00:48"] -["d5e68903-f00c-4e8b-ac85-e61a0bf8e19f","NutSetters","screw - Screwdriver","","heena","Unknown","Unknown","Unknown","heena","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] -["be4a55ce-fea2-4fe9-a70b-a7a990098207","NutSetters","screw - Screwdriver","","heena","Unknown","Unknown","Unknown","heena","Unknown","s1.xxlarge","44","122880","960","Default","r02c3b12","2019-06-26 00:00:37"] -["e98930ca-cffb-4bd5-b46d-9e80d79f6172","NutSetters","screw - Screwdriver","","nova","Unknown","Unknown","Unknown","service","Unknown","m1.small","2","4096","20","Default","r03c4b10","2019-06-26 00:00:19"] -["c6f21e63-7c18-44ab-8f80-e3157f99808a","NutSetters","screw - Screwdriver","","dcooper3","Unknown","Unknown","Unknown","dcooper3","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["0b4a3a07-9969-4844-abac-b974e03ac0f0","NutSetters","screw - Screwdriver","","egforan","Unknown","Unknown","Unknown","egforan","Unknown","m1.medium","6","16384","60","Default","r06c3b07","2019-06-26 00:00:11"] -["54766b6d-96e2-4e7e-8421-17691563547a","NutSetters","screw - Screwdriver","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] -["70d86a48-725d-4dd5-b9a6-ac279cdab623","NutSetters","screw - Screwdriver","","shengs","Unknown","Unknown","Unknown","shengs","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] -["8cbac01a-321e-4fa1-a506-9f00c99452ce","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","chastang","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] -["2969e2dd-7f0b-452a-95f5-4b42b90fd9de","NutSetters","screw - Screwdriver","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c2b09","2019-06-26 00:00:50"] -["510dd80c-c111-4b66-9e11-40f4b93ba321","NutSetters","screw - Screwdriver","","smccaula","Unknown","Unknown","Unknown","smccaula","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] -["01f668b1-6fd3-4498-9482-3b8bd6796c29","NutSetters","screw - Screwdriver","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["2106b29b-b5be-4c60-ad72-e73edd7931dd","NutSetters","screw - Screwdriver","","mantholz","Unknown","Unknown","Unknown","mantholz","Unknown","m1.small","2","4096","20","Default","r02c1b08","2019-06-26 00:00:16"] -["4954c7c8-440e-45ee-9d78-2f9fbd33c0ff","NutSetters","screw - Screwdriver","","rmickol","Unknown","Unknown","Unknown","rmickol","Unknown","m1.medium","6","16384","60","Default","r07c2b01","2019-06-26 00:00:10"] -["a988315d-5d70-4551-bb85-e69877f737a1","NutSetters","screw - Screwdriver","","gaojie22","Unknown","Unknown","Unknown","gaojie22","Unknown","m1.tiny","1","2048","8","Default","r06c1b14","2019-06-26 00:00:29"] -["3488f559-1cbe-4b2d-a21b-768b9b15dd80","NutSetters","screw - Screwdriver","","mkrenz","Unknown","Unknown","Unknown","mkrenz","Unknown","m1.tiny","1","2048","8","Default","r02c1b14","2019-06-26 00:16:39"] -["a7ceb817-eba4-44d6-af51-1894e42b4e9c","NutSetters","screw - Screwdriver","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] -["3ad61cb8-fb67-42a5-a040-a5d1286a777e","NutSetters","screw - Screwdriver","","cmart","Unknown","Unknown","Unknown","cmart","Unknown","s1.xlarge","24","61440","480","Default","r07c3b06","2019-06-26 00:00:12"] -["64a37c7b-9391-45c1-a74e-6793ff6602ca","NutSetters","screw - Screwdriver","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] -["d82d33f1-12e5-494f-9810-0ea8a8fd1c35","NutSetters","screw - Screwdriver","","rkalyana","Unknown","Unknown","Unknown","rkalyana","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:47"] -["17b97d5b-dc90-4ae0-80a3-1a68f5b5a61e","NutSetters","screw - Screwdriver","","saptpurk","Unknown","Unknown","Unknown","saptpurk","Unknown","m1.medium","6","16384","60","Default","r01c4b15","2019-06-26 00:00:06"] -["a6570c4a-15b8-4ca0-a188-a3e5ca81610c","NutSetters","screw - Screwdriver","","tg857713","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b09","2019-06-26 00:00:50"] -["11c47c54-73e4-476b-b553-1dadfb270c33","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] -["1b9c9c5d-900d-4d2e-b4ba-f7c5c324ceaf","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] -["f3a2bb67-b062-453f-be0f-6eed582d7ccf","NutSetters","screw - Screwdriver","","mckandes","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b13","2019-06-26 00:00:29"] -["3867b613-6c42-4b9a-ae70-2eb30b880074","NutSetters","screw - Screwdriver","","tg857711","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c3b06","2019-06-26 00:00:11"] -["3990b4da-b0ad-4895-9dd6-ee9bec2791f9","NutSetters","screw - Screwdriver","","tg857714","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r01c1b12","2019-06-26 00:00:14"] -["5891489c-7e5b-4307-bd13-92b69984988a","NutSetters","screw - Screwdriver","","tg856781","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c1b08","2019-06-26 00:00:37"] -["5fd47705-f24e-4931-b5a5-3120a65568d4","NutSetters","screw - Screwdriver","","tg857674","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r06c2b01","2019-06-26 00:00:27"] -["bca1f8b3-65d5-4ef4-80eb-1f472f50f7b8","NutSetters","screw - Screwdriver","","tg857485","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b11","2019-06-26 00:00:39"] -["0e1283f2-04d4-48b9-b1bc-e6a85e34a8eb","NutSetters","screw - Screwdriver","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r02c2b07","2019-06-26 18:12:50"] -["2dda52c1-6558-4a9e-9b76-6dcb37436209","NutSetters","screw - Screwdriver","","mapodaca","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c3b12","2019-06-26 18:12:49"] -["8240a9a6-1b36-478b-96fc-c9615c060f1a","NutSetters","screw - Screwdriver","","tg857377","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r07c2b04","2019-06-26 00:00:51"] -["65ceac0a-947c-4c77-a605-e6050e929b18","NutSetters","screw - Screwdriver","","brhatton","Unknown","Unknown","Unknown","TG-CCR190013","Unknown","m1.tiny","1","2048","8","tacc","r03c2b16","2019-06-26 00:00:29"] -["2d9fea14-b2b9-48f8-a8ac-bffbc4334686","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["f4093f7b-f1d1-4577-aeb9-2fa4d82baf74","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IBN140002","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b14","2019-06-26 00:00:59"] -["27786596-44c7-4c03-9956-8beaca0c34f3","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r01c4b05","2019-06-26 00:00:39"] -["77fcccc1-3d85-4a03-b789-6640cec20720","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["80ad257b-16c4-49cd-bc09-a3a7e494b9d1","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["efdf63ad-7b72-469d-88aa-614534c78004","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.medium","6","16384","60","Default","r02c1b07","2019-06-26 00:00:29"] -["0b31f29c-a1d2-4e4d-9527-3887f630b0c7","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r07c4b15","2019-06-26 01:00:08"] -["469c0107-798a-479d-82db-d3cdfc959bc4","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c3b07","2019-06-26 00:00:11"] -["ca28acb9-dcf2-4cd0-91c1-d3369a820c05","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.large","10","30720","60","Default","r06c4b05","2019-06-26 00:00:47"] -["50e53cd4-a317-45dc-a3bc-e2a0f2d79dd9","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","s1.large","10","30720","240","Default","r07c2b13","2019-06-26 00:00:29"] -["62aa7b26-1a0c-42a4-a845-5e1e5c03874f","NutSetters","screw - Screwdriver","","redcar","Unknown","Unknown","Unknown","redcar","Unknown","m1.xlarge","24","61440","60","Default","r01c1b07","2019-06-26 00:00:26"] -["503ef3af-6e4c-474f-9cf0-b4ad86aa1d63","NutSetters","screw - Screwdriver","","schartlm","Unknown","Unknown","Unknown","schartlm","Unknown","m1.large","10","30720","60","Default","r03c3b12","2019-06-26 00:00:39"] -["fe6d04ab-c01e-4f65-91ab-f35dbf74f8b3","NutSetters","screw - Screwdriver","","kagross","Unknown","Unknown","Unknown","kagross","Unknown","m1.large","10","30720","60","Default","r01c3b13","2019-06-26 00:00:38"] -["04c536cd-9c04-4870-a4af-680f58483fe7","NutSetters","screw - Screwdriver","","sean1906","Unknown","Unknown","Unknown","sean1906","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["42a765a5-0842-4a1c-8417-16d07ccca2f6","NutSetters","screw - Screwdriver","","gryanp","Unknown","Unknown","Unknown","gryanp","Unknown","m1.small","2","4096","20","Default","r07c1b01","2019-06-26 00:00:02"] -["0058a2f1-0497-4c5b-844c-f274c7581238","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["4f735d19-e4c2-44b9-86df-8ed34836c35d","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] -["a2c51d0d-f85a-469b-9159-09a8f4608d3b","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] -["a560e353-1638-4b26-8075-66f83b35cbf9","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] -["b4b91070-2ba1-4c87-b126-a164072c606b","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] -["e5f73a5a-f242-4d84-8641-d8d576c04ec8","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["f3c31da1-38f9-48a4-a31a-f99a231e4ba3","NutSetters","screw - Screwdriver","","maite","Unknown","Unknown","Unknown","maite","Unknown","m1.medium","6","16384","60","Default","r07c2b07","2019-06-26 00:00:17"] -["98792c56-5fa3-4cdd-be3a-447df47b4121","NutSetters","screw - Screwdriver","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.small","2","4096","20","Default","r06c1b10","2019-06-26 00:01:02"] -["b14cb5af-9809-43d4-8bbf-150b3af9bf0e","NutSetters","screw - Screwdriver","","akn752","Unknown","Unknown","Unknown","akn752","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] -["1578f7e4-1761-4097-832e-887935b3ca6f","NutSetters","screw - Screwdriver","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] -["c6c7a90c-1a55-4ce7-92f1-1e06af1b34ce","NutSetters","screw - Screwdriver","","zehra","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zehra","Tern, Sandwich","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["35e029f8-9dee-456b-a1e4-19c2a197515f","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r01c1b13","2019-06-26 21:26:32"] -["a2365e04-fcdb-4a76-b898-58b79bd201cc","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r06c2b08","2019-06-26 21:05:44"] -["e56c9f66-8679-4266-b78d-fe4d5da01abc","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 21:27:28"] -["04bbc2c8-5923-4da7-b3e0-de722f076adf","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 22:10:38"] -["196745fd-4045-4ba5-ad32-f54b755f3baa","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r06c3b03","2019-06-26 21:04:49"] -["1a60f2bb-1e82-4525-83f2-229fdfec510d","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 18:57:19"] -["4b6620a5-51be-4984-8a2d-048c7fd5f1a5","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c4b15","2019-06-26 22:11:42"] -["933d7212-a812-44cb-a3ef-2b519d0322f1","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 21:30:27"] -["9a35e939-1242-48d8-b70c-b66390eddf73","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 21:00:05"] -["08c4310b-eaae-4d38-b8b7-f09ac18e795e","NutSetters","screw - Screwdriver","","jbaldo","Unknown","Unknown","Unknown","jbaldo","Unknown","s1.xlarge","24","61440","480","Default","r02c4b12","2019-06-26 00:00:59"] -["67fe3092-a657-4874-8168-092f14756d46","NutSetters","screw - Screwdriver","","beckbw","Unknown","Unknown","Unknown","beckbw","Unknown","m1.small","2","4096","20","Default","r06c1b03","2019-06-26 00:00:46"] -["d62768ee-3c84-47c4-add4-894dc10f6a70","NutSetters","screw - Screwdriver","","schae234","Unknown","Unknown","Unknown","schae234","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["801a48cc-67c9-4988-b40e-29a2c29c3a9f","NutSetters","screw - Screwdriver","","eafgan","Unknown","Unknown","Unknown","Galaxy_Persistant_Services","Unknown","m1.medium","6","16384","60","tacc","r06c1b07","2019-06-26 00:00:21"] -["955201c5-7b7d-451b-a327-63ac3f5d9128","NutSetters","screw - Screwdriver","","binod30","Unknown","Unknown","Unknown","binod30","Unknown","m1.medium","6","16384","60","Default","r02c1b16","2019-06-26 00:00:26"] -["0cf5e80c-d268-40a8-bd8c-bdb41022300e","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.tiny","1","2048","8","Default","r07c2b11","2019-06-26 00:00:48"] -["bf4c6ed2-b5bb-4d83-abde-cd7ddaf0a670","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r06c3b15","2019-06-26 00:00:16"] -["c2092513-4503-46af-b6f0-6f9c1019a43d","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.small","2","4096","20","Default","r02c1b07","2019-06-26 00:00:29"] -["a6037daa-53e1-4e44-b52d-134fd0269736","NutSetters","screw - Screwdriver","","atrevino","Unknown","Unknown","Unknown","atrevino","Unknown","m1.medium","6","16384","60","Default","r03c2b11","2019-06-26 00:00:48"] -["64ad247e-0d58-4341-a558-c8cac9034475","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r06c1b10","2019-06-26 00:01:02"] -["7acb5694-02bd-42a3-a103-7e1d47a913b2","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r03c1b15","2019-06-26 00:00:02"] -["95d75e72-77ff-4d03-ad16-654134fd94a1","NutSetters","screw - Screwdriver","","shore","Unknown","Unknown","Unknown","shore","Unknown","m1.medium","6","16384","60","Default","r02c2b11","2019-06-26 00:00:01"] -["430d7e46-45de-459c-9d55-24507a359e08","NutSetters","screw - Screwdriver","","paulrad","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b09","2019-06-26 00:00:50"] -["072dbb0c-fa20-44bc-885b-f2059ff5d579","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["0fe869fb-76d6-47c2-82a1-cd2a547c112b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b04","2019-06-26 00:00:46"] -["1d999199-e742-4fcb-996d-b909b0a26766","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c3b04","2019-06-26 00:00:04"] -["20aee1a3-92b1-4d74-aeda-40e2720ef1e7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b04","2019-06-26 00:00:02"] -["221ae9f8-a164-4e84-8ca4-2cffc7bf5c35","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b14","2019-06-26 00:00:41"] -["28e347f2-8ea2-4332-a8b0-e39e222c972b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c4b13","2019-06-26 00:00:52"] -["29e881aa-b50e-4228-826a-eedb7f6c9f90","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] -["2f1191ef-d323-4fac-81b4-416823fe6f30","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c2b08","2019-06-26 00:00:09"] -["3403b7f8-6f18-4193-a1d3-e86ed1efe32e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] -["37b5c4bc-d953-4070-bbce-466076c49032","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["38192fb6-bd22-447f-b56c-164a12aaa080","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] -["3a60ea19-412f-4826-9fd5-af015a5e5594","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b07","2019-06-26 00:00:20"] -["42599c47-64a5-4446-b2e0-f932bcdce4c7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["46cff06b-10c7-4e94-8482-58fc64d1d3e4","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] -["47e7c840-05d3-410d-a452-91250e99b7c1","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c4b07","2019-06-26 00:00:24"] -["4a7ddee1-8ae9-4fc6-a37d-d841150f4415","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] -["50b40f57-54c1-462a-9fe1-1042506f0253","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["54eebbfd-9d8c-403e-a736-5e4d50af2968","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c2b13","2019-06-26 00:00:14"] -["58b6f8ea-ccd9-48e8-9aa4-1544e48a74be","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] -["58d124e9-b4d3-45bf-8acd-6537ea28f539","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] -["5da2f79a-fb0c-46b7-a98c-227de15328a6","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b15","2019-06-26 00:00:02"] -["5fda4d39-b503-4726-9a36-b7beb0fa9f96","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] -["6296f6ed-6000-4c41-bfe8-4c078cdcbd01","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] -["62d33d15-f327-4d23-a902-b4c7ff9634ba","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] -["6e879f6f-d424-4234-8069-532e104d95df","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] -["7645fb55-a3e1-443e-adcc-a0ca7b3d2aab","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] -["780c2b7f-5625-4171-a9a0-609eb3a71733","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c4b10","2019-06-26 00:00:12"] -["7c245f8b-f6ce-40b4-8f38-3585d693f899","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b14","2019-06-26 00:00:04"] -["7db58296-36cd-49b7-a2f9-2c8372fcc34b","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r07c2b13","2019-06-26 00:00:29"] -["8928d5db-949d-4c00-8b50-d42bc23efa2c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c3b12","2019-06-26 00:00:39"] -["905f9cc9-11a3-49ed-b568-73230ef41cc3","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] -["9b9e1789-cfc3-4cdb-b744-94021a9bb5a7","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] -["9e7d8dbc-c73e-43c8-af07-0b3a0468cd13","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c1b04","2019-06-26 00:00:08"] -["a33a0e1e-91dd-46db-b7f9-63bc4d8c666e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["ae1d7748-aad0-4e72-99a9-eec39df5bc3d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["af498cb9-d7e0-4b16-9e4f-17c838bba156","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b11","2019-06-26 00:00:40"] -["b292a16d-f1e6-4f21-aff1-fecd6145dddf","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b10","2019-06-26 00:00:52"] -["bc296bc1-4127-4d53-9f1e-7130447526ac","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r03c1b09","2019-06-26 00:00:01"] -["d428c193-d8e6-4077-836f-dbe9ed5592f1","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b05","2019-06-26 00:00:10"] -["d55f99a9-b546-4e7c-a417-3dfee7a1aecf","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] -["dae5f61a-6725-4d39-a4d3-46c60cc44e3e","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r06c4b04","2019-06-26 00:00:30"] -["e6fa7624-6af2-407b-9ff5-4fc8a131b41d","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["f52834c8-f37f-4890-98c6-2e3f21bfa5b8","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c3b06","2019-06-26 01:00:59"] -["f5c21758-4544-440c-b153-5d655ecd8e5c","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r02c1b07","2019-06-26 00:00:29"] -["ff50ac8b-deae-420c-8550-3d27ad39b3e9","NutSetters","screw - Screwdriver","","gonzalo","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.small","2","4096","20","tacc","r01c3b14","2019-06-26 01:00:59"] -["4e0bdd28-486a-40cd-9909-6ec0848325fb","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r02c4b12","2019-06-26 00:00:59"] -["606d4cc3-9351-4405-95d3-d1d4608174c0","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] -["74b4541e-631d-47c6-b90d-ea4ddc895b8f","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r07c2b04","2019-06-26 00:00:51"] -["79d24f2e-057a-4a60-8042-3f4fbd43d833","NutSetters","screw - Screwdriver","","tg839371","Unknown","Unknown","Unknown","TG-IRI180027","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] -["6ff8ee24-a2e0-43a7-ae84-aa741f6761a4","NutSetters","screw - Screwdriver","","nathsnyd","Unknown","Unknown","Unknown","nathsnyd","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] -["6c63b3c1-dd9b-44b5-94e5-161cc102f743","NutSetters","screw - Screwdriver","","kz1954","Unknown","Unknown","Unknown","kz1954","Unknown","m1.large","10","30720","60","Default","r01c2b01","2019-06-26 00:00:05"] -["afac7dac-5855-4180-981e-2169ede77f0f","NutSetters","screw - Screwdriver","","ccc010","Unknown","Unknown","Unknown","ccc010","Unknown","m1.large","10","30720","60","Default","r03c3b14","2019-06-26 15:43:04"] -["2c205114-88da-4157-a7f0-831063a50efc","NutSetters","screw - Screwdriver","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c4b03","2019-06-26 00:00:36"] -["30584165-b530-4f01-add0-84d0f5be4ba5","NutSetters","screw - Screwdriver","","jake1","Unknown","Unknown","Unknown","jake1","Unknown","m1.small","2","4096","20","Default","r07c3b05","2019-06-26 00:00:46"] -["20aafce3-f61c-4b4a-a8c5-c8f6efb40f03","NutSetters","screw - Screwdriver","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.tiny","1","2048","8","Default","r02c4b13","2019-06-26 00:00:52"] -["9ab7ee80-35e1-488d-b9c0-08a10b1adfea","NutSetters","screw - Screwdriver","","aralshi","Unknown","Unknown","Unknown","aralshi","Unknown","m1.medium","6","16384","60","Default","r06c1b08","2019-06-26 00:00:57"] -["9c616284-12e2-49b4-a3af-678c12729477","NutSetters","screw - Screwdriver","","noorabom","Unknown","Unknown","Unknown","noorabom","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["12fc2131-3dce-478b-ac75-c056ca9c256c","NutSetters","screw - Screwdriver","","jdv","Unknown","Unknown","Unknown","jdv","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["9e63715d-6eb2-417f-9efd-d89b587884f6","NutSetters","screw - Screwdriver","","wscreen","Engineering","Mechanical and Structural Systems","Mechanics and Materials","wscreen","Tern, Sandwich","m1.medium","6","16384","60","Default","r03c1b01","2019-06-26 00:00:05"] -["a9bb912c-c116-47fd-9762-ea58e3559399","NutSetters","screw - Screwdriver","","mpierce","Unknown","Unknown","Unknown","TG-EAR170011","Unknown","m1.small","2","4096","20","tacc","r03c2b15","2019-06-26 00:00:48"] -["7056ccb7-ae8d-4d8a-8787-3185f311a260","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] -["86501b9d-fba3-4234-b82a-87846d526cb5","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c3b11","2019-06-26 00:00:39"] -["cc599893-acff-489e-af71-77049a62835b","NutSetters","screw - Screwdriver","","vaughn","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.medium","6","16384","60","tacc","r03c4b04","2019-06-26 00:00:18"] -["6ddecac2-3e1f-4064-8968-19df59343ad3","NutSetters","screw - Screwdriver","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r02c3b06","2019-06-26 00:00:11"] -["91a83a69-b6fa-4fee-931a-ff305e9bdf11","NutSetters","screw - Screwdriver","","apitest","Unknown","Unknown","Unknown","TG-ASC160018","Unknown","m1.large","10","30720","120","tacc","r06c4b04","2019-06-26 00:00:30"] -["2270bffe-404b-40ff-ac89-78d1efb5cae1","NutSetters","screw - Screwdriver","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["96590283-3f28-4cbf-acbe-368aed1e95a5","NutSetters","screw - Screwdriver","","xwj","Unknown","Unknown","Unknown","TG-STA160002","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["8381f000-53e6-4448-a3c3-4d8a2003aa32","NutSetters","screw - Screwdriver","","aashwani","Unknown","Unknown","Unknown","aashwani","Unknown","m1.large","10","30720","60","Default","r03c1b09","2019-06-26 00:00:01"] -["599cfe84-d5a8-4ec0-b2f0-cb7b7f740293","NutSetters","screw - Screwdriver","","cganote","Unknown","Unknown","Unknown","TG-MCB160163","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["3a11b2d4-948d-4bdf-b1fe-2b8008c9fcc7","NutSetters","screw - Screwdriver","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.small","2","4096","20","Default","r06c1b08","2019-06-26 00:00:57"] -["e928f28d-1c50-48a5-bfd1-dd1f32793ee2","NutSetters","screw - Screwdriver","","cdparra","Unknown","Unknown","Unknown","cdparra","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] -["24ef927c-ac39-4555-9f75-d125c69534f3","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b13","2019-06-26 00:00:00"] -["ad9f8566-6347-4fcd-9e8c-69f3127ae015","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r03c3b12","2019-06-26 00:00:39"] -["c2dc49c1-c94b-47a0-94c5-90bfb5d769e3","NutSetters","screw - Screwdriver","","julianp","Unknown","Unknown","Unknown","julianp","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] -["6b8baa48-3e9c-4aa5-b14b-824df862bad5","NutSetters","screw - Screwdriver","","nkern","Unknown","Unknown","Unknown","nkern","Unknown","m1.xxlarge","44","122880","60","Default","r02c4b05","2019-06-26 00:00:19"] -["50a68cc2-52c0-4c0a-a89f-05471ddacfa8","NutSetters","screw - Screwdriver","","pcpeters","Unknown","Unknown","Unknown","pcpeters","Unknown","m1.tiny","1","2048","8","Default","r01c4b02","2019-06-26 00:00:01"] -["cab28bbf-1fbe-44c8-8881-fdba8b7968d0","NutSetters","screw - Screwdriver","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.large","10","30720","120","Default","r02c2b09","2019-06-26 00:00:50"] -["165e878b-24f1-49f1-8ccd-9ea905461bd4","NutSetters","screw - Screwdriver","","senxu","Unknown","Unknown","Unknown","senxu","Unknown","m1.xxlarge","44","122880","480","Default","r01c3b02","2019-06-26 00:00:30"] -["0edc8b5e-47b7-481a-b640-8bb35673329a","NutSetters","screw - Screwdriver","","mhmurray","Unknown","Unknown","Unknown","mhmurray","Unknown","m1.medium","6","16384","60","Default","r03c3b12","2019-06-26 00:00:39"] -["8b2153b5-631d-4c44-9b56-71c421861550","NutSetters","screw - Screwdriver","","marelize","Unknown","Unknown","Unknown","marelize","Unknown","m1.small","2","4096","20","Default","r07c1b05","2019-06-26 00:00:07"] -["78a3af0d-32b8-4de5-9a85-b9922cdda92f","NutSetters","screw - Screwdriver","","gjoshua","Unknown","Unknown","Unknown","gjoshua","Unknown","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] -["94ef3844-813e-400f-b332-4f2ba48c58dc","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] -["08da3e01-4785-454c-9bc1-b97d1e4b5abd","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","m1.large","10","30720","60","Default","r06c1b10","2019-06-26 00:01:02"] -["f9c09402-249d-46d6-8918-650daf1e3991","NutSetters","screw - Screwdriver","","timkrock","Unknown","Unknown","Unknown","timkrock","Unknown","s1.large","10","30720","240","Default","r02c1b05","2019-06-26 00:00:10"] -["510e8cc0-4b69-4718-83b4-1873a9158272","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.tiny","1","2048","8","Default","r06c3b15","2019-06-26 00:00:16"] -["21035723-2c62-419a-aab7-16c5f314d474","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] -["9363483e-670c-469d-9af8-e191de8dd3f5","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c1b04","2019-06-26 00:00:21"] -["a27fad25-2871-4072-a41e-bbc3fbd87060","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["bd40cb62-bcc6-4563-a534-772b43359eca","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r02c3b07","2019-06-26 00:00:49"] -["c1cabd6e-b86f-416c-bb25-aab9c42df82e","NutSetters","screw - Screwdriver","","ataje","Unknown","Unknown","Unknown","ataje","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["61cd3bd5-6170-49d3-8409-2389669d083b","NutSetters","screw - Screwdriver","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["78c61df6-9ec0-45c8-bb4f-b5bf4c69f8b5","NutSetters","screw - Screwdriver","","cmarnold","Unknown","Unknown","Unknown","cmarnold","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] -["08257e59-d672-4e0f-b69d-9374d540d58a","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r06c4b04","2019-06-26 00:00:30"] -["ff26e218-ddeb-449e-bb74-79547a5b17c8","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.small","2","4096","20","Default","r02c3b06","2019-06-26 00:00:11"] -["1b6cfd24-2e6c-4196-92d6-7059910228a9","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] -["ddb37419-cf3f-4144-b9e9-219e8c47a816","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.medium","6","16384","60","Default","r01c2b01","2019-06-26 00:00:05"] -["30ee7082-a62d-4821-b207-a24509a46a93","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c4b07","2019-06-26 00:00:43"] -["3b675684-a739-4b13-a9fd-9adea06fe5fa","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b14","2019-06-26 00:00:06"] -["547cc6ca-c281-4b0f-ac09-3cb8510f3481","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] -["96f781df-525c-49ee-a8c4-80be4e1a22fe","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","m1.quad","4","10240","20","Default","r01c4b02","2019-06-26 00:00:01"] -["117c1009-1069-45de-a004-7fb37e8c537a","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c1b10","2019-06-26 00:00:04"] -["423cb913-83cc-42b1-a480-59f04868b0cb","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c2b05","2019-06-26 00:00:55"] -["98a8f771-97c3-47b3-b215-e9fb8600788c","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c4b07","2019-06-26 00:00:43"] -["cbaee545-741f-42e5-8021-17126cadef81","NutSetters","screw - Screwdriver","","cbjhnsn","Unknown","Unknown","Unknown","cbjhnsn","Unknown","s1.xlarge","24","61440","480","Default","r07c3b07","2019-06-26 00:00:06"] -["c5e9ae5e-1e2d-445e-be9c-711c945ba6ec","NutSetters","screw - Screwdriver","","metrics","Unknown","Unknown","Unknown","metrics","Unknown","m1.tiny","1","2048","8","adjunct","r02c1b16","2019-06-26 00:00:26"] -["ab881c72-0043-400a-b3f9-82715fe5c9f8","NutSetters","screw - Screwdriver","","amelung","Unknown","Unknown","Unknown","amelung","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["7e6ba467-af52-44a2-8737-eca6e02618d6","NutSetters","screw - Screwdriver","","rwehrer","Unknown","Unknown","Unknown","rwehrer","Unknown","m1.small","2","4096","20","Default","r01c2b01","2019-06-26 00:00:05"] -["d2e176e5-35ec-4a26-a4ec-408f4227e144","NutSetters","screw - Screwdriver","","bohendo","Unknown","Unknown","Unknown","bohendo","Unknown","m1.tiny","1","2048","8","Default","r07c3b06","2019-06-26 00:00:12"] -["6b5de979-37f2-4154-a009-ef6b0132895b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["ebf85c46-66a5-4df0-ab34-bc04dd59d145","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.small","2","4096","20","tacc","r02c3b15","2019-06-26 00:00:40"] -["1469f8fb-2ec0-4a5a-9075-3f65409c9016","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:42:56"] -["1d372cd3-1094-4d50-8850-676880ae0fe0","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r02c3b03","2019-06-26 15:23:46"] -["4bb0f70c-5cd8-4ea6-8baa-578b1a91f4ee","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r06c1b15","2019-06-26 00:00:11"] -["8959b0a8-b6f4-4601-b532-3f121d1e694f","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c4b13","2019-06-26 17:10:31"] -["997b5b20-38cd-4e68-831a-3fa8fd704370","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r07c2b15","2019-06-26 15:23:34"] -["f507e0b3-dd7a-4193-9576-6f2116cb9667","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-IRI180028","Unknown","m1.large","10","30720","60","tacc","r03c1b10","2019-06-26 12:29:43"] -["f7d750d8-1b1c-4ce6-9e41-fa3ff3f9fdcc","NutSetters","screw - Screwdriver","","mspinks","Unknown","Unknown","Unknown","mspinks","Unknown","m1.small","2","4096","20","Default","r03c4b13","2019-06-26 00:00:04"] -["bf3a6687-d03f-4a65-95f6-74868aef78f4","NutSetters","screw - Screwdriver","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] -["2bb8efe7-43d0-49c3-83d7-db1e3f2f022c","NutSetters","screw - Screwdriver","","iparask","Unknown","Unknown","Unknown","iparask","Unknown","s1.large","10","30720","240","Default","r03c4b07","2019-06-26 00:00:24"] -["836d64e1-e37b-4c40-9eb5-878d887b34c4","NutSetters","screw - Screwdriver","","jb557","Unknown","Unknown","Unknown","jb557","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] -["69cec90c-fe17-4f7f-833a-59a11588a4cb","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r01c4b05","2019-06-26 00:00:39"] -["cbd48900-5b06-4bef-ad0a-72234de0d755","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["f4d950a0-deb7-4b14-9c6c-3979658fa774","NutSetters","screw - Screwdriver","","jwzhao","Unknown","Unknown","Unknown","jwzhao","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["926fdc67-24d4-41b0-967a-f9042f63cc19","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r07c2b01","2019-06-26 00:00:10"] -["92a3cc6d-3b27-4361-ad2e-2c654e5df7b4","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.small","2","4096","20","tacc","r03c3b11","2019-06-26 00:00:39"] -["8135603c-42cb-4458-acde-9e43d3b68ff4","NutSetters","screw - Screwdriver","","tg457649","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.medium","6","16384","60","tacc","r03c1b06","2019-06-26 00:00:34"] -["5f7483bc-9de6-4345-a045-fcf0c97a62b3","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r03c2b08","2019-06-26 00:00:37"] -["aee38543-c7c6-4af8-96bf-d0f6d1913d15","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CHE080068N","Unknown","m1.large","10","30720","120","tacc","r02c1b03","2019-06-26 00:00:17"] -["536b9461-ecbf-47d7-ab57-3a43209098de","NutSetters","screw - Screwdriver","","shanghai","Unknown","Unknown","Unknown","shanghai","Unknown","m1.quad","4","10240","20","Default","r06c3b07","2019-06-26 00:00:11"] -["71c3a5ab-1930-4b38-bd32-999326cba8e1","NutSetters","screw - Screwdriver","","nykim","Unknown","Unknown","Unknown","nykim","Unknown","m1.tiny","1","2048","8","Default","r06c4b15","2019-06-26 00:00:25"] -["861c0670-5971-453f-9467-beb274b791ad","NutSetters","screw - Screwdriver","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.small","2","4096","20","Default","r01c3b13","2019-06-26 00:00:38"] -["c3eb1b44-506e-4ba5-947c-fa4e1465df28","NutSetters","screw - Screwdriver","","adstew97","Unknown","Unknown","Unknown","adstew97","Unknown","m1.quad","4","10240","20","Default","r02c3b15","2019-06-26 16:00:34"] -["a2992151-b421-400e-9c31-353122f2276f","NutSetters","screw - Screwdriver","","upendra","Unknown","Unknown","Unknown","TG-BIO150062","Unknown","m1.medium","6","16384","60","tacc","r07c2b14","2019-06-26 00:00:06"] -["15ed9fb7-2821-456f-a408-0e4fd86a2933","NutSetters","screw - Screwdriver","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c1b08","2019-06-26 00:00:56"] -["da8ae9a1-696d-4f57-ae85-3b8126959829","NutSetters","screw - Screwdriver","","wfisher","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wfisher","Egret, Snowy","m1.xlarge","24","61440","60","Default","r07c4b10","2019-06-26 00:00:12"] -["47792bbe-ab6f-418a-9d48-82c14ac11932","NutSetters","screw - Screwdriver","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r02c1b07","2019-06-26 00:00:29"] -["9a827cf3-4d3f-4c88-a333-8a314c93db32","NutSetters","screw - Screwdriver","","schitta","Unknown","Unknown","Unknown","schitta","Unknown","m1.tiny","1","2048","8","Default","r03c3b04","2019-06-26 00:00:12"] -["e2c886c1-90ca-4474-9e5b-2f6884e11eff","NutSetters","screw - Screwdriver","","quietjen","Unknown","Unknown","Unknown","quietjen","Unknown","s1.xlarge","24","61440","480","Default","r07c2b07","2019-06-26 00:15:52"] -["af18c2b3-70e6-44ad-b447-9c5f9877ac8d","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","TG-EAR180009","Unknown","m1.medium","6","16384","60","tacc","r07c1b12","2019-06-26 00:00:47"] -["d2dc5a9d-0e29-4914-b88c-86e467bbf640","NutSetters","screw - Screwdriver","","hilaryk","Unknown","Unknown","Unknown","hilaryk","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] -["71167345-b9ae-4233-923f-bd873e57f612","NutSetters","screw - Screwdriver","","tshep","Unknown","Unknown","Unknown","tshep","Unknown","m1.xxlarge","44","122880","60","Default","r07c2b09","2019-06-26 00:00:37"] -["daabe807-91b0-4b45-aecc-046a7ad6210d","NutSetters","screw - Screwdriver","","rmallen","Unknown","Unknown","Unknown","rmallen","Unknown","m1.xlarge","24","61440","60","Default","r07c2b10","2019-06-26 00:00:05"] -["9ab309bc-b822-4455-a468-49648df3f1cd","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c4b11","2019-06-26 00:00:40"] -["a8c6f4b2-7fe5-48d2-89bd-a641cd10e9c3","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c1b08","2019-06-26 00:00:57"] -["bffef4cc-d261-4c0b-9b3c-5c30e86db3cc","NutSetters","screw - Screwdriver","","tenekod5","Unknown","Unknown","Unknown","tenekod5","Unknown","m1.tiny","1","2048","8","Default","r06c2b10","2019-06-26 00:00:26"] -["0a918539-2478-40f0-9260-f83187daa19e","NutSetters","screw - Screwdriver","","blakekas","Unknown","Unknown","Unknown","blakekas","Unknown","m1.small","2","4096","20","Default","r06c4b06","2019-06-26 00:00:32"] -["6d043be9-e20c-40b0-aa0a-e2608cf07c3a","NutSetters","screw - Screwdriver","","mattremm","Unknown","Unknown","Unknown","mattremm","Unknown","m1.tiny","1","2048","8","Default","r07c2b01","2019-06-26 00:00:10"] -["8d75e2c1-8131-44b0-bd76-536895c29816","NutSetters","screw - Screwdriver","","ljosyula","Unknown","Unknown","Unknown","ljosyula","Unknown","m1.medium","6","16384","60","Default","r07c4b12","2019-06-26 00:00:01"] -["80d1ace6-42d9-4092-9bd4-63554693712e","NutSetters","screw - Screwdriver","","mhannonj","Unknown","Unknown","Unknown","mhannonj","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] -["12276e05-a719-452e-8a4c-7dd770c6c2a6","NutSetters","screw - Screwdriver","","paxton","Unknown","Unknown","Unknown","paxton","Unknown","s1.xlarge","24","61440","480","Default","r01c3b12","2019-06-26 00:00:51"] -["8a33f4e7-54fb-486c-9d27-3c78b585514f","NutSetters","screw - Screwdriver","","jreadey","Unknown","Unknown","Unknown","jreadey","Unknown","m1.xlarge","24","61440","60","Default","r01c4b14","2019-06-26 00:00:05"] -["0595170f-ebab-4bcc-9829-cf5df77f7000","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["e1bb8815-3cc9-4034-b626-4ca35c99c4a5","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-EAR190021","Unknown","m1.small","2","4096","20","tacc","r01c4b05","2019-06-26 00:00:39"] -["06d8f85c-7323-46e4-af9c-4a660e9a20af","NutSetters","screw - Screwdriver","","sp0090","Unknown","Unknown","Unknown","sp0090","Unknown","m1.medium","6","16384","60","Default","r07c1b14","2019-06-26 00:00:18"] -["5b00f08b-ebb9-4c0f-a3c2-d35283262bca","NutSetters","screw - Screwdriver","","zking","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","zking","Ibis, Glossy","s1.xlarge","24","61440","480","Default","r07c1b07","2019-06-26 00:00:20"] -["d377ccf2-0961-4122-a018-3052ff5817af","NutSetters","screw - Screwdriver","","ishv99","Unknown","Unknown","Unknown","ishv99","Unknown","s1.xlarge","24","61440","480","Default","r02c4b15","2019-06-26 00:00:37"] -["d9c6696e-00dc-4f7f-a8e4-0cba809e128a","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.tiny","1","2048","8","tacc","r02c3b12","2019-06-26 00:00:37"] -["4927f68c-9a2d-4dd7-a137-e894bf0a4633","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c2b08","2019-06-26 00:00:51"] -["4f6a096e-bbfe-4032-b71c-6037b27cd94a","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r02c1b04","2019-06-26 00:00:21"] -["c243f468-b5cc-42aa-bd9c-60c985079c23","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.small","2","4096","20","tacc","r01c1b01","2019-06-26 03:51:54"] -["8b8c16aa-e661-4d64-a31f-13e47cef49bf","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b04","2019-06-26 00:00:41"] -["bbda8bbd-2137-4946-826b-0e5f2826cdc8","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r07c2b02","2019-06-26 00:00:24"] -["eceaf113-c326-4233-9efe-e0e8b734bdcf","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] -["a7fb7e11-d74d-491f-87e2-c6ff99a474f9","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r01c1b09","2019-06-26 13:00:25"] -["bac70a49-3785-46a4-b447-2d23ae2e8299","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r02c4b10","2019-06-26 00:00:47"] -["efefe2a5-7607-4eee-b5e3-8b1ff744f504","NutSetters","screw - Screwdriver","","ccompute","Unknown","Unknown","Unknown","TG-CDA170003","Unknown","s1.large","10","30720","240","tacc","r03c3b14","2019-06-26 06:13:25"] -["5f2e73e3-26fa-418d-b3d4-169f90e2d15a","NutSetters","screw - Screwdriver","","gmanipon","Unknown","Unknown","Unknown","TG-CDA180009","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] -["1bf46756-8d54-442e-9801-83910808b6ae","NutSetters","screw - Screwdriver","","tasmia","Unknown","Unknown","Unknown","tasmia","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] -["7b0f1ad8-ed4b-47e7-bba0-bcad34634f9a","NutSetters","screw - Screwdriver","","beshel","Unknown","Unknown","Unknown","beshel","Unknown","s1.xlarge","24","61440","480","Default","r06c4b05","2019-06-26 00:00:47"] -["fee7acad-258a-490a-a362-5417483191ad","NutSetters","screw - Screwdriver","","majdavis","Unknown","Unknown","Unknown","majdavis","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["1a8af402-3360-4221-8ab8-41c7adf45c8c","NutSetters","screw - Screwdriver","","devon","Unknown","Unknown","Unknown","devon","Unknown","m1.small","2","4096","20","Default","r06c4b10","2019-06-26 00:00:42"] -["87c3d541-5569-48cd-953a-7dc70f663133","NutSetters","screw - Screwdriver","","pcp","Engineering","Mechanical and Structural Systems","Mechanics and Materials","xdmod","Tern, Sandwich","m1.small","2","4096","20","adjunct","r03c1b08","2019-06-26 00:00:37"] -["a2b7efd0-0d7b-48a4-bba0-8da47e7c0231","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b07","2019-06-26 00:00:43"] -["d337316b-627c-433d-bd6f-df9c1e6303a0","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b12","2019-06-26 00:00:01"] -["edf89621-0cd4-48aa-b578-9b7ddc1a283e","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] -["f3dfb26e-9007-42c6-91f6-ad03949d4125","NutSetters","screw - Screwdriver","","UNKNOWN","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c4b03","2019-06-26 00:00:36"] -["0262293c-c4d8-4069-bb0f-5f00f0b8ab94","NutSetters","screw - Screwdriver","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r07c2b08","2019-06-26 00:00:56"] -["f3c9830d-c73c-4146-ab22-a0d52e931d22","NutSetters","screw - Screwdriver","","rdooley","Unknown","Unknown","Unknown","TG-CDA180007","Unknown","m1.medium","6","16384","60","tacc","r03c3b12","2019-06-26 00:00:39"] -["3466ddeb-079f-4cc9-9660-b827344ebefd","NutSetters","screw - Screwdriver","","adhage","Unknown","Unknown","Unknown","adhage","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] -["45fba7fe-5f7a-4cb3-a445-1b08f4052d2a","NutSetters","screw - Screwdriver","","jsdsmail","Unknown","Unknown","Unknown","jsdsmail","Unknown","m1.medium","6","16384","60","Default","r06c2b07","2019-06-26 00:00:21"] -["5fa98955-0944-4d3a-916f-87883237a9b1","NutSetters","screw - Screwdriver","","jomlowe","Unknown","Unknown","Unknown","jomlowe","Unknown","m1.small","2","4096","20","Default","r07c1b15","2019-06-26 00:00:19"] -["172df8e9-b2ec-4864-898d-a4d401de85f0","NutSetters","screw - Screwdriver","","wstuhr","Geosciences","Polar Programs","Polar Ocean and Climate Systems","wstuhr","Egret, Snowy","m1.small","2","4096","20","Default","r07c3b06","2019-06-26 00:00:12"] -["881ba8d5-8cb7-4cec-88a0-de29867e32c9","NutSetters","screw - Screwdriver","","nsokol","Unknown","Unknown","Unknown","nsokol","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] -["0a61640d-b915-41d2-a81b-474e01b8f089","NutSetters","screw - Screwdriver","","marcusc","Unknown","Unknown","Unknown","marcusc","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] -["862bbdd5-5ec2-43b8-b943-c60227f53b0f","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b04","2019-06-26 00:00:33"] -["91e76f8c-6c68-4cff-b8fd-3294456ea8ac","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c3b02","2019-06-26 00:00:36"] -["f73664e4-7207-42ea-ad55-180d27164a1f","NutSetters","screw - Screwdriver","","caninerv","Unknown","Unknown","Unknown","caninerv","Unknown","m1.medium","6","16384","60","Default","r06c1b07","2019-06-26 00:00:21"] -["0091a1c7-2984-4b53-8683-93ef3c922325","NutSetters","screw - Screwdriver","","jhallida","Unknown","Unknown","Unknown","jhallida","Unknown","m1.small","2","4096","20","Default","r03c1b08","2019-06-26 00:00:37"] -["0d8bbbdb-e755-4909-a250-9170459e5580","NutSetters","screw - Screwdriver","","cdosborn","Unknown","Unknown","Unknown","cdosborn","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["f1dc72da-c007-4a91-8412-b9b757719100","NutSetters","screw - Screwdriver","","dgilbert","Unknown","Unknown","Unknown","dgilbert","Unknown","m1.small","2","4096","20","Default","r06c2b07","2019-06-26 00:00:21"] -["f60ccb64-d856-4202-b2c8-f40009e12f2f","NutSetters","screw - Screwdriver","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] -["2ef90d32-7c86-449a-9e48-a19ee5f8b2ec","NutSetters","screw - Screwdriver","","rfmeraz","Unknown","Unknown","Unknown","rfmeraz","Unknown","m1.quad","4","10240","20","Default","r02c1b05","2019-06-26 00:00:10"] -["cc230bda-2521-4f13-99d5-db000a3ed565","NutSetters","screw - Screwdriver","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c1b06","2019-06-26 00:00:34"] -["eea732b8-53a5-421f-887b-afc7ad6c7577","NutSetters","screw - Screwdriver","","tassie","Unknown","Unknown","Unknown","tassie","Unknown","m1.medium","6","16384","60","Default","r03c3b13","2019-06-26 00:00:00"] -["88531a32-7dc2-41e8-bb9d-49143c927247","NutSetters","screw - Screwdriver","","dyhancoc","Unknown","Unknown","Unknown","dyhancoc","Unknown","m1.tiny","1","2048","8","Default","r06c4b06","2019-06-26 00:00:32"] -["8811b052-3bcf-4805-8c37-501a94b3bbed","NutSetters","screw - Screwdriver","","lhin","Unknown","Unknown","Unknown","lhin","Unknown","m1.small","2","4096","20","Default","r06c3b02","2019-06-26 00:00:36"] -["0d63ccb0-69dd-41fd-bc41-b815ee6d29b8","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r03c1b08","2019-06-26 00:00:37"] -["307066d5-0fd4-40fa-a887-c0c507d641fa","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.tiny","1","2048","8","Default","r07c1b12","2019-06-26 00:00:47"] -["24aa72d7-83e9-43e9-8571-ba3241aac403","NutSetters","screw - Screwdriver","","amitj","Unknown","Unknown","Unknown","amitj","Unknown","m1.small","2","4096","20","Default","r07c1b14","2019-06-26 00:00:18"] -["7b720c9c-33c1-48f0-b896-7da6013d9498","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["80471527-ddda-42fd-88b3-b2df8bcc5f7e","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["a4fbd089-6628-45c2-802f-3760d9f8dff7","NutSetters","screw - Screwdriver","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.small","2","4096","20","tacc","r06c2b04","2019-06-26 00:00:38"] -["22f9acb1-8e20-4512-9a14-1d6b7e4d71ea","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b14","2019-06-26 00:00:18"] -["3629851f-6caa-48e5-b091-25501c4913fd","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] -["4f4ffedc-1838-456d-ae6e-37b080b59eca","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b04","2019-06-26 00:00:51"] -["71c15136-7755-47bb-a48d-3e58cf3f9ae3","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c3b11","2019-06-26 00:00:07"] -["aeee4d91-64aa-43af-b884-29d6c6b5287c","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] -["f7635b04-1d25-454a-8aca-5c2da079a9cb","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r03c2b08","2019-06-26 00:00:37"] -["fc4d5de8-8412-40e7-aabc-69830aee1eaf","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c2b11","2019-06-26 00:00:48"] -["faf6ff94-19c7-472f-80c9-96819aea6f22","NutSetters","screw - Screwdriver","","cwardgar","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.medium","6","16384","60","tacc","r07c1b15","2019-06-26 00:00:19"] -["e16b8084-06a6-4203-ae62-5128ce42ea72","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:05"] -["6adb6e2b-f024-48ce-a30f-a4743f84e986","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","s1.large","10","30720","240","tacc","r06c1b01","2019-06-26 00:00:28"] -["4fe2017e-651c-4f86-b169-b8ea65f8edd0","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xlarge","24","61440","60","tacc","r07c1b08","2019-06-26 00:00:56"] -["29263b0a-c17d-46be-ab65-e52163b24001","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","60","tacc","r06c4b03","2019-06-26 01:00:04"] -["b18c7cae-b615-42af-abd4-7c80473743c7","NutSetters","screw - Screwdriver","","chastang","Unknown","Unknown","Unknown","TG-ATM160027","Unknown","m1.xxlarge","44","122880","480","tacc","r03c2b12","2019-06-26 00:00:57"] -["33d17b83-ecd1-4acb-9ee8-651cc0ec9864","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r02c2b08","2019-06-26 00:00:09"] -["c4c7cea6-b4f3-4a7a-955a-8478116302b0","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","m1.tiny","1","2048","8","Default","r03c4b07","2019-06-26 00:00:24"] -["e3bd9c68-7177-4908-b289-83a750e7e5c2","NutSetters","screw - Screwdriver","","cakers2","Unknown","Unknown","Unknown","cakers2","Unknown","s1.xlarge","24","61440","480","Default","r03c1b15","2019-06-26 00:00:02"] -["51edbaa0-d773-447c-8a77-25b249526fa3","NutSetters","screw - Screwdriver","","sidpath","Unknown","Unknown","Unknown","sidpath","Unknown","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["dcf6b123-9cbd-42aa-925f-077733101aa5","NutSetters","screw - Screwdriver","","gspeyer","Unknown","Unknown","Unknown","gspeyer","Unknown","m1.small","2","4096","20","Default","r06c2b06","2019-06-26 00:00:49"] -["c5db8df1-08dd-4f9c-80ae-31803cf402ed","NutSetters","screw - Screwdriver","","mpierce","Unknown","Unknown","Unknown","TG-DBS160006","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["cf76dceb-7349-419e-b517-287a4c797e79","NutSetters","screw - Screwdriver","","madrina","Unknown","Unknown","Unknown","madrina","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["20157572-2da7-4fc2-838d-d9528153d92c","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-ENG170037","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] -["73a5d032-43ea-47e4-84d4-467ca1dcde2b","NutSetters","screw - Screwdriver","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","m1.xxlarge","44","122880","60","tacc","r07c3b04","2019-06-26 00:00:18"] -["a91650f3-ccc6-4412-9bb1-95c37a4eddd5","NutSetters","screw - Screwdriver","","tg842548","Unknown","Unknown","Unknown","TG-ATM170024","Unknown","s1.xxlarge","44","122880","960","tacc","r03c2b01","2019-06-26 00:00:30"] -["14a98a0c-ab39-48d5-830f-578fd0711bc6","NutSetters","screw - Screwdriver","","agopu","Unknown","Unknown","Unknown","agopu","Unknown","m1.tiny","1","2048","8","Default","r06c1b13","2019-06-26 00:00:39"] -["2b69ef43-27b3-4d2e-b51c-a2877f78d751","NutSetters","screw - Screwdriver","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r03c1b04","2019-06-26 00:00:40"] -["f6688e09-456d-4d81-8e47-739d8271cc10","NutSetters","screw - Screwdriver","","padbrown","Unknown","Unknown","Unknown","padbrown","Unknown","m1.medium","6","16384","60","Default","r02c3b10","2019-06-26 00:00:40"] -["087c2472-c9c7-4849-828b-43281e8134a0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b10","2019-06-26 00:00:26"] -["689044ca-4778-47f5-9ead-e6655826c3e0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r02c2b11","2019-06-26 00:00:01"] -["841f2a04-2301-4092-b457-d71b148c60a0","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.medium","6","16384","60","tacc","r06c2b03","2019-06-26 15:00:16"] -["007be263-57c9-4404-9f9e-3fd3a1f1bf20","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b06","2019-06-26 00:00:00"] -["2f17849f-c7f8-499d-9b9a-c402c1006e13","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r03c1b01","2019-06-26 01:00:57"] -["3f31ee22-ef04-43a7-b6a9-5d812bf9fd48","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b08","2019-06-26 00:00:56"] -["43ea0a6c-149c-4652-81f6-eda9dc0c05c5","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c1b10","2019-06-26 00:00:04"] -["44e5fb97-daf8-4a9a-b152-971df247c56a","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] -["55fb77fa-3afe-4f7b-a3d8-3c9e68e76ae7","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] -["58f01a50-9b28-4f77-9e86-01991bef14a8","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c4b05","2019-06-26 00:00:39"] -["5c661ca4-52fb-489b-aabe-91c5a53f19c2","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c4b15","2019-06-26 00:00:37"] -["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b10","2019-06-26 00:00:52"] -["779faaf7-73f1-4cbe-bade-f2f22e2e0763","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c4b15","2019-06-26 00:00:52"] -["84d11422-ce49-4ea3-99b9-eef84a08cbbe","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c2b13","2019-06-26 00:00:14"] -["8f8b828a-d3f8-4c03-b3a3-bbd088a484ec","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r01c1b04","2019-06-26 00:00:08"] -["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b04","2019-06-26 00:00:04"] -["b49785d9-4311-4fe3-a1a8-5f2c0f0930d6","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r07c2b03","2019-06-26 00:00:04"] -["d8691e8e-7b2b-4a4b-b9e0-ab86a50e4580","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r06c3b03","2019-06-26 00:00:07"] -["e5974dad-efee-4a9f-b345-5f82ed4414f3","NutSetters","screw - Screwdriver","","xcgalaxy","Unknown","Unknown","Unknown","TG-MCB140147","Unknown","m1.large","10","30720","60","tacc","r02c1b07","2019-06-26 00:00:29"] -["3a7c3eb8-5ad6-4389-8d08-b55faea7cd50","NutSetters","screw - Screwdriver","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c2b11","2019-06-26 00:00:48"] -["72b97f40-76b6-4b5c-959e-654554f65441","NutSetters","screw - Screwdriver","","radmatt","Unknown","Unknown","Unknown","radmatt","Unknown","m1.medium","6","16384","60","Default","r07c1b02","2019-06-26 00:00:27"] -["f80c09fe-52df-4e77-8f28-274352b81b06","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b07","2019-06-26 00:00:11"] -["54c0198a-0bbe-4216-ac30-cf60b5bf6a03","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b13","2019-06-26 00:00:39"] -["801b8da9-94fb-4fcd-a7cf-345458b7d920","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["af4bfe9c-8f30-4af0-ac87-48b588c62695","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r07c1b14","2019-06-26 00:00:18"] -["c72f9562-7816-44d1-9e32-756ea1477a1a","NutSetters","screw - Screwdriver","","tg834267","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c1b06","2019-06-26 00:00:03"] -["e8f9732a-de87-4963-89fe-02165128c68c","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.small","2","4096","20","tacc","r06c3b03","2019-06-26 00:00:07"] -["ecc0fca7-66ce-406c-b739-e2f3c157dea6","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-4q","2","11264","20","tacc","r08g03","2019-06-26 00:00:39"] -["357a466b-8093-4e27-81ef-65d7a11871bd","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b11","2019-06-26 00:00:25"] -["9978fb58-2a7b-4961-b21b-3ab25e32d1f9","NutSetters","screw - Screwdriver","","tg457349","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.medium","6","16384","60","tacc","r02c1b05","2019-06-26 00:00:10"] -["c1579d78-026e-4ab9-ade1-28e86056796e","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["6dd79b93-f318-4c56-b331-fff288483b31","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","g1.v100x-16q","8","47104","20","tacc","r08g06","2019-06-26 00:00:08"] -["ca6c37a0-bcdd-4480-a84d-e2d60db8715f","NutSetters","screw - Screwdriver","","tg457074","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m2.medium","16","61440","60","tacc","r08c1b08","2019-06-26 00:00:05"] -["01ee20ab-8dde-409e-9556-5c7b55f9a2d8","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160003","Unknown","m1.xxlarge","44","122880","60","tacc","r01c3b03","2019-06-26 00:00:08"] -["1b5f0745-6efd-4247-a26c-f7cc23bdad59","NutSetters","screw - Screwdriver","","tg837136","Unknown","Unknown","Unknown","TG-DBS180009","Unknown","m1.medium","6","16384","60","tacc","r02c1b07","2019-06-26 00:00:29"] -["fe2d12dd-423e-4798-aa70-82f6eec4ff30","NutSetters","screw - Screwdriver","","pswargam","Unknown","Unknown","Unknown","pswargam","Unknown","m1.medium","6","16384","60","Default","r06c4b07","2019-06-26 00:00:53"] -["a3499254-a95a-4794-bd6c-6a54c406480a","NutSetters","screw - Screwdriver","","mjames","Unknown","Unknown","Unknown","mjames","Unknown","m1.xxlarge","44","122880","60","Default","r02c2b04","2019-06-26 00:00:54"] -["dec223e4-6d15-4902-bc8d-678b8e21ff47","NutSetters","screw - Screwdriver","","ramya1","Unknown","Unknown","Unknown","ramya1","Unknown","m1.tiny","1","2048","8","Default","r06c2b13","2019-06-26 00:00:14"] -["77b5f6a6-2a5b-4046-a0c3-34676bfb9cef","NutSetters","screw - Screwdriver","","bret","Unknown","Unknown","Unknown","bret","Unknown","m1.tiny","1","2048","8","Default","r02c4b04","2019-06-26 00:00:05"] -["9b726d6f-1cfd-4e0e-9315-a0daf7a174f1","NutSetters","screw - Screwdriver","","mesler","Unknown","Unknown","Unknown","TG-BIO170096","Unknown","m1.medium","6","16384","60","tacc","r07c1b01","2019-06-26 00:00:02"] -["da7ac9d8-dd99-4d1e-9e85-04ccf3395f19","NutSetters","screw - Screwdriver","","jeovany7","Unknown","Unknown","Unknown","jeovany7","Unknown","m1.tiny","1","2048","8","Default","r02c4b05","2019-06-26 00:00:19"] -["123708c9-c4ea-4f7b-9ea6-cdcb0c445ae4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] -["73926b1f-3c59-4c9e-810d-4607b2237eef","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c1b15","2019-06-26 00:00:19"] -["9a854394-904a-4a92-b56d-da9acb807f3b","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.tiny","1","2048","8","tacc","r07c4b10","2019-06-26 00:00:12"] -["d98824c4-f903-42e0-833e-4a87653aa63d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["04ac96c0-477b-43a0-b20f-12b3ec687443","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r01c4b02","2019-06-26 00:00:01"] -["0c8f4b51-f48f-43d0-9bd0-a4ae18a0ff50","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c3b03","2019-06-26 00:00:41"] -["22fb6441-a938-45c4-9eda-0d3fcb2242e4","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b12","2019-06-26 00:00:01"] -["335ec001-101d-4bc9-9584-f6431d1efd20","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c4b11","2019-06-26 00:00:08"] -["6e1df8f7-9f10-4f0f-8c5f-fbe3ce5c50a7","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r07c2b07","2019-06-26 00:00:17"] -["c51c6c38-5e6f-4da3-af9b-b62ffd85c181","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] -["e48481b8-3696-44cd-af7f-cc76e8b1816a","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.small","2","4096","20","tacc","r02c1b16","2019-06-26 00:00:26"] -["4da2876e-7dc6-477d-8ed6-a9b3102fa9aa","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b11","2019-06-26 00:00:28"] -["0f47b390-f15b-487d-847f-6a9bb1df40ac","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r03c1b09","2019-06-26 00:00:01"] -["2a59acc7-17a8-4485-8e7e-48913aee7b55","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c1b08","2019-06-26 00:00:57"] -["51a349c1-dd69-42ca-88aa-016d61c6b144","NutSetters","screw - Screwdriver","","scigap","Unknown","Unknown","Unknown","TG-CCR140004","Unknown","m1.medium","6","16384","60","tacc","r06c2b15","2019-06-26 00:00:12"] -["8d85ac29-2762-4674-b885-3561d5b98ffb","NutSetters","screw - Screwdriver","","andybeet","Unknown","Unknown","Unknown","andybeet","Unknown","m1.small","2","4096","20","Default","r01c4b03","2019-06-26 00:00:36"] -["0de66347-636d-4830-96b4-603c999541db","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] -["9aac0cb5-e16a-415b-a509-e681e4d4e561","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["b50ae469-6718-444d-9bbf-20d26634a41d","NutSetters","screw - Screwdriver","","hugogao","Unknown","Unknown","Unknown","hugogao","Unknown","m1.medium","6","16384","60","Default","r06c2b15","2019-06-26 00:00:12"] -["43d11768-1009-41ec-ad53-a06f62020924","NutSetters","screw - Screwdriver","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","m1.small","2","4096","20","tacc","r01c2b01","2019-06-26 00:00:05"] -["f3788ca3-1fa6-4b47-a0e4-db9f476f886e","NutSetters","screw - Screwdriver","","tg455671","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r01c2b01","2019-06-26 00:00:05"] -["26c2a839-35d6-4582-a0ed-16c5a06d291d","NutSetters","screw - Screwdriver","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b07","2019-06-26 00:00:11"] -["38bc4a3e-d0b6-4fe5-8e0c-68d4b83a5558","NutSetters","screw - Screwdriver","","ux445032","Unknown","Unknown","Unknown","TG-CDA170011","Unknown","p1.cda170011","4","8192","128","tacc","r06c3b02","2019-06-26 00:00:36"] -["14c39841-ca59-4924-913f-e830ba1f820b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.small","2","4096","20","tacc","r02c1b08","2019-06-26 00:00:16"] -["0493f004-af47-419f-8cb6-942b3b1fac12","NutSetters","screw - Screwdriver","","tg858644","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r01c4b02","2019-06-26 00:00:01"] -["8c14b2c2-88dc-4547-aba6-81b0902737c3","NutSetters","screw - Screwdriver","","tg858635","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r06c4b04","2019-06-26 00:00:30"] -["1fc48ba3-3f5b-45f6-8da4-8b08f8ea3256","NutSetters","screw - Screwdriver","","tg858636","Unknown","Unknown","Unknown","TG-CCR180043","Unknown","m1.quad","4","10240","20","tacc","r03c2b16","2019-06-26 00:00:29"] -["379b96da-a378-41ef-9f4f-f5d0a0b66d9d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c3b10","2019-06-26 00:00:40"] -["7da8978d-0330-4f24-a163-b2b0aa2de426","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["e5a9c587-3a56-4f7f-a3cc-c16af3fc54f6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-CCR180061","Unknown","m1.small","2","4096","20","tacc","r02c2b07","2019-06-26 00:00:09"] -["f76d6fe5-b89b-453a-abfd-4145798dea1c","NutSetters","screw - Screwdriver","","cldixon","Unknown","Unknown","Unknown","cldixon","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] -["0d7292d3-f244-41f5-b965-ad1f4445f3d5","NutSetters","screw - Screwdriver","","irberlui","Unknown","Unknown","Unknown","irberlui","Unknown","m1.medium","6","16384","60","Default","r06c4b06","2019-06-26 00:00:32"] -["839556a5-32ea-4801-83e5-2c251e4f9496","NutSetters","screw - Screwdriver","","steckm","Unknown","Unknown","Unknown","steckm","Unknown","m1.large","10","30720","60","Default","r06c1b14","2019-06-26 00:00:29"] -["f9f94f0e-3ba1-440f-a77c-1c2efcb91210","NutSetters","screw - Screwdriver","","cganote","Unknown","Unknown","Unknown","cganote","Unknown","m1.tiny","1","2048","8","Default","r02c1b10","2019-06-26 00:00:52"] -["950be30e-a275-4533-9d42-53df6145545b","NutSetters","screw - Screwdriver","","pmoriano","Unknown","Unknown","Unknown","pmoriano","Unknown","m1.tiny","1","2048","8","Default","r07c2b02","2019-06-26 00:00:24"] -["7f3a123c-c660-4f13-8d29-40327c6704db","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] -["598adf9a-315c-435d-a1ae-6d0aa072c2f7","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-CIE170055","Unknown","m1.medium","6","16384","60","tacc","r02c4b04","2019-06-26 00:00:05"] -["4e502181-cfcd-4139-85cd-590e02ad9b0d","NutSetters","screw - Screwdriver","","iwatson","Unknown","Unknown","Unknown","TG-GEO160010","Unknown","m1.medium","6","16384","60","tacc","r02c3b10","2019-06-26 00:00:40"] -["ba5fadc1-c717-4002-aba4-bd863e381d90","NutSetters","screw - Screwdriver","","smm6","Unknown","Unknown","Unknown","smm6","Unknown","m1.small","2","4096","20","Default","r06c1b13","2019-06-26 00:00:39"] -["0abf53f8-3458-4e17-b3b0-2ec1b83f8ee4","NutSetters","screw - Screwdriver","","vlevkov","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy","vlevkov","Ibis, Glossy","m1.tiny","1","2048","8","Default","r07c1b15","2019-06-26 00:00:19"] -["b5be32a5-e6ca-481f-af46-e53c302bf8e1","NutSetters","screw - Screwdriver","","vpenchv","Engineering","Mechanical and Structural Systems","Mechanics and Materials","vpenchv","Tern, Sandwich","m1.medium","6","16384","60","Default","r07c1b12","2019-06-26 00:00:47"] -["9c54e3ca-493c-402f-b08c-73c50469d5b3","NutSetters","screw - Screwdriver","","uma","Unknown","Unknown","Unknown","uma","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] -["6c124584-33fd-479a-a8d0-8ac8ba7e1371","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.large","10","30720","240","Default","r07c2b06","2019-06-26 01:48:20"] -["52c0b2a1-5c9f-4cab-8d58-f0b07b90f95b","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r02c4b10","2019-06-26 00:36:36"] -["c773a4d0-d4ce-4cd4-87cd-263e36ccd5cf","NutSetters","screw - Screwdriver","","kagra","Unknown","Unknown","Unknown","kagra","Unknown","s1.xlarge","24","61440","480","Default","r01c3b15","2019-06-26 06:06:56"] -["e9aa9c55-7800-48a5-b3c5-adcd7daca2b4","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.large","10","30720","240","Default","r07c1b02","2019-06-26 00:00:27"] -["359e855b-953f-445f-aebe-19bb4b4a0c22","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r06c1b12","2019-06-26 00:00:42"] -["56cc3381-7a82-4662-8eb5-8ace8f952fd2","NutSetters","screw - Screwdriver","","rperigo","Unknown","Unknown","Unknown","rperigo","Unknown","s1.xxlarge","44","122880","960","Default","r02c1b13","2019-06-26 00:00:54"] -["db2dc4aa-58c7-4c5e-b635-0cdcd7fbabf3","NutSetters","screw - Screwdriver","","maxmck7","Unknown","Unknown","Unknown","maxmck7","Unknown","m1.small","2","4096","20","Default","r07c2b13","2019-06-26 00:00:29"] -["65e78b06-3e64-4b62-aa7f-85ab9db38140","NutSetters","screw - Screwdriver","","akanna","Unknown","Unknown","Unknown","akanna","Unknown","m1.large","10","30720","60","Default","r06c3b03","2019-06-26 00:00:07"] -["95a59d3a-9cba-41a5-af10-a2dd1ccff628","NutSetters","screw - Screwdriver","","ssteady","Unknown","Unknown","Unknown","ssteady","Unknown","m1.quad","4","10240","20","Default","r07c2b13","2019-06-26 00:00:29"] -["4d5e602e-97b7-4839-8818-097d6bcc8e62","NutSetters","screw - Screwdriver","","virtual","Geosciences","Polar Programs","Polar Ocean and Climate Systems","virtual","Egret, Snowy","m1.small","2","4096","20","Default","r02c4b04","2019-06-26 00:00:05"] -["0cdc4c00-2f93-4399-9191-236c57c57491","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b15","2019-06-26 00:00:19"] -["0ffa15e9-825a-4852-892a-fcdd52cca744","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b12","2019-06-26 00:00:47"] -["1fac2573-5071-4460-bbf0-5016eb107e61","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c1b15","2019-06-26 00:00:50"] -["2467442a-77dd-4d96-b91e-7a6b45a050a1","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b10","2019-06-26 00:01:02"] -["24e8b8a0-2e63-4641-894a-8325ad5f9895","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b03","2019-06-26 00:00:01"] -["409bbceb-d979-43ce-bb6e-42f1e98c2148","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["42107ed1-3f63-4bfa-9957-094dac419db4","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b10","2019-06-26 00:00:42"] -["4660f4a9-2b9e-4501-961c-6f9d9b14f7a3","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["60a704fd-0d9d-4b14-a45d-15510dbe2496","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b13","2019-06-26 00:00:20"] -["8297ddd6-b9d9-4074-bbfb-2e301c6ade0a","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] -["8478604a-40bd-4ff2-91e7-36e7f379f390","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c2b11","2019-06-26 00:00:48"] -["848a4138-6199-4b97-9ca9-74aa5f89b807","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c1b05","2019-06-26 00:00:22"] -["9f2600fc-9c90-4fef-b939-e9943addb2bd","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b14","2019-06-26 00:00:18"] -["b29f4d37-07e5-487f-8d0f-2c4dfa065ef4","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b16","2019-06-26 00:00:55"] -["bc75c346-1088-4537-bc69-779c2ba9c5b3","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r03c1b08","2019-06-26 00:00:37"] -["c961fe87-e906-4ffd-bb0b-ffd9bf8b2cbf","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c4b03","2019-06-26 00:00:36"] -["d5b074f9-a37b-4f44-bf16-08581fb544c6","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c4b04","2019-06-26 00:00:05"] -["d6517ffd-8c30-43a3-a4d9-e64ca540b23a","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c3b04","2019-06-26 00:00:18"] -["d85684d2-1587-4029-96cd-366b1d3651fc","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r02c2b05","2019-06-26 00:00:21"] -["ec5bc29a-8773-4e6c-92ee-72799815615f","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c2b11","2019-06-26 00:00:48"] -["fab72e59-5e87-4309-84fd-06ea2920742b","NutSetters","screw - Screwdriver","","tg456058","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r06c4b05","2019-06-26 00:00:47"] -["b51b68e2-4ea1-43ea-8d93-39f719780e1c","NutSetters","screw - Screwdriver","","hannac","Unknown","Unknown","Unknown","TG-TRA160027","Unknown","m1.small","2","4096","20","tacc","r07c1b02","2019-06-26 00:00:27"] -["12f08e11-4e8c-4c01-b5c2-72acd3a3d110","NutSetters","screw - Screwdriver","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r03c4b13","2019-06-26 00:00:04"] -["65b13e09-17c1-421c-9dd1-91b5e277eb1f","NutSetters","screw - Screwdriver","","aculich","Unknown","Unknown","Unknown","TG-TRA150025","Unknown","m1.small","2","4096","20","tacc","r01c4b06","2019-06-26 00:00:29"] -["b35dd35d-2595-4c19-9df5-6ab52a19b14b","NutSetters","screw - Screwdriver","","phillity","Unknown","Unknown","Unknown","phillity","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["98a68982-58e2-47e3-a736-c8bef2357db0","NutSetters","screw - Screwdriver","","bberlin","Unknown","Unknown","Unknown","bberlin","Unknown","s1.xxlarge","44","122880","960","Default","r03c4b10","2019-06-26 00:00:19"] -["46a035f8-f2b0-44ba-8ec5-08559bb68803","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c3b05","2019-06-26 00:00:08"] -["7d734be4-8193-4c7a-84ab-0a9cf3072516","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r02c1b15","2019-06-26 00:00:50"] -["94b124b0-0bbf-4924-9f1e-c89e2e2069c5","NutSetters","screw - Screwdriver","","mniesen","Unknown","Unknown","Unknown","mniesen","Unknown","m1.xxlarge","44","122880","60","Default","r03c1b02","2019-06-26 00:00:02"] -["ccc5f86f-5ed5-432e-8b40-b80440a3a49b","NutSetters","screw - Screwdriver","","jselvam","Unknown","Unknown","Unknown","jselvam","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["83c285ea-1152-4008-97ce-3fe6a36259b8","NutSetters","screw - Screwdriver","","fils","Unknown","Unknown","Unknown","fils","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] -["f86d7a0e-c454-4026-bad8-920e11a97845","NutSetters","screw - Screwdriver","","kelumdi","Unknown","Unknown","Unknown","kelumdi","Unknown","m1.large","10","30720","60","Default","r03c2b06","2019-06-26 00:00:12"] -["3d3e8516-8971-4f0b-bbf6-51d8c3f79a20","NutSetters","screw - Screwdriver","","hudson89","Unknown","Unknown","Unknown","hudson89","Unknown","m1.xlarge","24","61440","60","Default","r07c2b08","2019-06-26 00:00:56"] -["d7d3305e-7223-4680-bd7b-deed31af0be9","NutSetters","screw - Screwdriver","","kemelian","Unknown","Unknown","Unknown","kemelian","Unknown","m1.xlarge","24","61440","60","Default","r06c3b10","2019-06-26 00:00:27"] -["87d17237-44a5-4480-b0c4-4ed6cb16141a","NutSetters","screw - Screwdriver","","tg857970","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["1cc05972-3d46-4490-8fab-1c6aa22094a8","NutSetters","screw - Screwdriver","","tg858245","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["73912317-8159-40c6-a3b7-a6989fe5ca7b","NutSetters","screw - Screwdriver","","tg858209","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["cb007931-77ae-4fd0-9418-15280593acf5","NutSetters","screw - Screwdriver","","tg853683","Unknown","Unknown","Unknown","TG-CIE170025","Unknown","g1.v100x-8q","4","22528","20","tacc","r08g02","2019-06-26 00:00:30"] -["9fd3ab5a-79c6-4908-b5c8-6630e5e664e5","NutSetters","screw - Screwdriver","","akamber2","Unknown","Unknown","Unknown","akamber2","Unknown","m1.small","2","4096","20","Default","r07c3b13","2019-06-26 00:00:36"] -["68f78d18-a9f2-4e00-8597-fe04ea53be85","NutSetters","screw - Screwdriver","","kmadappa","Unknown","Unknown","Unknown","kmadappa","Unknown","m1.medium","6","16384","60","Default","r03c4b02","2019-06-26 00:00:42"] -["795af622-3fda-44ee-8f8f-10c9ad1407e9","NutSetters","screw - Screwdriver","","ktyle","Unknown","Unknown","Unknown","ktyle","Unknown","m1.small","2","4096","20","Default","r02c2b09","2019-06-26 00:00:50"] -["0e37a693-d20c-4046-b75e-b5e29ebd432c","NutSetters","screw - Screwdriver","","j1axs01","Unknown","Unknown","Unknown","j1axs01","Unknown","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] -["9bb8cd73-c514-4f6d-af12-2ae28b64711e","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r06c3b11","2019-06-26 00:00:07"] -["acd5f004-097f-423a-8255-0ba1954c52a1","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r02c4b12","2019-06-26 00:00:59"] -["e5c37bb7-376f-4b46-bd04-6c7517efb0bc","NutSetters","screw - Screwdriver","","tx160085","Unknown","Unknown","Unknown","tx160085","Unknown","m1.medium","6","16384","60","Default","r07c1b15","2019-06-26 00:00:19"] -["0f04260f-152d-4973-a00e-547844e6650e","NutSetters","screw - Screwdriver","","zonca","Engineering","Mechanical and Structural Systems","Mechanics and Materials","zonca","Tern, Sandwich","m1.small","2","4096","20","Default","r06c3b07","2019-06-26 00:00:11"] -["24703158-bb10-46e9-9a4e-5939b1b9ec6f","NutSetters","screw - Screwdriver","","jhallida","Unknown","Unknown","Unknown","TG-BIO160064","Unknown","m1.medium","6","16384","60","tacc","r02c2b09","2019-06-26 00:00:50"] -["6f9c5759-4e90-45e9-9405-5ef522d34aac","NutSetters","screw - Screwdriver","","bmsamuel","Unknown","Unknown","Unknown","bmsamuel","Unknown","m1.medium","6","16384","60","Default","r06c3b04","2019-06-26 00:00:04"] -["3d599f20-2fbf-4b63-ae3f-8f83e26c7184","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r02c3b06","2019-06-26 01:00:59"] -["8b3b2b3c-e47e-4662-b05a-517773bb8a68","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r06c4b10","2019-06-26 00:00:42"] -["c138e77a-ad39-4912-8ce0-c0c1b3cd26e0","NutSetters","screw - Screwdriver","","jfischer","Unknown","Unknown","Unknown","jfischer","Unknown","m1.tiny","1","2048","8","Default","r07c1b01","2019-06-26 00:00:02"] -["592e585f-6da6-405e-b8d2-f1536fb4efc5","NutSetters","screw - Screwdriver","","megm","Unknown","Unknown","Unknown","megm","Unknown","m1.large","10","30720","60","Default","r06c3b05","2019-06-26 14:11:09"] -["d0c1892a-8fde-4c7c-87b7-0b45c0583840","NutSetters","screw - Screwdriver","","tantrung","Unknown","Unknown","Unknown","tantrung","Unknown","m1.tiny","1","2048","8","Default","r06c3b04","2019-06-26 00:00:04"] -["4d774298-d1ac-4a04-a193-3943dedb5423","NutSetters","screw - Screwdriver","","ntrip","Unknown","Unknown","Unknown","ntrip","Unknown","m1.medium","6","16384","60","Default","r02c4b15","2019-06-26 00:00:37"] -["d11655dd-79fe-4601-83ee-5646370e790a","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r06c4b06","2019-06-26 00:00:32"] -["e8a4cc65-84d9-434e-86c1-e22b207571af","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.tiny","1","2048","8","adjunct","r07c1b15","2019-06-26 00:00:19"] -["5ea4d354-4b39-49c0-91e0-91c0f0fdca59","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","m1.xxlarge","44","122880","60","adjunct","r02c2b03","2019-06-26 00:00:53"] -["5db3fe4c-90c6-40ca-a3f3-0e3537bfa338","NutSetters","screw - Screwdriver","","geo","Unknown","Unknown","Unknown","system","Unknown","s1.xxlarge","44","122880","960","adjunct","r06c2b09","2019-06-26 00:00:12"] -["498f1cac-aa33-4c0b-a318-ca6b922639eb","NutSetters","screw - Screwdriver","","nmebadi","Unknown","Unknown","Unknown","nmebadi","Unknown","m1.tiny","1","2048","8","Default","r07c2b10","2019-06-26 00:00:05"] -["1a25eeb4-1241-40c2-b4be-b56f22dfc1ba","NutSetters","screw - Screwdriver","","cboettig","Unknown","Unknown","Unknown","cboettig","Unknown","m1.medium","6","16384","60","Default","r03c1b09","2019-06-26 00:00:01"] -["8d9c140b-2892-4d44-a8c8-f2f1c7dc460a","NutSetters","screw - Screwdriver","","willarno","Geosciences","Polar Programs","Polar Ocean and Climate Systems","willarno","Egret, Snowy","m1.large","10","30720","60","Default","r07c1b16","2019-06-26 00:00:55"] -["3860f159-58c8-48b7-996f-74693d6e142f","NutSetters","screw - Screwdriver","","scanchi","Unknown","Unknown","Unknown","scanchi","Unknown","m1.medium","6","16384","60","Default","r02c4b13","2019-06-26 00:00:52"] -["4e8849f6-cc20-411f-b306-b8ee4347852c","NutSetters","screw - Screwdriver","","danidub","Unknown","Unknown","Unknown","danidub","Unknown","m1.small","2","4096","20","Default","r03c1b09","2019-06-26 00:00:01"] -["77688c7c-ca57-4a8c-b740-b6ceac247978","NutSetters","screw - Screwdriver","","fpsom","Unknown","Unknown","Unknown","fpsom","Unknown","m1.medium","6","16384","60","Default","r06c3b15","2019-06-26 00:00:16"] -["ada50cd5-db44-4472-a667-74faef966675","NutSetters","screw - Screwdriver","","tg457210","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.small","2","4096","20","tacc","r06c3b11","2019-06-26 00:00:07"] -["017e63f8-2ccc-42eb-8fb5-54e57193abec","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.medium","6","16384","60","tacc","r07c1b07","2019-06-26 00:00:20"] -["0ccfbf28-751f-46ff-9464-0c2c2fdd0bf7","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 19:57:51"] -["1844674d-a185-42ed-8514-4d63dcc74b80","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 17:01:10"] -["19230bbc-7a70-49d9-b275-431d7d7fc359","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:26:32"] -["1ab64d90-338b-47c9-86b5-aef59aaed13b","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 19:57:53"] -["2b8e52d4-2d8f-4d64-acf3-6e90f273d174","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b11","2019-06-26 16:38:52"] -["345a9249-ca13-4050-ae8b-a044998f49ac","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 17:00:49"] -["367a6254-6094-46b2-ac15-86f2b44667db","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 17:01:12"] -["38b43fea-e9e6-48bc-b505-cab4549622d1","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b06","2019-06-26 16:35:31"] -["392aea49-91e0-4e51-8633-d08314ea71a6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 17:01:01"] -["40201487-9071-428c-a902-dc4e52cec04d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 06:46:45"] -["413fb5c4-92f3-4977-8e30-bfc0ca08ae39","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c3b05","2019-06-26 10:54:19"] -["4776f42a-402a-480e-9236-f9d39c3df407","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b14","2019-06-26 17:00:52"] -["53037618-3a4d-4712-8ed9-3ddff09aadee","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b03","2019-06-26 11:05:34"] -["69a7f613-c74b-4377-b1bd-5f7cde77f256","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c1b13","2019-06-26 19:58:09"] -["6dd1d337-de03-4fa8-ad8a-63552a052190","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b04","2019-06-26 16:26:01"] -["6e4c48bd-6637-4074-9d16-9d31f607af6d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 20:36:16"] -["88b6e3e9-fd0a-4998-a3cf-acbdd9816a91","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b16","2019-06-26 16:38:32"] -["88d3e0e7-ad0f-41d7-a524-75bfe4d8992a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c1b10","2019-06-26 11:30:08"] -["9693d53c-bbc4-42ac-9d08-9ab38f3d472e","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b08","2019-06-26 20:36:30"] -["9a2415d4-38d6-4960-96f4-45a5f819d454","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b15","2019-06-26 17:00:54"] -["a08c7729-2196-4be4-b073-2274e9749a2a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 16:38:41"] -["a720649e-219a-42fd-945f-799a0f6b7e26","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 16:38:29"] -["a8d9db68-8d53-440f-9091-01878b2b4e8a","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c3b11","2019-06-26 16:39:01"] -["adb59b31-12ff-4129-b103-df552c4832ae","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c3b03","2019-06-26 19:57:48"] -["b13444fa-a76d-4351-9f1f-c7fca73e4a29","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] -["be428c97-58f2-4eb8-b09e-faa61d15a6ad","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 11:05:05"] -["bfc7a5d9-69bc-4cda-8c9c-34836ea9cc74","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c4b12","2019-06-26 16:38:43"] -["c443e3d7-81e2-4078-9228-a98c9cf3d6dd","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c2b07","2019-06-26 20:36:33"] -["c9baf336-9bd7-48d3-a74f-da1aa318a6fe","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 17:00:29"] -["cb5ec7d3-d58e-4e7c-b44a-175d7c8358a0","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c2b08","2019-06-26 19:58:14"] -["cf2095fc-0505-40fc-b7ca-0f0c0951d316","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 20:36:07"] -["dc8122aa-cc3b-4eef-8035-5128e02ce987","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:57"] -["dd4bf9c3-cd17-4dcb-b5b1-f8b3fa39075d","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r06c1b16","2019-06-26 19:58:00"] -["df3c5475-d67d-4531-9f73-4b1223ed98e3","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r07c4b13","2019-06-26 17:01:03"] -["e21965a4-255f-4346-af06-21e0997f8be8","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r01c2b11","2019-06-26 16:38:34"] -["e3edf674-b383-4950-8849-141a14996527","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b12","2019-06-26 19:58:06"] -["f080805c-2519-482f-bac3-724c1cdbfbf6","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b15","2019-06-26 19:57:56"] -["f5d341ae-2775-4bc9-9196-428107ab4590","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b02","2019-06-26 20:36:48"] -["f6f9fdde-2b15-481f-8f1f-89a850182e00","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r02c2b01","2019-06-26 20:36:25"] -["f839aadd-2ac7-4101-bf63-e673a8a88efe","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c3b14","2019-06-26 20:36:56"] -["fbd79a77-4ce3-4c69-9a81-763a14f7e3d4","NutSetters","screw - Screwdriver","","tg829096","Unknown","Unknown","Unknown","TG-MCB070039N","Unknown","m1.xlarge","24","61440","60","tacc","r03c4b03","2019-06-26 10:54:37"] -["93465331-6c1c-4fc6-95ff-ffa601d1d424","NutSetters","screw - Screwdriver","","bsayre","Unknown","Unknown","Unknown","bsayre","Unknown","m1.large","10","30720","120","Default","r03c2b11","2019-06-26 00:00:48"] -["47cfe663-63a7-4dd5-b96f-69296accc505","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r07c2b01","2019-06-26 00:00:10"] -["91a34535-24be-4aff-9f11-dd916410192c","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.small","2","4096","20","Default","r01c2b13","2019-06-26 00:00:08"] -["35e39c6f-7c4e-4e85-8df0-61b781f9d024","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r06c2b11","2019-06-26 00:00:28"] -["49655a01-ca42-4131-84f3-7df056db691a","NutSetters","screw - Screwdriver","","jppeters","Unknown","Unknown","Unknown","jppeters","Unknown","m1.medium","6","16384","60","Default","r03c2b15","2019-06-26 00:00:48"] -["aaa9031a-9d50-462f-96d0-e65056afd7ce","NutSetters","screw - Screwdriver","","jchuah","Unknown","Unknown","Unknown","jchuah","Unknown","m1.tiny","1","2048","8","Default","r02c1b11","2019-06-26 00:00:25"] -["4f13f65b-7005-432a-a051-f085fe1d4f38","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r02c3b02","2019-06-26 00:00:20"] -["8b4fe4e3-18d8-422c-b20a-debb0f0f29ac","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.small","2","4096","20","tacc","r07c1b01","2019-06-26 00:00:02"] -["aabd49fb-0b6c-4787-b717-0a6f7f943256","NutSetters","screw - Screwdriver","","willis8","Unknown","Unknown","Unknown","TG-BCS180023","Unknown","m1.medium","6","16384","60","tacc","r01c4b04","2019-06-26 00:00:46"] -["7dba2f39-9799-4347-b119-14bbbecdd6ec","NutSetters","screw - Screwdriver","","jhaber","Unknown","Unknown","Unknown","jhaber","Unknown","m1.xlarge","24","61440","60","Default","r07c1b06","2019-06-26 00:00:26"] -["93522185-0c41-4d9e-97c9-24ea6e2717e8","NutSetters","screw - Screwdriver","","sclevey","Unknown","Unknown","Unknown","sclevey","Unknown","m1.small","2","4096","20","Default","r02c3b10","2019-06-26 00:00:40"] -["111f50cc-d3ed-49ae-a8ac-135f15e61150","NutSetters","screw - Screwdriver","","sjmiller","Unknown","Unknown","Unknown","sjmiller","Unknown","m1.medium","6","16384","60","Default","r06c1b13","2019-06-26 00:00:39"] -["81a15df9-ca8d-4a1f-9958-370d980d0d01","NutSetters","screw - Screwdriver","","josconno","Unknown","Unknown","Unknown","josconno","Unknown","m1.medium","6","16384","60","Default","r02c4b04","2019-06-26 00:00:05"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json deleted file mode 100644 index 9770734f14..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fields-and-filters.json +++ /dev/null @@ -1,89 +0,0 @@ -["Local Job Id","Resource","PI Group"] -["965514","Mortorq","Arts"] -["2277129","Frearson","Mechanics and Materials"] -["2278289","Frearson","Mechanics and Materials"] -["2280582","Frearson","Mechanics and Materials"] -["2281719","Frearson","Mechanics and Materials"] -["2283011","Frearson","Mechanics and Materials"] -["2284170","Frearson","Mechanics and Materials"] -["2276367","Frearson","Mechanics and Materials"] -["2277515","Frearson","Mechanics and Materials"] -["2278652","Frearson","Mechanics and Materials"] -["2279817","Frearson","Mechanics and Materials"] -["2283415","Frearson","Mechanics and Materials"] -["2277514","Frearson","Mechanics and Materials"] -["2278288","Frearson","Mechanics and Materials"] -["2279028","Frearson","Mechanics and Materials"] -["2279816","Frearson","Mechanics and Materials"] -["2280583","Frearson","Mechanics and Materials"] -["2283010","Frearson","Mechanics and Materials"] -["2283780","Frearson","Mechanics and Materials"] -["2276029","Frearson","Mechanics and Materials"] -["2279419","Frearson","Mechanics and Materials"] -["2280952","Frearson","Mechanics and Materials"] -["2282190","Frearson","Mechanics and Materials"] -["2284537","Frearson","Mechanics and Materials"] -["2276028","Frearson","Mechanics and Materials"] -["2276742","Frearson","Mechanics and Materials"] -["2281355","Frearson","Mechanics and Materials"] -["2282191","Frearson","Mechanics and Materials"] -["2284538","Frearson","Mechanics and Materials"] -["992569","Mortorq","Arts"] -["992636","Mortorq","Arts"] -["2288365","Frearson","Mechanics and Materials"] -["2291016","Frearson","Mechanics and Materials"] -["2294671","Frearson","Mechanics and Materials"] -["2301876","Frearson","Mechanics and Materials"] -["2305417","Frearson","Mechanics and Materials"] -["2285666","Frearson","Mechanics and Materials"] -["2286842","Frearson","Mechanics and Materials"] -["2292204","Frearson","Mechanics and Materials"] -["2299515","Frearson","Mechanics and Materials"] -["2285268","Frearson","Mechanics and Materials"] -["2286052","Frearson","Mechanics and Materials"] -["2286841","Frearson","Mechanics and Materials"] -["2288364","Frearson","Mechanics and Materials"] -["2292205","Frearson","Mechanics and Materials"] -["2294670","Frearson","Mechanics and Materials"] -["2297063","Frearson","Mechanics and Materials"] -["2299516","Frearson","Mechanics and Materials"] -["2301877","Frearson","Mechanics and Materials"] -["2285269","Frearson","Mechanics and Materials"] -["2286426","Frearson","Mechanics and Materials"] -["2298323","Frearson","Mechanics and Materials"] -["2289247","Frearson","Mechanics and Materials"] -["2295886","Frearson","Mechanics and Materials"] -["2303092","Frearson","Mechanics and Materials"] -["2306562","Frearson","Mechanics and Materials"] -["2290103","Frearson","Mechanics and Materials"] -["2304240","Frearson","Mechanics and Materials"] -["2306563","Frearson","Mechanics and Materials"] -["1004733","Mortorq","Arts"] -["2310438","Frearson","Mechanics and Materials"] -["2312160","Frearson","Mechanics and Materials"] -["2310140","Frearson","Mechanics and Materials"] -["2311056","Frearson","Mechanics and Materials"] -["2312352","Frearson","Mechanics and Materials"] -["2310139","Frearson","Mechanics and Materials"] -["2310437","Frearson","Mechanics and Materials"] -["2310740","Frearson","Mechanics and Materials"] -["2311057","Frearson","Mechanics and Materials"] -["2311929","Frearson","Mechanics and Materials"] -["2312351","Frearson","Mechanics and Materials"] -["2313130","Frearson","Mechanics and Materials"] -["2308880","Frearson","Mechanics and Materials"] -["2309972","Frearson","Mechanics and Materials"] -["2310877","Frearson","Mechanics and Materials"] -["2311530","Frearson","Mechanics and Materials"] -["2312737","Frearson","Mechanics and Materials"] -["2313281","Frearson","Mechanics and Materials"] -["2309580","Frearson","Mechanics and Materials"] -["2310585","Frearson","Mechanics and Materials"] -["2311746","Frearson","Mechanics and Materials"] -["2312937","Frearson","Mechanics and Materials"] -["2313426","Frearson","Mechanics and Materials"] -["2308879","Frearson","Mechanics and Materials"] -["2309817","Frearson","Mechanics and Materials"] -["2311531","Frearson","Mechanics and Materials"] -["2312738","Frearson","Mechanics and Materials"] -["2313427","Frearson","Mechanics and Materials"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json deleted file mode 100644 index a063517990..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/jobs-fresh_install.json +++ /dev/null @@ -1,1312 +0,0 @@ -["Local Job Id","Resource","Service Provider","Timezone","System Username (Deidentified)","User","Organization","Quality of Service","Submit Time (Timestamp)","Start Time (Timestamp)","End Time (Timestamp)","Eligible Time (Timestamp)","Nodes","Cores","GPUs","Memory Used","Wall Time","Wait Time","Core Time","GPU Time","Exit Code","Exit State","Requested Cores","Requested memory","Requested Wall Time","Queue","Decanal Unit","Department","PI Group"] -["1012557[29]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288350","1483293912","1483230521","1","12","0","-1","5562","57829","66744","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[30]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288495","1483292972","1483230521","1","12","0","-1","4477","57974","53724","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[31]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288619","1483293176","1483230521","1","12","0","-1","4557","58098","54684","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[32]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288670","1483293468","1483230521","1","12","0","-1","4798","58149","57576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[33]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483288672","1483292962","1483230521","1","12","0","-1","4290","58151","51480","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[34]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289641","1483294183","1483230521","1","12","0","-1","4542","59120","54504","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[35]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289653","1483294283","1483230521","1","12","0","-1","4630","59132","55560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[36]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483289824","1483294346","1483230521","1","12","0","-1","4522","59303","54264","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[37]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483290566","1483295262","1483230521","1","12","0","-1","4696","60045","56352","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[38]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483291925","1483296248","1483230521","1","12","0","-1","4323","61404","51876","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[39]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292281","1483296708","1483230521","1","12","0","-1","4427","61760","53124","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[40]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292962","1483297444","1483230521","1","12","0","-1","4482","62441","53784","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[41]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483292973","1483297542","1483230521","1","12","0","-1","4569","62452","54828","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[42]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293176","1483297480","1483230521","1","12","0","-1","4304","62655","51648","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[43]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293468","1483298032","1483230521","1","12","0","-1","4564","62947","54768","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[44]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483293912","1483298792","1483230521","1","12","0","-1","4880","63391","58560","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[45]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294183","1483299108","1483230521","1","12","0","-1","4925","63662","59100","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[46]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294283","1483299006","1483230521","1","12","0","-1","4723","63762","56676","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[47]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483294346","1483299595","1483230521","1","12","0","-1","5249","63825","62988","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[48]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295212","1483300731","1483230521","1","12","0","-1","5519","64691","66228","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[49]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483295263","1483299479","1483230521","1","12","0","-1","4216","64742","50592","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6108925","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080369","1483232750","1483238034","1483080369","1","8","0","-1","5284","152381","42272","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6112983","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483166772","1483239075","1483243977","1483166772","1","8","0","-1","4902","72303","39216","0","0:0","COMPLETED","8","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6108976","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083320","1483222024","1483230247","1483083320","1","8","0","-1","8223","138704","65784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108977","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483083401","1483222024","1483230759","1483083401","1","8","0","-1","8735","138623","69880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108991","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483084371","1483222750","1483229088","1483084371","1","8","0","-1","6338","138379","50704","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108995","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085380","1483223112","1483234712","1483085380","1","8","0","-1","11600","137732","92800","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108996","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085590","1483223112","1483229540","1483085590","1","8","0","-1","6428","137522","51424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108997","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085746","1483223234","1483230389","1483085746","1","8","0","-1","7155","137488","57240","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108998","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085849","1483223234","1483229603","1483085849","1","8","0","-1","6369","137385","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6108999","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483085883","1483223355","1483229322","1483085883","1","8","0","-1","5967","137472","47736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109002","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086333","1483223598","1483230052","1483086333","1","8","0","-1","6454","137265","51632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109003","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086372","1483223598","1483230207","1483086372","1","8","0","-1","6609","137226","52872","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109004","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086630","1483223598","1483229043","1483086630","1","8","0","-1","5445","136968","43560","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109007","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086757","1483223719","1483229287","1483086757","1","8","0","-1","5568","136962","44544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109008","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086851","1483223719","1483229022","1483086851","1","8","0","-1","5303","136868","42424","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109010","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483086869","1483223719","1483229903","1483086869","1","8","0","-1","6184","136850","49472","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109011","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087068","1483223840","1483229090","1483087068","1","8","0","-1","5250","136772","42000","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109017","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087348","1483223961","1483229678","1483087348","1","8","0","-1","5717","136613","45736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109020","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087552","1483224082","1483228824","1483087552","1","8","0","-1","4742","136530","37936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109024","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087885","1483224204","1483229349","1483087885","1","8","0","-1","5145","136319","41160","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109025","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483087997","1483224325","1483230127","1483087997","1","8","0","-1","5802","136328","46416","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109027","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088108","1483224446","1483229274","1483088108","1","8","0","-1","4828","136338","38624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109030","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088363","1483224446","1483229480","1483088363","1","8","0","-1","5034","136083","40272","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109032","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088713","1483224566","1483231633","1483088713","1","8","0","-1","7067","135853","56536","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109033","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088719","1483224566","1483230228","1483088719","1","8","0","-1","5662","135847","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109034","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088738","1483224566","1483229332","1483088738","1","8","0","-1","4766","135828","38128","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109035","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088782","1483224566","1483230787","1483088782","1","8","0","-1","6221","135784","49768","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109036","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088824","1483224566","1483229580","1483088824","1","8","0","-1","5014","135742","40112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109037","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088866","1483224687","1483231394","1483088866","1","8","0","-1","6707","135821","53656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109038","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483088941","1483224687","1483230384","1483088941","1","8","0","-1","5697","135746","45576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109039","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089098","1483224687","1483229672","1483089098","1","8","0","-1","4985","135589","39880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109040","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089159","1483224687","1483228992","1483089159","1","8","0","-1","4305","135528","34440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109041","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089488","1483224687","1483230409","1483089488","1","8","0","-1","5722","135199","45776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109044","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089787","1483224687","1483229177","1483089787","1","8","0","-1","4490","134900","35920","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109046","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483089959","1483224808","1483229815","1483089959","1","8","0","-1","5007","134849","40056","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109047","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090136","1483224808","1483229901","1483090136","1","8","0","-1","5093","134672","40744","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109048","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090183","1483224808","1483229514","1483090183","1","8","0","-1","4706","134625","37648","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109051","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090770","1483224808","1483229619","1483090770","1","8","0","-1","4811","134038","38488","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109052","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090793","1483224808","1483229126","1483090793","1","8","0","-1","4318","134015","34544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109053","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090812","1483224929","1483231271","1483090812","1","8","0","-1","6342","134117","50736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109054","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090864","1483224929","1483230715","1483090864","1","8","0","-1","5786","134065","46288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109055","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483090919","1483224929","1483230261","1483090919","1","8","0","-1","5332","134010","42656","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109056","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091023","1483225050","1483231751","1483091023","1","8","0","-1","6701","134027","53608","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109057","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091053","1483225050","1483230871","1483091053","1","8","0","-1","5821","133997","46568","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109058","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091231","1483225050","1483229940","1483091231","1","8","0","-1","4890","133819","39120","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109059","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091458","1483225171","1483231609","1483091458","1","8","0","-1","6438","133713","51504","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109060","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091633","1483225171","1483229708","1483091633","1","8","0","-1","4537","133538","36296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109061","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091834","1483225171","1483230308","1483091834","1","8","0","-1","5137","133337","41096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109062","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483091958","1483225171","1483230781","1483091958","1","8","0","-1","5610","133213","44880","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109063","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092218","1483225412","1483230799","1483092218","1","8","0","-1","5387","133194","43096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109064","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092233","1483225533","1483231071","1483092233","1","8","0","-1","5538","133300","44304","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109065","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092254","1483225533","1483231436","1483092254","1","8","0","-1","5903","133279","47224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109066","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092263","1483225533","1483232483","1483092263","1","8","0","-1","6950","133270","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109067","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092267","1483225533","1483230237","1483092267","1","8","0","-1","4704","133266","37632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109068","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092363","1483225533","1483230561","1483092363","1","8","0","-1","5028","133170","40224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109069","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092400","1483225533","1483231113","1483092400","1","8","0","-1","5580","133133","44640","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109072","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092705","1483225533","1483230470","1483092705","1","8","0","-1","4937","132828","39496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109073","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092793","1483225654","1483231218","1483092793","1","8","0","-1","5564","132861","44512","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109074","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092840","1483225654","1483231087","1483092840","1","8","0","-1","5433","132814","43464","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109075","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483092891","1483225654","1483230733","1483092891","1","8","0","-1","5079","132763","40632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109077","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093085","1483225897","1483231591","1483093085","1","8","0","-1","5694","132812","45552","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109078","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093167","1483225897","1483231551","1483093167","1","8","0","-1","5654","132730","45232","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109079","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093391","1483225897","1483230730","1483093391","1","8","0","-1","4833","132506","38664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109080","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093636","1483225897","1483231622","1483093636","1","8","0","-1","5725","132261","45800","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109081","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093739","1483225897","1483231858","1483093739","1","8","0","-1","5961","132158","47688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109082","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093894","1483225897","1483232891","1483093894","1","8","0","-1","6994","132003","55952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109083","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483093912","1483225897","1483231168","1483093912","1","8","0","-1","5271","131985","42168","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109084","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094011","1483225897","1483231651","1483094011","1","8","0","-1","5754","131886","46032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109085","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094148","1483225897","1483232847","1483094148","1","8","0","-1","6950","131749","55600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109086","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094155","1483225897","1483230146","1483094155","1","8","0","-1","4249","131742","33992","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109088","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094167","1483225897","1483230641","1483094167","1","8","0","-1","4744","131730","37952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109089","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094195","1483225897","1483230934","1483094195","1","8","0","-1","5037","131702","40296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109090","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094216","1483225897","1483230451","1483094216","1","8","0","-1","4554","131681","36432","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109091","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094281","1483225897","1483230400","1483094281","1","8","0","-1","4503","131616","36024","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109092","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094288","1483226018","1483233119","1483094288","1","8","0","-1","7101","131730","56808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109093","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094368","1483226018","1483232610","1483094368","1","8","0","-1","6592","131650","52736","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109094","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094474","1483226138","1483234341","1483094474","1","8","0","-1","8203","131664","65624","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109095","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094479","1483226138","1483232492","1483094479","1","8","0","-1","6354","131659","50832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109096","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094558","1483226138","1483232894","1483094558","1","8","0","-1","6756","131580","54048","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109097","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094775","1483226138","1483232289","1483094775","1","8","0","-1","6151","131363","49208","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109098","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094807","1483226138","1483232114","1483094807","1","8","0","-1","5976","131331","47808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109099","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094833","1483226138","1483232015","1483094833","1","8","0","-1","5877","131305","47016","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109100","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094912","1483226138","1483233025","1483094912","1","8","0","-1","6887","131226","55096","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109101","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094975","1483226138","1483232621","1483094975","1","8","0","-1","6483","131163","51864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109102","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094987","1483226138","1483234366","1483094987","1","8","0","-1","8228","131151","65824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109103","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483094991","1483226138","1483232522","1483094991","1","8","0","-1","6384","131147","51072","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109104","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095009","1483226138","1483232507","1483095009","1","8","0","-1","6369","131129","50952","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109105","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095189","1483226138","1483231768","1483095189","1","8","0","-1","5630","130949","45040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109106","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095277","1483226138","1483232267","1483095277","1","8","0","-1","6129","130861","49032","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109107","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095298","1483226138","1483232799","1483095298","1","8","0","-1","6661","130840","53288","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109108","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095351","1483226138","1483234568","1483095351","1","8","0","-1","8430","130787","67440","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109109","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095358","1483226138","1483232335","1483095358","1","8","0","-1","6197","130780","49576","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109110","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095544","1483226138","1483231291","1483095544","1","8","0","-1","5153","130594","41224","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109111","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095597","1483226380","1483232113","1483095597","1","8","0","-1","5733","130783","45864","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109112","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095604","1483226865","1483234633","1483095604","1","8","0","-1","7768","131261","62144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109113","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095694","1483226865","1483234290","1483095694","1","8","0","-1","7425","131171","59400","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109114","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095721","1483226865","1483233753","1483095721","1","8","0","-1","6888","131144","55104","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109115","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095768","1483226865","1483233616","1483095768","1","8","0","-1","6751","131097","54008","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109118","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095846","1483226986","1483234657","1483095846","1","8","0","-1","7671","131140","61368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109119","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095859","1483226986","1483233892","1483095859","1","8","0","-1","6906","131127","55248","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109120","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483095887","1483226986","1483233575","1483095887","1","8","0","-1","6589","131099","52712","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109121","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096300","1483227108","1483234301","1483096300","1","8","0","-1","7193","130808","57544","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109122","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096337","1483227108","1483233337","1483096337","1","8","0","-1","6229","130771","49832","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109123","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096407","1483227108","1483233594","1483096407","1","8","0","-1","6486","130701","51888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109124","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096437","1483227108","1483232578","1483096437","1","8","0","-1","5470","130671","43760","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109125","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096476","1483227229","1483233053","1483096476","1","8","0","-1","5824","130753","46592","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109127","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096578","1483227229","1483233243","1483096578","1","8","0","-1","6014","130651","48112","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109128","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096603","1483227229","1483234670","1483096603","1","8","0","-1","7441","130626","59528","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109130","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096756","1483227229","1483232190","1483096756","1","8","0","-1","4961","130473","39688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109131","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483096785","1483227229","1483232539","1483096785","1","8","0","-1","5310","130444","42480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109132","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097110","1483227229","1483233030","1483097110","1","8","0","-1","5801","130119","46408","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109135","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097235","1483227229","1483233122","1483097235","1","8","0","-1","5893","129994","47144","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109138","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097431","1483227350","1483233175","1483097431","1","8","0","-1","5825","129919","46600","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109139","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097452","1483227350","1483232730","1483097452","1","8","0","-1","5380","129898","43040","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109141","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097541","1483227471","1483233569","1483097541","1","8","0","-1","6098","129930","48784","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109142","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097655","1483227593","1483232801","1483097655","1","8","0","-1","5208","129938","41664","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109143","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097661","1483227714","1483233952","1483097661","1","8","0","-1","6238","130053","49904","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109144","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483097697","1483227714","1483232581","1483097697","1","8","0","-1","4867","130017","38936","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109147","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098258","1483227835","1483232822","1483098258","1","8","0","-1","4987","129577","39896","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109148","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483098518","1483227835","1483232432","1483098518","1","8","0","-1","4597","129317","36776","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109149","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099136","1483227955","1483233558","1483099136","1","8","0","-1","5603","128819","44824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109150","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099286","1483228197","1483233558","1483099286","1","8","0","-1","5361","128911","42888","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109151","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099326","1483228439","1483233751","1483099326","1","8","0","-1","5312","129113","42496","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109152","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099456","1483228439","1483233268","1483099456","1","8","0","-1","4829","128983","38632","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109153","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099592","1483228439","1483232901","1483099592","1","8","0","-1","4462","128847","35696","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109154","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099600","1483228439","1483233450","1483099600","1","8","0","-1","5011","128839","40088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109155","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099637","1483228560","1483234656","1483099637","1","8","0","-1","6096","128923","48768","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109156","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099646","1483228560","1483234288","1483099646","1","8","0","-1","5728","128914","45824","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109157","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099717","1483228680","1483234692","1483099717","1","8","0","-1","6012","128963","48096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109158","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099730","1483228801","1483234361","1483099730","1","8","0","-1","5560","129071","44480","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109159","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099925","1483228801","1483234374","1483099925","1","8","0","-1","5573","128876","44584","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109160","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099982","1483228801","1483233674","1483099982","1","8","0","-1","4873","128819","38984","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109161","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483099997","1483228922","1483234584","1483099997","1","8","0","-1","5662","128925","45296","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109162","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100041","1483229043","1483234665","1483100041","1","8","0","-1","5622","129002","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109163","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100045","1483229043","1483234665","1483100045","1","8","0","-1","5622","128998","44976","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109164","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100124","1483229165","1483234673","1483100124","1","8","0","-1","5508","129041","44064","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109165","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100146","1483229165","1483234501","1483100146","1","8","0","-1","5336","129019","42688","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109166","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100211","1483229165","1483234641","1483100211","1","8","0","-1","5476","128954","43808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109167","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100300","1483229285","1483234647","1483100300","1","8","0","-1","5362","128985","42896","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109168","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100338","1483229285","1483234636","1483100338","1","8","0","-1","5351","128947","42808","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109169","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100388","1483229406","1483233928","1483100388","1","8","0","-1","4522","129018","36176","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109170","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100468","1483229406","1483234292","1483100468","1","8","0","-1","4886","128938","39088","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109171","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100470","1483229406","1483234322","1483100470","1","8","0","-1","4916","128936","39328","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109172","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100822","1483229406","1483234324","1483100822","1","8","0","-1","4918","128584","39344","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109173","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100837","1483229527","1483234696","1483100837","1","8","0","-1","5169","128690","41352","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109174","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483100960","1483229527","1483234016","1483100960","1","8","0","-1","4489","128567","35912","0","0:0","COMPLETED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109175","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101004","1483229648","1483234673","1483101004","1","8","0","-1","5025","128644","40200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109176","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101005","1483229648","1483234695","1483101005","1","8","0","-1","5047","128643","40376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109177","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101140","1483229648","1483234700","1483101140","1","8","0","-1","5052","128508","40416","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109178","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101266","1483229648","1483234665","1483101266","1","8","0","-1","5017","128382","40136","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109179","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101273","1483229769","1483234646","1483101273","1","8","0","-1","4877","128496","39016","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109180","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101441","1483229769","1483234726","1483101441","1","8","0","-1","4957","128328","39656","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109181","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101453","1483229769","1483234671","1483101453","1","8","0","-1","4902","128316","39216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109182","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101592","1483229769","1483234656","1483101592","1","8","0","-1","4887","128177","39096","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109183","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101611","1483229890","1483234717","1483101611","1","8","0","-1","4827","128279","38616","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109184","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101690","1483230012","1483234653","1483101690","1","8","0","-1","4641","128322","37128","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109185","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101712","1483230012","1483234658","1483101712","1","8","0","-1","4646","128300","37168","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109186","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101735","1483230133","1483234680","1483101735","1","8","0","-1","4547","128398","36376","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109187","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101747","1483230254","1483234656","1483101747","1","8","0","-1","4402","128507","35216","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109188","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101761","1483230254","1483234669","1483101761","1","8","0","-1","4415","128493","35320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109189","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101789","1483230254","1483234654","1483101789","1","8","0","-1","4400","128465","35200","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109190","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101824","1483230497","1483234657","1483101824","1","8","0","-1","4160","128673","33280","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109191","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101838","1483230497","1483234681","1483101838","1","8","0","-1","4184","128659","33472","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109192","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483101940","1483230497","1483234701","1483101940","1","8","0","-1","4204","128557","33632","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109193","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102021","1483230739","1483234665","1483102021","1","8","0","-1","3926","128718","31408","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109194","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102063","1483230861","1483234657","1483102063","1","8","0","-1","3796","128798","30368","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109195","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102305","1483230861","1483234681","1483102305","1","8","0","-1","3820","128556","30560","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["6109196","Robertson","screw - Screwdriver","UTC","","Honey-buzzard","Screwdriver","curry","1483102420","1483230982","1483234647","1483102420","1","8","0","-1","3665","128562","29320","0","1:0","FAILED","8","2147486448Mn","108000","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1012557[74]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483305309","1483309059","1483230521","1","12","0","-1","3750","74788","45000","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[50]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296248","1483300942","1483230521","1","12","0","-1","4694","65727","56328","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[51]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483296708","1483301965","1483230521","1","12","0","-1","5257","66187","63084","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[52]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297445","1483302424","1483230521","1","12","0","-1","4979","66924","59748","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[53]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297480","1483302365","1483230521","1","12","0","-1","4885","66959","58620","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[54]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483297542","1483302018","1483230521","1","12","0","-1","4476","67021","53712","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[55]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298032","1483303026","1483230521","1","12","0","-1","4994","67511","59928","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[56]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483298793","1483303445","1483230521","1","12","0","-1","4652","68272","55824","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[57]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299007","1483303788","1483230521","1","12","0","-1","4781","68486","57372","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[58]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299108","1483303864","1483230521","1","12","0","-1","4756","68587","57072","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[59]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299479","1483304996","1483230521","1","12","0","-1","5517","68958","66204","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[60]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483299596","1483303401","1483230521","1","12","0","-1","3805","69075","45660","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[61]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300731","1483304682","1483230521","1","12","0","-1","3951","70210","47412","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[62]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483300943","1483306491","1483230521","1","12","0","-1","5548","70422","66576","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[67]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303027","1483306986","1483230521","1","12","0","-1","3959","72506","47508","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[68]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303402","1483307160","1483230521","1","12","0","-1","3758","72881","45096","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[70]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303788","1483307453","1483230521","1","12","0","-1","3665","73267","43980","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[71]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483303865","1483308086","1483230521","1","12","0","-1","4221","73344","50652","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["1012557[72]","Mortorq","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","bumbleberry","1483230521","1483304682","1483308627","1483230521","1","12","0","-1","3945","74161","47340","0","0:0","COMPLETED","12","96000Mn","43200","nann","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6108929","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483080673","1483231918","1483246389","1483080673","2","16","0","-1","14471","151245","231536","0","1:0","TIMEOUT","16","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["6113332","Robertson","screw - Screwdriver","UTC","","Dunlin","Screwdriver","curry","1483168273","1483236943","1483251439","1483168273","2","24","0","-1","14496","68670","347904","0","1:0","TIMEOUT","24","2147486448Mn","14400","white","Biological Sciences","Environmental Biology","Systematic and Population Biology"] -["2309861","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241326","1483275726","1483241326","1","16","0","-1","34400","0","550400","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309884","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241632","1483241632","1483276573","1483241632","1","16","0","-1","34941","0","559056","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6117519","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250316","1483250340","1483285217","1483250316","1","1","0","-1","34877","24","34877","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6119997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277789","1483277815","1483304416","1483277789","1","1","0","-1","26601","26","26601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277799","1483277815","1483297012","1483277799","1","1","0","-1","19197","16","19197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483309448","1483290531","1","1","0","-1","18901","16","18901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120350","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290531","1483290547","1483314965","1483290531","1","1","0","-1","24418","16","24418","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291123","1483291148","1483309307","1483291123","1","1","0","-1","18159","25","18159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291124","1483291148","1483311554","1483291124","1","1","0","-1","20406","24","20406","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483314764","1483291498","1","1","0","-1","23254","12","23254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291498","1483291510","1483310198","1483291498","1","1","0","-1","18688","12","18688","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["2308432","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483231015","1483231016","1483252678","1483231015","1","16","0","-1","21662","1","346592","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309845","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483240905","1483240916","1483264210","1483240905","1","16","0","-1","23294","11","372704","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2309860","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241321","1483241326","1483275836","1483241321","1","16","0","-1","34510","5","552160","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6115789","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233680","1483233777","1483262633","1483233680","1","1","0","-1","28856","97","28856","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117558","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250375","1483250591","1483284587","1483250375","1","1","0","-1","33996","216","33996","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117561","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250385","1483250591","1483275064","1483250385","1","1","0","-1","24473","206","24473","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117576","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250424","1483250716","1483285752","1483250424","1","1","0","-1","35036","292","35036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277851","1483278055","1483297236","1483277851","1","1","0","-1","19181","204","19181","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277897","1483278295","1483314227","1483277897","1","1","0","-1","35932","398","35932","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277902","1483278295","1483299228","1483277902","1","1","0","-1","20933","393","20933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277948","1483278535","1483307536","1483277948","1","1","0","-1","29001","587","29001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120115","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277958","1483278535","1483309618","1483277958","1","1","0","-1","31083","577","31083","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120140","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277980","1483278655","1483309089","1483277980","1","1","0","-1","30434","675","30434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120150","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483277995","1483278776","1483309421","1483277995","1","1","0","-1","30645","781","30645","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483278052","1483279016","1483302406","1483278052","1","1","0","-1","23390","964","23390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287733","1483288145","1483308104","1483287733","1","1","0","-1","19959","412","19959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483287738","1483288145","1483313129","1483287738","1","1","0","-1","24984","407","24984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120343","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290456","1483290547","1483312223","1483290456","1","1","0","-1","21676","91","21676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290582","1483290667","1483314627","1483290582","1","1","0","-1","23960","85","23960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120363","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483313406","1483290679","1","1","0","-1","22619","108","22619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120367","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290679","1483290787","1483309066","1483290679","1","1","0","-1","18279","108","18279","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120380","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483290972","1483291028","1483313591","1483290972","1","1","0","-1","22563","56","22563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483314051","1483291085","1","1","0","-1","22903","63","22903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291085","1483291148","1483312361","1483291085","1","1","0","-1","21213","63","21213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291185","1483291269","1483315123","1483291185","1","1","0","-1","23854","84","23854","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291478","1483291510","1483314889","1483291478","1","1","0","-1","23379","32","23379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483313217","1483291694","1","1","0","-1","21466","57","21466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483314996","1483291694","1","1","0","-1","23245","57","23245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483309886","1483291694","1","1","0","-1","18135","57","18135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483312872","1483291694","1","1","0","-1","21121","57","21121","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310758","1483291694","1","1","0","-1","19007","57","19007","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311228","1483291694","1","1","0","-1","19477","57","19477","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483311251","1483291694","1","1","0","-1","19500","57","19500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120441","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291694","1483291751","1483310302","1483291694","1","1","0","-1","18551","57","18551","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120447","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310421","1483291774","1","1","0","-1","18550","97","18550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120448","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483291774","1483291871","1483310491","1483291774","1","1","0","-1","18620","97","18620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483313528","1483292046","1","1","0","-1","21416","66","21416","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120461","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483312309","1483292046","1","1","0","-1","20197","66","20197","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6120462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483292046","1483292112","1483314786","1483292046","1","1","0","-1","22674","66","22674","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115525[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231224","1483251512","1483230137","1","12","0","-1","20288","1090","243456","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483236943","1483257688","1483230268","1","12","0","-1","20745","6678","248940","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[59]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483238516","1483268469","1483230268","1","12","0","-1","29953","8251","359436","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115537[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230317","1483240424","1483259619","1483230317","1","12","0","-1","19195","10107","230340","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115539[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230378","1483248057","1483270798","1483230379","1","12","0","-1","22741","17679","272892","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[18]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259700","1483280279","1483245145","1","12","0","-1","20579","14555","246948","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[46]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483260934","1483280736","1483245145","1","12","0","-1","19802","15789","237624","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116050","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240024","1483272770","1483295769","1483240024","8","96","0","-1","22999","32746","2207904","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6116051","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1483240051","1483273371","1483295772","1483240051","8","96","0","-1","22401","33320","2150496","0","0:0","CANCELLED by 458753","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1004733","Mortorq","screw - Screwdriver","UTC","","Redpoll, Lesser","Screwdriver","cherry","1483207214","1483207214","1483270166","1483207214","1","4","0","-1","62952","0","251808","0","0:0","COMPLETED","4","2147491648Mn","3596400","pita","Humanities\/Arts","Arts","Arts"] -["6113839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200024","1483200053","1483264736","1483200024","1","1","0","-1","64683","29","64683","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115604","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231323","1483231346","1483289925","1483231323","1","1","0","-1","58579","23","58579","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116091","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240958","1483240975","1483289936","1483240958","1","1","0","-1","48961","17","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241082","1483241099","1483289936","1483241082","1","1","0","-1","48837","17","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241091","1483241099","1483289936","1483241091","1","1","0","-1","48837","8","48837","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116098","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483241097","1483241099","1483289937","1483241097","1","1","0","-1","48838","2","48838","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115303","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483221161","1483221173","1483257175","1483221161","1","1","0","-1","36002","12","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115438","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225756","1483225776","1483261776","1483225756","1","1","0","-1","36000","20","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115457","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226357","1483226380","1483262380","1483226357","1","1","0","-1","36000","23","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119921","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264580","1483264584","1483307795","1483264580","1","1","0","-1","43211","4","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119923","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264696","1483264704","1483307916","1483264696","1","1","0","-1","43212","8","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["2309863","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483241326","1483241329","1483291507","1483241326","1","16","0","-1","50178","3","802848","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6113101","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167526","1483167673","1483230521","1483167526","1","1","0","-1","62848","147","62848","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113155","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167624","1483168044","1483231590","1483167624","1","1","0","-1","63546","420","63546","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113185","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167713","1483168293","1483231990","1483167713","1","1","0","-1","63697","580","63697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113270","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483229989","1483168064","1","1","0","-1","61203","722","61203","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114074","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201161","1483201397","1483257208","1483201161","1","1","0","-1","55811","236","55811","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483266122","1483201165","1","1","0","-1","64725","232","64725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483240301","1483201165","1","1","0","-1","38904","232","38904","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206222","1483206254","1483264688","1483206222","1","1","0","-1","58434","32","58434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114933","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483265591","1483207487","1","1","0","-1","58001","103","58001","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207513","1483207711","1483249010","1483207513","1","1","0","-1","41299","198","41299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483266614","1483208454","1","1","0","-1","57933","227","57933","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483248131","1483208454","1","1","0","-1","39450","227","39450","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115105","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213485","1483213534","1483267435","1483213485","1","1","0","-1","53901","49","53901","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213541","1483213655","1483274175","1483213541","1","1","0","-1","60520","114","60520","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483270089","1483213550","1","1","0","-1","56434","105","56434","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483276819","1483213550","1","1","0","-1","63164","105","63164","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115592","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231313","1483231346","1483289926","1483231313","1","1","0","-1","58580","33","58580","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115607","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231326","1483231467","1483289924","1483231326","1","1","0","-1","58457","141","58457","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115617","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231337","1483231467","1483289927","1483231337","1","1","0","-1","58460","130","58460","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115621","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231342","1483231467","1483289926","1483231342","1","1","0","-1","58459","125","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115623","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231344","1483231467","1483289926","1483231344","1","1","0","-1","58459","123","58459","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115651","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231596","1483231710","1483289927","1483231596","1","1","0","-1","58217","114","58217","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231597","1483231710","1483289930","1483231597","1","1","0","-1","58220","113","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231598","1483231710","1483289930","1483231598","1","1","0","-1","58220","112","58220","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115655","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231599","1483231710","1483296505","1483231599","1","1","0","-1","64795","111","64795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231611","1483231831","1483289931","1483231611","1","1","0","-1","58100","220","58100","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231614","1483231831","1483289930","1483231614","1","1","0","-1","58099","217","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115673","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231616","1483231831","1483289930","1483231616","1","1","0","-1","58099","215","58099","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115685","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231629","1483231953","1483289930","1483231629","1","1","0","-1","57977","324","57977","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115686","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231630","1483231953","1483294153","1483231630","1","1","0","-1","62200","323","62200","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115687","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231631","1483231953","1483289931","1483231631","1","1","0","-1","57978","322","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115689","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231632","1483231953","1483289931","1483231632","1","1","0","-1","57978","321","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231655","1483231953","1483289931","1483231655","1","1","0","-1","57978","298","57978","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231665","1483231953","1483289934","1483231665","1","1","0","-1","57981","288","57981","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115721","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231682","1483232075","1483289934","1483231682","1","1","0","-1","57859","393","57859","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115724","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231686","1483232075","1483281980","1483231686","1","1","0","-1","49905","389","49905","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115782","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483233674","1483233777","1483289923","1483233674","1","1","0","-1","56146","103","56146","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116066","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240665","1483240701","1483289916","1483240665","1","1","0","-1","49215","36","49215","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240903","1483240975","1483289936","1483240903","1","1","0","-1","48961","72","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483240920","1483240975","1483289936","1483240920","1","1","0","-1","48961","55","48961","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243515","1483243602","1483289913","1483243515","1","1","0","-1","46311","87","46311","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243520","1483243729","1483287616","1483243520","1","1","0","-1","43887","209","43887","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250283","1483250340","1483289915","1483250283","1","1","0","-1","39575","57","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250288","1483250340","1483289913","1483250288","1","1","0","-1","39573","52","39573","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117511","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250300","1483250340","1483289915","1483250300","1","1","0","-1","39575","40","39575","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117527","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250326","1483250465","1483314554","1483250326","1","1","0","-1","64089","139","64089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117550","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250363","1483250465","1483301209","1483250363","1","1","0","-1","50744","102","50744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117554","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250370","1483250465","1483306007","1483250370","1","1","0","-1","55542","95","55542","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117563","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250392","1483250591","1483297322","1483250392","1","1","0","-1","46731","199","46731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6117578","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483250429","1483250716","1483309722","1483250429","1","1","0","-1","59006","287","59006","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115287","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483220029","1483220083","1483256111","1483220029","1","1","0","-1","36028","54","36028","0","1:0","TIMEOUT","1","12000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115435","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225598","1483225654","1483261656","1483225598","1","1","0","-1","36002","56","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115436","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225613","1483225654","1483261656","1483225613","1","1","0","-1","36002","41","36002","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115441","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225835","1483225897","1483261927","1483225835","1","1","0","-1","36030","62","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115444","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483225916","1483226018","1483262048","1483225916","1","1","0","-1","36030","102","36030","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115447","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226028","1483226138","1483262169","1483226028","1","1","0","-1","36031","110","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115449","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226097","1483226138","1483262169","1483226097","1","1","0","-1","36031","41","36031","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115453","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226179","1483226259","1483262259","1483226179","1","1","0","-1","36000","80","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115455","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483226290","1483226380","1483262380","1483226290","1","1","0","-1","36000","90","36000","0","1:0","TIMEOUT","1","24000Mn","36000","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119918","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264431","1483264463","1483307674","1483264431","1","1","0","-1","43211","32","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119919","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264477","1483264584","1483307795","1483264477","1","1","0","-1","43211","107","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119920","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264523","1483264584","1483307795","1483264523","1","1","0","-1","43211","61","43211","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119922","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264619","1483264704","1483307916","1483264619","1","1","0","-1","43212","85","43212","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6119924","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483264745","1483264825","1483308035","1483264745","1","1","0","-1","43210","80","43210","0","1:0","TIMEOUT","1","24000Mn","43200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6115525[38]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483231587","1483278496","1483230137","1","12","0","-1","46909","1453","562908","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115298","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483220537","1483220568","1483256650","1483220537","6","72","0","-1","36082","31","2597904","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6113512","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483182608","1483183091","1483230785","1483182608","8","96","0","-1","47694","483","4578624","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6113518","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483183083","1483183459","1483231301","1483183083","8","96","0","-1","47842","376","4592832","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6114923","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483206575","1483206616","1483254675","1483206575","8","96","0","-1","48059","41","4613664","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6115525[56]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230134","1483234019","1483281109","1483230137","1","12","0","-1","47090","3885","565080","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6115534[25]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230265","1483237064","1483283961","1483230268","1","12","0","-1","46897","6799","562764","0","1:0","TIMEOUT","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116630[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245072","1483256381","1483303137","1483245073","1","12","0","-1","46756","11309","561072","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483259973","1483306773","1483245145","1","12","0","-1","46800","14828","561600","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6116638[67]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483245145","1483262171","1483299336","1483245145","1","12","0","-1","37165","17026","445980","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6118546","Robertson","screw - Screwdriver","UTC","","Whimbrel","Screwdriver","derby","1483256650","1483264221","1483300304","1483256650","6","72","0","-1","36083","7571","2597976","0","0:0","COMPLETED","72","2147486448Mn","45600","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6115641","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483231577","1483236943","1483284718","1483231577","8","96","0","-1","47775","5366","4586400","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6118367","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483255541","1483263737","1483311418","1483255541","8","96","0","-1","47681","8196","4577376","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["6115544[22]","Robertson","screw - Screwdriver","UTC","","Plover, Caspian","Screwdriver","curry","1483230419","1483252300","1483293906","1483230420","1","12","0","-1","41606","21881","499272","0","0:0","COMPLETED","12","48000Mn","46800","white","Geosciences","Polar Programs","Polar Ocean and Climate Systems"] -["6112876","Robertson","screw - Screwdriver","UTC","","Warbler, Golden-winged","Screwdriver","curry","1483147452","1483170019","1483231575","1483147452","2","24","0","-1","61556","22567","1477344","0","0:0","COMPLETED","24","60000Mn","79200","white","Social, Behavioral, and Economic Sciences","Social and Economic Science","Economics"] -["6116000","Robertson","screw - Screwdriver","UTC","","Crane","Screwdriver","curry","1483238795","1483263616","1483311612","1483238795","8","96","0","-1","47996","24821","4607616","0","0:0","COMPLETED","96","2147486448Mn","57600","white","Engineering","Electrical and Communication Systems","Emerging Technologies Initiation"] -["165381","Phillips","screw - Screwdriver","UTC","","Chaffinch","Screwdriver","coconut-cream","1482869521","1482869521","1483301547","1482869521","8","64","0","-1","432026","0","27649664","0","1:0","TIMEOUT","64","8000Mn","432000","crumpet","Biological Sciences","Molecular Biosciences","Biophysics"] -["6109335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106949","1483106978","1483229086","1483106949","1","1","0","-1","122108","29","122108","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106950","1483106978","1483241323","1483106950","1","1","0","-1","134345","28","134345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109479","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107966","1483107993","1483237408","1483107966","1","1","0","-1","129415","27","129415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107969","1483107993","1483232459","1483107969","1","1","0","-1","124466","24","124466","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107970","1483107993","1483233124","1483107970","1","1","0","-1","125131","23","125131","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109648","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110807","1483110827","1483238284","1483110807","1","1","0","-1","127457","20","127457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112989","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166796","1483166816","1483275917","1483166796","1","1","0","-1","109101","20","109101","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112990","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166797","1483166816","1483250594","1483166797","1","1","0","-1","83778","19","83778","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166802","1483166816","1483251770","1483166802","1","1","0","-1","84954","14","84954","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166806","1483166816","1483260779","1483166806","1","1","0","-1","93963","10","93963","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483263895","1483166811","1","1","0","-1","97079","5","97079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112994","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166811","1483166816","1483300191","1483166811","1","1","0","-1","133375","5","133375","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112995","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166812","1483166816","1483253854","1483166812","1","1","0","-1","87038","4","87038","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166815","1483166816","1483240975","1483166815","1","1","0","-1","74159","1","74159","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113062","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167402","1483167429","1483271686","1483167402","1","1","0","-1","104257","27","104257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113063","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167406","1483167429","1483303312","1483167406","1","1","0","-1","135883","23","135883","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113387","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171828","1483171856","1483245992","1483171828","1","1","0","-1","74136","28","74136","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483305040","1483171835","1","1","0","-1","133184","21","133184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113389","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171835","1483171856","1483275724","1483171835","1","1","0","-1","103868","21","103868","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171837","1483171856","1483236804","1483171837","1","1","0","-1","64948","19","64948","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171839","1483171856","1483261370","1483171839","1","1","0","-1","89514","17","89514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171845","1483171856","1483277008","1483171845","1","1","0","-1","105152","11","105152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113393","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171849","1483171856","1483269720","1483171849","1","1","0","-1","97864","7","97864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200026","1483200053","1483268680","1483200026","1","1","0","-1","68627","27","68627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113841","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200029","1483200053","1483296754","1483200029","1","1","0","-1","96701","24","96701","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200032","1483200053","1483290999","1483200032","1","1","0","-1","90946","21","90946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113844","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200034","1483200053","1483289923","1483200034","1","1","0","-1","89870","19","89870","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200040","1483200053","1483310191","1483200040","1","1","0","-1","110138","13","110138","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113847","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200044","1483200053","1483301176","1483200044","1","1","0","-1","101123","9","101123","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113848","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200047","1483200053","1483308043","1483200047","1","1","0","-1","107990","6","107990","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201123","1483201151","1483286885","1483201123","1","1","0","-1","85734","28","85734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114034","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201127","1483201151","1483287672","1483201127","1","1","0","-1","86521","24","86521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114035","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201130","1483201151","1483291125","1483201130","1","1","0","-1","89974","21","89974","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114452","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204166","1483204193","1483301479","1483204166","1","1","0","-1","97286","27","97286","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114453","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204168","1483204193","1483282778","1483204168","1","1","0","-1","78585","25","78585","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114454","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204171","1483204193","1483277750","1483204171","1","1","0","-1","73557","22","73557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114455","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204174","1483204193","1483289915","1483204174","1","1","0","-1","85722","19","85722","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114457","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204179","1483204193","1483310949","1483204179","1","1","0","-1","106756","14","106756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114458","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204181","1483204193","1483306489","1483204181","1","1","0","-1","102296","12","102296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114459","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204182","1483204193","1483289922","1483204182","1","1","0","-1","85729","11","85729","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114460","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204183","1483204193","1483300363","1483204183","1","1","0","-1","96170","10","96170","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206228","1483206254","1483300042","1483206228","1","1","0","-1","93788","26","93788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114852","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206242","1483206254","1483296160","1483206242","1","1","0","-1","89906","12","89906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114853","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206247","1483206254","1483303604","1483206247","1","1","0","-1","97350","7","97350","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114925","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207464","1483207469","1483315068","1483207464","1","1","0","-1","107599","5","107599","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213507","1483213534","1483308024","1483213507","1","1","0","-1","94490","27","94490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213511","1483213534","1483295328","1483213511","1","1","0","-1","81794","23","81794","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115116","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213517","1483213534","1483297718","1483213517","1","1","0","-1","84184","17","84184","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115120","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213529","1483213534","1483310606","1483213529","1","1","0","-1","97072","5","97072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213533","1483213534","1483279893","1483213533","1","1","0","-1","66359","1","66359","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115598","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231319","1483231346","1483312600","1483231319","1","1","0","-1","81254","27","81254","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108027[4]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483302591","1483046357","1","1","0","-1","256219","15","256219","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[5]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[6]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483303689","1483046357","1","1","0","-1","257317","15","257317","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483305573","1483046357","1","1","0","-1","259201","15","259201","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046372","1483278569","1483046357","1","1","0","-1","232197","15","232197","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["995583","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483143988","1483143991","1483272379","1483143988","1","8","0","-1","128388","3","1027104","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995627","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483283156","1483144111","1","8","0","-1","139039","6","1112312","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995628","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144111","1483144117","1483274205","1483144111","1","8","0","-1","130088","6","1040704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995629","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144119","1483275459","1483144112","1","8","0","-1","131340","7","1050720","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995630","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144120","1483275145","1483144112","1","8","0","-1","131025","8","1048200","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995631","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483287078","1483144112","1","8","0","-1","142956","10","1143648","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995632","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144122","1483285810","1483144112","1","8","0","-1","141688","10","1133504","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995633","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144124","1483274960","1483144112","1","8","0","-1","130836","12","1046688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995634","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144125","1483275348","1483144112","1","8","0","-1","131223","13","1049784","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995635","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144127","1483272663","1483144112","1","8","0","-1","128536","15","1028288","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995636","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144112","1483144128","1483276578","1483144112","1","8","0","-1","132450","16","1059600","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995637","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144130","1483285036","1483144113","1","8","0","-1","140906","17","1127248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995638","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144131","1483274399","1483144113","1","8","0","-1","130268","18","1042144","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995639","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483290495","1483144113","1","8","0","-1","146362","20","1170896","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995640","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144133","1483278084","1483144113","1","8","0","-1","133951","20","1071608","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995641","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483270417","1483144113","1","8","0","-1","126281","23","1010248","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995642","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144136","1483275165","1483144113","1","8","0","-1","131029","23","1048232","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995643","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144138","1483275003","1483144113","1","8","0","-1","130865","25","1046920","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995644","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144139","1483284417","1483144113","1","8","0","-1","140278","26","1122224","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995645","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144113","1483144141","1483273977","1483144113","1","8","0","-1","129836","28","1038688","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995646","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144142","1483281314","1483144114","1","8","0","-1","137172","28","1097376","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["163485","Phillips","screw - Screwdriver","UTC","","Oriole, Baltimore","Screwdriver","chestnut","1482390912","1482390913","1483303339","1482390912","1","12","2","-1","912426","1","10949112","1824852","0:0","CANCELLED by 380693","12","31000Mn","3247200","focaccia","Biological Sciences","Molecular Biosciences","Biophysics"] -["964693","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483244230","1482955559","1","16","0","-1","288669","2","4618704","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964694","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482955561","1483245344","1482955559","1","16","0","-1","289783","2","4636528","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["2286681","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483159130","1483159136","1483238310","1483159130","1","16","0","-1","79174","6","1266784","0","0:0","COMPLETED","8","2147486648Mn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2288753","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483169234","1483169236","1483282760","1483169234","1","16","0","-1","113524","2","1816384","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["2289004","Frearson","screw - Screwdriver","UTC","","Bunting, Reed","Screwdriver","banana-cream","1483170485","1483170487","1483261366","1483170485","1","16","0","-1","90879","2","1454064","0","0:0","COMPLETED","16","62.50Gn","259200","black","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6106081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1482980903","1482980942","1483240261","1482980903","1","1","0","-1","259319","39","259319","0","1:0","TIMEOUT","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108682","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071799","1483072045","1483253984","1483071799","1","1","0","-1","181939","246","181939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071825","1483072181","1483229663","1483071825","1","1","0","-1","157482","356","157482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483071827","1483072181","1483230693","1483071827","1","1","0","-1","158512","354","158512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483230934","1483106095","1","1","0","-1","124720","119","124720","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106095","1483106214","1483248678","1483106095","1","1","0","-1","142464","119","142464","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106214","1483241753","1483106096","1","1","0","-1","135539","118","135539","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483263234","1483106096","1","1","0","-1","156892","246","156892","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483246507","1483106096","1","1","0","-1","140165","246","140165","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483235218","1483106096","1","1","0","-1","128876","246","128876","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106096","1483106342","1483252066","1483106096","1","1","0","-1","145724","246","145724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483234006","1483106097","1","1","0","-1","127664","245","127664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483232072","1483106097","1","1","0","-1","125730","245","125730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106342","1483242337","1483106097","1","1","0","-1","135995","245","135995","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234289","1483106097","1","1","0","-1","127820","372","127820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483235964","1483106097","1","1","0","-1","129495","372","129495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483274649","1483106097","1","1","0","-1","168180","372","168180","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483238533","1483106097","1","1","0","-1","132064","372","132064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483234473","1483106097","1","1","0","-1","128004","372","128004","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106097","1483106469","1483252479","1483106097","1","1","0","-1","146010","372","146010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109275","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483246648","1483106098","1","1","0","-1","140179","371","140179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483241385","1483106098","1","1","0","-1","134916","371","134916","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106469","1483253169","1483106098","1","1","0","-1","146700","371","146700","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289888","1483106098","1","1","0","-1","183291","499","183291","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109282","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483229396","1483106098","1","1","0","-1","122799","499","122799","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106098","1483106597","1483289887","1483106098","1","1","0","-1","183290","499","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106141","1483106597","1483289889","1483106141","1","1","0","-1","183292","456","183292","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106145","1483106597","1483289887","1483106145","1","1","0","-1","183290","452","183290","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106147","1483106597","1483289891","1483106147","1","1","0","-1","183294","450","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106153","1483106597","1483246847","1483106153","1","1","0","-1","140250","444","140250","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106156","1483106597","1483289893","1483106156","1","1","0","-1","183296","441","183296","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106158","1483106597","1483289891","1483106158","1","1","0","-1","183294","439","183294","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106162","1483106597","1483289892","1483106162","1","1","0","-1","183295","435","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106165","1483106597","1483289892","1483106165","1","1","0","-1","183295","432","183295","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106178","1483106724","1483233322","1483106178","1","1","0","-1","126598","546","126598","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106181","1483106724","1483247835","1483106181","1","1","0","-1","141111","543","141111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106192","1483106724","1483243302","1483106192","1","1","0","-1","136578","532","136578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106919","1483106978","1483262786","1483106919","1","1","0","-1","155808","59","155808","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106934","1483106978","1483236315","1483106934","1","1","0","-1","129337","44","129337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106936","1483106978","1483241600","1483106936","1","1","0","-1","134622","42","134622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109332","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106944","1483106978","1483231757","1483106944","1","1","0","-1","124779","34","124779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106954","1483107104","1483264536","1483106954","1","1","0","-1","157432","150","157432","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109347","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106985","1483107104","1483241640","1483106985","1","1","0","-1","134536","119","134536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109348","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106986","1483107104","1483229938","1483106986","1","1","0","-1","122834","118","122834","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109351","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483258633","1483106989","1","1","0","-1","151529","115","151529","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106989","1483107104","1483243386","1483106989","1","1","0","-1","136282","115","136282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109356","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483251312","1483106990","1","1","0","-1","144208","114","144208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109357","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107104","1483241610","1483106990","1","1","0","-1","134506","114","134506","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109359","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289895","1483106990","1","1","0","-1","182665","240","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109360","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109361","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289897","1483106990","1","1","0","-1","182667","240","182667","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109362","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483106990","1483107230","1483289893","1483106990","1","1","0","-1","182663","240","182663","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109365","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107051","1483107230","1483289895","1483107051","1","1","0","-1","182665","179","182665","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109368","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107057","1483107230","1483229404","1483107057","1","1","0","-1","122174","173","122174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107059","1483107230","1483237756","1483107059","1","1","0","-1","130526","171","130526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109370","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107060","1483107230","1483241929","1483107060","1","1","0","-1","134699","170","134699","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109371","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107063","1483107230","1483289896","1483107063","1","1","0","-1","182666","167","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109372","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107065","1483107230","1483238813","1483107065","1","1","0","-1","131583","165","131583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107067","1483107230","1483289896","1483107067","1","1","0","-1","182666","163","182666","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109374","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107073","1483107230","1483289898","1483107073","1","1","0","-1","182668","157","182668","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109376","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107078","1483107230","1483289894","1483107078","1","1","0","-1","182664","152","182664","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109378","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107082","1483107357","1483289905","1483107082","1","1","0","-1","182548","275","182548","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109381","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107088","1483107357","1483289913","1483107088","1","1","0","-1","182556","269","182556","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107097","1483107357","1483245580","1483107097","1","1","0","-1","138223","260","138223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109388","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107108","1483107357","1483289902","1483107108","1","1","0","-1","182545","249","182545","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109390","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107112","1483107357","1483289903","1483107112","1","1","0","-1","182546","245","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109391","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107113","1483107357","1483289903","1483107113","1","1","0","-1","182546","244","182546","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109392","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107114","1483107357","1483289901","1483107114","1","1","0","-1","182544","243","182544","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107357","1483289904","1483107116","1","1","0","-1","182547","241","182547","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289901","1483107116","1","1","0","-1","182417","368","182417","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107116","1483107484","1483289902","1483107116","1","1","0","-1","182418","368","182418","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289910","1483107117","1","1","0","-1","182426","367","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483289904","1483107117","1","1","0","-1","182420","367","182420","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109405","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107117","1483107484","1483249260","1483107117","1","1","0","-1","141776","367","141776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107209","1483107484","1483289909","1483107209","1","1","0","-1","182425","275","182425","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107212","1483107484","1483289912","1483107212","1","1","0","-1","182428","272","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107217","1483107484","1483289908","1483107217","1","1","0","-1","182424","267","182424","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107219","1483107484","1483245969","1483107219","1","1","0","-1","138485","265","138485","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107220","1483107484","1483289911","1483107220","1","1","0","-1","182427","264","182427","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107223","1483107484","1483289912","1483107223","1","1","0","-1","182428","261","182428","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107224","1483107484","1483289910","1483107224","1","1","0","-1","182426","260","182426","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107234","1483107611","1483289911","1483107234","1","1","0","-1","182300","377","182300","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483289914","1483107242","1","1","0","-1","182303","369","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107242","1483107611","1483232979","1483107242","1","1","0","-1","125368","369","125368","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107243","1483107611","1483289915","1483107243","1","1","0","-1","182304","368","182304","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107244","1483107611","1483289914","1483107244","1","1","0","-1","182303","367","182303","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483289919","1483107246","1","1","0","-1","182308","365","182308","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109436","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107246","1483107611","1483230736","1483107246","1","1","0","-1","123125","365","123125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109462","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107279","1483107867","1483230650","1483107279","1","1","0","-1","122783","588","122783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109463","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107280","1483107867","1483231234","1483107280","1","1","0","-1","123367","587","123367","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109464","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107282","1483107867","1483245514","1483107282","1","1","0","-1","137647","585","137647","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109471","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107953","1483107993","1483244309","1483107953","1","1","0","-1","136316","40","136316","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109472","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107955","1483107993","1483235249","1483107955","1","1","0","-1","127256","38","127256","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109475","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107962","1483107993","1483237298","1483107962","1","1","0","-1","129305","31","129305","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107980","1483108122","1483267363","1483107980","1","1","0","-1","159241","142","159241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109500","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483107996","1483108122","1483233557","1483107996","1","1","0","-1","125435","126","125435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108001","1483108122","1483268237","1483108001","1","1","0","-1","160115","121","160115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108004","1483108122","1483289925","1483108004","1","1","0","-1","181803","118","181803","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109509","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289925","1483108005","1","1","0","-1","181674","246","181674","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109510","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483108005","1483108251","1483289923","1483108005","1","1","0","-1","181672","246","181672","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109638","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110753","1483110827","1483253473","1483110753","1","1","0","-1","142646","74","142646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109639","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110766","1483110827","1483231980","1483110766","1","1","0","-1","121153","61","121153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109640","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110772","1483110827","1483233548","1483110772","1","1","0","-1","122721","55","122721","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109650","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110825","1483110966","1483243888","1483110825","1","1","0","-1","132922","141","132922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109652","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483286003","1483110837","1","1","0","-1","175037","129","175037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109653","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110837","1483110966","1483242588","1483110837","1","1","0","-1","131622","129","131622","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109654","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483258143","1483110838","1","1","0","-1","147177","128","147177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["1019989","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483255506","1483255506","1483277244","1483255506","1","8","0","-1","21738","0","173904","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020009","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483262143","1483262143","1483282140","1483262143","1","8","0","-1","19997","0","159976","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020000","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483260369","1483260369","1483282571","1483260369","1","8","0","-1","22202","0","177616","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020089","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483289868","1483289868","1483313573","1483289868","1","8","0","-1","23705","0","189640","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019944","Posidriv","wrench - Wrench","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483243754","1483243754","1483264519","1483243754","1","20","0","-1","20765","0","415300","0","0:0","COMPLETED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1020095","Posidriv","wrench - Wrench","UTC","","Shrike, Long-tailed","Screwdriver","butter","1483290808","1483290808","1483311960","1483290808","1","20","0","-1","21152","0","423040","0","1:0","FAILED","20","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1020038","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483276177","1483276178","1483296547","1483276177","1","8","0","-1","20369","1","162952","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018470","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483209281","1483209306","1483241614","1483209281","1","8","0","-1","32308","25","258464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019923","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483239608","1483239703","1483265574","1483239608","1","8","0","-1","25871","95","206968","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019934","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483241902","1483241991","1483270583","1483241902","1","8","0","-1","28592","89","228736","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018314","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483206818","1483207021","1483233329","1483206818","1","8","0","-1","26308","203","210464","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018806","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215142","1483215195","1483236458","1483215142","1","8","0","-1","21263","53","170104","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018919","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483217367","1483217479","1483237249","1483217367","1","8","0","-1","19770","112","158160","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019945","Posidriv","wrench - Wrench","UTC","","Fieldfare","Screwdriver","banana-cream","1483244077","1483244077","1483284074","1483244077","1","8","0","-1","39997","0","319976","0","0:0","COMPLETED","8","2147490048Mn","259200","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1019972","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483251196","1483251196","1483287446","1483251196","1","8","0","-1","36250","0","290000","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019139","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483221197","1483221204","1483283907","1483221197","1","8","0","-1","62703","7","501624","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020005","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","apple","1483261479","1483261480","1483303453","1483261479","1","8","0","-1","41973","1","335784","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1020025","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483270272","1483270273","1483310835","1483270272","1","8","0","-1","40562","1","324496","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019938","Posidriv","wrench - Wrench","UTC","","Bunting, Reed","Screwdriver","apple","1483242540","1483242591","1483293892","1483242540","1","8","0","-1","51301","51","410408","0","0:0","COMPLETED","8","2147486448Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1018813","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483215252","1483215315","1483260424","1483215252","1","8","0","-1","45109","63","360872","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1005924","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","banana-cream","1483079071","1483178773","1483234032","1483079071","1","4","0","-1","55259","99702","221036","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["995612","Posidriv","wrench - Wrench","UTC","","Honey-buzzard","Screwdriver","blackberry","1482871620","1482871620","1483264213","1482871620","1","1","0","-1","392593","0","392593","0","0:0","COMPLETED","1","2147487648Mn","10800000","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999221","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984433","1482984433","1483260983","1482984433","1","4","0","-1","276550","0","1106200","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999242","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482984771","1482984771","1483298329","1482984771","1","4","0","-1","313558","0","1254232","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999289","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985634","1482985634","1483313872","1482985634","1","4","0","-1","328238","0","1312952","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1003355","Posidriv","wrench - Wrench","UTC","","Thrush, Grey-cheeked","Screwdriver","boysenberry","1483042952","1483042968","1483292265","1483042952","1","2","0","-1","249297","16","498594","0","0:0","COMPLETED","2","10000Mn","864600","barm","Engineering","Electrical and Communication Systems","Solid-State and Microstructures"] -["999183","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983884","1482983885","1483300262","1482983884","1","4","0","-1","316377","1","1265508","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999188","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482983954","1482983955","1483310084","1482983954","1","4","0","-1","326129","1","1304516","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["999254","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1482985000","1482985003","1483255914","1482985000","1","4","0","-1","270911","3","1083644","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005888","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078681","1483078683","1483278101","1483078681","1","4","0","-1","199418","2","797672","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005890","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078715","1483078716","1483241139","1483078715","1","4","0","-1","162423","1","649692","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005900","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078793","1483078794","1483288500","1483078793","1","4","0","-1","209706","1","838824","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1005907","Posidriv","wrench - Wrench","UTC","","Sapsucker, Yellow-bellied","Screwdriver","blackberry","1483078870","1483078874","1483244477","1483078870","1","4","0","-1","165603","4","662412","0","0:0","COMPLETED","4","2147487648Mn","604800","brioche","Social, Behavioral, and Economic Sciences","Social and Economic Science","Sociology"] -["1012029","Posidriv","wrench - Wrench","UTC","","Fieldfare","Screwdriver","butter","1483157560","1483157563","1483243989","1483157560","1","8","0","-1","86426","3","691408","0","1:0","TIMEOUT","8","2147490048Mn","86400","bannock","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1009531","Posidriv","wrench - Wrench","UTC","","Shag","Screwdriver","apple","1483125690","1483125694","1483246634","1483125690","1","24","0","-1","120940","4","2902560","0","0:0","COMPLETED","24","62.50Gn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6109658","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483238119","1483110838","1","1","0","-1","127153","128","127153","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109662","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483232478","1483110838","1","1","0","-1","121512","128","121512","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109665","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483110966","1483229790","1483110838","1","1","0","-1","118824","128","118824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109672","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483110838","1483111106","1483230425","1483110838","1","1","0","-1","119319","268","119319","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109753","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115946","1483116096","1483258108","1483115946","1","1","0","-1","142012","150","142012","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109754","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115951","1483116096","1483235370","1483115951","1","1","0","-1","119274","145","119274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109757","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115977","1483116096","1483251632","1483115977","1","1","0","-1","135536","119","135536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109758","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115980","1483116096","1483255305","1483115980","1","1","0","-1","139209","116","139209","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109759","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115985","1483116096","1483250118","1483115985","1","1","0","-1","134022","111","134022","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109761","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115993","1483116096","1483271931","1483115993","1","1","0","-1","155835","103","155835","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109762","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483115994","1483116096","1483246583","1483115994","1","1","0","-1","130487","102","130487","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109767","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116007","1483116096","1483230486","1483116007","1","1","0","-1","114390","89","114390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109769","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116015","1483116096","1483245034","1483116015","1","1","0","-1","128938","81","128938","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116024","1483116096","1483236198","1483116024","1","1","0","-1","120102","72","120102","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116028","1483116096","1483231793","1483116028","1","1","0","-1","115697","68","115697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116041","1483116228","1483234292","1483116041","1","1","0","-1","118064","187","118064","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109778","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116059","1483116228","1483246444","1483116059","1","1","0","-1","130216","169","130216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109781","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116068","1483116228","1483243361","1483116068","1","1","0","-1","127133","160","127133","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109783","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116072","1483116228","1483233855","1483116072","1","1","0","-1","117627","156","117627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109787","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116095","1483116228","1483231353","1483116095","1","1","0","-1","115125","133","115125","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109791","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483232771","1483116103","1","1","0","-1","116412","256","116412","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109795","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483234692","1483116103","1","1","0","-1","118333","256","118333","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109798","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483228870","1483116103","1","1","0","-1","112511","256","112511","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109800","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483284703","1483116103","1","1","0","-1","168344","256","168344","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109801","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483242068","1483116103","1","1","0","-1","125709","256","125709","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109803","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116103","1483116359","1483237154","1483116103","1","1","0","-1","120795","256","120795","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109807","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116359","1483248120","1483116104","1","1","0","-1","131761","255","131761","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6109810","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483116104","1483116491","1483253533","1483116104","1","1","0","-1","137042","387","137042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166761","1483166816","1483269042","1483166761","1","1","0","-1","102226","55","102226","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166766","1483166816","1483277010","1483166766","1","1","0","-1","110194","50","110194","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166770","1483166816","1483252858","1483166770","1","1","0","-1","86042","46","86042","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166772","1483166816","1483282075","1483166772","1","1","0","-1","115259","44","115259","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166775","1483166816","1483254115","1483166775","1","1","0","-1","87299","41","87299","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166783","1483166816","1483287587","1483166783","1","1","0","-1","120771","33","120771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166817","1483166939","1483274727","1483166817","1","1","0","-1","107788","122","107788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6112998","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166820","1483166939","1483252870","1483166820","1","1","0","-1","85931","119","85931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166828","1483166939","1483280682","1483166828","1","1","0","-1","113743","111","113743","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113001","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166829","1483166939","1483244723","1483166829","1","1","0","-1","77784","110","77784","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483242282","1483166832","1","1","0","-1","75343","107","75343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113003","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166832","1483166939","1483238850","1483166832","1","1","0","-1","71911","107","71911","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113004","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166833","1483166939","1483253762","1483166833","1","1","0","-1","86823","106","86823","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113005","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166837","1483166939","1483296234","1483166837","1","1","0","-1","129295","102","129295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113006","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166838","1483166939","1483299753","1483166838","1","1","0","-1","132814","101","132814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113007","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166840","1483166939","1483273960","1483166840","1","1","0","-1","107021","99","107021","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166843","1483166939","1483286860","1483166843","1","1","0","-1","119921","96","119921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166848","1483166939","1483257045","1483166848","1","1","0","-1","90106","91","90106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166850","1483166939","1483282969","1483166850","1","1","0","-1","116030","89","116030","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113011","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166853","1483166939","1483258397","1483166853","1","1","0","-1","91458","86","91458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166856","1483166939","1483261381","1483166856","1","1","0","-1","94442","83","94442","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166857","1483166939","1483251883","1483166857","1","1","0","-1","84944","82","84944","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113015","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166863","1483166939","1483282852","1483166863","1","1","0","-1","115913","76","115913","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113016","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166866","1483166939","1483282200","1483166866","1","1","0","-1","115261","73","115261","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113017","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166869","1483167061","1483283954","1483166869","1","1","0","-1","116893","192","116893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166873","1483167061","1483260846","1483166873","1","1","0","-1","93785","188","93785","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166877","1483167061","1483241935","1483166877","1","1","0","-1","74874","184","74874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113020","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166879","1483167061","1483272397","1483166879","1","1","0","-1","105336","182","105336","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166883","1483167061","1483261988","1483166883","1","1","0","-1","94927","178","94927","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166886","1483167061","1483264570","1483166886","1","1","0","-1","97509","175","97509","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166890","1483167061","1483277325","1483166890","1","1","0","-1","110264","171","110264","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483272893","1483166892","1","1","0","-1","105832","169","105832","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166892","1483167061","1483254681","1483166892","1","1","0","-1","87620","169","87620","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166899","1483167061","1483277041","1483166899","1","1","0","-1","109980","162","109980","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166900","1483167061","1483270355","1483166900","1","1","0","-1","103294","161","103294","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113028","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166904","1483167061","1483276308","1483166904","1","1","0","-1","109247","157","109247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166911","1483167061","1483254926","1483166911","1","1","0","-1","87865","150","87865","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166913","1483167061","1483241324","1483166913","1","1","0","-1","74263","148","74263","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483253485","1483166917","1","1","0","-1","86424","144","86424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113032","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166917","1483167061","1483260120","1483166917","1","1","0","-1","93059","144","93059","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113033","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483166921","1483167061","1483287820","1483166921","1","1","0","-1","120759","140","120759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167347","1483167429","1483249508","1483167347","1","1","0","-1","82079","82","82079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167348","1483167429","1483269724","1483167348","1","1","0","-1","102295","81","102295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167353","1483167429","1483262520","1483167353","1","1","0","-1","95091","76","95091","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167357","1483167429","1483252056","1483167357","1","1","0","-1","84627","72","84627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113049","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167361","1483167429","1483284840","1483167361","1","1","0","-1","117411","68","117411","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167367","1483167429","1483289687","1483167367","1","1","0","-1","122258","62","122258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113051","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167370","1483167429","1483276792","1483167370","1","1","0","-1","109363","59","109363","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167374","1483167429","1483289052","1483167374","1","1","0","-1","121623","55","121623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167376","1483167429","1483257249","1483167376","1","1","0","-1","89820","53","89820","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167378","1483167429","1483279828","1483167378","1","1","0","-1","112399","51","112399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113056","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167383","1483167429","1483267303","1483167383","1","1","0","-1","99874","46","99874","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113057","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167387","1483167429","1483289725","1483167387","1","1","0","-1","122296","42","122296","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113058","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167390","1483167429","1483285489","1483167390","1","1","0","-1","118060","39","118060","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113059","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167391","1483167429","1483283086","1483167391","1","1","0","-1","115657","38","115657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113060","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167393","1483167429","1483288387","1483167393","1","1","0","-1","120958","36","120958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113061","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167396","1483167429","1483286008","1483167396","1","1","0","-1","118579","33","118579","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113064","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167412","1483167551","1483247709","1483167412","1","1","0","-1","80158","139","80158","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113067","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167420","1483167551","1483271720","1483167420","1","1","0","-1","104169","131","104169","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113068","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167422","1483167551","1483252894","1483167422","1","1","0","-1","85343","129","85343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113069","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167426","1483167551","1483236395","1483167426","1","1","0","-1","68844","125","68844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113070","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167427","1483167551","1483269724","1483167427","1","1","0","-1","102173","124","102173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113071","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167434","1483167551","1483276511","1483167434","1","1","0","-1","108960","117","108960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113072","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167439","1483167551","1483287282","1483167439","1","1","0","-1","119731","112","119731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113073","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167442","1483167551","1483240264","1483167442","1","1","0","-1","72713","109","72713","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167467","1483167551","1483285724","1483167467","1","1","0","-1","118173","84","118173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167469","1483167551","1483255688","1483167469","1","1","0","-1","88137","82","88137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113077","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167474","1483167551","1483265025","1483167474","1","1","0","-1","97474","77","97474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167475","1483167551","1483277565","1483167475","1","1","0","-1","110014","76","110014","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167479","1483167551","1483252844","1483167479","1","1","0","-1","85293","72","85293","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167482","1483167551","1483267395","1483167482","1","1","0","-1","99844","69","99844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167483","1483167551","1483247894","1483167483","1","1","0","-1","80343","68","80343","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113082","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167488","1483167551","1483266857","1483167488","1","1","0","-1","99306","63","99306","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113083","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167491","1483167551","1483280930","1483167491","1","1","0","-1","113379","60","113379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113085","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167496","1483167673","1483275845","1483167496","1","1","0","-1","108172","177","108172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113087","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167501","1483167673","1483305397","1483167501","1","1","0","-1","137724","172","137724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167504","1483167673","1483270191","1483167504","1","1","0","-1","102518","169","102518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167508","1483167673","1483268894","1483167508","1","1","0","-1","101221","165","101221","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113092","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167512","1483167673","1483284147","1483167512","1","1","0","-1","116474","161","116474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113094","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167514","1483167673","1483254050","1483167514","1","1","0","-1","86377","159","86377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113096","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167517","1483167673","1483289060","1483167517","1","1","0","-1","121387","156","121387","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113097","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167522","1483167673","1483277050","1483167522","1","1","0","-1","109377","151","109377","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167527","1483167796","1483295885","1483167527","1","1","0","-1","128089","269","128089","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167534","1483167796","1483279842","1483167534","1","1","0","-1","112046","262","112046","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113110","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167539","1483167796","1483266565","1483167539","1","1","0","-1","98769","257","98769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113112","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167547","1483167796","1483304454","1483167547","1","1","0","-1","136658","249","136658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113113","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483274486","1483167548","1","1","0","-1","106690","248","106690","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113114","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167548","1483167796","1483291393","1483167548","1","1","0","-1","123597","248","123597","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113117","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167558","1483167796","1483282424","1483167558","1","1","0","-1","114628","238","114628","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113118","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167559","1483167796","1483277894","1483167559","1","1","0","-1","110098","237","110098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113121","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167796","1483262321","1483167566","1","1","0","-1","94525","230","94525","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113123","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483258416","1483167566","1","1","0","-1","90497","353","90497","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483262483","1483167566","1","1","0","-1","94564","353","94564","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113127","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483289062","1483167566","1","1","0","-1","121143","353","121143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483283172","1483167566","1","1","0","-1","115253","353","115253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113131","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483277853","1483167566","1","1","0","-1","109934","353","109934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483276426","1483167566","1","1","0","-1","108507","353","108507","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113135","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483311360","1483167566","1","1","0","-1","143441","353","143441","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113137","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483266989","1483167566","1","1","0","-1","99070","353","99070","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113139","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483167919","1483275956","1483167566","1","1","0","-1","108037","353","108037","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113141","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483246072","1483167566","1","1","0","-1","78028","478","78028","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113142","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483284006","1483167566","1","1","0","-1","115962","478","115962","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113143","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483274130","1483167566","1","1","0","-1","106086","478","106086","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113144","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167566","1483168044","1483276701","1483167566","1","1","0","-1","108657","478","108657","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113146","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167591","1483168044","1483261530","1483167591","1","1","0","-1","93486","453","93486","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113147","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167594","1483168044","1483303854","1483167594","1","1","0","-1","135810","450","135810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113148","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167597","1483168044","1483256318","1483167597","1","1","0","-1","88274","447","88274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113149","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167599","1483168044","1483290785","1483167599","1","1","0","-1","122741","445","122741","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113151","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167605","1483168044","1483269603","1483167605","1","1","0","-1","101559","439","101559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113152","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167611","1483168044","1483291276","1483167611","1","1","0","-1","123232","433","123232","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113153","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167614","1483168044","1483264572","1483167614","1","1","0","-1","96528","430","96528","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113154","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167619","1483168044","1483292496","1483167619","1","1","0","-1","124452","425","124452","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113156","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167628","1483168044","1483277962","1483167628","1","1","0","-1","109918","416","109918","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113157","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167633","1483168044","1483252324","1483167633","1","1","0","-1","84280","411","84280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113158","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167638","1483168044","1483298762","1483167638","1","1","0","-1","130718","406","130718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113160","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167643","1483168044","1483260002","1483167643","1","1","0","-1","91958","401","91958","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113161","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167647","1483168167","1483259657","1483167647","1","1","0","-1","91490","520","91490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113162","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167651","1483168167","1483284026","1483167651","1","1","0","-1","115859","516","115859","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113163","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483277512","1483167655","1","1","0","-1","109345","512","109345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113164","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167655","1483168167","1483242064","1483167655","1","1","0","-1","73897","512","73897","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113165","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167659","1483168167","1483280729","1483167659","1","1","0","-1","112562","508","112562","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113166","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167661","1483168167","1483268600","1483167661","1","1","0","-1","100433","506","100433","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113167","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167668","1483168167","1483272750","1483167668","1","1","0","-1","104583","499","104583","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113170","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167669","1483168167","1483271667","1483167669","1","1","0","-1","103500","498","103500","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113172","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167672","1483168167","1483291830","1483167672","1","1","0","-1","123663","495","123663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113173","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167678","1483168167","1483310057","1483167678","1","1","0","-1","141890","489","141890","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113174","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167681","1483168167","1483234338","1483167681","1","1","0","-1","66171","486","66171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113175","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167684","1483168167","1483259402","1483167684","1","1","0","-1","91235","483","91235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113176","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167686","1483168167","1483270020","1483167686","1","1","0","-1","101853","481","101853","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113177","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167690","1483168167","1483284736","1483167690","1","1","0","-1","116569","477","116569","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113178","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167693","1483168167","1483267110","1483167693","1","1","0","-1","98943","474","98943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113179","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167694","1483168167","1483264504","1483167694","1","1","0","-1","96337","473","96337","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113180","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167697","1483168167","1483306467","1483167697","1","1","0","-1","138300","470","138300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113181","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167701","1483168167","1483274669","1483167701","1","1","0","-1","106502","466","106502","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113182","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167704","1483168167","1483259110","1483167704","1","1","0","-1","90943","463","90943","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113183","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167707","1483168293","1483284336","1483167707","1","1","0","-1","116043","586","116043","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113184","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167711","1483168293","1483279445","1483167711","1","1","0","-1","111152","582","111152","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113186","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167717","1483168293","1483259448","1483167717","1","1","0","-1","91155","576","91155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113187","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167719","1483168293","1483241550","1483167719","1","1","0","-1","73257","574","73257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113188","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167721","1483168293","1483291051","1483167721","1","1","0","-1","122758","572","122758","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113189","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167724","1483168293","1483271123","1483167724","1","1","0","-1","102830","569","102830","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113190","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167734","1483168293","1483254905","1483167734","1","1","0","-1","86612","559","86612","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113191","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167745","1483168293","1483246951","1483167745","1","1","0","-1","78658","548","78658","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113192","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167748","1483168293","1483302566","1483167748","1","1","0","-1","134273","545","134273","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113193","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167752","1483168293","1483297364","1483167752","1","1","0","-1","129071","541","129071","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113194","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167755","1483168293","1483310708","1483167755","1","1","0","-1","142415","538","142415","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113195","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167759","1483168293","1483290930","1483167759","1","1","0","-1","122637","534","122637","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113197","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167766","1483168293","1483267912","1483167766","1","1","0","-1","99619","527","99619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113198","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167770","1483168293","1483274580","1483167770","1","1","0","-1","106287","523","106287","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113200","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167802","1483168293","1483303506","1483167802","1","1","0","-1","135213","491","135213","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113201","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167805","1483168293","1483276261","1483167805","1","1","0","-1","107968","488","107968","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113202","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167809","1483168293","1483261686","1483167809","1","1","0","-1","93393","484","93393","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113203","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167812","1483168417","1483279694","1483167812","1","1","0","-1","111277","605","111277","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113204","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167818","1483168417","1483308104","1483167818","1","1","0","-1","139687","599","139687","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113205","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167820","1483168541","1483245671","1483167820","1","1","0","-1","77130","721","77130","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113206","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167822","1483168418","1483286459","1483167822","1","1","0","-1","118041","596","118041","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113207","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167827","1483168418","1483262590","1483167827","1","1","0","-1","94172","591","94172","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113208","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167834","1483168418","1483280349","1483167834","1","1","0","-1","111931","584","111931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113209","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167836","1483168418","1483247171","1483167836","1","1","0","-1","78753","582","78753","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113210","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167839","1483168418","1483259214","1483167839","1","1","0","-1","90796","579","90796","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113211","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167841","1483168418","1483264389","1483167841","1","1","0","-1","95971","577","95971","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113212","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167842","1483168418","1483282201","1483167842","1","1","0","-1","113783","576","113783","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113213","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167847","1483168418","1483277299","1483167847","1","1","0","-1","108881","571","108881","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113214","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167848","1483168418","1483307529","1483167848","1","1","0","-1","139111","570","139111","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113215","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167852","1483168418","1483246671","1483167852","1","1","0","-1","78253","566","78253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113217","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167855","1483168418","1483291353","1483167855","1","1","0","-1","122935","563","122935","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113218","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167858","1483168418","1483277842","1483167858","1","1","0","-1","109424","560","109424","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113219","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167861","1483168418","1483302922","1483167861","1","1","0","-1","134504","557","134504","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113220","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167866","1483168418","1483298033","1483167866","1","1","0","-1","129615","552","129615","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113222","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167877","1483168541","1483288257","1483167877","1","1","0","-1","119716","664","119716","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113223","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167882","1483168541","1483248685","1483167882","1","1","0","-1","80144","659","80144","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113224","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167886","1483168541","1483253377","1483167886","1","1","0","-1","84836","655","84836","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113225","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167892","1483168541","1483262702","1483167892","1","1","0","-1","94161","649","94161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113226","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167895","1483168541","1483293107","1483167895","1","1","0","-1","124566","646","124566","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113227","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167898","1483168541","1483263588","1483167898","1","1","0","-1","95047","643","95047","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113228","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167899","1483168541","1483282781","1483167899","1","1","0","-1","114240","642","114240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113229","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167901","1483168541","1483296085","1483167901","1","1","0","-1","127544","640","127544","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113230","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167908","1483168541","1483292794","1483167908","1","1","0","-1","124253","633","124253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113231","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167913","1483168541","1483257142","1483167913","1","1","0","-1","88601","628","88601","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113232","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483283936","1483167915","1","1","0","-1","115395","626","115395","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113233","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167915","1483168541","1483296310","1483167915","1","1","0","-1","127769","626","127769","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113234","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167924","1483168541","1483306322","1483167924","1","1","0","-1","137781","617","137781","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113235","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167927","1483168541","1483306202","1483167927","1","1","0","-1","137661","614","137661","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113236","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167934","1483168541","1483274191","1483167934","1","1","0","-1","105650","607","105650","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113237","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167935","1483168541","1483253896","1483167935","1","1","0","-1","85355","606","85355","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113238","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167937","1483168541","1483296769","1483167937","1","1","0","-1","128228","604","128228","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113239","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167939","1483168541","1483263187","1483167939","1","1","0","-1","94646","602","94646","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113240","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167974","1483168664","1483258435","1483167974","1","1","0","-1","89771","690","89771","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113242","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167978","1483168664","1483274634","1483167978","1","1","0","-1","105970","686","105970","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113243","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167983","1483168664","1483263103","1483167983","1","1","0","-1","94439","681","94439","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113244","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167987","1483168664","1483278666","1483167987","1","1","0","-1","110002","677","110002","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113245","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167992","1483168664","1483287749","1483167992","1","1","0","-1","119085","672","119085","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113246","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167996","1483168664","1483284293","1483167996","1","1","0","-1","115629","668","115629","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113247","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167997","1483168664","1483270394","1483167997","1","1","0","-1","101730","667","101730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113248","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483167998","1483168664","1483246154","1483167998","1","1","0","-1","77490","666","77490","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113249","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168002","1483168664","1483298024","1483168002","1","1","0","-1","129360","662","129360","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113251","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168006","1483168664","1483296526","1483168006","1","1","0","-1","127862","658","127862","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113252","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168013","1483168664","1483255319","1483168013","1","1","0","-1","86655","651","86655","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113253","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168016","1483168664","1483284135","1483168016","1","1","0","-1","115471","648","115471","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113254","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168022","1483168664","1483301536","1483168022","1","1","0","-1","132872","642","132872","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113255","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168023","1483168664","1483276312","1483168023","1","1","0","-1","107648","641","107648","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113256","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168027","1483168664","1483242092","1483168027","1","1","0","-1","73428","637","73428","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113257","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168029","1483168664","1483269238","1483168029","1","1","0","-1","100574","635","100574","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113258","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168033","1483168664","1483272557","1483168033","1","1","0","-1","103893","631","103893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113259","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168037","1483168664","1483275539","1483168037","1","1","0","-1","106875","627","106875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113260","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168040","1483168786","1483275336","1483168040","1","1","0","-1","106550","746","106550","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113261","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168045","1483168786","1483257934","1483168045","1","1","0","-1","89148","741","89148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113262","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168049","1483168786","1483262353","1483168049","1","1","0","-1","93567","737","93567","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113263","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168055","1483168786","1483246889","1483168055","1","1","0","-1","78103","731","78103","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113264","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168057","1483168786","1483270212","1483168057","1","1","0","-1","101426","729","101426","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113266","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483306737","1483168063","1","1","0","-1","137951","723","137951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113267","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483312064","1483168063","1","1","0","-1","143278","723","143278","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113268","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168063","1483168786","1483260109","1483168063","1","1","0","-1","91323","723","91323","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113269","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483282835","1483168064","1","1","0","-1","114049","722","114049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113271","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483283551","1483168064","1","1","0","-1","114765","722","114765","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113272","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276006","1483168064","1","1","0","-1","107220","722","107220","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113273","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483274256","1483168064","1","1","0","-1","105470","722","105470","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113274","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483276058","1483168064","1","1","0","-1","107272","722","107272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113276","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483284221","1483168064","1","1","0","-1","115435","722","115435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113277","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168064","1483168786","1483291245","1483168064","1","1","0","-1","122459","722","122459","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113278","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168069","1483168786","1483282987","1483168069","1","1","0","-1","114201","717","114201","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113279","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168073","1483168909","1483280854","1483168073","1","1","0","-1","111945","836","111945","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113280","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168074","1483168909","1483241767","1483168074","1","1","0","-1","72858","835","72858","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113281","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168077","1483168909","1483261052","1483168077","1","1","0","-1","92143","832","92143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113283","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168078","1483168909","1483244528","1483168078","1","1","0","-1","75619","831","75619","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113284","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168083","1483168909","1483283958","1483168083","1","1","0","-1","115049","826","115049","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113285","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168084","1483168909","1483244547","1483168084","1","1","0","-1","75638","825","75638","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113286","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168118","1483168909","1483276125","1483168118","1","1","0","-1","107216","791","107216","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113287","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168124","1483168909","1483266024","1483168124","1","1","0","-1","97115","785","97115","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113288","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168126","1483168909","1483276477","1483168126","1","1","0","-1","107568","783","107568","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113289","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168128","1483168909","1483287643","1483168128","1","1","0","-1","118734","781","118734","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113290","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168132","1483168909","1483294262","1483168132","1","1","0","-1","125353","777","125353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113291","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168138","1483168909","1483273730","1483168138","1","1","0","-1","104821","771","104821","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113292","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168142","1483168909","1483293516","1483168142","1","1","0","-1","124607","767","124607","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113293","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168152","1483168909","1483259052","1483168152","1","1","0","-1","90143","757","90143","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113294","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168158","1483168909","1483237450","1483168158","1","1","0","-1","68541","751","68541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113296","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168160","1483168909","1483313682","1483168160","1","1","0","-1","144773","749","144773","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113297","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168163","1483168909","1483287534","1483168163","1","1","0","-1","118625","746","118625","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113298","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168172","1483168909","1483297855","1483168172","1","1","0","-1","128946","737","128946","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113299","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168176","1483168909","1483243709","1483168176","1","1","0","-1","74800","733","74800","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113300","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168181","1483169032","1483274322","1483168181","1","1","0","-1","105290","851","105290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113301","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168186","1483169032","1483258568","1483168186","1","1","0","-1","89536","846","89536","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113302","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168187","1483169032","1483272834","1483168187","1","1","0","-1","103802","845","103802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113303","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168189","1483169032","1483247340","1483168189","1","1","0","-1","78308","843","78308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113304","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169154","1483289411","1483168190","1","1","0","-1","120257","964","120257","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113305","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483254966","1483168190","1","1","0","-1","85934","842","85934","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113306","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483308992","1483168190","1","1","0","-1","139960","842","139960","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113307","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483239129","1483168190","1","1","0","-1","70097","842","70097","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113308","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483312056","1483168190","1","1","0","-1","143024","842","143024","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113309","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483273872","1483168190","1","1","0","-1","104840","842","104840","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113310","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483298031","1483168190","1","1","0","-1","128999","842","128999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113311","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483305247","1483168190","1","1","0","-1","136215","842","136215","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113312","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168190","1483169032","1483280565","1483168190","1","1","0","-1","111533","842","111533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113313","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168194","1483169032","1483283837","1483168194","1","1","0","-1","114805","838","114805","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113314","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168197","1483169032","1483297431","1483168197","1","1","0","-1","128399","835","128399","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113315","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168201","1483169032","1483276984","1483168201","1","1","0","-1","107952","831","107952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113317","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483283710","1483168208","1","1","0","-1","114678","824","114678","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113318","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168208","1483169032","1483248416","1483168208","1","1","0","-1","79384","824","79384","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113319","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168210","1483169154","1483310113","1483168210","1","1","0","-1","140959","944","140959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113320","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168214","1483169154","1483295878","1483168214","1","1","0","-1","126724","940","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113321","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168228","1483169154","1483287707","1483168228","1","1","0","-1","118553","926","118553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113322","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168230","1483169154","1483278429","1483168230","1","1","0","-1","109275","924","109275","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113323","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168233","1483169154","1483287981","1483168233","1","1","0","-1","118827","921","118827","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113324","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168238","1483169154","1483250746","1483168238","1","1","0","-1","81592","916","81592","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168243","1483169154","1483287940","1483168243","1","1","0","-1","118786","911","118786","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168245","1483169154","1483249333","1483168245","1","1","0","-1","80179","909","80179","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113327","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168249","1483169154","1483300715","1483168249","1","1","0","-1","131561","905","131561","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113328","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168253","1483169154","1483260194","1483168253","1","1","0","-1","91040","901","91040","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168258","1483169154","1483279518","1483168258","1","1","0","-1","110364","896","110364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168259","1483169154","1483267360","1483168259","1","1","0","-1","98206","895","98206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168263","1483169154","1483276548","1483168263","1","1","0","-1","107394","891","107394","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113333","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168273","1483169154","1483254687","1483168273","1","1","0","-1","85533","881","85533","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113334","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168278","1483169154","1483302710","1483168278","1","1","0","-1","133556","876","133556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113335","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168283","1483169154","1483258315","1483168283","1","1","0","-1","89161","871","89161","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113336","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168288","1483169154","1483262299","1483168288","1","1","0","-1","93145","866","93145","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168291","1483169154","1483269817","1483168291","1","1","0","-1","100663","863","100663","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168301","1483169279","1483267055","1483168301","1","1","0","-1","97776","978","97776","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113339","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168305","1483169279","1483235134","1483168305","1","1","0","-1","65855","974","65855","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168307","1483169279","1483287038","1483168307","1","1","0","-1","117759","972","117759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168309","1483169279","1483314859","1483168309","1","1","0","-1","145580","970","145580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113342","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168312","1483169279","1483237172","1483168312","1","1","0","-1","67893","967","67893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483168316","1483169279","1483252150","1483168316","1","1","0","-1","82871","963","82871","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113385","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171819","1483171856","1483282270","1483171819","1","1","0","-1","110414","37","110414","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113386","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171823","1483171856","1483279928","1483171823","1","1","0","-1","108072","33","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113394","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171859","1483171978","1483256151","1483171859","1","1","0","-1","84173","119","84173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113395","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171867","1483171978","1483254438","1483171867","1","1","0","-1","82460","111","82460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113396","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171871","1483171978","1483268945","1483171871","1","1","0","-1","96967","107","96967","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113397","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171880","1483171978","1483248421","1483171880","1","1","0","-1","76443","98","76443","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113398","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171885","1483171978","1483287436","1483171885","1","1","0","-1","115458","93","115458","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113399","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171888","1483171978","1483309993","1483171888","1","1","0","-1","138015","90","138015","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113400","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171890","1483171978","1483309501","1483171890","1","1","0","-1","137523","88","137523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113401","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171891","1483171978","1483249947","1483171891","1","1","0","-1","77969","87","77969","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113402","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171898","1483171978","1483308217","1483171898","1","1","0","-1","136239","80","136239","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113403","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171903","1483171978","1483297802","1483171903","1","1","0","-1","125824","75","125824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113404","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171907","1483171978","1483279767","1483171907","1","1","0","-1","107789","71","107789","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113406","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171915","1483171978","1483282208","1483171915","1","1","0","-1","110230","63","110230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113407","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171926","1483171978","1483260323","1483171926","1","1","0","-1","88345","52","88345","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113408","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171931","1483171978","1483312213","1483171931","1","1","0","-1","140235","47","140235","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113409","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171932","1483171978","1483259488","1483171932","1","1","0","-1","87510","46","87510","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113410","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171935","1483171978","1483247531","1483171935","1","1","0","-1","75553","43","75553","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113411","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171938","1483171978","1483275535","1483171938","1","1","0","-1","103557","40","103557","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113412","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171941","1483171978","1483279405","1483171941","1","1","0","-1","107427","37","107427","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113413","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171945","1483172100","1483265904","1483171945","1","1","0","-1","93804","155","93804","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113414","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171947","1483172100","1483269408","1483171947","1","1","0","-1","97308","153","97308","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113415","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171949","1483172100","1483280274","1483171949","1","1","0","-1","108174","151","108174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113416","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171950","1483172100","1483273212","1483171950","1","1","0","-1","101112","150","101112","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113417","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171959","1483172100","1483303709","1483171959","1","1","0","-1","131609","141","131609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113418","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171964","1483172100","1483307695","1483171964","1","1","0","-1","135595","136","135595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113419","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171970","1483172100","1483280353","1483171970","1","1","0","-1","108253","130","108253","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113420","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171973","1483172100","1483289464","1483171973","1","1","0","-1","117364","127","117364","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113421","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171977","1483172100","1483258325","1483171977","1","1","0","-1","86225","123","86225","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113423","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171983","1483172100","1483298824","1483171983","1","1","0","-1","126724","117","126724","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113424","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171987","1483172100","1483291536","1483171987","1","1","0","-1","119436","113","119436","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113425","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171991","1483172100","1483286402","1483171991","1","1","0","-1","114302","109","114302","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113426","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171993","1483172100","1483289810","1483171993","1","1","0","-1","117710","107","117710","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113427","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171995","1483172100","1483268308","1483171995","1","1","0","-1","96208","105","96208","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113428","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483171999","1483172100","1483312092","1483171999","1","1","0","-1","139992","101","139992","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113429","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172000","1483172100","1483271960","1483172000","1","1","0","-1","99860","100","99860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113430","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172003","1483172100","1483280400","1483172003","1","1","0","-1","108300","97","108300","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113431","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172006","1483172100","1483296273","1483172006","1","1","0","-1","124173","94","124173","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113432","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172010","1483172100","1483276939","1483172010","1","1","0","-1","104839","90","104839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113433","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172013","1483172223","1483286718","1483172013","1","1","0","-1","114495","210","114495","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113434","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483172016","1483172223","1483259137","1483172016","1","1","0","-1","86914","207","86914","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113830","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200005","1483200053","1483296245","1483200005","1","1","0","-1","96192","48","96192","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113831","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200006","1483200053","1483298992","1483200006","1","1","0","-1","98939","47","98939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113832","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200007","1483200053","1483286337","1483200007","1","1","0","-1","86284","46","86284","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113833","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200011","1483200053","1483310003","1483200011","1","1","0","-1","109950","42","109950","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200013","1483200053","1483296688","1483200013","1","1","0","-1","96635","40","96635","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200017","1483200053","1483291976","1483200017","1","1","0","-1","91923","36","91923","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113836","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200018","1483200053","1483289913","1483200018","1","1","0","-1","89860","35","89860","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113849","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200048","1483200175","1483287999","1483200048","1","1","0","-1","87824","127","87824","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113850","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200050","1483200175","1483293078","1483200050","1","1","0","-1","92903","125","92903","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113864","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200058","1483200175","1483309147","1483200058","1","1","0","-1","108972","117","108972","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113866","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200064","1483200175","1483281545","1483200064","1","1","0","-1","81370","111","81370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113868","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292528","1483200066","1","1","0","-1","92353","109","92353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113869","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314377","1483200066","1","1","0","-1","114202","109","114202","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113870","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483281716","1483200066","1","1","0","-1","81541","109","81541","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113871","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289925","1483200066","1","1","0","-1","89750","109","89750","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113873","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483314312","1483200066","1","1","0","-1","114137","109","114137","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113874","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483285844","1483200066","1","1","0","-1","85669","109","85669","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483315004","1483200066","1","1","0","-1","114829","109","114829","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483310674","1483200066","1","1","0","-1","110499","109","110499","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483289097","1483200066","1","1","0","-1","88922","109","88922","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113879","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483304947","1483200066","1","1","0","-1","104772","109","104772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113880","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200175","1483292487","1483200066","1","1","0","-1","92312","109","92312","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483298771","1483200066","1","1","0","-1","98474","231","98474","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483309627","1483200066","1","1","0","-1","109330","231","109330","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113885","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483313852","1483200066","1","1","0","-1","113555","231","113555","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113886","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483303395","1483200066","1","1","0","-1","103098","231","103098","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6113887","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483200066","1483200297","1483284263","1483200066","1","1","0","-1","83966","231","83966","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114018","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201086","1483201151","1483311521","1483201086","1","1","0","-1","110370","65","110370","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114019","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201089","1483201151","1483293195","1483201089","1","1","0","-1","92044","62","92044","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114021","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201093","1483201151","1483286060","1483201093","1","1","0","-1","84909","58","84909","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114022","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201095","1483201151","1483289923","1483201095","1","1","0","-1","88772","56","88772","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114023","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201098","1483201151","1483289409","1483201098","1","1","0","-1","88258","53","88258","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114024","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201100","1483201151","1483303639","1483201100","1","1","0","-1","102488","51","102488","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114025","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201104","1483201151","1483302425","1483201104","1","1","0","-1","101274","47","101274","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114026","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201107","1483201151","1483288723","1483201107","1","1","0","-1","87572","44","87572","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114027","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201108","1483201151","1483297774","1483201108","1","1","0","-1","96623","43","96623","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114029","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201113","1483201151","1483302374","1483201113","1","1","0","-1","101223","38","101223","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114030","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201115","1483201151","1483304177","1483201115","1","1","0","-1","103026","36","103026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114031","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201119","1483201151","1483304928","1483201119","1","1","0","-1","103777","32","103777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114037","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483295032","1483201135","1","1","0","-1","93759","138","93759","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114038","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483296629","1483201135","1","1","0","-1","95356","138","95356","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114040","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483286283","1483201135","1","1","0","-1","85010","138","85010","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114041","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483288029","1483201135","1","1","0","-1","86756","138","86756","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114042","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483279017","1483201135","1","1","0","-1","77744","138","77744","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114043","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292728","1483201135","1","1","0","-1","91455","138","91455","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114044","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483310148","1483201135","1","1","0","-1","108875","138","108875","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114045","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483315060","1483201135","1","1","0","-1","113787","138","113787","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114046","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483276183","1483201135","1","1","0","-1","74910","138","74910","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114047","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201135","1483201273","1483292998","1483201135","1","1","0","-1","91725","138","91725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114048","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201136","1483201273","1483298255","1483201136","1","1","0","-1","96982","137","96982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114050","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201139","1483201273","1483314421","1483201139","1","1","0","-1","113148","134","113148","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114052","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201145","1483201273","1483304167","1483201145","1","1","0","-1","102894","128","102894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114053","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201147","1483201273","1483282985","1483201147","1","1","0","-1","81712","126","81712","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114054","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201148","1483201273","1483294052","1483201148","1","1","0","-1","92779","125","92779","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114075","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201163","1483201397","1483297708","1483201163","1","1","0","-1","96311","234","96311","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114076","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483268423","1483201165","1","1","0","-1","67026","232","67026","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114078","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483295408","1483201165","1","1","0","-1","94011","232","94011","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114079","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483279169","1483201165","1","1","0","-1","77772","232","77772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114080","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483271283","1483201165","1","1","0","-1","69886","232","69886","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114081","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483291388","1483201165","1","1","0","-1","89991","232","89991","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114088","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483311920","1483201165","1","1","0","-1","110523","232","110523","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114090","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483201165","1483201397","1483276303","1483201165","1","1","0","-1","74906","232","74906","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114449","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204151","1483204193","1483308118","1483204151","1","1","0","-1","103925","42","103925","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114450","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204156","1483204193","1483310364","1483204156","1","1","0","-1","106171","37","106171","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114451","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204161","1483204193","1483298503","1483204161","1","1","0","-1","94310","32","94310","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114480","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204196","1483204314","1483287771","1483204196","1","1","0","-1","83457","118","83457","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114481","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204205","1483204314","1483312386","1483204205","1","1","0","-1","108072","109","108072","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114482","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204208","1483204314","1483291830","1483204208","1","1","0","-1","87516","106","87516","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114483","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483292696","1483204213","1","1","0","-1","88382","101","88382","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114484","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483291812","1483204213","1","1","0","-1","87498","101","87498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114485","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289916","1483204213","1","1","0","-1","85602","101","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114486","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483289915","1483204213","1","1","0","-1","85601","101","85601","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114487","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483274136","1483204213","1","1","0","-1","69822","101","69822","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114488","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483303998","1483204213","1","1","0","-1","99684","101","99684","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114489","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483309919","1483204213","1","1","0","-1","105605","101","105605","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114490","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204213","1483204314","1483306454","1483204213","1","1","0","-1","102140","101","102140","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114492","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204215","1483204314","1483294235","1483204215","1","1","0","-1","89921","99","89921","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114493","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204222","1483204314","1483310894","1483204222","1","1","0","-1","106580","92","106580","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114494","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204225","1483204314","1483286158","1483204225","1","1","0","-1","81844","89","81844","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114495","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204229","1483204314","1483289923","1483204229","1","1","0","-1","85609","85","85609","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114496","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204233","1483204314","1483289218","1483204233","1","1","0","-1","84904","81","84904","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114498","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204314","1483289916","1483204234","1","1","0","-1","85602","80","85602","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114501","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483289927","1483204234","1","1","0","-1","85492","201","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114502","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483304933","1483204234","1","1","0","-1","100498","201","100498","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114503","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483285783","1483204234","1","1","0","-1","81348","201","81348","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114506","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483295366","1483204234","1","1","0","-1","90931","201","90931","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114507","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204234","1483204435","1483293296","1483204234","1","1","0","-1","88861","201","88861","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114508","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204237","1483204435","1483289927","1483204237","1","1","0","-1","85492","198","85492","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114512","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204252","1483204435","1483299417","1483204252","1","1","0","-1","94982","183","94982","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114513","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204255","1483204435","1483303675","1483204255","1","1","0","-1","99240","180","99240","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114515","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483204264","1483204435","1483293730","1483204264","1","1","0","-1","89295","171","89295","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114834","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206183","1483206254","1483297400","1483206183","1","1","0","-1","91146","71","91146","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114835","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206186","1483206254","1483293310","1483206186","1","1","0","-1","87056","68","87056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114837","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206191","1483206254","1483306501","1483206191","1","1","0","-1","100247","63","100247","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114838","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206193","1483206254","1483312905","1483206193","1","1","0","-1","106651","61","106651","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114839","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206195","1483206254","1483313495","1483206195","1","1","0","-1","107241","59","107241","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114840","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206199","1483206254","1483308989","1483206199","1","1","0","-1","102735","55","102735","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114842","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206205","1483206254","1483312880","1483206205","1","1","0","-1","106626","49","106626","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114843","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206208","1483206254","1483309979","1483206208","1","1","0","-1","103725","46","103725","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114845","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206215","1483206254","1483311066","1483206215","1","1","0","-1","104812","39","104812","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114846","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206218","1483206254","1483273868","1483206218","1","1","0","-1","67614","36","67614","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114876","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206263","1483206375","1483306945","1483206263","1","1","0","-1","100570","112","100570","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114877","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483295609","1483206270","1","1","0","-1","89234","105","89234","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114878","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206270","1483206375","1483283086","1483206270","1","1","0","-1","76711","105","76711","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114881","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206286","1483206375","1483303608","1483206286","1","1","0","-1","97233","89","97233","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114882","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206287","1483206375","1483302011","1483206287","1","1","0","-1","95636","88","95636","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114883","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483206290","1483206375","1483298553","1483206290","1","1","0","-1","92178","85","92178","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114928","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207478","1483207590","1483302149","1483207478","1","1","0","-1","94559","112","94559","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114929","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207484","1483207590","1483313429","1483207484","1","1","0","-1","105839","106","105839","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483312903","1483207487","1","1","0","-1","105313","103","105313","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483298820","1483207487","1","1","0","-1","91230","103","91230","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114936","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483303919","1483207487","1","1","0","-1","96329","103","96329","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114937","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483301878","1483207487","1","1","0","-1","94288","103","94288","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114940","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483302483","1483207487","1","1","0","-1","94893","103","94893","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483311321","1483207487","1","1","0","-1","103731","103","103731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114945","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483304393","1483207487","1","1","0","-1","96803","103","96803","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114946","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207590","1483295980","1483207487","1","1","0","-1","88390","103","88390","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483300743","1483207487","1","1","0","-1","93032","224","93032","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483309082","1483207487","1","1","0","-1","101371","224","101371","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483313051","1483207487","1","1","0","-1","105340","224","105340","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207487","1483207711","1483291993","1483207487","1","1","0","-1","84282","224","84282","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114955","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207488","1483207711","1483301833","1483207488","1","1","0","-1","94122","223","94122","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207491","1483207711","1483295375","1483207491","1","1","0","-1","87664","220","87664","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207494","1483207711","1483307072","1483207494","1","1","0","-1","99361","217","99361","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114960","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207500","1483207711","1483295229","1483207500","1","1","0","-1","87518","211","87518","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114962","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207502","1483207711","1483313818","1483207502","1","1","0","-1","106107","209","106107","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114963","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207503","1483207711","1483303828","1483207503","1","1","0","-1","96117","208","96117","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114964","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483207507","1483207711","1483285846","1483207507","1","1","0","-1","78135","204","78135","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208320","1483208439","1483306711","1483208320","1","1","0","-1","98272","119","98272","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208331","1483208439","1483306288","1483208331","1","1","0","-1","97849","108","97849","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114978","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208340","1483208439","1483303748","1483208340","1","1","0","-1","95309","99","95309","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208342","1483208439","1483306661","1483208342","1","1","0","-1","98222","97","98222","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114981","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208347","1483208439","1483303635","1483208347","1","1","0","-1","95196","92","95196","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208351","1483208439","1483289936","1483208351","1","1","0","-1","81497","88","81497","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208353","1483208439","1483288765","1483208353","1","1","0","-1","80326","86","80326","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208357","1483208439","1483299953","1483208357","1","1","0","-1","91514","82","91514","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114985","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208359","1483208439","1483308874","1483208359","1","1","0","-1","100435","80","100435","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114991","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208381","1483208560","1483288374","1483208381","1","1","0","-1","79814","179","79814","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114992","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208387","1483208560","1483285114","1483208387","1","1","0","-1","76554","173","76554","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114993","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208390","1483208560","1483299079","1483208390","1","1","0","-1","90519","170","90519","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114996","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208401","1483208560","1483311766","1483208401","1","1","0","-1","103206","159","103206","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6114997","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208410","1483208560","1483287596","1483208410","1","1","0","-1","79036","150","79036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115000","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208422","1483208560","1483304512","1483208422","1","1","0","-1","95952","138","95952","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115002","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208431","1483208560","1483285979","1483208431","1","1","0","-1","77419","129","77419","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115008","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208452","1483208560","1483294406","1483208452","1","1","0","-1","85846","108","85846","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115009","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208560","1483302388","1483208454","1","1","0","-1","93828","106","93828","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115010","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483276469","1483208454","1","1","0","-1","67788","227","67788","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115012","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483307414","1483208454","1","1","0","-1","98733","227","98733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115013","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483290458","1483208454","1","1","0","-1","81777","227","81777","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115014","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483208454","1483208681","1483311060","1483208454","1","1","0","-1","102379","227","102379","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115103","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213480","1483213534","1483282058","1483213480","1","1","0","-1","68524","54","68524","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115106","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213489","1483213534","1483306835","1483213489","1","1","0","-1","93301","45","93301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115107","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213492","1483213534","1483291252","1483213492","1","1","0","-1","77718","42","77718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115125","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483292373","1483213550","1","1","0","-1","78718","105","78718","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115128","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483289686","1483213550","1","1","0","-1","76031","105","76031","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115129","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483294594","1483213550","1","1","0","-1","80939","105","80939","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115132","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483281233","1483213550","1","1","0","-1","67578","105","67578","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115133","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483303422","1483213550","1","1","0","-1","89767","105","89767","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115134","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483213550","1483213655","1483307027","1483213550","1","1","0","-1","93372","105","93372","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115325","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222533","1483222630","1483304685","1483222533","1","1","0","-1","82055","97","82055","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115326","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222534","1483222630","1483289923","1483222534","1","1","0","-1","67293","96","67293","0","9:0","FAILED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115329","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222540","1483222630","1483291327","1483222540","1","1","0","-1","68697","90","68697","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115330","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222541","1483222630","1483310687","1483222541","1","1","0","-1","88057","89","88057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115331","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222542","1483222630","1483289282","1483222542","1","1","0","-1","66652","88","66652","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115337","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222560","1483222630","1483311524","1483222560","1","1","0","-1","88894","70","88894","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115338","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222563","1483222630","1483314587","1483222563","1","1","0","-1","91957","67","91957","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115340","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222574","1483222750","1483304020","1483222574","1","1","0","-1","81270","176","81270","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115341","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222580","1483222750","1483301313","1483222580","1","1","0","-1","78563","170","78563","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115344","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222586","1483222750","1483307812","1483222586","1","1","0","-1","85062","164","85062","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115353","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483222606","1483222750","1483309483","1483222606","1","1","0","-1","86733","144","86733","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115620","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231340","1483231467","1483298945","1483231340","1","1","0","-1","67478","127","67478","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115637","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231347","1483231467","1483302395","1483231347","1","1","0","-1","70928","120","70928","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115646","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231591","1483231710","1483313236","1483231591","1","1","0","-1","81526","119","81526","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115647","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231592","1483231710","1483310917","1483231592","1","1","0","-1","79207","118","79207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115696","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231657","1483231953","1483311763","1483231657","1","1","0","-1","79810","296","79810","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6115717","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483231679","1483232075","1483311252","1483231679","1","1","0","-1","79177","396","79177","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116369","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483314600","1483243516","1","1","0","-1","70998","86","70998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6116373","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483243516","1483243602","1483309681","1483243516","1","1","0","-1","66079","86","66079","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6107586[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[7]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[8]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[9]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483279393","1483036371","1","1","0","-1","242924","98","242924","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483275136","1483036371","1","1","0","-1","238667","98","238667","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[11]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[12]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483270817","1483036371","1","1","0","-1","234348","98","234348","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[15]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036469","1483295671","1483036371","1","1","0","-1","259202","98","259202","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483246881","1483036371","1","1","0","-1","210283","227","210283","0","1:0","FAILED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483240052","1483036371","1","1","0","-1","203454","227","203454","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107586[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483036371","1483036598","1483295821","1483036371","1","1","0","-1","259223","227","259223","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[13]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[14]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483254894","1483039080","1","1","0","-1","215685","131","215685","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[18]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[19]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039209","1483298433","1483039080","1","1","0","-1","259224","131","259224","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039481","1483298703","1483039080","1","1","0","-1","259222","403","259222","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107820[29]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483039078","1483039613","1483298823","1483039080","1","1","0","-1","259210","535","259210","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[30]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046922","1483306143","1483046357","1","1","0","-1","259221","565","259221","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483231734","1483046357","1","1","0","-1","185225","152","185225","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[21]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046509","1483305723","1483046357","1","1","0","-1","259214","152","259214","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483296209","1483046357","1","1","0","-1","249566","286","249566","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[24]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[25]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[26]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046643","1483305843","1483046357","1","1","0","-1","259200","286","259200","0","1:0","TIMEOUT","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108027[27]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483046357","1483046778","1483272476","1483046357","1","1","0","-1","225698","421","225698","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108716[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483229565","1483072475","1","1","0","-1","156978","112","156978","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108716[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483072475","1483072587","1483270842","1483072475","1","1","0","-1","198255","112","198255","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6108800[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483076091","1483076144","1483267927","1483076091","1","1","0","-1","191783","53","191783","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6109585[1]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483271049","1483109379","1","1","0","-1","161616","56","161616","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6109585[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483109377","1483109433","1483312425","1483109379","1","1","0","-1","202992","56","202992","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6111029[2]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483125543","1483310202","1483125395","1","1","0","-1","184659","149","184659","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112885[16]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148065","1483148185","1483297208","1483148066","1","1","0","-1","149023","120","149023","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112886[17]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148290","1483148436","1483266206","1483148293","1","1","0","-1","117770","146","117770","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112887[20]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483148944","1483149064","1483255470","1483148944","1","1","0","-1","106406","120","106406","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6112904[23]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483155055","1483155085","1483298241","1483155055","1","1","0","-1","143156","30","143156","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6107628","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037326","1483037758","1483296961","1483037326","1","8","0","-1","259203","432","2073624","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107630","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037377","1483037889","1483297112","1483037377","1","8","0","-1","259223","512","2073784","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107635","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037430","1483038146","1483297352","1483037430","1","8","0","-1","259206","716","2073648","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6107647","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483037509","1483038280","1483297502","1483037509","1","8","0","-1","259222","771","2073776","0","1:0","TIMEOUT","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6108907","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079550","1483079610","1483308226","1483079550","1","8","0","-1","228616","60","1828928","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["6108910","Robertson","screw - Screwdriver","UTC","","Shearwater, Cory's","Screwdriver","curry","1483079655","1483079739","1483308222","1483079655","1","8","0","-1","228483","84","1827864","0","0:0","CANCELLED by 463950","8","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Experimental Systems"] -["995647","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144144","1483273604","1483144114","1","8","0","-1","129460","30","1035680","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995648","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144145","1483283483","1483144114","1","8","0","-1","139338","31","1114704","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995650","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144147","1483274577","1483144114","1","8","0","-1","130430","33","1043440","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995652","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144149","1483292769","1483144114","1","8","0","-1","148620","35","1188960","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995653","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144150","1483274570","1483144114","1","8","0","-1","130420","36","1043360","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995654","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483277818","1483144114","1","8","0","-1","133666","38","1069328","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995655","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144152","1483286039","1483144114","1","8","0","-1","141887","38","1135096","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995656","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144114","1483144154","1483273511","1483144114","1","8","0","-1","129357","40","1034856","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995657","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144155","1483280557","1483144115","1","8","0","-1","136402","40","1091216","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995658","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483277112","1483144115","1","8","0","-1","132954","43","1063632","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["995659","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1483144115","1483144158","1483275125","1483144115","1","8","0","-1","130967","43","1047736","0","0:0","COMPLETED","8","2147487648Mn","518400","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112942","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161215","1483161307","1483236730","1483161215","2","24","0","-1","75423","92","1810152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112943","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161224","1483161307","1483266720","1483161224","2","24","0","-1","105413","83","2529912","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112944","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161230","1483161307","1483272990","1483161230","2","24","0","-1","111683","77","2680392","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112945","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161240","1483161307","1483240755","1483161240","2","24","0","-1","79448","67","1906752","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6114330","Robertson","screw - Screwdriver","UTC","","Warbler, Sardinian","Screwdriver","derby","1483203444","1483203589","1483285437","1483203444","4","32","0","-1","81848","145","2619136","0","0:0","CANCELLED by 284857","32","2147486448Mn","259200","white","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["6108018","Robertson","screw - Screwdriver","UTC","","Duck, Ferruginous","Screwdriver","derby","1483045081","1483045193","1483297221","1483045081","5","60","0","-1","252028","112","15121680","0","0:0","COMPLETED","60","2147486448Mn","255000","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6111029[10]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483127378","1483231867","1483125395","1","1","0","-1","104489","1984","104489","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["6110309","Robertson","screw - Screwdriver","UTC","","Thrush, Mistle","Screwdriver","curry","1483118113","1483120705","1483246965","1483118113","1","12","0","-1","126260","2592","1515120","0","1:0","FAILED","12","2147486448Mn","259200","white","Mathematical and Physical Sciences","Mathematical Sciences","Algebra and Number Theory"] -["6110932","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122816","1483129199","1483260184","1483122816","1","1","0","-1","130985","6383","130985","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110934","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122827","1483129199","1483241049","1483122827","1","1","0","-1","111850","6372","111850","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110935","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122833","1483129199","1483243971","1483122833","1","1","0","-1","114772","6366","114772","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110941","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122862","1483129199","1483279653","1483122862","1","1","0","-1","150454","6337","150454","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110943","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122866","1483129199","1483253444","1483122866","1","1","0","-1","124245","6333","124245","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110944","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122873","1483129199","1483239135","1483122873","1","1","0","-1","109936","6326","109936","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110948","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122883","1483129199","1483250001","1483122883","1","1","0","-1","120802","6316","120802","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110949","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122889","1483129199","1483269172","1483122889","1","1","0","-1","139973","6310","139973","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110951","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122898","1483129199","1483257196","1483122898","1","1","0","-1","127997","6301","127997","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110952","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122905","1483129199","1483270373","1483122905","1","1","0","-1","141174","6294","141174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110953","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122914","1483129199","1483258374","1483122914","1","1","0","-1","129175","6285","129175","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110956","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122927","1483130416","1483232571","1483122927","1","1","0","-1","102155","7489","102155","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110957","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122928","1483130416","1483269146","1483122928","1","1","0","-1","138730","7488","138730","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110959","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122941","1483130416","1483247414","1483122941","1","1","0","-1","116998","7475","116998","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110961","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122956","1483130416","1483281503","1483122956","1","1","0","-1","151087","7460","151087","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110965","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122986","1483130940","1483254090","1483122986","1","1","0","-1","123150","7954","123150","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110966","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122991","1483130940","1483235921","1483122991","1","1","0","-1","104981","7949","104981","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110967","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122993","1483130940","1483244686","1483122993","1","1","0","-1","113746","7947","113746","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110969","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483122999","1483140833","1483230389","1483122999","1","1","0","-1","89556","17834","89556","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110970","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123006","1483140833","1483231508","1483123006","1","1","0","-1","90675","17827","90675","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110971","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123011","1483140833","1483243740","1483123011","1","1","0","-1","102907","17822","102907","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110972","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123014","1483140833","1483246134","1483123014","1","1","0","-1","105301","17819","105301","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110973","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123020","1483140833","1483249560","1483123020","1","1","0","-1","108727","17813","108727","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110974","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123028","1483140833","1483237007","1483123028","1","1","0","-1","96174","17805","96174","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110975","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123031","1483140833","1483232693","1483123031","1","1","0","-1","91860","17802","91860","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110976","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123039","1483140833","1483265721","1483123039","1","1","0","-1","124888","17794","124888","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110979","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123058","1483140833","1483259832","1483123058","1","1","0","-1","118999","17775","118999","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110980","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123059","1483140833","1483242584","1483123059","1","1","0","-1","101751","17774","101751","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110982","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123062","1483140833","1483246293","1483123062","1","1","0","-1","105460","17771","105460","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110983","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123074","1483140833","1483254460","1483123074","1","1","0","-1","113627","17759","113627","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110984","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123081","1483140833","1483254648","1483123081","1","1","0","-1","113815","17752","113815","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6110986","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483123088","1483140833","1483249312","1483123088","1","1","0","-1","108479","17745","108479","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111667","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130503","1483140958","1483273994","1483130503","1","1","0","-1","133036","10455","133036","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111669","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130511","1483140958","1483261777","1483130511","1","1","0","-1","120819","10447","120819","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111670","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130519","1483140958","1483237534","1483130519","1","1","0","-1","96576","10439","96576","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111671","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130527","1483140958","1483255977","1483130527","1","1","0","-1","115019","10431","115019","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111692","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130555","1483140958","1483255361","1483130555","1","1","0","-1","114403","10403","114403","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111693","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130560","1483140958","1483230064","1483130560","1","1","0","-1","89106","10398","89106","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111695","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130575","1483143765","1483230749","1483130575","1","1","0","-1","86984","13190","86984","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111697","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130582","1483143765","1483258716","1483130582","1","1","0","-1","114951","13183","114951","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111700","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130589","1483146922","1483268786","1483130589","1","1","0","-1","121864","16333","121864","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111701","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130598","1483146922","1483242979","1483130598","1","1","0","-1","96057","16324","96057","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111702","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130612","1483146922","1483287626","1483130612","1","1","0","-1","140704","16310","140704","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111029[22]","Robertson","screw - Screwdriver","UTC","","Lapwing","Screwdriver","curry","1483125394","1483129193","1483303395","1483125395","1","1","0","-1","174202","3799","174202","0","0:0","COMPLETED","1","8Gn","259200","white","Engineering","Design and Manufacturing Systems","Operations Research and Production Systems"] -["964695","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959827","1483244087","1482955559","1","16","0","-1","284260","4268","4548160","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964696","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955559","1482959922","1483241046","1482955559","1","16","0","-1","281124","4363","4497984","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964697","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483244842","1482955560","1","16","0","-1","283623","5659","4537968","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964698","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961219","1483243832","1482955560","1","16","0","-1","282613","5659","4521808","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964699","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482961261","1483252567","1482955560","1","16","0","-1","291306","5701","4660896","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964700","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482963515","1483249666","1482955560","1","16","0","-1","286151","7955","4578416","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964701","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482964505","1483248060","1482955560","1","16","0","-1","283555","8945","4536880","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964702","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482966664","1483246450","1482955560","1","16","0","-1","279786","11104","4476576","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964703","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482968430","1483254631","1482955560","1","16","0","-1","286201","12870","4579216","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964704","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955560","1482969745","1483253462","1482955560","1","16","0","-1","283717","14185","4539472","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964705","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482969934","1483255664","1482955561","1","16","0","-1","285730","14373","4571680","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["964706","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482972508","1483258765","1482955561","1","16","0","-1","286257","16947","4580112","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112948","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161271","1483177476","1483287539","1483161271","2","16","0","-1","110063","16205","1761008","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112946","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161251","1483169402","1483254005","1483161251","2","24","0","-1","84603","8151","2030472","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112947","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161259","1483170757","1483266921","1483161259","2","24","0","-1","96164","9498","2307936","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6112949","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161281","1483178210","1483258133","1483161281","2","24","0","-1","79923","16929","1918152","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6111703","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130621","1483149447","1483259968","1483130621","1","1","0","-1","110521","18826","110521","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111704","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130626","1483149447","1483259737","1483130626","1","1","0","-1","110290","18821","110290","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111705","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130632","1483149447","1483243256","1483130632","1","1","0","-1","93809","18815","93809","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111706","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130637","1483149447","1483262042","1483130637","1","1","0","-1","112595","18810","112595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111707","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130644","1483149447","1483251123","1483130644","1","1","0","-1","101676","18803","101676","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111708","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130651","1483149571","1483245286","1483130651","1","1","0","-1","95715","18920","95715","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111709","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483243917","1483130661","1","1","0","-1","94346","18910","94346","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111710","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130661","1483149571","1483297967","1483130661","1","1","0","-1","148396","18910","148396","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111711","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130663","1483149571","1483262372","1483130663","1","1","0","-1","112801","18908","112801","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111731","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130683","1483149571","1483273166","1483130683","1","1","0","-1","123595","18888","123595","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111732","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130695","1483149571","1483247653","1483130695","1","1","0","-1","98082","18876","98082","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111733","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130702","1483149697","1483291977","1483130702","1","1","0","-1","142280","18995","142280","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111734","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130705","1483149697","1483267146","1483130705","1","1","0","-1","117449","18992","117449","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111735","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130713","1483149697","1483289923","1483130713","1","1","0","-1","140226","18984","140226","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111736","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130716","1483149697","1483273378","1483130716","1","1","0","-1","123681","18981","123681","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111737","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130723","1483149697","1483271994","1483130723","1","1","0","-1","122297","18974","122297","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111738","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130728","1483149697","1483233193","1483130728","1","1","0","-1","83496","18969","83496","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111739","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130742","1483149697","1483247179","1483130742","1","1","0","-1","97482","18955","97482","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111741","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130745","1483149823","1483259432","1483130745","1","1","0","-1","109609","19078","109609","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111742","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130747","1483149823","1483250848","1483130747","1","1","0","-1","101025","19076","101025","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111743","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130752","1483149823","1483264028","1483130752","1","1","0","-1","114205","19071","114205","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111744","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130755","1483150068","1483240027","1483130755","1","1","0","-1","89959","19313","89959","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111748","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130786","1483150190","1483235543","1483130786","1","1","0","-1","85353","19404","85353","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111749","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130795","1483150312","1483286368","1483130795","1","1","0","-1","136056","19517","136056","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111770","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130826","1483150312","1483254519","1483130826","1","1","0","-1","104207","19486","104207","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111771","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130836","1483150312","1483260043","1483130836","1","1","0","-1","109731","19476","109731","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111772","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130843","1483150312","1483261777","1483130843","1","1","0","-1","111465","19469","111465","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111773","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130848","1483150312","1483236580","1483130848","1","1","0","-1","86268","19464","86268","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111774","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130853","1483150312","1483240561","1483130853","1","1","0","-1","90249","19459","90249","0","0:0","COMPLETED","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6111775","Robertson","screw - Screwdriver","UTC","","Moorhen","Screwdriver","curry","1483130859","1483150434","1483289924","1483130859","1","1","0","-1","139490","19575","139490","0","0:0","CANCELLED by 425155","1","2147486448Mn","259200","white","Computer and Information Science and Engineering","Microelectronic Information Processing Systems","Systems Prototyping and Fabrication"] -["6108176","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483049788","1483075619","1483248447","1483049788","1","12","0","-1","172828","25831","2073936","0","1:0","TIMEOUT","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109583","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109304","1483130147","1483256250","1483109304","1","12","0","-1","126103","20843","1513236","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109608","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109465","1483130016","1483257008","1483109465","1","12","0","-1","126992","20551","1523904","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["6109610","Robertson","screw - Screwdriver","UTC","","Sandpiper, Spotted","Screwdriver","curry","1483109484","1483130147","1483229691","1483109484","1","12","0","-1","99544","20663","1194528","0","0:0","COMPLETED","12","2147486448Mn","172800","white","Humanities\/Arts","Arts","Arts"] -["964707","Mortorq","screw - Screwdriver","UTC","","Warbler, Garden","Screwdriver","cashew","1482955561","1482974294","1483257177","1482955561","1","16","0","-1","282883","18733","4526128","0","0:0","COMPLETED","16","2147487648Mn","10800000","pikelet","Mathematical and Physical Sciences","Mathematical Sciences","Statistics and Probability"] -["6112950","Robertson","screw - Screwdriver","UTC","","Sparrow, White-throated","Screwdriver","curry","1483161291","1483179921","1483263236","1483161291","2","24","0","-1","83315","18630","1999560","0","0:0","COMPLETED","16","2147486448Mn","259200","white","Engineering","Design and Manufacturing Systems","Design and Computer-Integrated Engineering"] -["6108913","Robertson","screw - Screwdriver","UTC","","Peregrine","Screwdriver","derby","1483079747","1483130147","1483238294","1483079747","5","60","0","-1","108147","50400","6488820","0","0:0","COMPLETED","60","2147486448Mn","110400","white","Mathematical and Physical Sciences","Astronomical Sciences","Stellar Astronomy and Astrophysics"] -["6071470","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916662","1483044536","1483271836","1483044426","1","8","0","-1","227300","1127874","1818400","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071484","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481916957","1483044536","1483298941","1483044426","1","8","0","-1","254405","1127579","2035240","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071502","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481917808","1483085948","1483273485","1483064965","1","8","0","-1","187537","1168140","1500296","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071518","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918137","1483184680","1483294800","1483184668","1","8","0","-1","110120","1266543","880960","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071523","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918281","1483184680","1483305127","1483184668","1","8","0","-1","120447","1266399","963576","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071529","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918529","1483184680","1483292468","1483184668","1","8","0","-1","107788","1266151","862304","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6071533","Robertson","screw - Screwdriver","UTC","","Treecreeper, Short-toed","Screwdriver","curry","1481918630","1483184680","1483309102","1483184660","1","8","0","-1","124422","1266050","995376","0","0:0","COMPLETED","8","32000Mn","259200","white","Biological Sciences","Molecular Biosciences","Cell Biology"] -["6101316","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784833","1482973835","1483233058","1482784833","8","96","0","-1","259223","189002","24885408","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101317","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482784877","1482974692","1483233932","1482784877","8","96","0","-1","259240","189815","24887040","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101752","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811393","1482974692","1483233933","1482811393","8","96","0","-1","259241","163299","24887136","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101753","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811463","1482974940","1483234228","1482811463","8","96","0","-1","259288","163477","24891648","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101754","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811513","1482977031","1483236242","1482811513","8","96","0","-1","259211","165518","24884256","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101755","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811582","1482977031","1483236244","1482811582","8","96","0","-1","259213","165449","24884448","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["6101756","Robertson","screw - Screwdriver","UTC","","Pipit, Meadow","Screwdriver","curry","1482811640","1482978251","1483237480","1482811640","8","96","0","-1","259229","166611","24885984","0","1:0","TIMEOUT","96","2147486448Mn","259200","white","Engineering","Electrical and Communication Systems","Quantum Electronics, Waves, and Beams"] -["1016250","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483186506","1483186577","1483254650","1483186506","1","8","0","-1","68073","71","544584","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["1019924","Posidriv","wrench - Wrench","UTC","","Dove, Turtle","Screwdriver","banana-cream","1483239618","1483239703","1483306378","1483239618","1","8","0","-1","66675","85","533400","0","0:0","COMPLETED","8","23000Mn","10800000","croutons","Mathematical and Physical Sciences","Chemistry","Physical Chemistry"] -["995282","Posidriv","wrench - Wrench","UTC","","Ovenbird","Screwdriver","bavarian-cream","1482865454","1483205093","1483312407","1482865454","1","16","0","-1","107314","339639","1717024","0","0:0","COMPLETED","16","125Gn","345600","cornbread","Mathematical and Physical Sciences","Astronomical Sciences","Galactic Astronomy"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json deleted file mode 100644 index 8411695efa..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications-fields-and-filters.json +++ /dev/null @@ -1,3 +0,0 @@ -["Resource ID","Resource"] -["1","Frearson"] -["2","Mortorq"] diff --git a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json b/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json deleted file mode 100644 index 2573e51aed..0000000000 --- a/tests/artifacts/xdmod/regression/current/expected/localhost/raw-data/resourcespecifications.json +++ /dev/null @@ -1,6 +0,0 @@ -["Resource ID","Resource","Resource Allocation Type","Start Time","End Time","CPU Processor Count","CPU Node Count","CPU Processors Per Node","GPU Count","GPU Node Count","GPUs Per Node","Normalization Factor","SUs Available","Resource Type","Organization","Percent Allocated"] -["1","Frearson","CPU Allocated","1482796800","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] -["2","Mortorq","GPU Allocated","1482710400","1577923199","4000","400","10","4000","400","10","1.0000",null,"High-performance computing","Screwdriver","100"] -["3","Phillips","CPU Node Allocated","1482364800","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Screwdriver","100"] -["4","Posidriv","CPU Allocated","1482278400","1577923199","4000","400","10","0","0","0","1.0000",null,"High-performance computing","Wrench","100"] -["5","Robertson","GPU Node Allocated","1481500800","1577923199","4000","400","10","4000","400","10","1.0000",null,"High-performance computing","Screwdriver","100"] From b97d208280287b345cc0e105b148dd65420eb2d5 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 17 Mar 2025 10:17:22 -0400 Subject: [PATCH 6/9] updates to pass style tests --- .../Version1100To1150/DatabasesMigration.php | 4 ++-- classes/OpenXdmod/Setup/AddResourceSetup.php | 1 + .../etl/etl.d/xdmod-migration_11_0_0-11_5_0.json | 12 ++++++++++++ tests/ci/bootstrap.sh | 8 ++------ 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php b/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php index 07eabcb5f4..ae2e8bb554 100644 --- a/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php +++ b/classes/OpenXdmod/Migration/Version1100To1150/DatabasesMigration.php @@ -24,8 +24,8 @@ public function execute() if ($mysql_helper->tableExists('modw.storagefact')) { Utilities::runEtlPipeline( - ['storage-migration-11-0-0_11-5-0', 'xdw-aggregate-storage'], - $this->logger, + ['storage-migration-11-0-0_11-5-0', 'xdw-aggregate-storage'], + $this->logger, ['last-modified-start-date' => '2017-01-01 00:00:00'] ); } diff --git a/classes/OpenXdmod/Setup/AddResourceSetup.php b/classes/OpenXdmod/Setup/AddResourceSetup.php index b6112b8130..4088f972b0 100644 --- a/classes/OpenXdmod/Setup/AddResourceSetup.php +++ b/classes/OpenXdmod/Setup/AddResourceSetup.php @@ -39,6 +39,7 @@ public function handle() $typeOptions = array(); $typeDescriptionText = ""; $availableTypes = XdmodConfiguration::assocArrayFactory('resource_types.json', CONFIG_DIR)['resource_types']; + $organizationOptions = array(); $resourceAllocationTypeOptions = array(); $resourceAllocationTypeDescriptionText = ""; $availableResourceAllocationTypes = XdmodConfiguration::assocArrayFactory('resource_allocation_types.json', CONFIG_DIR)['resource_allocation_types']; diff --git a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json index 66bbe7348f..f25cb57987 100644 --- a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json +++ b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json @@ -53,6 +53,18 @@ "common/staging/resource-config.json" ] }, + { + "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/0" + }, + { + "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/1" + }, + { + "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/2" + }, + { + "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/3" + }, { "$ref": "${local_config_dir}/ingest_resources.json#/ingest-resources/0" }, diff --git a/tests/ci/bootstrap.sh b/tests/ci/bootstrap.sh index 7a20d36144..e119c03638 100755 --- a/tests/ci/bootstrap.sh +++ b/tests/ci/bootstrap.sh @@ -82,8 +82,8 @@ then copy_template_httpd_conf ~/bin/services start - mysql -e "CREATE USER 'root'@'_gateway' IDENTIFIED BY ''; - GRANT ALL PRIVILEGES ON *.* TO 'root'@'_gateway' WITH GRANT OPTION; + mysql -e "CREATE USER 'root'@'gateway' IDENTIFIED BY ''; + GRANT ALL PRIVILEGES ON *.* TO 'root'@'gateway' WITH GRANT OPTION; FLUSH PRIVILEGES;" # TODO: Replace diff files with hard fixes @@ -162,10 +162,6 @@ then ~/bin/services start - mysql -e "CREATE USER 'root'@'_gateway' IDENTIFIED BY ''; - GRANT ALL PRIVILEGES ON *.* TO 'root'@'_gateway' WITH GRANT OPTION; - FLUSH PRIVILEGES;" - expect $BASEDIR/scripts/xdmod-upgrade.tcl | col -b cat /etc/xdmod/organization.json | jq '.[1] |= .+ {"name": "Wrench", "abbrev": "wrench"}' > /etc/xdmod/organization2.json From 8eae4f8e6ed9ec24ae57f8ce2807f4cb9c3e74b5 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 17 Mar 2025 10:29:53 -0400 Subject: [PATCH 7/9] adding new line to pass style tests --- .../migration/update_storage_resource_organization.sql | 2 +- .../artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-centerdirector.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql b/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql index bfeddca769..04ffb065c5 100644 --- a/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql +++ b/configuration/etl/etl_sql.d/migration/update_storage_resource_organization.sql @@ -1 +1 @@ -UPDATE modw.storagefact SET resource_organization_id = 1; \ No newline at end of file +UPDATE modw.storagefact SET resource_organization_id = 1; diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-admin.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerdirector.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] From ba8cd2235d6b8dcfc2e513b68b80b25198c879f9 Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 17 Mar 2025 10:38:04 -0400 Subject: [PATCH 8/9] updating to pass style tests --- .../xdmod/user_admin/output/jobs/get_tabs-centerstaff.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-normaluser.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-principal.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-public_user.json | 2 +- .../user_admin/output/jobs/get_tabs-test.cd.one-center.json | 2 +- .../user_admin/output/jobs/get_tabs-test.cs.one-center.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-test.pi.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json | 2 +- .../xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-centerstaff.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-normaluser.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-principal.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json index e2df7cb1ef..ff7b3dc38f 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-public_user.json @@ -32,4 +32,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cd.one-center.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.cs.one-center.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.normal-user.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.pi.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_dev.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json index f03add0295..05734dcae1 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_tabs-test.usr_mgr_dev.json @@ -76,4 +76,4 @@ "tooltip": "", "userManualSectionName": "About" } -] \ No newline at end of file +] From 037c9a8537afc4c82c8aa583e8823c35a658895f Mon Sep 17 00:00:00 2001 From: Greg Dean Date: Mon, 17 Mar 2025 10:55:11 -0400 Subject: [PATCH 9/9] remove unneeded etl migration actions --- .../etl/etl.d/xdmod-migration_11_0_0-11_5_0.json | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json index f25cb57987..66bbe7348f 100644 --- a/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json +++ b/configuration/etl/etl.d/xdmod-migration_11_0_0-11_5_0.json @@ -53,18 +53,6 @@ "common/staging/resource-config.json" ] }, - { - "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/0" - }, - { - "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/1" - }, - { - "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/2" - }, - { - "$ref": "${local_config_dir}/organizations.json#/ingest-organizations/3" - }, { "$ref": "${local_config_dir}/ingest_resources.json#/ingest-resources/0" },